diff --git a/.all-contributorsrc b/.all-contributorsrc
index 584146d..f4f31f1 100644
--- a/.all-contributorsrc
+++ b/.all-contributorsrc
@@ -1,6 +1,6 @@
{
"files": [
- "README.md"
+ "CONTRIBUTORS.md"
],
"imageSize": 100,
"commit": true,
@@ -14,7 +14,8 @@
"contributions": [
"code",
"review",
- "test"
+ "test",
+ "ideas"
]
},
{
@@ -38,7 +39,9 @@
"avatar_url": "https://avatars.githubusercontent.com/u/1488847?v=4",
"profile": "https://github.com/robcast",
"contributions": [
- "data"
+ "data",
+ "ideas",
+ "review"
]
},
{
@@ -50,7 +53,8 @@
"code",
"review",
"test",
- "eventOrganizing"
+ "eventOrganizing",
+ "ideas"
]
},
{
@@ -72,5 +76,6 @@
"repoType": "github",
"repoHost": "https://github.com",
"projectName": "undate-python",
- "projectOwner": "dh-tech"
+ "projectOwner": "dh-tech",
+ "badgeTemplate": ""
}
diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml
index 515659b..3f3b4e7 100644
--- a/.github/workflows/check.yml
+++ b/.github/workflows/check.yml
@@ -13,26 +13,27 @@ jobs:
steps:
- uses: actions/checkout@v4
- - name: Set up Python 3.10
+ - name: Set up Python 3.12
uses: actions/setup-python@v5
with:
- python-version: "3.10"
+ python-version: "3.12"
cache: 'pip'
- cache-dependency-path: '**/setup.cfg'
- - name: Install package with dependencies
+ cache-dependency-path: '**/pyproject.toml'
+ - name: Install package with development dependencies
run: pip install -e ".[dev]"
- if: steps.python-cache.outputs.cache-hit != 'true'
- # check code style
- - name: Run black
- run: black src --check --diff
+ # check with ruff
+ - name: Run ruff
+ run: ruff check
- # check docs
- - name: Check that documentation can be built
- run: tox -e docs
+ # check docs build
+ - name: Check that documentation builds with no errors or warnings
+ run: sphinx-build docs docs/_build --fail-on-warning
# check types with mypy
- - name: Install mypy
- run: pip install mypy
- name: Check types in python src directory; install needed types
run: mypy --install-types --non-interactive src
+
+ # use treon to make sure that example notebooks run
+ - name: Check jupyter notebooks with treon
+ run: treon
diff --git a/.github/workflows/unit_tests.yml b/.github/workflows/unit_tests.yml
index b9678e9..89df8cb 100644
--- a/.github/workflows/unit_tests.yml
+++ b/.github/workflows/unit_tests.yml
@@ -11,14 +11,14 @@ on:
env:
# python version used to calculate and submit code coverage
- COV_PYTHON_VERSION: "3.11"
+ COV_PYTHON_VERSION: "3.12"
jobs:
python-unit:
runs-on: ubuntu-latest
strategy:
matrix:
- python: ["3.9", "3.10", "3.11", "3.12"]
+ python: ["3.9", "3.10", "3.11", "3.12", "3.13"]
defaults:
run:
working-directory: .
@@ -30,21 +30,18 @@ jobs:
with:
python-version: ${{ matrix.python }}
cache: 'pip'
- cache-dependency-path: '**/setup.cfg'
+ cache-dependency-path: '**/pyproject.toml'
- name: Install package with dependencies
- run: |
- pip install -e ".[dev]"
- python -m pip install tox tox-gh-actions
- if: steps.python-cache.outputs.cache-hit != 'true'
+ run: pip install -e ".[test]"
# for all versions but the one we use for code coverage, run normally
- name: Run unit tests normally
- run: tox
+ run: pytest
if: ${{ matrix.python != env.COV_PYTHON_VERSION }}
# run code coverage in one version only
- name: Run unit tests with code coverage reporting
- run: tox -e coverage
+ run: pytest --cov=undate
if: ${{ matrix.python == env.COV_PYTHON_VERSION }}
- name: Upload test coverage to Codecov
uses: codecov/codecov-action@v3
diff --git a/.gitignore b/.gitignore
index 31599aa..81b889e 100644
--- a/.gitignore
+++ b/.gitignore
@@ -39,3 +39,6 @@ venv.bak/
# code coverage
.coverage
coverage.xml
+
+# jupyter
+.ipynb_checkpoints/
\ No newline at end of file
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
index 94823a3..e49e09d 100644
--- a/.pre-commit-config.yaml
+++ b/.pre-commit-config.yaml
@@ -1,9 +1,11 @@
files: \.py
repos:
- - repo: https://github.com/psf/black
- rev: 22.10.0
+ - repo: https://github.com/astral-sh/ruff-pre-commit
+ rev: v0.3.4
hooks:
- - id: black
+ - id: ruff
+ args: [ --fix, --exit-non-zero-on-fix ]
+ - id: ruff-format
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.3.0
hooks:
@@ -12,4 +14,9 @@ repos:
- id: debug-statements
- id: end-of-file-fixer
- id: mixed-line-ending
- - id: trailing-whitespace
\ No newline at end of file
+ - id: trailing-whitespace
+ - repo: https://github.com/pre-commit/mirrors-mypy
+ rev: v1.13.0
+ hooks:
+ - id: mypy
+ additional_dependencies: [numpy]
diff --git a/.pythonversion b/.pythonversion
new file mode 100644
index 0000000..4516194
--- /dev/null
+++ b/.pythonversion
@@ -0,0 +1 @@
+Python 3.12.7
diff --git a/CHANGELOG.md b/CHANGELOG.md
index e42714f..4003b14 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,31 @@
# Change Log
+## 0.3
+
+- Updated to use numpy `datetime64` to support a greater range of years beyond the 4-digit years supported by python's builtin ``datetime.date`
+ - Custom `Date` and `Timedelta` objects as shims to make numpy datetime64 and timedelta64 act more like python `datetime` objects
+- Renamed formatters to converters for more flexibility / scope
+- Support using different converters with new `format` and `parse` methods on `Undate`
+- Improved EDTF support:
+ - Support 5+ digit years with leading Y (thanks to numpy.datetime64)
+ - Jupyter notebook demonstrating / validating EDTF support
+ - Full support for Level 0 Date and Time Interval (no Date and Time support)
+ - Level 1:
+ - Letter-prefixed cbalendar year
+ - Unspecified digit from the right
+ - Partial support for extended interval
+ - Level 2: unspecified digit anywhere in the date
+- Improved readme with example usage and disclaimers about current functionality
+- Improved documentation for adding new converters
+- Improved documentation for branching guidelines in contributing
+- Restructured sphinx documentation and added more code documentation
+- Added a project logo
+- Switch from black to ruff for pre-commit formatting
+
+### numpy impact
+
+Performance differences seem to be negligible, but it does increase payloud size. The virtualenv for installing version 0.2 was 14MB; when installing the newer version with numpy, the virtualenv is 46MB (the numpy folder in site packages is 31MB on its own).
+
## 0.2
- Undate and UndateInterval now include an optional label for named dates or time periods
diff --git a/CITATION.cff b/CITATION.cff
index c4b44b8..b364271 100644
--- a/CITATION.cff
+++ b/CITATION.cff
@@ -25,7 +25,7 @@ authors:
family-names: Casties
affiliation: Max Planck Institute for the History of Science
orcid: https://orcid.org/0009-0008-9370-1303
-version: '0.2'
-date-released: 2024-04-25
+version: '0.3'
+date-released: 2024-11-18
repository-code: https://github.com/dh-tech/undate-python
license: Apache 2
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index bfe5692..fc3ff48 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -1,23 +1,58 @@
-# Contributing to Undate - A fuzzy date Python library
-
+# Contributing to undate
Hey there!
If you found your way here that probably means you are curious about how to contribute to this project. This is great! We are always looking for new contributors. If you can't find the information you are looking for in this document or anywhere else in the repo, please consider [opening a ticket](https://github.com/dh-tech/undate-python/issues) so we know there is something we need to address.
## Project Setup
-Instructions on how to set up the project locally and how to run the tests can be found [in the Readme file](README.md).
+Instructions on how to set up the project locally and how to run the tests can be found in [Developer Notes](DEVELOPER_NOTES.md).
## Submitting Changes
-If you would like to contribute by submitting bug fixes, improvements, or new features, please fork the repository and then make a pull request to our main branch when you are ready. For details see [this description of the Forking Workflow](https://www.atlassian.com/git/tutorials/comparing-workflows/forking-workflow).
+
+If you would like to contribute by submitting bug fixes, improvements, or new features, please fork the repository and then make a pull request to undate **develop** branch when you are ready. If you haven't contributed like this before, we recommend reading [GitHub's documentation on Contributing to a Project](https://docs.github.com/en/get-started/exploring-projects-on-github/contributing-to-a-project).
+
+We use **git flow** branching conventions, so the current release is on the **main** branch and new feature development happens on **develop**. Pull requests for new features or bug fixes should be made to **develop** for inclusion in the next release. For more details, read a longer explanation of the [Git Flow Workflow](https://www.atlassian.com/git/tutorials/comparing-workflows/gitflow-workflow)
+
+Recommended branch naming conventions:
+
+- For a new feature, create a branch named `feature/i##-short-name` where `##` is the relevant GitHub issue number (if there is one) and `short-name` is a brief label that relates to the changes or feature
+
+In most cases branches should be created from the most recent **develop** branch. Make sure you check out develop and pull any remote changes.
+```sh
+git checkout develop
+git pull
+```
+
+If you have `git flow` installed, you can start, you can use:
+```sh
+git flow feature start i##-short-name
+```
+
+If not, you can do the same thing with git commands:
+```sh
+git checkout -b feature/i##-short-name
+```
+
+When you are ready to contribute your changes, open a pull request from your branch to the main undate repository. Please be sure to link to the GitHub issue in your pull request comments.
+
+Ideally contributions should include documentation and tests for the proposed changes, but if that is a barrier please let us know when you submit a pull request.
+
+Please be aware that any contributions will fall under the existing Apache 2.0 license applied to this software.
## Submitting Bug Reports and Feature Requests
+
If you find a bug or can think a feature you would really like to see being implemented, you can [create a new issue](https://github.com/dh-tech/undate-python/issues). Please first look through the existing issues, however, to avoid duplication of issues.
-If you report a bug, please include any error messages you get and a full description of the steps to reproduce the bug. For new feature requests, please clearly describe the functionality you are looking for and, if applicable, why any existing workflow does not suffice. Please also consider, fixing bugs and implementing new features yourself and submit pull request! :)
+If you report a bug, please include any error messages you get and a full description of the steps to reproduce the bug. For new feature requests, please clearly describe the functionality you are looking for and, if applicable, why any existing workflow does not suffice. Please also consider fixing bugs and implementing new features yourself and submitting them via pull request! :)
+
+## Submitting Use Cases and Example Data
+
+We are particularly interested in collecting more use cases and example data where undate would be helpful!
+
+Example data can be added to the [examples/](https://github.com/dh-tech/undate-python/tree/main/examples/) folder by a pull request.
## Getting Help
-The best and recommended way to get help is to join the [DHTech Slack](https://dh-tech.github.io/join/) and ask for help there. Only in cases when this is not feasible at all, you can open a new issue and tag it with "Help Request".
+The best and recommended way to get help is to join the [DHTech Slack](https://dh-tech.github.io/join/) and ask for help there. Only in cases when this is not feasible at all, you can open a new issue and tag it with "Help Request".
## DHTech
This project started during the DHTech 2022 Hackathon. If you do technical work in the digital humanities and are intersted in meeting like-minded people, [consider joining](https://dh-tech.github.io/join/)!
diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md
new file mode 100644
index 0000000..415e17b
--- /dev/null
+++ b/CONTRIBUTORS.md
@@ -0,0 +1,51 @@
+# All Contributors
+
+We use [All Contributors](https://allcontributors.org/) because we recognize that all kinds of contributions are valuable and important.
+
+
+
+
+
+## Contributors
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+### Related blog posts
+
+(blog-rlskoeser)=
+#### [by Rebecca Sutton Koeser](#blog-rlskoeser)
+ - [Join me for a DHTech hackathon? Itβs an un-date!](https://dh-tech.github.io/blog/2023-02-09-hackathon-summary/) 2023-02-09 on DHTech blog
diff --git a/DEVELOPER_NOTES.md b/DEVELOPER_NOTES.md
new file mode 100644
index 0000000..6d4918c
--- /dev/null
+++ b/DEVELOPER_NOTES.md
@@ -0,0 +1,91 @@
+# Developer instructions
+
+Ready to contribute to `undate`? Here are some instructions to get you started.
+
+## Setup
+
+### Use git to checkout a copy of the repository
+```sh
+git clone git@github.com:dh-tech/undate-python.git
+cd undate-python
+```
+
+### Install and initialize git flow
+
+This repository uses [git-flow](https://github.com/nvie/gitflow) branching conventions:
+- **main** will always contain the most recent release
+- **develop** branch is the latest version of work in progress
+
+Pull requests for new features should be made against the **develop** branch.
+
+We recommended installing git-flow.
+1. On OSX, use brew or ports, e.g.: `brew install git-flow`; on Ubuntu/Debian, `apt-get install git-flow`
+2. Initialize it in your local copy of this repository: run `git flow init` and accept all the defaults.
+3. Use `git flow feature start feature-name` to create a new feature development branch.
+4. Feature branches can be merged locally with git flow or by GitHub pull request.
+4. Use git flow for releases with `git flow release start x.x.x` and `git flow release finish x.x.x`, where x.x.x is the version number for the new release.
+
+If you cannot or prefer not to install git flow, you can do the equivalent manually.
+1. Check out the develop branch: `git checkout develop`
+3. Create new feature manually from the develop branch: `git checkout -b feature/xxx-name`
+
+### Create a Python virtual environment
+
+Use a recent version of python 3 (we recommend 3.12). If you use [pyenv](https://github.com/pyenv/pyenv), run `pyenv install` to get the current recommended python version for development (specified in `.pythonversion`).
+
+We highly recommend using a python virtualenv to isolate dependencies, e.g.
+```
+python3 -m venv .venv
+source .venv/bin/activate
+```
+
+### Install local version of undate with development python dependencies
+
+Install an editable version of the local package along with python dependencies needed for testing and development.
+
+```sh
+pip install -e ".[dev]"
+```
+
+### Install pre-commit hooks
+
+We use [pre-commit](https://pre-commit.com/) for automated checks and consistent formatting. If you're planning to contribute, please install these when you set up your local development.
+
+```sh
+pre-commit install
+```
+
+## Tests, documentation, and other checks
+
+### Running unit tests
+
+Tests can be run with `pytest`.
+
+To run all the tests in a single test file, specify the path, e.g.: `pytest tests/test_dateformat/test_base.py`
+
+To test cases by method name, use `-k`: `pytest -k test_str`
+
+### Check python types
+
+Python typing is currently enforced on pull requests as part of a GitHub Actions Continuous Integration check using `mypy` and via pre-commit hook.
+
+To check types locally:
+1. Install the necessary typing libraries (first run only):
+```sh
+mypy --install-types
+```
+2. Run `mypy src/` to check types.
+
+### Documentation
+
+Documentation can be built with sphinx. Make sure you have the dependencies installed:
+
+```sh
+pip install -e ".[docs]"
+```
+
+```sh
+sphinx-build docs docs/_build
+```
+
+HTML documentation will be generated in `docs/_build/html`
\ No newline at end of file
diff --git a/README.md b/README.md
index 0000873..37b8452 100644
--- a/README.md
+++ b/README.md
@@ -1,15 +1,15 @@
-# undate-python
-
-[](#contributors-)
-
+# undate overview
-**undate** is a python library for working with uncertain or partially known dates.
+
-It was initially created as part of a [DH-Tech](https://dh-tech.github.io/) hackathon in November 2022.
+**undate** is a python library for working with uncertain or partially known dates.
----
+> [!WARNING]
+> This is pre-alpha software and is **NOT** feature complete! Use with caution.
+> Currently it only supports parsing and formatting dates in ISO8601 format and
+> some portions of EDTF (Extended Date Time Format).
-β οΈ **WARNING:** this is pre-alpha software and is **NOT** feature complete! Use with caution. β οΈ
+*Undate was initially created as part of a [DH-Tech](https://dh-tech.github.io/) hackathon in November 2022.*
---
@@ -18,142 +18,152 @@ It was initially created as part of a [DH-Tech](https://dh-tech.github.io/) hack
[](https://undate-python.readthedocs.io/en/latest/?badge=latest)
[](https://github.com/dh-tech/undate-python/actions/workflows/unit_tests.yml)
[](https://codecov.io/gh/dh-tech/undate-python)
-[](https://github.com/psf/black)
+[](https://github.com/astral-sh/ruff)
-[](#contributors-)
+[](CONTRIBUTORS.md)
-## Documentation
+Read [Contributors](CONTRIBUTORS.md) for detailed contribution information.
-Project documentation is available on ReadTheDocs https://undate-python.readthedocs.io/en/latest/
+## Example Usage
-## License
+Often humanities and cultural data include imprecise or uncertain temporal information. We want to store that information but also work with it in a structured way, not just treat it as text for display. Different projects may need to work with or convert between different date formats or even different calendars.
-This software is licensed under the [Apache 2.0 License](LICENSE.md).
+An `undate.Undate` is analogous to pythonβs builtin `datetime.date` object, but with support for varying degrees of precision and unknown information. You can initialize an undate with either strings or numbers for whichever parts of the date are known or partially known. An `Undate` can take an optional label.
-## Installation
+```python
+from undate.undate import Undate
-To install the most recent release from PyPI:
-```sh
-pip install undate
-```
+november7 = Undate(2000, 11, 7)
+november = Undate(2000, 11)
+year2k = Undate(2000)
+november7_some_year = Undate(month=11, day=7)
-To install the latest development version from GitHub:
-```sh
-pip install git+https://github.com/dh-tech/undate-python.git@develop#egg=undate
-```
+partially_known_year = Undate("19XX")
+partially_known_month = Undate(2022, "1X")
-To install a specific release or branch, run the following (replace `[tag-name]` with the tag or branch you want to install):
-```sh
-pip install git+https://github.com/dh-tech/undate-python.git@[tag-name]
+easter1916 = Undate(1916, 4, 23, label="Easter 1916")
```
-## Instructions to setup for development
-
-### Clone repo
-```
-$ git clone git@github.com:dh-tech/undate-python.git
-cd undate-python
+You can convert an `Undate` to string using a date formatter (current default is ISO8601):
+```python
+>>> [str(d) for d in [november7, november, year2k, november7_some_year]]
+['2000-11-07', '2000-11', '2000', '--11-07']
```
-## Setup and initialize git flow
-
-This repository uses [git-flow](https://github.com/nvie/gitflow) branching conventions:
-- **main** will always contain the most recent release
-- **develop** branch is the latest version of work in progress
-
-Pull requests for new features should be made against the **develop** branch.
-
-It is recommended to install git flow (on OSX, use brew or ports, e.g.: `brew install git-flow`; on Ubuntu/Debian, `apt-get install git-flow`) and then initialize it in this repository via `git flow init` and accept the defaults. Then you can use `git flow feature start` to create feature development branches.
-
-Alternately, you can check out the develop branch (`git checkout develop`)
-and create your branches manually based on develop (`git checkout -b feature/xxx-name`).
-
-### Set up Python environment
-Use a recent version of python 3.x; recommended to use a virtualenv, e.g.
+If enough information is known, an `Undate` object can report on its duration:
+```python
+>>> december = Undate(2000, 12)
+>>> feb_leapyear = Undate(2024, 2)
+>>> feb_regularyear = Undate(2023, 2)
+>>> for d in [november7, november, december, year2k, november7_some_year, feb_regularyear, feb_leapyear]:
+... print(f"{d} - duration in days: {d.duration().days}")
+...
+2000-11-07 - duration in days: 1
+2000-11 - duration in days: 30
+2000-12 - duration in days: 31
+2000 - duration in days: 366
+--11-07 - duration in days: 1
+2023-02 - duration in days: 28
+2024-02 - duration in days: 29
```
-python3 -m venv undate
-source undate/bin/activate
-```
-
-### Install the package
-Install an editable version of the local package along with python dependencies needed for testing and development.
-
-```sh
-pip install -e ".[dev]"
+If enough of the date is known and the precision supports it, you can check if one date falls within another date:
+```python
+>>> november7 = Undate(2000, 11, 7)
+>>> november2000 = Undate(2000, 11)
+>>> year2k = Undate(2000)
+>>> ad100 = Undate(100)
+>>> november7 in november
+True
+>>> november2000 in year2k
+True
+>>> november7 in year2k
+True
+>>> november2000 in ad100
+False
+>>> november7 in ad100
+False
```
-### Install pre-commit hooks
-```sh
-pre-commit install
+For dates that are imprecise or partially known, `undate` calculates earliest and latest possible dates for comparison purposes so you can sort dates and compare with equals, greater than, and less than. You can also compare with python `datetime.date` objects.
+
+```python
+>>> november7_2020 = Undate(2020, 11, 7)
+>>> november_2001 = Undate(2001, 11)
+>>> year2k = Undate(2000)
+>>> ad100 = Undate(100)
+>>> sorted([november7_2020, november_2001, year2k, ad100])
+[, , , ]
+>>> november7_2020 > november_2001
+True
+>>> year2k < ad100
+False
+>>> from datetime import date
+>>> year2k > date(2001, 1, 1)
+False
```
-### Run unit tests
-Tests can be run with either `tox` or `pytest`.
-
-To run all the tests in a single test file, use pytest and specify the path to the test: `pytest tests/test_dateformat/test_base.py`
-
-To test cases by name, use pytest: `pytest -k test_str`
+When dates cannot be compared due to ambiguity or precision, comparison methods raise a `NotImplementedError`.
+
+```python
+>>> november_2020 = Undate(2020, 11)
+>>> november7_2020 > november_2020
+Traceback (most recent call last):
+ File "", line 1, in
+ File "/Users/rkoeser/workarea/github/undate-python/src/undate/undate.py", line 262, in __gt__
+ return not (self < other or self == other)
+ File "/Users/rkoeser/workarea/github/undate-python/src/undate/undate.py", line 245, in __lt__
+ raise NotImplementedError(
+NotImplementedError: Can't compare when one date falls within the other
+```
-### Check python types
+An `UndateInterval` is a date range between two `Undate` objects. Intervals can be open-ended, allow for optional labels, and can calculate duration if enough information is known
+```python
+>>> from undate.undate import UndateInterval
+>>> UndateInterval(Undate(1900), Undate(2000))
+
+>>> UndateInterval(Undate(1900), Undate(2000), label="19th century")
+>>> UndateInterval(Undate(1900), Undate(2000), label="19th century").duration().days
+36890
+
+>>> UndateInterval(Undate(1900), Undate(2000), label="20th century")
+
+>>> UndateInterval(latest=Undate(2000)) # before 2000
+
+>>> UndateInterval(Undate(1900)) # after 1900
+
+>>> UndateInterval(Undate(1900), Undate(2000), label="19th century").duration().days
+36890
+>>> UndateInterval(Undate(2000, 1, 1), Undate(2000, 1,31)).duration().days
+31
+```
-Python typing is currently only enforced by a CI check action using `mypy`.
-To run mypy locally, first install mypy and the necessary typing libraries:
-```sh
-pip install mypy
-mypy --install-types
+You can initialize `Undate` or `UndateInterval` objects by parsing a date string with a specific converter, and you can also output an `Undate` object in those formats.
+Available converters are "ISO8601" and "EDTF" (but only)
+
+```python
+>>> from undate import Undate
+>>> Undate.parse("2002", "ISO8601")
+
+>>> Undate.parse("2002-05", "EDTF")
+
+>>> Undate.parse("--05-03", "ISO8601")
+
+>>> Undate.parse("--05-03", "ISO8601").format("EDTF")
+'XXXX-05-03'
+>>> Undate.parse("1800/1900")
+
```
-Once mypy is installed, run `mypy src/` to check.
+For more examples, refer to the [example notebooks](https://github.com/dh-tech/undate-python/tree/main/examples/notebooks/) included in this repository.
+## Documentation
-### Create documentation
+Project documentation is [available on ReadTheDocs](https://undate-python.readthedocs.io/en/latest/).
-```sh
-tox -e docs
-```
+For instructions on setting up for local development, see [Developer Notes](DEVELOPER_NOTES.md).
-## Contributors
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-### Related blog posts
-
-- [by Rebecca Sutton Koeser](#blog-rlskoeser)
- - [Join me for a DHTech hackathon? Itβs an un-date!](https://dh-tech.github.io/blog/2023-02-09-hackathon-summary/) 2023-02-09 on DHTech blog
+## License
+
+This software is licensed under the [Apache 2.0 License](LICENSE.md).
diff --git a/_static/undate_logo.png b/_static/undate_logo.png
new file mode 100644
index 0000000..fed6798
Binary files /dev/null and b/_static/undate_logo.png differ
diff --git a/docs/CONTRIBUTING.md b/docs/CONTRIBUTING.md
new file mode 100644
index 0000000..435d357
--- /dev/null
+++ b/docs/CONTRIBUTING.md
@@ -0,0 +1,2 @@
+```{include} ../CONTRIBUTING.md
+```
\ No newline at end of file
diff --git a/docs/CONTRIBUTORS.md b/docs/CONTRIBUTORS.md
new file mode 100644
index 0000000..c8e001d
--- /dev/null
+++ b/docs/CONTRIBUTORS.md
@@ -0,0 +1,2 @@
+```{include} ../CONTRIBUTORS.md
+```
diff --git a/docs/DEVELOPER_NOTES.md b/docs/DEVELOPER_NOTES.md
new file mode 100644
index 0000000..e88590a
--- /dev/null
+++ b/docs/DEVELOPER_NOTES.md
@@ -0,0 +1,2 @@
+```{include} ../DEVELOPER_NOTES.md
+```
diff --git a/docs/LICENSE.md b/docs/LICENSE.md
new file mode 100644
index 0000000..b6e36d7
--- /dev/null
+++ b/docs/LICENSE.md
@@ -0,0 +1,4 @@
+# License
+
+```{include} ../LICENSE.md
+```
diff --git a/docs/_static/custom.css b/docs/_static/custom.css
new file mode 100644
index 0000000..aa35e82
--- /dev/null
+++ b/docs/_static/custom.css
@@ -0,0 +1,7 @@
+
+div.sphinxsidebar .powered_by a {
+ text-decoration: none;
+ border-bottom: none;
+ text-align: center;
+}
+
diff --git a/docs/_static/dhtech-logo.png b/docs/_static/dhtech-logo.png
new file mode 100644
index 0000000..4d54c15
Binary files /dev/null and b/docs/_static/dhtech-logo.png differ
diff --git a/docs/_static/dhtech-logo.svg b/docs/_static/dhtech-logo.svg
new file mode 100644
index 0000000..069a40b
--- /dev/null
+++ b/docs/_static/dhtech-logo.svg
@@ -0,0 +1,32 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/docs/_static/logo.png b/docs/_static/logo.png
deleted file mode 100644
index bc52174..0000000
Binary files a/docs/_static/logo.png and /dev/null differ
diff --git a/docs/_static/undate_logo.png b/docs/_static/undate_logo.png
new file mode 100644
index 0000000..fed6798
Binary files /dev/null and b/docs/_static/undate_logo.png differ
diff --git a/docs/_templates/sidebar_dhtech.html b/docs/_templates/sidebar_dhtech.html
new file mode 100644
index 0000000..eea7014
--- /dev/null
+++ b/docs/_templates/sidebar_dhtech.html
@@ -0,0 +1,8 @@
+
\ No newline at end of file
diff --git a/docs/authors.rst b/docs/authors.rst
deleted file mode 100644
index 30616f6..0000000
--- a/docs/authors.rst
+++ /dev/null
@@ -1 +0,0 @@
-.. include:: ../Authors.rst
diff --git a/docs/conf.py b/docs/conf.py
index 2185873..710d933 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -17,8 +17,8 @@
# -- Project information -----------------------------------------------------
-project = "Undate"
-copyright = "2022, DHtech"
+project = "undate"
+copyright = "2024, DHtech"
author = "DHtech Community"
# The full version, including alpha/beta/rc tags
@@ -32,7 +32,11 @@
# Add any Sphinx extension module names here, as strings. They can be
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones.
-extensions = ["sphinx.ext.autodoc", "sphinx.ext.intersphinx", "m2r2"]
+extensions = [
+ "sphinx.ext.autodoc",
+ "sphinx.ext.intersphinx",
+ "myst_parser",
+]
# Add any paths that contain templates here, relative to this directory.
templates_path = ["_templates"]
@@ -42,18 +46,41 @@
# This pattern also affects html_static_path and html_extra_path.
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]
-source_suffix = [".rst", ".md"]
+source_suffix = {
+ ".rst": "restructuredtext",
+ ".md": "markdown",
+}
# -- Options for HTML output -------------------------------------------------
# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
#
-html_theme = "sphinx_rtd_theme"
+html_theme = "alabaster"
# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ["_static"]
-html_logo = "_static/logo.png"
+html_theme_options = {
+ "logo": "undate_logo.png",
+ "logo_name": False,
+ "github_user": "dh-tech",
+ "github_repo": "undate-python",
+ "github_button": False,
+ "github_banner": True,
+}
+
+html_sidebars = {
+ "**": [
+ "about.html",
+ "navigation.html",
+ "localtoc.html",
+ "searchbox.html",
+ "sidebar_dhtech.html",
+ ],
+}
+
+# turn on relative links; make sure both github and sphinx links work
+# myst_enable_extensions = ["linkify"] # disabling because not found
diff --git a/docs/index.rst b/docs/index.rst
index e01b84d..4f302f9 100644
--- a/docs/index.rst
+++ b/docs/index.rst
@@ -1,17 +1,19 @@
-Undate documentation
+undate documentation
====================
**undate** is a python library for working with uncertain or partially known dates.
.. toctree::
- :maxdepth: 3
+ :maxdepth: 2
:caption: Contents:
readme
- undate
- authors
- license
+ undate/index
+ CONTRIBUTING
+ DEVELOPER_NOTES
+ CONTRIBUTORS
+ LICENSE
Indices and tables
==================
diff --git a/docs/license.rst b/docs/license.rst
deleted file mode 100644
index 4f3620b..0000000
--- a/docs/license.rst
+++ /dev/null
@@ -1,3 +0,0 @@
-License
-=======
-.. mdinclude:: ../LICENSE.md
diff --git a/docs/readme.md b/docs/readme.md
new file mode 100644
index 0000000..4ec94a5
--- /dev/null
+++ b/docs/readme.md
@@ -0,0 +1,4 @@
+```{include} ../README.md
+:relative-docs: /
+:relative-images:
+```
diff --git a/docs/readme.rst b/docs/readme.rst
deleted file mode 100644
index 21a7aa4..0000000
--- a/docs/readme.rst
+++ /dev/null
@@ -1,3 +0,0 @@
-Introduction
-============
-.. mdinclude:: ../README.md
diff --git a/docs/requirements.txt b/docs/requirements.txt
deleted file mode 100644
index d48afdb..0000000
--- a/docs/requirements.txt
+++ /dev/null
@@ -1,4 +0,0 @@
--e .[dev]
-sphinx
-sphinx_rtd_theme
-m2r2
diff --git a/docs/undate.rst b/docs/undate.rst
deleted file mode 100644
index dcaf476..0000000
--- a/docs/undate.rst
+++ /dev/null
@@ -1,11 +0,0 @@
-Undate
-======
-
-.. autoclass:: undate.undate.Undate
- :members:
- :undoc-members:
-
-
-.. autoclass:: undate.undate.UndateInterval
- :members:
- :undoc-members:
\ No newline at end of file
diff --git a/docs/undate/converters.rst b/docs/undate/converters.rst
new file mode 100644
index 0000000..701aaf1
--- /dev/null
+++ b/docs/undate/converters.rst
@@ -0,0 +1,30 @@
+Converters
+==========
+
+.. automodule:: undate.converters.base
+ :members:
+ :undoc-members:
+
+ISO8601
+-------
+
+.. automodule:: undate.converters.iso8601
+ :members:
+ :undoc-members:
+
+Extended Date-Time Format (EDTF)
+--------------------------------
+
+.. automodule:: undate.converters.edtf.converter
+ :members:
+ :undoc-members:
+
+.. automodule:: undate.converters.edtf.parser
+ :members:
+ :undoc-members:
+
+.. transformer is more of an internal, probably doesn't make sense to include
+.. .. automodule:: undate.converters.edtf.transformer
+.. :members:
+.. :undoc-members:
+
diff --git a/docs/undate/core.rst b/docs/undate/core.rst
new file mode 100644
index 0000000..e7b6b4b
--- /dev/null
+++ b/docs/undate/core.rst
@@ -0,0 +1,22 @@
+Undate objects
+==============
+
+undates and undate intervals
+------------------------------
+
+.. autoclass:: undate.undate.Undate
+ :members:
+
+.. autoclass:: undate.undate.UndateInterval
+ :members:
+
+date, timedelta, and date precision
+-----------------------------------
+
+.. autoclass:: undate.date.Date
+ :members:
+
+.. autoclass:: undate.date.Timedelta
+ :members:
+
+.. autoclass:: undate.date.DatePrecision
diff --git a/docs/undate/index.rst b/docs/undate/index.rst
new file mode 100644
index 0000000..3deea35
--- /dev/null
+++ b/docs/undate/index.rst
@@ -0,0 +1,9 @@
+API documentation
+=================
+
+.. toctree::
+ :maxdepth: 2
+ :caption: Contents:
+
+ core
+ converters
\ No newline at end of file
diff --git a/examples/README.md b/examples/README.md
new file mode 100644
index 0000000..bf2a99c
--- /dev/null
+++ b/examples/README.md
@@ -0,0 +1,7 @@
+# undate examples
+
+Example data and projects with use cases for uncertain date logic and
+example code notebooks using undate.
+
+- [use cases](use-cases) - examples from projects or specific data with use cases for undate
+- [notebooks](notebooks) - code notebooks showing how undate can be used on a specific dataset or for a specific problem
diff --git a/examples/notebooks/README.md b/examples/notebooks/README.md
new file mode 100644
index 0000000..17c1270
--- /dev/null
+++ b/examples/notebooks/README.md
@@ -0,0 +1,6 @@
+# `undate` demo notebooks
+
+This folder contains code notebooks demonstrating how undate can be used on a specific dataset or for a specific problem.
+
+- [EDTF support](edtf-support.ipynb) - demonstrate and validate supported portions of the Extended Date Time Format (EDTF) specification
+- [Partial date duration logic](shxco_partial_date_durations.ipynb) - compare `undate` partial date range duration logic with a previous implementation in the _Shakespeare and Company Project_
diff --git a/examples/notebooks/edtf-support.ipynb b/examples/notebooks/edtf-support.ipynb
new file mode 100644
index 0000000..0295647
--- /dev/null
+++ b/examples/notebooks/edtf-support.ipynb
@@ -0,0 +1,799 @@
+{
+ "cells": [
+ {
+ "cell_type": "markdown",
+ "id": "e517e953-8229-4f72-9376-fe822c4fae56",
+ "metadata": {},
+ "source": [
+ "# EDTF support - demonstration and validation\n",
+ "\n",
+ "This notebook demonstrates and validates `undate` support for specific parts of the [Extended Date/Time Format (EDTF)](https://www.loc.gov/standards/datetime/) specification.\n",
+ "\n",
+ "This notebook follows the same structure and uses the example from the Library of Congress specification, demonstrating parsing EDTF dates and formatting dates in EDTF syntax, for the parts of the specification undate implements.\n",
+ "\n",
+ "`undate` only handles dates and date intervals; time is not supported.\n",
+ "\n",
+ "*Notebook authored by Rebecca Sutton Koeser, October 2024.*"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "b01e0622-b07a-41b9-8f69-758f70abb6c9",
+ "metadata": {},
+ "source": [
+ "## Level 0\n",
+ "\n",
+ "Full support for **Date** and **Time Interval**; **Date and Time** is not supported."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "9ea09abd-62df-419c-b803-c870a2e0a8f0",
+ "metadata": {},
+ "source": [
+ "### Date\n",
+ "\n",
+ "```\n",
+ "complete representation: [year][β-β][month][β-β][day]\n",
+ "Example 1 β1985-04-12β refers to the calendar date 1985 April 12th with day precision.\n",
+ "reduced precision for year and month: [year][β-β][month]\n",
+ "Example 2 β1985-04β refers to the calendar month 1985 April with month precision.\n",
+ "reduced precision for year: [year]\n",
+ "Example 3 β1985β refers to the calendar year 1985 with year precision.\n",
+ "```"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "2922207c-fc2d-4dac-a038-bf368c6af1f4",
+ "metadata": {},
+ "source": [
+ "#### Parse EDTF format\n",
+ "\n",
+ "Demonstrate that these EDTF strings can be parsed into `Undate` objects."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 2,
+ "id": "9c6b7379-b2a7-4ec1-afa5-2cd9832c8a5d",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "import datetime \n",
+ "\n",
+ "from undate import Undate, UndateInterval, DatePrecision\n",
+ "\n",
+ "# Example 1: day\n",
+ "day = Undate.parse(\"1985-04-12\", \"EDTF\")\n",
+ "assert day.precision == DatePrecision.DAY\n",
+ "assert day == datetime.date(1985, 4, 12)\n",
+ "\n",
+ "# Example 2 : month\n",
+ "month = Undate.parse(\"1985-04\", \"EDTF\")\n",
+ "assert month.year == \"1985\" and month.month == \"04\"\n",
+ "assert month.precision == DatePrecision.MONTH\n",
+ "\n",
+ "# Example 3 : year\n",
+ "year = Undate.parse(\"1985\", \"EDTF\")\n",
+ "assert year.year == \"1985\"\n",
+ "assert year.precision == DatePrecision.YEAR"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "6666c12d-7fda-419a-bbd9-af68ed4bbff0",
+ "metadata": {},
+ "source": [
+ "#### Output in EDTF format\n",
+ "\n",
+ "Demonstrate that initalizing `Undate` objects and serializing with EDTF formatter returns the expected value."
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 3,
+ "id": "923476ff-344a-4018-a02e-6e5f80ea76a8",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "from undate.undate import Undate, DatePrecision\n",
+ "from undate.converters.edtf import EDTFDateConverter\n",
+ "\n",
+ "# set default format to EDTF\n",
+ "Undate.DEFAULT_CONVERTER = \"EDTF\"\n",
+ "\n",
+ "# Example 1: day\n",
+ "day = Undate(1985, 4, 12)\n",
+ "# confirm EDTF converter is being used\n",
+ "assert isinstance(day.converter, EDTFDateConverter)\n",
+ "# casting to str is now equivalent to day.format(\"EDTF\")\n",
+ "assert str(day) == \"1985-04-12\"\n",
+ "assert day.precision == DatePrecision.DAY\n",
+ "\n",
+ "# Example 2 : month\n",
+ "month = Undate(1985, 4)\n",
+ "assert str(month) == \"1985-04\"\n",
+ "assert month.precision == DatePrecision.MONTH\n",
+ "\n",
+ "# Example 3 : year\n",
+ "year = Undate(1985)\n",
+ "assert str(year) == \"1985\"\n",
+ "assert year.precision == DatePrecision.YEAR"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "6f2fa2c1-9022-4afd-9404-d79816a211a5",
+ "metadata": {},
+ "source": [
+ "### Date and Time - not supported"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "22b71a54-484e-49f2-975c-3da21c519095",
+ "metadata": {},
+ "source": [
+ "### Time Interval\n",
+ "\n",
+ "EDTF Level 0 adopts representations of a time interval where both the start and end are dates: start and end date only; that is, both start and duration, and duration and end, are excluded. Time of day is excluded.\n",
+ "\n",
+ "```\n",
+ " Example 1 β1964/2008β is a time interval with calendar year precision, beginning sometime in 1964 and ending sometime in 2008.\n",
+ " Example 2 β2004-06/2006-08β is a time interval with calendar month precision, beginning sometime in June 2004 and ending sometime in August of 2006.\n",
+ " Example 3 β2004-02-01/2005-02-08β is a time interval with calendar day precision, beginning sometime on February 1, 2004 and ending sometime on February 8, 2005.\n",
+ " Example 4 β2004-02-01/2005-02β is a time interval beginning sometime on February 1, 2004 and ending sometime in February 2005. Since the start endpoint precision (day) is different than that of the end endpoint (month) the precision of the time interval at large is undefined.\n",
+ " Example 5 β2004-02-01/2005β is a time interval beginning sometime on February 1, 2004 and ending sometime in 2005. The start endpoint has calendar day precision and the end endpoint has calendar year precision. Similar to the previous example, the precision of the time interval at large is undefined.\n",
+ " Example 6 β2005/2006-02β is a time interval beginning sometime in 2005 and ending sometime in February 2006.\n",
+ "```"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "b843650f-5da2-4a6a-bcb2-2190fb2d0fcf",
+ "metadata": {},
+ "source": [
+ "#### Parse EDTF format"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 4,
+ "id": "6ed422de-34a2-4324-b254-f62db00563f7",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# Example 1\n",
+ "year_range = Undate.parse(\"1964/2008\", \"EDTF\")\n",
+ "assert isinstance(year_range, UndateInterval)\n",
+ "assert year_range.earliest == Undate(1964)\n",
+ "assert year_range.latest == Undate(2008)\n",
+ "# Example 2\n",
+ "month_range = Undate.parse(\"2004-06/2006-08\", \"EDTF\")\n",
+ "assert isinstance(month_range, UndateInterval)\n",
+ "assert month_range.earliest == Undate(2004, 6)\n",
+ "assert month_range.latest == Undate(2006, 8)\n",
+ "# Example 3\n",
+ "day_range = Undate.parse(\"2004-02-01/2005-02-08\", \"EDTF\")\n",
+ "assert isinstance(day_range, UndateInterval)\n",
+ "assert day_range.earliest == Undate(2004, 2, 1)\n",
+ "assert day_range.latest == Undate(2005, 2, 8)\n",
+ "# Example 4 \n",
+ "day_month_range = Undate.parse(\"2004-02-01/2005-02\", \"EDTF\")\n",
+ "assert isinstance(day_range, UndateInterval)\n",
+ "assert day_month_range.earliest == Undate(2004, 2, 1)\n",
+ "assert day_month_range.latest == Undate(2005, 2)\n",
+ "assert day_month_range.earliest.precision == DatePrecision.DAY\n",
+ "assert day_month_range.latest.precision == DatePrecision.MONTH\n",
+ "# Example 5\n",
+ "day_year_range = Undate.parse(\"2004-02-01/2005\", \"EDTF\")\n",
+ "assert isinstance(day_range, UndateInterval)\n",
+ "assert day_year_range.earliest == Undate(2004, 2, 1)\n",
+ "assert day_year_range.latest == Undate(2005)\n",
+ "assert day_year_range.earliest.precision == DatePrecision.DAY\n",
+ "assert day_year_range.latest.precision == DatePrecision.YEAR\n",
+ "# Example 6 \n",
+ "year_month_range = Undate.parse(\"2005/2006-02\", \"EDTF\")\n",
+ "assert isinstance(year_month_range, UndateInterval)\n",
+ "assert year_month_range.earliest == Undate(2005)\n",
+ "assert year_month_range.latest == Undate(2006, 2)\n",
+ "assert year_month_range.earliest.precision == DatePrecision.YEAR\n",
+ "assert year_month_range.latest.precision == DatePrecision.MONTH\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "8f4dc069-2d8a-4707-84af-ad9da5334ab9",
+ "metadata": {},
+ "source": [
+ "#### Output in EDTF format"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 5,
+ "id": "8d98a139-627b-40bd-b1c5-d0028e538a53",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# Example 1\n",
+ "assert UndateInterval(Undate(1964), Undate(2008)).format(\"EDTF\") == \"1964/2008\"\n",
+ "# Example 2\n",
+ "assert UndateInterval(Undate(2004, 6), Undate(2006, 8)).format(\"EDTF\") == \"2004-06/2006-08\"\n",
+ "# Example 3\n",
+ "assert UndateInterval(Undate(2004, 2, 1), Undate(2005, 2, 8)).format(\"EDTF\") == \"2004-02-01/2005-02-08\"\n",
+ "# Example 4 \n",
+ "assert UndateInterval(Undate(2004, 2, 1), Undate(2005, 2)).format(\"EDTF\") == \"2004-02-01/2005-02\"\n",
+ "# Example 5\n",
+ "assert UndateInterval(Undate(2004, 2, 1), Undate(2005)).format(\"EDTF\") == \"2004-02-01/2005\"\n",
+ "# Example 6 \n",
+ "assert UndateInterval(Undate(2005), Undate(2006, 2)).format(\"EDTF\") == \"2005/2006-02\""
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "f0e15f82-7586-4363-8ffa-5a3b7407c774",
+ "metadata": {},
+ "source": [
+ "## Level 1"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "4c2ec542-eaf7-4f3f-8c91-a255791309e7",
+ "metadata": {},
+ "source": [
+ "### Letter-prefixed calendar year\n",
+ "\n",
+ "'Y' may be used at the beginning of the date string to signify that the date is a year, when (and only when) the year exceeds four digits, i.e. for years later than 9999 or earlier than -9999.\n",
+ "```\n",
+ " Example 1 'Y170000002' is the year 170000002\n",
+ " Example 2 'Y-170000002' is the year -170000002\n",
+ "```\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 6,
+ "id": "532470db-851e-4f91-9242-cd93d35054cf",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# Example 1\n",
+ "# parse\n",
+ "assert Undate.parse(\"Y170000002\", \"EDTF\").year == \"170000002\"\n",
+ "# format\n",
+ "assert str(Undate(170000002)) == \"Y170000002\"\n",
+ "\n",
+ "# Example 2\n",
+ "# parse\n",
+ "assert Undate.parse(\"Y-170000002\", \"EDTF\").year == \"-170000002\"\n",
+ "# format\n",
+ "assert str(Undate(-170000002)) == \"Y-170000002\""
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "acd27893-4b0d-433d-931d-e2a18f73a47f",
+ "metadata": {},
+ "source": [
+ "### Seasons - not supported\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "4047b969-7fef-462d-b2fa-9445cfcc2cde",
+ "metadata": {},
+ "source": [
+ "### Qualification of a date (complete) - not yet supported\n",
+ "\n",
+ "The characters '?', '~' and '%' are used to mean \"uncertain\", \"approximate\", and \"uncertain\" as well as \"approximate\", respectively. These characters may occur only at the end of the date string and apply to the entire date.\n",
+ "\n",
+ "```\n",
+ " Example 1 '1984?' year uncertain (possibly the year 1984, but not definitely)\n",
+ " Example 2 '2004-06~'' year-month approximate\n",
+ " Example 3 '2004-06-11%' entire date (year-month-day) uncertain and approximate\n",
+ "```"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "f6914a33-fe9d-43b1-b457-ca56b671d7b7",
+ "metadata": {},
+ "source": [
+ "### Unspecified digit(s) from the right \n",
+ "\n",
+ "The character 'X' may be used in place of one or more rightmost digits to indicate that the value of that digit is unspecified, for the following cases:\n",
+ "```\n",
+ " A year with one or two (rightmost) unspecified digits in a year-only expression (year precision)\n",
+ " Example 1 β201Xβ\n",
+ " Example 2 β20XXβ\n",
+ " Year specified, month unspecified in a year-month expression (month precision)\n",
+ " Example 3 β2004-XXβ\n",
+ " Year and month specified, day unspecified in a year-month-day expression (day precision)\n",
+ " Example 4 β1985-04-XXβ \n",
+ " Year specified, day and month unspecified in a year-month-day expression (day precision)\n",
+ " Example 5 β1985-XX-XXβ \n",
+ "```"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 7,
+ "id": "a5abd0e4-0b26-49b0-bf78-3e1fe6c046d8",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# Example 1 β201Xβ\n",
+ "# parse\n",
+ "date = Undate.parse(\"201X\", \"EDTF\")\n",
+ "assert date.year == \"201X\"\n",
+ "assert date.precision == DatePrecision.YEAR\n",
+ "# earliest/latest possible years\n",
+ "assert date.earliest.year == 2010\n",
+ "assert date.latest.year == 2019\n",
+ "# format\n",
+ "assert str(Undate(\"201X\")) == \"201X\"\n",
+ "\n",
+ "# Example 2 β20XXβ\n",
+ "# parse\n",
+ "date = Undate.parse(\"20XX\", \"EDTF\")\n",
+ "assert date.year == \"20XX\"\n",
+ "assert date.precision == DatePrecision.YEAR\n",
+ "# earliest/latest possible years\n",
+ "assert date.earliest.year == 2000\n",
+ "assert date.latest.year == 2099\n",
+ "# format\n",
+ "assert str(Undate(\"20XX\")) == \"20XX\"\n",
+ "\n",
+ "# Example 3 β2004-XXβ\n",
+ "# parse\n",
+ "date = Undate.parse(\"2004-XX\", \"EDTF\")\n",
+ "assert date.year == \"2004\"\n",
+ "assert date.month == \"XX\"\n",
+ "assert date.precision == DatePrecision.MONTH\n",
+ "# earliest/latest possible months\n",
+ "assert date.earliest.month == 1\n",
+ "assert date.latest.month == 12\n",
+ "# format\n",
+ "assert str(Undate(2004, \"XX\")) == \"2004-XX\"\n",
+ "\n",
+ "# Example 4 β1985-04-XXβ \n",
+ "# parse\n",
+ "date = Undate.parse(\"1985-04-XX\", \"EDTF\")\n",
+ "assert date.year == \"1985\"\n",
+ "assert date.month == \"04\"\n",
+ "assert date.day == \"XX\"\n",
+ "assert date.precision == DatePrecision.DAY\n",
+ "# earliest/latest possible days\n",
+ "assert date.earliest.day == 1\n",
+ "assert date.latest.day == 30\n",
+ "# format\n",
+ "assert str(Undate(1985, 4, \"XX\")) == \"1985-04-XX\"\n",
+ "\n",
+ "# Example 5 β1985-XX-XXβ \n",
+ "# parse\n",
+ "date = Undate.parse(\"1985-XX-XX\", \"EDTF\")\n",
+ "assert date.year == \"1985\"\n",
+ "assert date.month == \"XX\"\n",
+ "assert date.day == \"XX\"\n",
+ "assert date.precision == DatePrecision.DAY\n",
+ "# earliest/latest possible months\n",
+ "assert date.earliest.month == 1\n",
+ "assert date.latest.month == 12\n",
+ "# earliest/latest possible days\n",
+ "assert date.earliest.day == 1\n",
+ "assert date.latest.day == 31 # undate guesses maximum month length when month is unknown\n",
+ "# format\n",
+ "assert str(Undate(1985, \"XX\", \"XX\")) == \"1985-XX-XX\""
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "4b7a2aaf-58e2-444a-bcde-3cd2b53546f0",
+ "metadata": {},
+ "source": [
+ "### Extended Interval (L1)\n",
+ "\n",
+ "1. A null string may be used for the start or end date when it is unknown.\n",
+ "2. Double-dot (β..β) may be used when either the start or end date is not specified, either because there is none or for any other reason.\n",
+ "3. A modifier may appear at the end of the date to indicate \"uncertain\" and/or \"approximate\"\n",
+ "\n",
+ "* * *\n",
+ "\n",
+ "**NOTE:** `undate` does not currently distinguish between open intervals and intervals with an unknown start or end date."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "c7bbc0c9-4a79-4427-ab6b-3e0a44843eba",
+ "metadata": {},
+ "source": [
+ "#### Open end time interval\n",
+ "\n",
+ "`undate` supports open ended time intervals, but does not currently distinguish between null string and double dot.\n",
+ "\n",
+ "\n",
+ " Example 1 β1985-04-12/..β\n",
+ " interval starting at 1985 April 12th with day precision; end open\n",
+ " Example 2 β1985-04/..β\n",
+ " interval starting at 1985 April with month precision; end open\n",
+ " Example 3 β1985/..β\n",
+ " interval starting at year 1985 with year precision; end open\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 8,
+ "id": "e47f3fff-d35c-4c2e-9568-214763f6511a",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "import datetime\n",
+ "\n",
+ "# Example 1 β1985-04-12/..β\n",
+ "# parse\n",
+ "interval = Undate.parse(\"1985-04-12/..\", \"EDTF\")\n",
+ "assert isinstance(interval, UndateInterval)\n",
+ "assert interval.earliest == datetime.date(1985, 4, 12)\n",
+ "assert interval.earliest.precision == DatePrecision.DAY\n",
+ "assert interval.latest is None\n",
+ "# format\n",
+ "# NOTE: undate interval does not currently distinguish between double dot and null string\n",
+ "assert str(UndateInterval(Undate(1985, 4, 12), None)) == \"1985-04-12/\"\n",
+ "\n",
+ "# Example 2 β1985-04/..β\n",
+ "# parse\n",
+ "interval = Undate.parse(\"1985-04/..\", \"EDTF\")\n",
+ "assert isinstance(interval, UndateInterval)\n",
+ "assert interval.earliest == Undate(1985, 4)\n",
+ "assert interval.earliest.precision == DatePrecision.MONTH\n",
+ "assert interval.latest is None\n",
+ "# format\n",
+ "assert str(UndateInterval(Undate(1985, 4), None)) == \"1985-04/\"\n",
+ "\n",
+ "# Example 3 β1985/..β\n",
+ "# parse\n",
+ "interval = Undate.parse(\"1985/..\", \"EDTF\")\n",
+ "assert isinstance(interval, UndateInterval)\n",
+ "assert interval.earliest == Undate(1985)\n",
+ "assert interval.earliest.precision == DatePrecision.YEAR\n",
+ "assert interval.latest is None\n",
+ "# format\n",
+ "assert str(UndateInterval(Undate(1985), None)) == \"1985/\""
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "7a0514ce-91ef-430f-9ae3-cc809e41c47b",
+ "metadata": {},
+ "source": [
+ "#### Open start time interval\n",
+ "\n",
+ " Example 4 β../1985-04-12β\n",
+ " interval with open start; ending 1985 April 12th with day precision\n",
+ " Example 5 β../1985-04β\n",
+ " interval with open start; ending 1985 April with month precision\n",
+ " Example 6 β../1985β\n",
+ " interval with open start; ending at year 1985 with year precision"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 9,
+ "id": "39143c1f-932a-450c-9b2d-ffbe3e1416b0",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# Example 4 β../1985-04-12β\n",
+ "# parse\n",
+ "interval = Undate.parse(\"../1985-04-12\", \"EDTF\")\n",
+ "assert isinstance(interval, UndateInterval)\n",
+ "assert interval.earliest is None\n",
+ "assert interval.latest == datetime.date(1985, 4, 12)\n",
+ "assert interval.latest.precision == DatePrecision.DAY\n",
+ "# format\n",
+ "# NOTE: undate interval does not currently distinguish between double dot and null string\n",
+ "assert str(UndateInterval(None, Undate(1985, 4, 12))) == \"../1985-04-12\"\n",
+ "\n",
+ "# Example 5 β../1985-04β\n",
+ "# parse\n",
+ "interval = Undate.parse(\"../1985-04\", \"EDTF\")\n",
+ "assert isinstance(interval, UndateInterval)\n",
+ "assert interval.earliest is None\n",
+ "assert interval.latest == Undate(1985, 4)\n",
+ "assert interval.latest.precision == DatePrecision.MONTH\n",
+ "# format\n",
+ "assert str(UndateInterval(None, Undate(1985, 4), )) == \"../1985-04\"\n",
+ "\n",
+ "# Example 6 β../1985β\n",
+ "# parse\n",
+ "interval = Undate.parse(\"../1985\", \"EDTF\")\n",
+ "assert isinstance(interval, UndateInterval)\n",
+ "assert interval.earliest is None\n",
+ "assert interval.latest == Undate(1985)\n",
+ "assert interval.latest.precision == DatePrecision.YEAR\n",
+ "# format\n",
+ "assert str(UndateInterval(None, Undate(1985))) == \"../1985\""
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "dc49211b-971d-489c-a98d-37e067bc210c",
+ "metadata": {},
+ "source": [
+ "#### Time interval with unknown end\n",
+ "\n",
+ " Example 7 β1985-04-12/β\n",
+ " interval starting 1985 April 12th with day precision; end unknown\n",
+ " Example 8 β1985-04/β\n",
+ " interval starting 1985 April with month precision; end unknown\n",
+ " Example 9 β1985/β\n",
+ " interval starting year 1985 with year precision; end unknown\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 10,
+ "id": "95965f17-0bd5-446f-bc09-9503eaed68e2",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# Example 7 β1985-04-12/β\n",
+ "# parse\n",
+ "interval = Undate.parse(\"1985-04-12/\", \"EDTF\")\n",
+ "assert isinstance(interval, UndateInterval)\n",
+ "assert interval.earliest == datetime.date(1985, 4, 12)\n",
+ "assert interval.earliest.precision == DatePrecision.DAY\n",
+ "assert interval.latest is None\n",
+ "# format\n",
+ "# NOTE: undate interval does not currently distinguish between double dot and null string\n",
+ "assert str(UndateInterval(Undate(1985, 4, 12), None)) == \"1985-04-12/\"\n",
+ "\n",
+ "# Example 8 β1985-04/β\n",
+ "# parse\n",
+ "interval = Undate.parse(\"1985-04/\", \"EDTF\")\n",
+ "assert isinstance(interval, UndateInterval)\n",
+ "assert interval.earliest == Undate(1985, 4)\n",
+ "assert interval.earliest.precision == DatePrecision.MONTH\n",
+ "assert interval.latest is None\n",
+ "# format\n",
+ "assert str(UndateInterval(Undate(1985, 4), None)) == \"1985-04/\"\n",
+ "\n",
+ "# Example 9 β1985/β\n",
+ "# parse\n",
+ "interval = Undate.parse(\"1985/\", \"EDTF\")\n",
+ "assert isinstance(interval, UndateInterval)\n",
+ "assert interval.earliest == Undate(1985)\n",
+ "assert interval.earliest.precision == DatePrecision.YEAR\n",
+ "assert interval.latest is None\n",
+ "# format\n",
+ "assert str(UndateInterval(Undate(1985), None)) == \"1985/\""
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "9f3cd588-70d3-4eb4-add7-39591b22e6df",
+ "metadata": {},
+ "source": [
+ "#### Time interval with unknown start\n",
+ "\n",
+ " Example 10 β/1985-04-12β\n",
+ " interval with unknown start; ending 1985 April 12th with day precision\n",
+ " Example 11 β/1985-04β\n",
+ " interval with unknown start; ending 1985 April with month precision\n",
+ " Example 12 β/1985β\n",
+ " interval with unknown start; ending year 1985 with year precision\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 11,
+ "id": "c6c2d1a1-39f1-45eb-ac08-1de4fadbe842",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# Example 10 β/1985-04-12β\n",
+ "# parse\n",
+ "interval = Undate.parse(\"/1985-04-12\", \"EDTF\")\n",
+ "assert isinstance(interval, UndateInterval)\n",
+ "assert interval.earliest is None\n",
+ "assert interval.latest == datetime.date(1985, 4, 12)\n",
+ "assert interval.latest.precision == DatePrecision.DAY\n",
+ "# format\n",
+ "# NOTE: undate interval does not currently distinguish between double dot and null string\n",
+ "assert str(UndateInterval(None, Undate(1985, 4, 12))) == \"../1985-04-12\"\n",
+ "\n",
+ "# Example 11 β/1985-04β\n",
+ "# parse\n",
+ "interval = Undate.parse(\"/1985-04\", \"EDTF\")\n",
+ "assert isinstance(interval, UndateInterval)\n",
+ "assert interval.earliest is None\n",
+ "assert interval.latest == Undate(1985, 4)\n",
+ "assert interval.latest.precision == DatePrecision.MONTH\n",
+ "# format\n",
+ "assert str(UndateInterval(None, Undate(1985, 4), )) == \"../1985-04\"\n",
+ "\n",
+ "# Example 12 β/1985β\n",
+ "# parse\n",
+ "interval = Undate.parse(\"/1985\", \"EDTF\")\n",
+ "assert isinstance(interval, UndateInterval)\n",
+ "assert interval.earliest is None\n",
+ "assert interval.latest == Undate(1985)\n",
+ "assert interval.latest.precision == DatePrecision.YEAR\n",
+ "# format\n",
+ "assert str(UndateInterval(None, Undate(1985))) == \"../1985\""
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "4c6327d8-2243-4bc1-bef6-255f8872ea51",
+ "metadata": {},
+ "source": [
+ "#### Negative calendar year\n",
+ "\n",
+ " Example 1 β-1985β\n",
+ "\n",
+ "Note: ISO 8601 Part 1 does not support negative year. "
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 12,
+ "id": "f24fd31a-176a-40b5-bff4-d72b68f32a18",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# Example 1 β-1985β\n",
+ "# parse\n",
+ "neg_year = Undate.parse(\"-1985\", \"EDTF\")\n",
+ "assert neg_year.year == \"-1985\"\n",
+ "# format\n",
+ "assert str(Undate(-1985)) == \"-1985\""
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "be28b001-6745-4145-ab29-1c80c67d71ba",
+ "metadata": {},
+ "source": [
+ "## Level 2\n",
+ "\n",
+ "The only part of L2 that `undate` currently supports is allowing an unspecified digit anywhere in the date."
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "id": "b4c78eff-1c30-4d1a-94e8-d83074bb3678",
+ "metadata": {},
+ "source": [
+ "#### Unspecified Digit\n",
+ "\n",
+ "For level 2 the unspecified digit, 'X', may occur anywhere within a component.\n",
+ "\n",
+ " Example 1 β156X-12-25β\n",
+ " December 25 sometime during the 1560s\n",
+ " Example 2 β15XX-12-25β\n",
+ " December 25 sometime during the 1500s\n",
+ " Example 3 βXXXX-12-XXβ\n",
+ " Some day in December in some year\n",
+ " Example 4 '1XXX-XXβ\n",
+ " Some month during the 1000s\n",
+ " Example 5 β1XXX-12β\n",
+ " Some December during the 1000s\n",
+ " Example 6 β1984-1Xβ\n",
+ " October, November, or December 1984"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 13,
+ "id": "5910caab-eada-4715-b863-9bbbb15b9c5c",
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "# Example 1 β156X-12-25β\n",
+ "# parse\n",
+ "december = Undate.parse(\"156X-12-25\", \"EDTF\")\n",
+ "assert december.year == \"156X\"\n",
+ "assert december.month == \"12\"\n",
+ "assert december.day == \"25\"\n",
+ "assert december.precision == DatePrecision.DAY\n",
+ "assert december.earliest.year == 1560\n",
+ "assert december.latest.year == 1569\n",
+ "# format\n",
+ "assert str(Undate(\"156X\", 12, 25)) == \"156X-12-25\"\n",
+ "\n",
+ "# Example 2 β15XX-12-25β\n",
+ "# parse\n",
+ "december = Undate.parse(\"15XX-12-25\", \"EDTF\")\n",
+ "assert december.year == \"15XX\"\n",
+ "assert december.month == \"12\"\n",
+ "assert december.day == \"25\"\n",
+ "assert december.precision == DatePrecision.DAY\n",
+ "assert december.earliest.year == 1500\n",
+ "assert december.latest.year == 1599\n",
+ "# format\n",
+ "assert str(Undate(\"15XX\", 12, 25)) == \"15XX-12-25\"\n",
+ "\n",
+ "# Example 3 βXXXX-12-XXβ\n",
+ "# parse\n",
+ "december = Undate.parse(\"XXXX-12-XX\", \"EDTF\")\n",
+ "assert december.year == \"XXXX\"\n",
+ "assert december.month == \"12\"\n",
+ "assert december.day == \"XX\"\n",
+ "assert december.precision == DatePrecision.DAY\n",
+ "# TODO: these must be in a different branch...\n",
+ "# assert december.earliest.year == Undate.MIN_YEAR\n",
+ "# assert december.latest.year == Undate.MAX_YEAR\n",
+ "assert december.earliest.day == 1\n",
+ "assert december.latest.day == 31\n",
+ "# format\n",
+ "assert str(Undate(\"XXXX\", 12, \"XX\")) == \"XXXX-12-XX\"\n",
+ "\n",
+ "# Example 4 '1XXX-XXβ\n",
+ "# parse\n",
+ "some_month = Undate.parse(\"1XXX-XX\", \"EDTF\")\n",
+ "assert some_month.year == \"1XXX\"\n",
+ "assert some_month.month == \"XX\"\n",
+ "assert some_month.precision == DatePrecision.MONTH\n",
+ "assert some_month.earliest.year == 1000\n",
+ "assert some_month.latest.year == 1999\n",
+ "# format\n",
+ "assert str(Undate(\"1XXX\", \"XX\")) == \"1XXX-XX\"\n",
+ "\n",
+ "# Example 5 β1XXX-12β\n",
+ "# parse\n",
+ "some_december = Undate.parse(\"1XXX-12\", \"EDTF\")\n",
+ "assert some_december.year == \"1XXX\"\n",
+ "assert some_december.month == \"12\"\n",
+ "assert some_december.precision == DatePrecision.MONTH\n",
+ "assert some_december.earliest.year == 1000\n",
+ "assert some_december.latest.year == 1999\n",
+ "# format\n",
+ "assert str(Undate(\"1XXX\", 12)) == \"1XXX-12\"\n",
+ "\n",
+ "# Example 6 β1984-1Xβ\n",
+ "# parse\n",
+ "late_1984 = Undate.parse(\"1984-1X\", \"EDTF\")\n",
+ "assert late_1984.year == \"1984\"\n",
+ "assert late_1984.month == \"1X\"\n",
+ "assert late_1984.precision == DatePrecision.MONTH\n",
+ "assert late_1984.earliest.month == 10\n",
+ "assert late_1984.latest.month == 12\n",
+ "# format\n",
+ "assert str(Undate(1984, \"1X\")) == \"1984-1X\""
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "id": "8297d77f-3680-4237-9bcd-28da33ac9619",
+ "metadata": {},
+ "outputs": [],
+ "source": []
+ }
+ ],
+ "metadata": {
+ "kernelspec": {
+ "display_name": "Python 3 (ipykernel)",
+ "language": "python",
+ "name": "python3"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 3
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython3",
+ "version": "3.12.7"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 5
+}
diff --git a/examples/notebooks/shxco_partial_date_durations.ipynb b/examples/notebooks/shxco_partial_date_durations.ipynb
index 6af42bb..9e291f9 100644
--- a/examples/notebooks/shxco_partial_date_durations.ipynb
+++ b/examples/notebooks/shxco_partial_date_durations.ipynb
@@ -29,8 +29,8 @@
"output_type": "stream",
"text": [
"\n",
- "\u001b[1m[\u001b[0m\u001b[34;49mnotice\u001b[0m\u001b[1;39;49m]\u001b[0m\u001b[39;49m A new release of pip is available: \u001b[0m\u001b[31;49m23.0.1\u001b[0m\u001b[39;49m -> \u001b[0m\u001b[32;49m24.0\u001b[0m\n",
- "\u001b[1m[\u001b[0m\u001b[34;49mnotice\u001b[0m\u001b[1;39;49m]\u001b[0m\u001b[39;49m To update, run: \u001b[0m\u001b[32;49m/Users/rkoeser/workarea/env/undate/bin/python -m pip install --upgrade pip\u001b[0m\n",
+ "\u001b[1m[\u001b[0m\u001b[34;49mnotice\u001b[0m\u001b[1;39;49m]\u001b[0m\u001b[39;49m A new release of pip is available: \u001b[0m\u001b[31;49m24.2\u001b[0m\u001b[39;49m -> \u001b[0m\u001b[32;49m24.3.1\u001b[0m\n",
+ "\u001b[1m[\u001b[0m\u001b[34;49mnotice\u001b[0m\u001b[1;39;49m]\u001b[0m\u001b[39;49m To update, run: \u001b[0m\u001b[32;49m/Users/rkoeser/workarea/env/undate/bin/python3 -m pip install --upgrade pip\u001b[0m\n",
"Note: you may need to restart the kernel to use updated packages.\n"
]
}
@@ -51,14 +51,6 @@
"outputId": "ee3cacd7-c347-437a-ee8e-91a4086d6e88"
},
"outputs": [
- {
- "name": "stderr",
- "output_type": "stream",
- "text": [
- "/var/folders/tn/1_gbhpks7hqbkbln2gjhcdvm0000gp/T/ipykernel_37223/1465467117.py:6: DtypeWarning: Columns (20) have mixed types. Specify dtype option on import or set low_memory=False.\n",
- " events_df = pd.read_csv(\"https://github.com/rlskoeser/shxco-missingdata-specreading/raw/main/data/source-data/SCoData_events_v1.2_2022-01.csv\")\n"
- ]
- },
{
"data": {
"text/html": [
@@ -304,10 +296,8 @@
"source": [
"import pandas as pd\n",
"\n",
- "# load the 1.2 version of S&co events dataset\n",
- "# for convenience, we load a copy from \n",
- "\n",
- "events_df = pd.read_csv(\"https://github.com/rlskoeser/shxco-missingdata-specreading/raw/main/data/source-data/SCoData_events_v1.2_2022-01.csv\")\n",
+ "# load the 1.2 version of S&co events dataset; we have a copy in our use-cases folder\n",
+ "events_df = pd.read_csv(\"../use-cases/shakespeare-and-company-project/SCoData_events_v1.2_2022-01.csv\", low_memory=False)\n",
"events_df.head()"
]
},
@@ -321,7 +311,7 @@
"\n",
"Define a method to initialize an `UndateInterval` from start and end date strings in ISO format as used in S&co datasets\n",
"\n",
- "**Note:** There's an off-by-one discrepancy between how we currently calculate duration in Undate and in the Shakespeare and Company Project code; becauS&co code counts the first day in the range but not the last (this could also be thought of as counting half of the start and end dates). For simplicity of comparison here, we subtract one day from the result returned by `UndateInterval.duration`."
+ "**Note:** There's an off-by-one discrepancy between how we currently calculate duration in Undate and in the Shakespeare and Company Project code. This is because S&co code counts the first day in the range but not the last (this could also be thought of as counting half of the start and end dates). For simplicity of comparison here, we subtract one day from the result returned by `UndateInterval.duration`."
]
},
{
@@ -332,8 +322,9 @@
},
"outputs": [],
"source": [
+ "from undate.date import ONE_DAY\n",
"from undate.undate import UndateInterval\n",
- "from undate.dateformat.iso8601 import ISO8601DateFormat\n",
+ "from undate.converters.iso8601 import ISO8601DateFormat\n",
"\n",
"def undate_duration(start_date, end_date):\n",
" isoformat = ISO8601DateFormat()\n",
@@ -343,9 +334,8 @@
" interval = UndateInterval(earliest=unstart, latest=unend)\n",
"\n",
" # subtract one here for simplicity of comparison,\n",
- " # to reconcile difference between how duration logic\n",
- "\n",
- " return interval.duration().days - 1"
+ " # to reconcile differences between duration logic\n",
+ " return interval.duration() - ONE_DAY"
]
},
{
@@ -363,7 +353,7 @@
},
{
"cell_type": "code",
- "execution_count": 18,
+ "execution_count": 5,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/",
@@ -462,7 +452,7 @@
"260 4 months 122.0 "
]
},
- "execution_count": 18,
+ "execution_count": 5,
"metadata": {},
"output_type": "execute_result"
}
@@ -488,7 +478,7 @@
},
{
"cell_type": "code",
- "execution_count": 7,
+ "execution_count": 6,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
@@ -515,7 +505,7 @@
"Name: count, Length: 133, dtype: int64"
]
},
- "execution_count": 7,
+ "execution_count": 6,
"metadata": {},
"output_type": "execute_result"
}
@@ -527,7 +517,7 @@
},
{
"cell_type": "code",
- "execution_count": 8,
+ "execution_count": 7,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
@@ -550,7 +540,7 @@
"Name: subscription_duration_days, dtype: float64"
]
},
- "execution_count": 8,
+ "execution_count": 7,
"metadata": {},
"output_type": "execute_result"
}
@@ -568,7 +558,7 @@
},
{
"cell_type": "code",
- "execution_count": 12,
+ "execution_count": 8,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/",
@@ -599,44 +589,25 @@
" \n",
" \n",
" \n",
- " event_type \n",
+ " member_names \n",
" start_date \n",
" end_date \n",
- " member_uris \n",
- " member_names \n",
- " member_sort_names \n",
- " subscription_price_paid \n",
- " subscription_deposit \n",
" subscription_duration \n",
" subscription_duration_days \n",
- " ... \n",
- " item_uri \n",
- " item_title \n",
- " item_volume \n",
- " item_authors \n",
- " item_year \n",
- " item_notes \n",
- " source_type \n",
- " source_citation \n",
- " source_manifest \n",
- " source_image \n",
" \n",
" \n",
" \n",
" \n",
"\n",
- "0 rows Γ 28 columns
\n",
""
],
"text/plain": [
"Empty DataFrame\n",
- "Columns: [event_type, start_date, end_date, member_uris, member_names, member_sort_names, subscription_price_paid, subscription_deposit, subscription_duration, subscription_duration_days, subscription_volumes, subscription_category, subscription_purchase_date, reimbursement_refund, borrow_status, borrow_duration_days, purchase_price, currency, item_uri, item_title, item_volume, item_authors, item_year, item_notes, source_type, source_citation, source_manifest, source_image]\n",
- "Index: []\n",
- "\n",
- "[0 rows x 28 columns]"
+ "Columns: [member_names, start_date, end_date, subscription_duration, subscription_duration_days]\n",
+ "Index: []"
]
},
- "execution_count": 12,
+ "execution_count": 8,
"metadata": {},
"output_type": "execute_result"
}
@@ -648,7 +619,7 @@
},
{
"cell_type": "code",
- "execution_count": 19,
+ "execution_count": 9,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/",
@@ -717,7 +688,7 @@
"13686 NaN 31.0 "
]
},
- "execution_count": 19,
+ "execution_count": 9,
"metadata": {},
"output_type": "execute_result"
}
@@ -736,7 +707,7 @@
},
{
"cell_type": "code",
- "execution_count": 20,
+ "execution_count": 10,
"metadata": {
"id": "jwvN9-CgLQRx"
},
@@ -756,7 +727,7 @@
},
{
"cell_type": "code",
- "execution_count": 21,
+ "execution_count": 11,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/",
@@ -803,7 +774,7 @@
" 1928 \n",
" 1 year \n",
" 365.0 \n",
- " 730 \n",
+ " 730 days \n",
" \n",
" \n",
" 70 \n",
@@ -812,7 +783,7 @@
" 1932 \n",
" 1 year \n",
" 365.0 \n",
- " 730 \n",
+ " 730 days \n",
" \n",
" \n",
" 233 \n",
@@ -821,7 +792,7 @@
" 1921-08 \n",
" 1 month \n",
" 31.0 \n",
- " 61 \n",
+ " 61 days \n",
" \n",
" \n",
" 234 \n",
@@ -830,7 +801,7 @@
" 1922-02 \n",
" 5 months \n",
" 153.0 \n",
- " 180 \n",
+ " 180 days \n",
" \n",
" \n",
" 260 \n",
@@ -839,7 +810,7 @@
" 1923-10 \n",
" 4 months \n",
" 122.0 \n",
- " 152 \n",
+ " 152 days \n",
" \n",
" \n",
"\n",
@@ -853,15 +824,15 @@
"234 Anne Moderwell;Hiram Moderwell / H. K. Moderwell 1921-09 1922-02 \n",
"260 Victor Llona 1923-06 1923-10 \n",
"\n",
- " subscription_duration subscription_duration_days undate_duration \n",
- "28 1 year 365.0 730 \n",
- "70 1 year 365.0 730 \n",
- "233 1 month 31.0 61 \n",
- "234 5 months 153.0 180 \n",
- "260 4 months 122.0 152 "
+ " subscription_duration subscription_duration_days undate_duration \n",
+ "28 1 year 365.0 730 days \n",
+ "70 1 year 365.0 730 days \n",
+ "233 1 month 31.0 61 days \n",
+ "234 5 months 153.0 180 days \n",
+ "260 4 months 122.0 152 days "
]
},
- "execution_count": 21,
+ "execution_count": 11,
"metadata": {},
"output_type": "execute_result"
}
@@ -874,7 +845,7 @@
},
{
"cell_type": "code",
- "execution_count": 23,
+ "execution_count": 12,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/",
@@ -921,7 +892,7 @@
" 1928 \n",
" 1 year \n",
" 365.0 \n",
- " 730 \n",
+ " 730 days \n",
" \n",
" \n",
" 70 \n",
@@ -930,7 +901,7 @@
" 1932 \n",
" 1 year \n",
" 365.0 \n",
- " 730 \n",
+ " 730 days \n",
" \n",
" \n",
" 233 \n",
@@ -939,7 +910,7 @@
" 1921-08 \n",
" 1 month \n",
" 31.0 \n",
- " 61 \n",
+ " 61 days \n",
" \n",
" \n",
" 234 \n",
@@ -948,7 +919,7 @@
" 1922-02 \n",
" 5 months \n",
" 153.0 \n",
- " 180 \n",
+ " 180 days \n",
" \n",
" \n",
" 260 \n",
@@ -957,7 +928,7 @@
" 1923-10 \n",
" 4 months \n",
" 122.0 \n",
- " 152 \n",
+ " 152 days \n",
" \n",
" \n",
"\n",
@@ -971,15 +942,15 @@
"234 Anne Moderwell;Hiram Moderwell / H. K. Moderwell 1921-09 1922-02 \n",
"260 Victor Llona 1923-06 1923-10 \n",
"\n",
- " subscription_duration subscription_duration_days undate_duration \n",
- "28 1 year 365.0 730 \n",
- "70 1 year 365.0 730 \n",
- "233 1 month 31.0 61 \n",
- "234 5 months 153.0 180 \n",
- "260 4 months 122.0 152 "
+ " subscription_duration subscription_duration_days undate_duration \n",
+ "28 1 year 365.0 730 days \n",
+ "70 1 year 365.0 730 days \n",
+ "233 1 month 31.0 61 days \n",
+ "234 5 months 153.0 180 days \n",
+ "260 4 months 122.0 152 days "
]
},
- "execution_count": 23,
+ "execution_count": 12,
"metadata": {},
"output_type": "execute_result"
}
@@ -991,7 +962,7 @@
},
{
"cell_type": "code",
- "execution_count": 24,
+ "execution_count": 13,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/",
@@ -1039,7 +1010,7 @@
" 1928 \n",
" 1 year \n",
" 365.0 \n",
- " 730 \n",
+ " 730 days \n",
" 365.0 \n",
" \n",
" \n",
@@ -1049,7 +1020,7 @@
" 1932 \n",
" 1 year \n",
" 365.0 \n",
- " 730 \n",
+ " 730 days \n",
" 365.0 \n",
" \n",
" \n",
@@ -1059,7 +1030,7 @@
" 1921-08 \n",
" 1 month \n",
" 31.0 \n",
- " 61 \n",
+ " 61 days \n",
" 30.0 \n",
" \n",
" \n",
@@ -1069,7 +1040,7 @@
" 1922-02 \n",
" 5 months \n",
" 153.0 \n",
- " 180 \n",
+ " 180 days \n",
" 27.0 \n",
" \n",
" \n",
@@ -1079,7 +1050,7 @@
" 1923-10 \n",
" 4 months \n",
" 122.0 \n",
- " 152 \n",
+ " 152 days \n",
" 30.0 \n",
" \n",
" \n",
@@ -1099,7 +1070,7 @@
" 1941-12-24 \n",
" 1 month \n",
" 30.0 \n",
- " 30 \n",
+ " 30 days \n",
" 0.0 \n",
" \n",
" \n",
@@ -1109,7 +1080,7 @@
" 1941-12-24 \n",
" 1 month \n",
" 30.0 \n",
- " 30 \n",
+ " 30 days \n",
" 0.0 \n",
" \n",
" \n",
@@ -1119,7 +1090,7 @@
" 1942-01-04 \n",
" 1 month \n",
" 31.0 \n",
- " 31 \n",
+ " 31 days \n",
" 0.0 \n",
" \n",
" \n",
@@ -1129,7 +1100,7 @@
" 1942-03-08 \n",
" 3 months \n",
" 90.0 \n",
- " 90 \n",
+ " 90 days \n",
" 0.0 \n",
" \n",
" \n",
@@ -1139,7 +1110,7 @@
" 1942-01-09 \n",
" 1 month \n",
" 31.0 \n",
- " 31 \n",
+ " 31 days \n",
" 0.0 \n",
" \n",
" \n",
@@ -1174,36 +1145,36 @@
"35118 1942-03-08 3 months 90.0 \n",
"35119 1942-01-09 1 month 31.0 \n",
"\n",
- " undate_duration duration_diff \n",
- "28 730 365.0 \n",
- "70 730 365.0 \n",
- "233 61 30.0 \n",
- "234 180 27.0 \n",
- "260 152 30.0 \n",
- "... ... ... \n",
- "35114 30 0.0 \n",
- "35115 30 0.0 \n",
- "35116 31 0.0 \n",
- "35118 90 0.0 \n",
- "35119 31 0.0 \n",
+ " undate_duration duration_diff \n",
+ "28 730 days 365.0 \n",
+ "70 730 days 365.0 \n",
+ "233 61 days 30.0 \n",
+ "234 180 days 27.0 \n",
+ "260 152 days 30.0 \n",
+ "... ... ... \n",
+ "35114 30 days 0.0 \n",
+ "35115 30 days 0.0 \n",
+ "35116 31 days 0.0 \n",
+ "35118 90 days 0.0 \n",
+ "35119 31 days 0.0 \n",
"\n",
"[9144 rows x 7 columns]"
]
},
- "execution_count": 24,
+ "execution_count": 13,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"# what's the difference between the two?\n",
- "subs_duration['duration_diff'] = subs_duration.apply(lambda row: row.undate_duration - row.subscription_duration_days, axis=1)\n",
+ "subs_duration['duration_diff'] = subs_duration.apply(lambda row: row.undate_duration.astype(\"int\") - row.subscription_duration_days, axis=1)\n",
"subs_duration"
]
},
{
"cell_type": "code",
- "execution_count": 25,
+ "execution_count": 14,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
@@ -1216,20 +1187,20 @@
"data": {
"text/plain": [
"duration_diff\n",
- " 0.0 9065\n",
- " 30.0 30\n",
- " 29.0 21\n",
- " 1.0 10\n",
- "-1.0 9\n",
- " 28.0 4\n",
- " 365.0 2\n",
- " 27.0 1\n",
- " 2.0 1\n",
- "-3.0 1\n",
+ "0.0 9065\n",
+ "30.0 30\n",
+ "29.0 21\n",
+ "1.0 10\n",
+ "-1.0 9\n",
+ "28.0 4\n",
+ "365.0 2\n",
+ "27.0 1\n",
+ "2.0 1\n",
+ "-3.0 1\n",
"Name: count, dtype: int64"
]
},
- "execution_count": 25,
+ "execution_count": 14,
"metadata": {},
"output_type": "execute_result"
}
@@ -1249,7 +1220,7 @@
},
{
"cell_type": "code",
- "execution_count": 41,
+ "execution_count": 15,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/",
@@ -1297,7 +1268,7 @@
" 1928 \n",
" 1 year \n",
" 365.0 \n",
- " 730 \n",
+ " 730 days \n",
" 365.0 \n",
" \n",
" \n",
@@ -1307,7 +1278,7 @@
" 1932 \n",
" 1 year \n",
" 365.0 \n",
- " 730 \n",
+ " 730 days \n",
" 365.0 \n",
" \n",
" \n",
@@ -1317,7 +1288,7 @@
" 1921-08 \n",
" 1 month \n",
" 31.0 \n",
- " 61 \n",
+ " 61 days \n",
" 30.0 \n",
" \n",
" \n",
@@ -1327,7 +1298,7 @@
" 1922-02 \n",
" 5 months \n",
" 153.0 \n",
- " 180 \n",
+ " 180 days \n",
" 27.0 \n",
" \n",
" \n",
@@ -1337,7 +1308,7 @@
" 1923-10 \n",
" 4 months \n",
" 122.0 \n",
- " 152 \n",
+ " 152 days \n",
" 30.0 \n",
" \n",
" \n",
@@ -1347,7 +1318,7 @@
" 1923-09 \n",
" 1 month \n",
" 31.0 \n",
- " 60 \n",
+ " 60 days \n",
" 29.0 \n",
" \n",
" \n",
@@ -1357,7 +1328,7 @@
" 1924-03 \n",
" 1 month \n",
" 29.0 \n",
- " 59 \n",
+ " 59 days \n",
" 30.0 \n",
" \n",
" \n",
@@ -1367,7 +1338,7 @@
" 1924-04 \n",
" 2 months \n",
" 60.0 \n",
- " 89 \n",
+ " 89 days \n",
" 29.0 \n",
" \n",
" \n",
@@ -1377,7 +1348,7 @@
" 1926-10 \n",
" 7 months \n",
" 214.0 \n",
- " 244 \n",
+ " 244 days \n",
" 30.0 \n",
" \n",
" \n",
@@ -1387,7 +1358,7 @@
" 1926-12 \n",
" 1 month \n",
" 30.0 \n",
- " 60 \n",
+ " 60 days \n",
" 30.0 \n",
" \n",
" \n",
@@ -1407,32 +1378,32 @@
"293 Madeleine Lorsignol 1926-03 1926-10 \n",
"313 M. Mathieu 1926-11 1926-12 \n",
"\n",
- " subscription_duration subscription_duration_days undate_duration \\\n",
- "28 1 year 365.0 730 \n",
- "70 1 year 365.0 730 \n",
- "233 1 month 31.0 61 \n",
- "234 5 months 153.0 180 \n",
- "260 4 months 122.0 152 \n",
- "261 1 month 31.0 60 \n",
- "271 1 month 29.0 59 \n",
- "272 2 months 60.0 89 \n",
- "293 7 months 214.0 244 \n",
- "313 1 month 30.0 60 \n",
+ " subscription_duration subscription_duration_days undate_duration \\\n",
+ "28 1 year 365.0 730 days \n",
+ "70 1 year 365.0 730 days \n",
+ "233 1 month 31.0 61 days \n",
+ "234 5 months 153.0 180 days \n",
+ "260 4 months 122.0 152 days \n",
+ "261 1 month 31.0 60 days \n",
+ "271 1 month 29.0 59 days \n",
+ "272 2 months 60.0 89 days \n",
+ "293 7 months 214.0 244 days \n",
+ "313 1 month 30.0 60 days \n",
"\n",
- " duration_diff \n",
- "28 365.0 \n",
- "70 365.0 \n",
- "233 30.0 \n",
- "234 27.0 \n",
- "260 30.0 \n",
- "261 29.0 \n",
- "271 30.0 \n",
- "272 29.0 \n",
- "293 30.0 \n",
- "313 30.0 "
+ " duration_diff \n",
+ "28 365.0 \n",
+ "70 365.0 \n",
+ "233 30.0 \n",
+ "234 27.0 \n",
+ "260 30.0 \n",
+ "261 29.0 \n",
+ "271 30.0 \n",
+ "272 29.0 \n",
+ "293 30.0 \n",
+ "313 30.0 "
]
},
- "execution_count": 41,
+ "execution_count": 15,
"metadata": {},
"output_type": "execute_result"
}
@@ -1445,7 +1416,7 @@
},
{
"cell_type": "code",
- "execution_count": 27,
+ "execution_count": 16,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
@@ -1472,7 +1443,7 @@
"Name: count, dtype: int64"
]
},
- "execution_count": 27,
+ "execution_count": 16,
"metadata": {},
"output_type": "execute_result"
}
@@ -1484,7 +1455,7 @@
},
{
"cell_type": "code",
- "execution_count": 43,
+ "execution_count": 17,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/",
@@ -1532,7 +1503,7 @@
" 1921-08 \n",
" 1 month \n",
" 31.0 \n",
- " 61 \n",
+ " 61 days \n",
" 30.0 \n",
" \n",
" \n",
@@ -1542,7 +1513,7 @@
" 1923-09 \n",
" 1 month \n",
" 31.0 \n",
- " 60 \n",
+ " 60 days \n",
" 29.0 \n",
" \n",
" \n",
@@ -1552,7 +1523,7 @@
" 1924-03 \n",
" 1 month \n",
" 29.0 \n",
- " 59 \n",
+ " 59 days \n",
" 30.0 \n",
" \n",
" \n",
@@ -1562,7 +1533,7 @@
" 1926-12 \n",
" 1 month \n",
" 30.0 \n",
- " 60 \n",
+ " 60 days \n",
" 30.0 \n",
" \n",
" \n",
@@ -1572,7 +1543,7 @@
" 1928-03 \n",
" 1 month \n",
" 29.0 \n",
- " 59 \n",
+ " 59 days \n",
" 30.0 \n",
" \n",
" \n",
@@ -1582,7 +1553,7 @@
" 1928-03 \n",
" 1 month \n",
" 29.0 \n",
- " 59 \n",
+ " 59 days \n",
" 30.0 \n",
" \n",
" \n",
@@ -1592,7 +1563,7 @@
" 1929-09 \n",
" 1 month \n",
" 31.0 \n",
- " 60 \n",
+ " 60 days \n",
" 29.0 \n",
" \n",
" \n",
@@ -1602,7 +1573,7 @@
" 1929-09 \n",
" 1 month \n",
" 31.0 \n",
- " 60 \n",
+ " 60 days \n",
" 29.0 \n",
" \n",
" \n",
@@ -1612,7 +1583,7 @@
" 1930-06 \n",
" 1 month \n",
" 31.0 \n",
- " 60 \n",
+ " 60 days \n",
" 29.0 \n",
" \n",
" \n",
@@ -1622,7 +1593,7 @@
" 1930-12 \n",
" 1 month \n",
" 30.0 \n",
- " 60 \n",
+ " 60 days \n",
" 30.0 \n",
" \n",
" \n",
@@ -1632,7 +1603,7 @@
" 1931-06 \n",
" 1 month \n",
" 31.0 \n",
- " 60 \n",
+ " 60 days \n",
" 29.0 \n",
" \n",
" \n",
@@ -1642,7 +1613,7 @@
" 1931-07 \n",
" 1 month \n",
" 30.0 \n",
- " 60 \n",
+ " 60 days \n",
" 30.0 \n",
" \n",
" \n",
@@ -1652,7 +1623,7 @@
" 1931-08 \n",
" 1 month \n",
" 31.0 \n",
- " 61 \n",
+ " 61 days \n",
" 30.0 \n",
" \n",
" \n",
@@ -1662,7 +1633,7 @@
" 1931-09 \n",
" 1 month \n",
" 31.0 \n",
- " 60 \n",
+ " 60 days \n",
" 29.0 \n",
" \n",
" \n",
@@ -1672,7 +1643,7 @@
" 1931-10 \n",
" 1 month \n",
" 30.0 \n",
- " 60 \n",
+ " 60 days \n",
" 30.0 \n",
" \n",
" \n",
@@ -1697,25 +1668,25 @@
"468 Elaine Cammett 1931-08 1931-09 1 month \n",
"472 Frederick McWilliam 1931-09 1931-10 1 month \n",
"\n",
- " subscription_duration_days undate_duration duration_diff \n",
- "233 31.0 61 30.0 \n",
- "261 31.0 60 29.0 \n",
- "271 29.0 59 30.0 \n",
- "313 30.0 60 30.0 \n",
- "354 29.0 59 30.0 \n",
- "356 29.0 59 30.0 \n",
- "393 31.0 60 29.0 \n",
- "394 31.0 60 29.0 \n",
- "430 31.0 60 29.0 \n",
- "444 30.0 60 30.0 \n",
- "462 31.0 60 29.0 \n",
- "464 30.0 60 30.0 \n",
- "466 31.0 61 30.0 \n",
- "468 31.0 60 29.0 \n",
- "472 30.0 60 30.0 "
+ " subscription_duration_days undate_duration duration_diff \n",
+ "233 31.0 61 days 30.0 \n",
+ "261 31.0 60 days 29.0 \n",
+ "271 29.0 59 days 30.0 \n",
+ "313 30.0 60 days 30.0 \n",
+ "354 29.0 59 days 30.0 \n",
+ "356 29.0 59 days 30.0 \n",
+ "393 31.0 60 days 29.0 \n",
+ "394 31.0 60 days 29.0 \n",
+ "430 31.0 60 days 29.0 \n",
+ "444 30.0 60 days 30.0 \n",
+ "462 31.0 60 days 29.0 \n",
+ "464 30.0 60 days 30.0 \n",
+ "466 31.0 61 days 30.0 \n",
+ "468 31.0 60 days 29.0 \n",
+ "472 30.0 60 days 30.0 "
]
},
- "execution_count": 43,
+ "execution_count": 17,
"metadata": {},
"output_type": "execute_result"
}
@@ -1738,7 +1709,7 @@
},
{
"cell_type": "code",
- "execution_count": 44,
+ "execution_count": 18,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/",
@@ -1786,7 +1757,7 @@
" 1928 \n",
" 1 year \n",
" 365.0 \n",
- " 730 \n",
+ " 730 days \n",
" 365.0 \n",
" \n",
" \n",
@@ -1796,7 +1767,7 @@
" 1932 \n",
" 1 year \n",
" 365.0 \n",
- " 730 \n",
+ " 730 days \n",
" 365.0 \n",
" \n",
" \n",
@@ -1806,7 +1777,7 @@
" 1922-02 \n",
" 5 months \n",
" 153.0 \n",
- " 180 \n",
+ " 180 days \n",
" 27.0 \n",
" \n",
" \n",
@@ -1816,7 +1787,7 @@
" 1923-10 \n",
" 4 months \n",
" 122.0 \n",
- " 152 \n",
+ " 152 days \n",
" 30.0 \n",
" \n",
" \n",
@@ -1826,7 +1797,7 @@
" 1924-04 \n",
" 2 months \n",
" 60.0 \n",
- " 89 \n",
+ " 89 days \n",
" 29.0 \n",
" \n",
" \n",
@@ -1836,7 +1807,7 @@
" 1926-10 \n",
" 7 months \n",
" 214.0 \n",
- " 244 \n",
+ " 244 days \n",
" 30.0 \n",
" \n",
" \n",
@@ -1846,7 +1817,7 @@
" 1928-02 \n",
" 11 months \n",
" 337.0 \n",
- " 365 \n",
+ " 365 days \n",
" 28.0 \n",
" \n",
" \n",
@@ -1856,7 +1827,7 @@
" 1927-10 \n",
" 3 months \n",
" 92.0 \n",
- " 122 \n",
+ " 122 days \n",
" 30.0 \n",
" \n",
" \n",
@@ -1866,7 +1837,7 @@
" 1928-06 \n",
" 8 months \n",
" 244.0 \n",
- " 273 \n",
+ " 273 days \n",
" 29.0 \n",
" \n",
" \n",
@@ -1876,7 +1847,7 @@
" 1928-04 \n",
" 3 months \n",
" 91.0 \n",
- " 120 \n",
+ " 120 days \n",
" 29.0 \n",
" \n",
" \n",
@@ -1886,7 +1857,7 @@
" 1930-04 \n",
" 10 months \n",
" 304.0 \n",
- " 333 \n",
+ " 333 days \n",
" 29.0 \n",
" \n",
" \n",
@@ -1896,7 +1867,7 @@
" 1930-04 \n",
" 3 months \n",
" 90.0 \n",
- " 119 \n",
+ " 119 days \n",
" 29.0 \n",
" \n",
" \n",
@@ -1906,7 +1877,7 @@
" 1930-04 \n",
" 3 months \n",
" 90.0 \n",
- " 119 \n",
+ " 119 days \n",
" 29.0 \n",
" \n",
" \n",
@@ -1916,7 +1887,7 @@
" 1930-09 \n",
" 8 months \n",
" 243.0 \n",
- " 272 \n",
+ " 272 days \n",
" 29.0 \n",
" \n",
" \n",
@@ -1926,7 +1897,7 @@
" 1930-06 \n",
" 4 months \n",
" 120.0 \n",
- " 149 \n",
+ " 149 days \n",
" 29.0 \n",
" \n",
" \n",
@@ -1951,42 +1922,42 @@
"412 Jacques Delmond 1930-01 1930-09 \n",
"415 Loren Mozley 1930-02 1930-06 \n",
"\n",
- " subscription_duration subscription_duration_days undate_duration \\\n",
- "28 1 year 365.0 730 \n",
- "70 1 year 365.0 730 \n",
- "234 5 months 153.0 180 \n",
- "260 4 months 122.0 152 \n",
- "272 2 months 60.0 89 \n",
- "293 7 months 214.0 244 \n",
- "321 11 months 337.0 365 \n",
- "331 3 months 92.0 122 \n",
- "337 8 months 244.0 273 \n",
- "349 3 months 91.0 120 \n",
- "388 10 months 304.0 333 \n",
- "408 3 months 90.0 119 \n",
- "409 3 months 90.0 119 \n",
- "412 8 months 243.0 272 \n",
- "415 4 months 120.0 149 \n",
+ " subscription_duration subscription_duration_days undate_duration \\\n",
+ "28 1 year 365.0 730 days \n",
+ "70 1 year 365.0 730 days \n",
+ "234 5 months 153.0 180 days \n",
+ "260 4 months 122.0 152 days \n",
+ "272 2 months 60.0 89 days \n",
+ "293 7 months 214.0 244 days \n",
+ "321 11 months 337.0 365 days \n",
+ "331 3 months 92.0 122 days \n",
+ "337 8 months 244.0 273 days \n",
+ "349 3 months 91.0 120 days \n",
+ "388 10 months 304.0 333 days \n",
+ "408 3 months 90.0 119 days \n",
+ "409 3 months 90.0 119 days \n",
+ "412 8 months 243.0 272 days \n",
+ "415 4 months 120.0 149 days \n",
"\n",
- " duration_diff \n",
- "28 365.0 \n",
- "70 365.0 \n",
- "234 27.0 \n",
- "260 30.0 \n",
- "272 29.0 \n",
- "293 30.0 \n",
- "321 28.0 \n",
- "331 30.0 \n",
- "337 29.0 \n",
- "349 29.0 \n",
- "388 29.0 \n",
- "408 29.0 \n",
- "409 29.0 \n",
- "412 29.0 \n",
- "415 29.0 "
+ " duration_diff \n",
+ "28 365.0 \n",
+ "70 365.0 \n",
+ "234 27.0 \n",
+ "260 30.0 \n",
+ "272 29.0 \n",
+ "293 30.0 \n",
+ "321 28.0 \n",
+ "331 30.0 \n",
+ "337 29.0 \n",
+ "349 29.0 \n",
+ "388 29.0 \n",
+ "408 29.0 \n",
+ "409 29.0 \n",
+ "412 29.0 \n",
+ "415 29.0 "
]
},
- "execution_count": 44,
+ "execution_count": 18,
"metadata": {},
"output_type": "execute_result"
}
@@ -2011,7 +1982,7 @@
},
{
"cell_type": "code",
- "execution_count": 32,
+ "execution_count": 19,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/",
@@ -2097,7 +2068,7 @@
"606 G. E. Pulsford --01-20 --01-28 8.0"
]
},
- "execution_count": 32,
+ "execution_count": 19,
"metadata": {},
"output_type": "execute_result"
}
@@ -2111,7 +2082,7 @@
},
{
"cell_type": "code",
- "execution_count": 33,
+ "execution_count": 20,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/",
@@ -2197,7 +2168,7 @@
"29908 Ann Samyn 1961-10-04 1962-03-21 168.0"
]
},
- "execution_count": 33,
+ "execution_count": 20,
"metadata": {},
"output_type": "execute_result"
}
@@ -2208,7 +2179,7 @@
},
{
"cell_type": "code",
- "execution_count": 34,
+ "execution_count": 21,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/",
@@ -2253,7 +2224,7 @@
" --01-07 \n",
" --01-13 \n",
" 6.0 \n",
- " 6 \n",
+ " 6 days \n",
" \n",
" \n",
" 603 \n",
@@ -2261,7 +2232,7 @@
" --01-12 \n",
" --01-20 \n",
" 8.0 \n",
- " 8 \n",
+ " 8 days \n",
" \n",
" \n",
" 604 \n",
@@ -2269,7 +2240,7 @@
" --01-16 \n",
" --02-16 \n",
" 31.0 \n",
- " 31 \n",
+ " 31 days \n",
" \n",
" \n",
" 605 \n",
@@ -2277,7 +2248,7 @@
" --01-19 \n",
" --01-24 \n",
" 5.0 \n",
- " 5 \n",
+ " 5 days \n",
" \n",
" \n",
" 606 \n",
@@ -2285,7 +2256,7 @@
" --01-20 \n",
" --01-28 \n",
" 8.0 \n",
- " 8 \n",
+ " 8 days \n",
" \n",
" \n",
" 607 \n",
@@ -2293,7 +2264,7 @@
" --01-24 \n",
" --03-20 \n",
" 55.0 \n",
- " 55 \n",
+ " 55 days \n",
" \n",
" \n",
" 608 \n",
@@ -2301,7 +2272,7 @@
" --01-24 \n",
" --03-20 \n",
" 55.0 \n",
- " 55 \n",
+ " 55 days \n",
" \n",
" \n",
" 609 \n",
@@ -2309,7 +2280,7 @@
" --01-24 \n",
" --03-20 \n",
" 55.0 \n",
- " 55 \n",
+ " 55 days \n",
" \n",
" \n",
" 610 \n",
@@ -2317,7 +2288,7 @@
" --01-24 \n",
" --05-30 \n",
" 126.0 \n",
- " 126 \n",
+ " 126 days \n",
" \n",
" \n",
" 611 \n",
@@ -2325,27 +2296,27 @@
" --01-24 \n",
" --05-30 \n",
" 126.0 \n",
- " 126 \n",
+ " 126 days \n",
" \n",
" \n",
"\n",
""
],
"text/plain": [
- " member_names start_date end_date borrow_duration_days undate_duration\n",
- "602 G. E. Pulsford --01-07 --01-13 6.0 6\n",
- "603 G. E. Pulsford --01-12 --01-20 8.0 8\n",
- "604 Robert D. Sage --01-16 --02-16 31.0 31\n",
- "605 Gertrude Stein --01-19 --01-24 5.0 5\n",
- "606 G. E. Pulsford --01-20 --01-28 8.0 8\n",
- "607 Gertrude Stein --01-24 --03-20 55.0 55\n",
- "608 Gertrude Stein --01-24 --03-20 55.0 55\n",
- "609 Gertrude Stein --01-24 --03-20 55.0 55\n",
- "610 Gertrude Stein --01-24 --05-30 126.0 126\n",
- "611 Gertrude Stein --01-24 --05-30 126.0 126"
+ " member_names start_date end_date borrow_duration_days undate_duration\n",
+ "602 G. E. Pulsford --01-07 --01-13 6.0 6 days\n",
+ "603 G. E. Pulsford --01-12 --01-20 8.0 8 days\n",
+ "604 Robert D. Sage --01-16 --02-16 31.0 31 days\n",
+ "605 Gertrude Stein --01-19 --01-24 5.0 5 days\n",
+ "606 G. E. Pulsford --01-20 --01-28 8.0 8 days\n",
+ "607 Gertrude Stein --01-24 --03-20 55.0 55 days\n",
+ "608 Gertrude Stein --01-24 --03-20 55.0 55 days\n",
+ "609 Gertrude Stein --01-24 --03-20 55.0 55 days\n",
+ "610 Gertrude Stein --01-24 --05-30 126.0 126 days\n",
+ "611 Gertrude Stein --01-24 --05-30 126.0 126 days"
]
},
- "execution_count": 34,
+ "execution_count": 21,
"metadata": {},
"output_type": "execute_result"
}
@@ -2358,7 +2329,7 @@
},
{
"cell_type": "code",
- "execution_count": 36,
+ "execution_count": 22,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/",
@@ -2404,7 +2375,7 @@
" --01-07 \n",
" --01-13 \n",
" 6.0 \n",
- " 6 \n",
+ " 6 days \n",
" 0.0 \n",
" \n",
" \n",
@@ -2413,7 +2384,7 @@
" --01-12 \n",
" --01-20 \n",
" 8.0 \n",
- " 8 \n",
+ " 8 days \n",
" 0.0 \n",
" \n",
" \n",
@@ -2422,7 +2393,7 @@
" --01-16 \n",
" --02-16 \n",
" 31.0 \n",
- " 31 \n",
+ " 31 days \n",
" 0.0 \n",
" \n",
" \n",
@@ -2431,7 +2402,7 @@
" --01-19 \n",
" --01-24 \n",
" 5.0 \n",
- " 5 \n",
+ " 5 days \n",
" 0.0 \n",
" \n",
" \n",
@@ -2440,7 +2411,7 @@
" --01-20 \n",
" --01-28 \n",
" 8.0 \n",
- " 8 \n",
+ " 8 days \n",
" 0.0 \n",
" \n",
" \n",
@@ -2449,7 +2420,7 @@
" --01-24 \n",
" --03-20 \n",
" 55.0 \n",
- " 55 \n",
+ " 55 days \n",
" 0.0 \n",
" \n",
" \n",
@@ -2458,7 +2429,7 @@
" --01-24 \n",
" --03-20 \n",
" 55.0 \n",
- " 55 \n",
+ " 55 days \n",
" 0.0 \n",
" \n",
" \n",
@@ -2467,7 +2438,7 @@
" --01-24 \n",
" --03-20 \n",
" 55.0 \n",
- " 55 \n",
+ " 55 days \n",
" 0.0 \n",
" \n",
" \n",
@@ -2476,7 +2447,7 @@
" --01-24 \n",
" --05-30 \n",
" 126.0 \n",
- " 126 \n",
+ " 126 days \n",
" 0.0 \n",
" \n",
" \n",
@@ -2485,7 +2456,7 @@
" --01-24 \n",
" --05-30 \n",
" 126.0 \n",
- " 126 \n",
+ " 126 days \n",
" 0.0 \n",
" \n",
" \n",
@@ -2493,45 +2464,45 @@
""
],
"text/plain": [
- " member_names start_date end_date borrow_duration_days \\\n",
- "602 G. E. Pulsford --01-07 --01-13 6.0 \n",
- "603 G. E. Pulsford --01-12 --01-20 8.0 \n",
- "604 Robert D. Sage --01-16 --02-16 31.0 \n",
- "605 Gertrude Stein --01-19 --01-24 5.0 \n",
- "606 G. E. Pulsford --01-20 --01-28 8.0 \n",
- "607 Gertrude Stein --01-24 --03-20 55.0 \n",
- "608 Gertrude Stein --01-24 --03-20 55.0 \n",
- "609 Gertrude Stein --01-24 --03-20 55.0 \n",
- "610 Gertrude Stein --01-24 --05-30 126.0 \n",
- "611 Gertrude Stein --01-24 --05-30 126.0 \n",
+ " member_names start_date end_date borrow_duration_days undate_duration \\\n",
+ "602 G. E. Pulsford --01-07 --01-13 6.0 6 days \n",
+ "603 G. E. Pulsford --01-12 --01-20 8.0 8 days \n",
+ "604 Robert D. Sage --01-16 --02-16 31.0 31 days \n",
+ "605 Gertrude Stein --01-19 --01-24 5.0 5 days \n",
+ "606 G. E. Pulsford --01-20 --01-28 8.0 8 days \n",
+ "607 Gertrude Stein --01-24 --03-20 55.0 55 days \n",
+ "608 Gertrude Stein --01-24 --03-20 55.0 55 days \n",
+ "609 Gertrude Stein --01-24 --03-20 55.0 55 days \n",
+ "610 Gertrude Stein --01-24 --05-30 126.0 126 days \n",
+ "611 Gertrude Stein --01-24 --05-30 126.0 126 days \n",
"\n",
- " undate_duration duration_diff \n",
- "602 6 0.0 \n",
- "603 8 0.0 \n",
- "604 31 0.0 \n",
- "605 5 0.0 \n",
- "606 8 0.0 \n",
- "607 55 0.0 \n",
- "608 55 0.0 \n",
- "609 55 0.0 \n",
- "610 126 0.0 \n",
- "611 126 0.0 "
+ " duration_diff \n",
+ "602 0.0 \n",
+ "603 0.0 \n",
+ "604 0.0 \n",
+ "605 0.0 \n",
+ "606 0.0 \n",
+ "607 0.0 \n",
+ "608 0.0 \n",
+ "609 0.0 \n",
+ "610 0.0 \n",
+ "611 0.0 "
]
},
- "execution_count": 36,
+ "execution_count": 22,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"# what's the difference between the two?\n",
- "borrow_duration['duration_diff'] = borrow_duration.apply(lambda row: row.undate_duration - row.borrow_duration_days, axis=1)\n",
+ "borrow_duration['duration_diff'] = borrow_duration.apply(lambda row: row.undate_duration.astype(\"int\") - row.borrow_duration_days, axis=1)\n",
"borrow_duration.head(10)"
]
},
{
"cell_type": "code",
- "execution_count": 37,
+ "execution_count": 23,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
@@ -2548,7 +2519,7 @@
"Name: count, dtype: int64"
]
},
- "execution_count": 37,
+ "execution_count": 23,
"metadata": {},
"output_type": "execute_result"
}
@@ -2566,14 +2537,21 @@
"source": [
"Woohoo, everything matches! π\n",
"\n",
+ "* * * \n",
+ "\n",
"In a previous run, there were two borrow events where the calculation did not match; this was due to an error in undate duration method when the start and end dates have unknown years and dates wrap to the following year (e.g., december to january), which has now been corrected.\n",
"\n",
- "**Note:** One of those events has a range (--06-07/--06-06) that looks like a data error in S&co, but the data matches what is [written on the lending card](https://shakespeareandco.princeton.edu/members/davet-yvonne/cards/cf96d38f-e651-491c-a575-131ea32ce425/#)."
+ "**Note:** One of those events has a range (--06-07/--06-06) that looks like a data error in S&co, but the data matches what is [written on the lending card](https://shakespeareandco.princeton.edu/members/davet-yvonne/cards/cf96d38f-e651-491c-a575-131ea32ce425/#).\n",
+ "\n",
+ "* * * \n",
+ "\n",
+ "In a preliminary implementation of the numpy datetime64 integration, the new earliest possible year turned out to be a leap year, resulting in the counts for Gertrude Stein's borrows from January to March to be off by one. This was corrected by adjusting the minimum year by one to ensure it is not a leap year.\n",
+ "\n"
]
},
{
"cell_type": "code",
- "execution_count": 40,
+ "execution_count": 24,
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/",
@@ -2582,54 +2560,10 @@
"id": "-Bq76gtDWljg",
"outputId": "f1ee526d-b938-4cbf-e93c-c6c91c077ae7"
},
- "outputs": [
- {
- "data": {
- "text/html": [
- "\n",
- "\n",
- "
\n",
- " \n",
- " \n",
- " \n",
- " member_names \n",
- " start_date \n",
- " end_date \n",
- " borrow_duration_days \n",
- " undate_duration \n",
- " duration_diff \n",
- " \n",
- " \n",
- " \n",
- " \n",
- "
\n",
- "
"
- ],
- "text/plain": [
- "Empty DataFrame\n",
- "Columns: [member_names, start_date, end_date, borrow_duration_days, undate_duration, duration_diff]\n",
- "Index: []"
- ]
- },
- "execution_count": 40,
- "metadata": {},
- "output_type": "execute_result"
- }
- ],
+ "outputs": [],
"source": [
- "borrow_duration[borrow_duration.duration_diff != 0]"
+ "# Confirm that we have no mismatches\n",
+ "assert len(borrow_duration[borrow_duration.duration_diff != 0]) == 0"
]
}
],
@@ -2658,7 +2592,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
- "version": "3.9.13"
+ "version": "3.12.7"
}
},
"nbformat": 4,
diff --git a/examples/ismi/README.md b/examples/use-cases/ismi/README.md
similarity index 100%
rename from examples/ismi/README.md
rename to examples/use-cases/ismi/README.md
diff --git a/examples/ismi/data/ismi-om4-date-samples.json b/examples/use-cases/ismi/data/ismi-om4-date-samples.json
similarity index 100%
rename from examples/ismi/data/ismi-om4-date-samples.json
rename to examples/use-cases/ismi/data/ismi-om4-date-samples.json
diff --git a/examples/use-cases/shakespeare-and-company-project/README.md b/examples/use-cases/shakespeare-and-company-project/README.md
new file mode 100644
index 0000000..9813fe2
--- /dev/null
+++ b/examples/use-cases/shakespeare-and-company-project/README.md
@@ -0,0 +1,24 @@
+# Data from the Shakespeare and Company Project
+
+Rebecca Sutton Koeser, Center for Digital Humanities at Princeton
+
+The [Shakespeare and Company Project](https://shakespeareandco.princeton.edu/) publishes an events dataset that documents lending library activities such as subscribing, renewing, and borrowing and returning books. Some of the dates for those events are only partially known.
+
+Dates are in ISO8601 format in one of the following formats: YYYY, YYYY-MM, YYYY-MM-DD, --MM-DD.
+
+Event dates are used for sorting, for filtering to determine if a member was active in a particular year, and for determining durations - how long a subscription lasted for, or how long a borrowed book was out. One special case is borrow events with unknown years: the Project assumes that the return was the same or successive year, so even though the years are unknown the duration can be calculated.
+
+The dataset includes durations for subscriptions and borrow events in human readable format and number of days.
+
+The [Shakespeare and Company Project codebase](https://github.com/Princeton-CDH/mep-django) that generated these datasets includes code for working with "partial dates" (this work is a precursor to `undate`). When working with the web application and database, it's possible to perform calculations and filtering that makes use of whatever parts of the date are known. Because we anticipated this would be difficult or impossible without that custom code, the datasets include the dates in ISO8601 as well as certain calculations based on those dates, including years of library membership or book circulation and duration of borrowing events and subscriptions in both human readable and machine readable form (text and count by days).
+
+Data analysis tasks that take these kinds of dates into account currently require either ignoring partially known dates or coercing them to a specific date, e.g. the first day of the month or year. (For an example of analytic time-based work on this data, see ["Missing Data, Speculative Reading"](https://doi.org/10.22148/001c.116926) by Koeser and LeBlanc, and [accompanying research code](https://github.com/rlskoeser/shxco-missingdata-specreading)). Our hope is that in the future, `undate` will make it possible to work with those partial dates instead of ignoring them.
+
+----
+
+This dataset is included here as an example for convenience. If you want to use it elsewhere, please
+reference the record with additional information, cite it properly, and make sure you're using the most recent published version.
+
+https://doi.org/10.34770/nz90-ym25
+
+
diff --git a/examples/use-cases/shakespeare-and-company-project/SCoData_events_v1.2_2022-01.csv b/examples/use-cases/shakespeare-and-company-project/SCoData_events_v1.2_2022-01.csv
new file mode 100644
index 0000000..d49e3a5
--- /dev/null
+++ b/examples/use-cases/shakespeare-and-company-project/SCoData_events_v1.2_2022-01.csv
@@ -0,0 +1,35525 @@
+ο»Ώevent_type,start_date,end_date,member_uris,member_names,member_sort_names,subscription_price_paid,subscription_deposit,subscription_duration,subscription_duration_days,subscription_volumes,subscription_category,subscription_purchase_date,reimbursement_refund,borrow_status,borrow_duration_days,purchase_price,currency,item_uri,item_title,item_volume,item_authors,item_year,item_notes,source_type,source_citation,source_manifest,source_image
+Generic,1920,,https://shakespeareandco.princeton.edu/members/linossier-raymonde/,Raymonde Linossier,"Linossier, Raymonde",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/butler-pigs-pigs/,Pigs Is Pigs,,"Butler, Ellis Parker",1906,,Lending Library Card,"Sylvia Beach, Raymonde Linossier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/53ede5bf-939d-44f5-9ddb-4dd39363bd20/manifest,https://iiif.princeton.edu/loris/figgy_prod/00%2F34%2F2f%2F00342f6fa20c49eb905cc64a929bc405%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1921,,https://shakespeareandco.princeton.edu/members/garreta/,Mme Garreta,"Garreta, Mme",,,,,,,1921,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922,1922-08-23,https://shakespeareandco.princeton.edu/members/rhys/,Mr. Rhys,"Rhys, Mr.",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/conrad-typhoon/,Typhoon,,"Conrad, Joseph",1902,,Lending Library Card,"Sylvia Beach, Rhys Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0fcf5eb6-f872-481c-a304-e45a0c9fe472/manifest,https://iiif.princeton.edu/loris/figgy_prod/67%2F3d%2F21%2F673d211972284e099df1c89a348719ce%2Fintermediate_file.jp2/full/full/0/default.jpg
+Generic,1922,,https://shakespeareandco.princeton.edu/members/walsh/,Ernest Walsh,"Walsh, Ernest",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/bennett-pretty-lady/,The Pretty Lady,,"Bennett, Arnold",1918,,Lending Library Card,"Sylvia Beach, Ernest Walsh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2ae46387-914e-4187-a60c-ae437c045257/manifest,https://iiif.princeton.edu/loris/figgy_prod/af%2F12%2F3c%2Faf123cec65dc473e8d969ad725244c75%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1922,,https://shakespeareandco.princeton.edu/members/lincoln-1/,Mr. Lincoln,"Lincoln, Mr.",,7.00,,,,,1922,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Crossed out,1923,,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/childers-riddle-sands/,The Riddle of the Sands,,"Childers, Erskine",1903,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/1d%2F01%2F1e%2F1d011e6433264ecbb94ef7bbd1882f41%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1923,1923,https://shakespeareandco.princeton.edu/members/millward-s-q/,S. Q. Millward,"Millward, S. Q.",,,,,,,1923,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1923,,https://shakespeareandco.princeton.edu/members/foulquier/,Mr. Foulquier,"Foulquier, Mr.",,,,,,,1923,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923,1923-11-07,https://shakespeareandco.princeton.edu/members/lanux-eyre-de/,Eyre de Lanux / Mrs. Pierre de Lanux,"de Lanux, Eyre",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/woolf-night-day/,Night and Day,,"Woolf, Virginia",1919,,Lending Library Card,"Sylvia Beach, Eyre de Lanux Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/83ffbc32-6c8f-4f6b-9086-3cb10c47e667/manifest,https://iiif.princeton.edu/loris/figgy_prod/c5%2F5e%2F64%2Fc55e64e4948a444680596f37654b3dcf%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1923,,https://shakespeareandco.princeton.edu/members/hefferson/,Mrs. Hefferson,"Hefferson, Mrs.",,,,,,,1923,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1923,,https://shakespeareandco.princeton.edu/members/garmel-florence/,Florence Garmel,"Garmel, Florence",,,,,,,1923,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1923,,https://shakespeareandco.princeton.edu/members/gilbert-bernard/,Bernard Gilbert,"Gilbert, Bernard",,,,,,,1923,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924,1924-10-22,https://shakespeareandco.princeton.edu/members/tery/,Simone TΓ©ry,"TΓ©ry, Simone",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/james-joyce/,James Joyce,,,,Unidentified. By or about Joyce.,Lending Library Card,"Sylvia Beach, Mlle Simone Tery Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/73d98e0e-ef4c-420e-ae77-1f51ebf786e0/manifest,https://iiif.princeton.edu/loris/figgy_prod/c2%2F27%2F79%2Fc22779e2a7da4fdba034295a4241dfbb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924,1924-10-22,https://shakespeareandco.princeton.edu/members/tery/,Simone TΓ©ry,"TΓ©ry, Simone",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/freeman-portrait-george-moore/,A Portrait of George Moore in a Study of His Work,,"Freeman, John",1922,,Lending Library Card,"Sylvia Beach, Mlle Simone Tery Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/73d98e0e-ef4c-420e-ae77-1f51ebf786e0/manifest,https://iiif.princeton.edu/loris/figgy_prod/c2%2F27%2F79%2Fc22779e2a7da4fdba034295a4241dfbb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1924,,https://shakespeareandco.princeton.edu/members/leuflet/,Miss Leuflet,"Leuflet, Miss",,,,,,,1924,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1924,,https://shakespeareandco.princeton.edu/members/hartley-marsden/,Marsden Hartley,"Hartley, Marsden",,,,,,,1924,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1924,,https://shakespeareandco.princeton.edu/members/mather-mr/,Mr. Mather,"Mather, Mr.",,,,,,,1924,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1925,,https://shakespeareandco.princeton.edu/members/childs-mary/,Mary Arnold Childs / Mrs. Ludwig Lewisohn,"Childs, Mary Arnold",,,,,,,1925,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1925,,https://shakespeareandco.princeton.edu/members/holmes-2/,Mrs. Holmes,"Holmes, Mrs.",,,,,,,1925,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1925,,https://shakespeareandco.princeton.edu/members/michaud-regis/,RΓ©gis Michaud,"Michaud, RΓ©gis",,,,,,,1925,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1925,,https://shakespeareandco.princeton.edu/members/lecurt-marthe/,Marthe Lecurt,"Lecurt, Marthe",,40.00,,,,,1925,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926,,https://shakespeareandco.princeton.edu/members/mcevoy/,Mr. McEvoy,"McEvoy, Mr.",,,,,,Free,1926,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926,1926-01-14,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/stern-tents-israel/,Tents of Israel,,"Stern, G. B.",1924,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/22%2Fdb%2F41%2F22db4193227f443ea8f5f03f3241d214%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1926,1926,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,,,165.00,FRF,https://shakespeareandco.princeton.edu/books/ouspensky-tertium-organum-third/,Tertium Organum: The Third Canon of Thought: A Key to the Enigmas of the World,,"Ouspensky, Pyotr Demianovich",1914,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/9f%2F65%2F7c%2F9f657caabb024a00820dd1156308da37%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1926,1926,https://shakespeareandco.princeton.edu/members/europe-nouvelle/,L'Europe Nouvelle,Europe Nouvelle,,,,,,,,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1927,,https://shakespeareandco.princeton.edu/members/richardson-hadley/,Hadley Richardson / Mrs. Hemingway,"Richardson, Hadley",,,,,,,1927,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1927,,https://shakespeareandco.princeton.edu/members/kenney-kenneth/,Kenneth Kenney,"Kenney, Kenneth",,,,,1,Free,1927,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1927,,https://shakespeareandco.princeton.edu/members/fribsch-g/,G. Fribsch,"Fribsch, G",,,,,,,1927,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1927,1928,https://shakespeareandco.princeton.edu/members/felkin-arthur-elliott/,Arthur Elliott Felkin,"Felkin, Arthur Elliott",,,1 year,365,,,1927,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1927,,https://shakespeareandco.princeton.edu/members/marcouse-betty/,Betty Marcouse,"Marcouse, Betty",,,,,,,1927,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1927,1931,https://shakespeareandco.princeton.edu/members/colum-padraic/,Padraic Colum,"Colum, Padraic",,,,,,,1927,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1927,,https://shakespeareandco.princeton.edu/members/hirst-m/,M. Hirst,"Hirst, M.",,,,,,,1927,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1928,,https://shakespeareandco.princeton.edu/members/canavaggia-renee/,RenΓ©e Canavaggia,"Canavaggia, RenΓ©e",,,,,,,1928,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1928,,https://shakespeareandco.princeton.edu/members/howland-l-a/,Mrs. L. A. Howland,"Howland, Mrs. L. A.",,50.00,,,,,1928,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1928,,https://shakespeareandco.princeton.edu/members/larter/,Mrs. M. Larter,"Larter, Mrs. M.",,100.00,,,,,1928,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1928,,https://shakespeareandco.princeton.edu/members/corrot-germain/,Germain Corrot,"Corrot, Germain",,,,,,,1928,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Generic,1928,,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/anderson-thirty-years-war/,My Thirty Years' War,,"Anderson, Margaret C.",1930,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Subscription,1929,,https://shakespeareandco.princeton.edu/members/mcadoo-eleanor/,Eleanor Wilson McAdoo / Mrs. W. McAdoo,"McAdoo, Eleanor Wilson",,,,,,,1929,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929,1929-03-13,https://shakespeareandco.princeton.edu/members/alvear/,Elvira de Alvear,"de Alvear, Elvira",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/yeats-later-poems/,Later Poems,,"Yeats, William Butler",1922,,Lending Library Card,"Sylvia Beach, Elvira de Alvear Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/19d09c5e-a411-40f1-99df-f07f512e3901/manifest,https://iiif.princeton.edu/loris/figgy_prod/1b%2F97%2Fdd%2F1b97dd672db940eba36ffbddce721450%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1929,,https://shakespeareandco.princeton.edu/members/josephson-matthew/,Matthew Josephson,"Josephson, Matthew",,,,,,,1929,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1930,,https://shakespeareandco.princeton.edu/members/ferguson-helen/,Helen Ferguson / Mrs. Edmonds,"Ferguson, Helen",,,,,,,1930,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1930,,https://shakespeareandco.princeton.edu/members/lemonnier-leon/,LΓ©on Lemonnier,"Lemonnier, LΓ©on",,,,,,,1930,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1930,,https://shakespeareandco.princeton.edu/members/hunt-mary/,Mary Hunt,"Hunt, Mary",,,,,,,1930,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1930,1930,https://shakespeareandco.princeton.edu/members/jones-v-m/,V. M. Jones,"Jones, V. M.",,,,,,,,,,,,,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1930,,https://shakespeareandco.princeton.edu/members/mckay-elspeth/,Elspeth McKay,"McKay, Elspeth",,,,,,,1930,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Generic,1931,,https://shakespeareandco.princeton.edu/members/robertson-william-cowper/,William Cowper Robertson / Rev. W. Cowper Robertson,"Robertson, William Cowper",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/jamieson-etymological-dictionary-scottish/,An Etymological Dictionary of the Scottish Language,,"Jamieson, John",1877,,Lending Library Card,"Sylvia Beach, W. Cowper Robertson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/33769c35-cdbb-47ab-b0b9-ca17c85798d6/manifest,https://iiif.princeton.edu/loris/figgy_prod/e5%2F5f%2F34%2Fe55f347dfb534162a1de11248ea88470%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931,1931-01-10,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/mantzius-history-theatrical-art/,A History of Theatrical Art in Ancient and Modern Times,,"Mantzius, Karl",1903,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Subscription,1931,,https://shakespeareandco.princeton.edu/members/brunel-mlle-l/,Mlle L. Brunel,"Brunel, Mlle L.",,,,,,,1931,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Generic,1931,,https://shakespeareandco.princeton.edu/members/robertson-william-cowper/,William Cowper Robertson / Rev. W. Cowper Robertson,"Robertson, William Cowper",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/stevenson-misadventures-john-nicholson/,The Misadventures of John Nicholson,,"Stevenson, Robert Louis",1885,,Lending Library Card,"Sylvia Beach, W. Cowper Robertson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/33769c35-cdbb-47ab-b0b9-ca17c85798d6/manifest,https://iiif.princeton.edu/loris/figgy_prod/e5%2F5f%2F34%2Fe55f347dfb534162a1de11248ea88470%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1931,1932,https://shakespeareandco.princeton.edu/members/hilton-roger/,Roger Hilton,"Hilton, Roger",,,,,,,1931,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1931,,https://shakespeareandco.princeton.edu/members/hamilton-diana/,Diana Hamilton,"Hamilton, Diana",,,,,,,1931,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1931,1931-01-10,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/scott-poems-walter-scott/,Poems of Walter Scott,,"Scott, Walter",,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1931,1931-01-10,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/chekhov-horse-stealers-stories/,The Horse-Stealers and Other Stories,,"Chekhov, Anton",1921,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1931,1931-01-10,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/stephens-crock-gold/,The Crock of Gold,,"Stephens, James",1912,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1931,1931-01-10,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/huxley-barren-leaves/,Those Barren Leaves,,"Huxley, Aldous",1925,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1931,1931-01-10,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/dreiser-dreiser-looks-russia/,Dreiser Looks at Russia,,"Dreiser, Theodore",1928,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1931,1931-01-10,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/barrett-jesuit-enigma/,The Jesuit Enigma,,"Barrett, E. Boyd",1927,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1931,1931-01-10,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/cross-life-times-laurence/,The Life and Times of Laurence Sterne,,"Cross, Wilbur L.",1909,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Subscription,1931,,https://shakespeareandco.princeton.edu/members/collet-madeleine/,Madeleine Collet,"Collet, Madeleine",,,,,,,1931,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1931,1931-09-16,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/beck-irish-beauties/,The Irish Beauties,,"Beck, L. Adams",1931,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1931,1931-09-16,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/ford-return-yesterday/,To Return to Yesterday: Reminiscences 1894 βΒ 1914,,"Ford, Ford Madox",1931,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Subscription,1931,,https://shakespeareandco.princeton.edu/members/arnaud/,Mr. Arnaud,"Arnaud, Mr.",,,,,,,1931,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1931,,https://shakespeareandco.princeton.edu/members/backus-mrs-f/,Mrs. A. F. Backus,"Backus, Mrs. A. F.",,,,,,,1931,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1931,,https://shakespeareandco.princeton.edu/members/drieu-la-rochelle-pierre/,Pierre Drieu la Rochelle,"Drieu la Rochelle, Pierre",,,,,,,1931,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1931,,https://shakespeareandco.princeton.edu/members/aguilar-anina-de/,Anina de Aguilar,"de Aguilar, Anina",,,,,,,1931,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1931,,https://shakespeareandco.princeton.edu/members/de-la-niece-charles/,Charles de la Niece,"de la Niece, Charles",,,,,,,1931,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1931,,https://shakespeareandco.princeton.edu/members/carll/,Mrs. D. S. Carll,"Carll, Mrs. D. S.",,,,,,,1931,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1931,,https://shakespeareandco.princeton.edu/members/clemenceau/,Mme ClΓ©menceau,"ClΓ©menceau, Mme",,,,,,,1931,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1931,,https://shakespeareandco.princeton.edu/members/fischgold-e/,E. Fischgold,"Fischgold, E.",,,,,,Day By Day,1931,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1931,,https://shakespeareandco.princeton.edu/members/mallinjoud-marcelle/,Marcelle Mallinjoud,"Mallinjoud, Marcelle",,,,,,Day By Day,1931,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1931,1932,https://shakespeareandco.princeton.edu/members/deknatel-geraldine/;https://shakespeareandco.princeton.edu/members/deknatel-william/,Geraldine Deknatel;William Deknatel,"Deknatel, Geraldine;Deknatel, William",,,1 year,365,,,1931,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1931,,https://shakespeareandco.princeton.edu/members/cleveland-margaret/,Margaret Cleveland,"Cleveland, Margaret",,,,,,,1931,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1931,1932,https://shakespeareandco.princeton.edu/members/mcculloch-1/,Mrs. Fred McCulloch,"McCulloch, Mrs. Fred",,,,,,,1931,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1932,1932,https://shakespeareandco.princeton.edu/members/allen-ruth/,Ruth Allen,"Allen, Ruth",,,,,,,,,,,,,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1932,,https://shakespeareandco.princeton.edu/members/denham/,Mrs. Denham,"Denham, Mrs.",,,,,,,1932,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1932,,https://shakespeareandco.princeton.edu/members/ballenger-miss/,Miss Ballenger,"Ballenger, Miss",,,,,,,1932,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1932,,https://shakespeareandco.princeton.edu/members/coles-2/,Mrs. Coles,"Coles, Mrs.",,,,,,,1932,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1932,,https://shakespeareandco.princeton.edu/members/baunoir-mlle-s-b/,Mlle S. B. Baunoir,"Baunoir, Mlle S. B.",,,,,,,1932,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1932,,https://shakespeareandco.princeton.edu/members/bayne-mme-h/,Mme H. Bayne,"Bayne, Mme H.",,,,,,,1932,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1932,,https://shakespeareandco.princeton.edu/members/beach-woodbridge/,Woodbridge Beach,"Beach, Woodbridge",,,,,,,1932,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1932,,https://shakespeareandco.princeton.edu/members/clement-paul/,Paul A. ClΓ©ment,"ClΓ©ment, Paul A.",,,,,,,1932,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1932,,https://shakespeareandco.princeton.edu/members/beckett/,Samuel Beckett,"Beckett, Samuel",,,,,,,1932,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1932,,https://shakespeareandco.princeton.edu/members/biddison-p/,P. Biddison,"Biddison, P.",,,,,,,1932,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1932,,https://shakespeareandco.princeton.edu/members/biele-elizabeth/,Elizabeth Biele,"Biele, Elizabeth",,,,,,,1932,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1932,,https://shakespeareandco.princeton.edu/members/jones-w-p/,W. P. Jones,"Jones, W. P.",,,,,,Day By Day,1932,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1932,,https://shakespeareandco.princeton.edu/members/mary-adams/,Mary Adams,"Adams, Mary",,,,,,,1932,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1932,,https://shakespeareandco.princeton.edu/members/bruce-patrick-henry/,Patrick Henry Bruce / P. H. Bruce,"Bruce, Patrick Henry",,,,,,,1932,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1932,,https://shakespeareandco.princeton.edu/members/david-gwenda/,Gwenda David,"David, Gwenda",,,,,,,1932,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1932,,https://shakespeareandco.princeton.edu/members/bouthillier-mme/,Mme Bouthillier,"Bouthillier, Mme",,,,,,,1932,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1932,,https://shakespeareandco.princeton.edu/members/barthelow-l/,L. Barthelow,"Barthelow, L.",,,,,,,1932,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1932,,https://shakespeareandco.princeton.edu/members/lacostes/,M. Lacostes,"Lacostes, M.",,,,,,Day By Day,1932,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1932,,https://shakespeareandco.princeton.edu/members/carroll-2/,Mrs. Carroll,"Carroll, Mrs.",,,,,,,1932,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1932,,https://shakespeareandco.princeton.edu/members/devlin-denis/,Denis Devlin,"Devlin, Denis",,,,,,,1932,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1932,,https://shakespeareandco.princeton.edu/members/lewis-g-a/,Mrs. G. A. Lewis,"Lewis, Mrs. G. A.",,,,,,Day By Day,1932,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1932,,https://shakespeareandco.princeton.edu/members/dickinson-elbra/,Elbra Dickinson,"Dickinson, Elbra",,,,,,,1932,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1932,,https://shakespeareandco.princeton.edu/members/chin-y-l/,Y. L. Chin,"Chin, Y. L.",,,,,,,1932,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1932,,https://shakespeareandco.princeton.edu/members/delcourt-yvonne/,Yvonne Delcourt,"Delcourt, Yvonne",,,,,,,1932,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1932,,https://shakespeareandco.princeton.edu/members/croghan-miss/,Miss Croghan,"Croghan, Miss",,,,,,,1932,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1932,,https://shakespeareandco.princeton.edu/members/brutton-ann/,Ann Brutton,"Brutton, Ann",,,,,,,1932,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Purchase,1932,1932,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,,,4.00,FRF,https://shakespeareandco.princeton.edu/books/bronte-poems-emily-bronte/,Poems of Emily BrontΓ«,,"BrontΓ«, Emily",1906,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/19%2Fd6%2F77%2F19d6775df9374e48a47bd74873380d58%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1932,,https://shakespeareandco.princeton.edu/members/bogdanovitch-raia/,Raia Bogdanovitch,"Bogdanovitch, Raia",,,,,,,1932,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1932,,https://shakespeareandco.princeton.edu/members/chappee-solange/,Solange (Compaignon de Marcheville) ChappΓ©e / Mme Gervais ChappΓ©e,"ChappΓ©e, Solange",,,,,,,1932,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1932,1932,https://shakespeareandco.princeton.edu/members/collet-madeleine/,Madeleine Collet,"Collet, Madeleine",,,,,,,,,,,,,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1932,,https://shakespeareandco.princeton.edu/members/gulick/,Mrs. Luther Gulick,"Gulick, Mrs. Luther",,,,,,Day By Day,1932,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1932,1932,https://shakespeareandco.princeton.edu/members/agard-walter/,Walter Agard,"Agard, Walter",,,,,1,,1932,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1933,,https://shakespeareandco.princeton.edu/members/blanchon-michel/,Michel Blanchon,"Blanchon, Michel",,,,,,,1933,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1933,,https://shakespeareandco.princeton.edu/members/chamant-mlle/,Mlle Chamant,"Chamant, Mlle",,,,,,,1933,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1933,,https://shakespeareandco.princeton.edu/members/duff-donald/,Donald Duff,"Duff, Donald",,,,,,,1933,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1933,,https://shakespeareandco.princeton.edu/members/derry/,Alexander Derry,"Derry, Alexander",,,,,,,1933,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1934,,https://shakespeareandco.princeton.edu/members/bredin/,Mme F. Bredin,"Bredin, Mme F.",,,,,,,1934,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1934,,https://shakespeareandco.princeton.edu/members/carter-e/,E. Carter,"Carter, E.",,,,,,,1934,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1934,,https://shakespeareandco.princeton.edu/members/deshages-rollande/,Rollande Deshages,"Deshages, Rollande",,,,,,,1934,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1934,,https://shakespeareandco.princeton.edu/members/davis-stuart/,Stuart Davis,"Davis, Stuart",,,,,,,1934,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1934,,https://shakespeareandco.princeton.edu/members/clift-charles/,Charles Clift,"Clift, Charles",,,,,,,1934,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1934,,https://shakespeareandco.princeton.edu/members/cayford/,Mrs. Cayford,"Cayford, Mrs.",,,,,,,1934,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1934,,https://shakespeareandco.princeton.edu/members/biade-jacques/,Jacques Biade,"Biade, Jacques",,,,,,,1934,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1934,,https://shakespeareandco.princeton.edu/members/bazaine-jean-rene/,Jean RenΓ© Bazaine,"Bazaine, Jean RenΓ©",,,,,,,1934,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1934,,https://shakespeareandco.princeton.edu/members/barrault-jean-louis/,Jean-Louis Barrault,"Barrault, Jean-Louis",,,,,,,1934,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1934,,https://shakespeareandco.princeton.edu/members/banelet-mme/,Mme Barrelet,"Barrelet, Mme",,,,,,,1934,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1934,,https://shakespeareandco.princeton.edu/members/baird-r-i/,R. I. Baird,"Baird, R. I.",,,,,,,1934,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1934,,https://shakespeareandco.princeton.edu/members/alluirsi-jean/,Jean Alluirsi,"Alluirsi, Jean",,,,,,,1934,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1934,1934-11-16,https://shakespeareandco.princeton.edu/members/peake-catherine/;https://shakespeareandco.princeton.edu/members/peake-charles/,Catherine Marie Knight Peake / Mrs. Charles Peake;Charles Peake,"Peake, Catherine;Peake, Charles",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/budgen-james-joyce-making/,James Joyce and the Making of Ulysses,,"Budgen, Frank",1934,,Lending Library Card,"Sylvia Beach, Charles Peake Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5e8684f0-17db-4d9b-8414-54b5c4613b10/manifest,https://iiif.princeton.edu/loris/figgy_prod/0c%2F02%2Fd3%2F0c02d36d98844871b535b29804599544%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1934,,https://shakespeareandco.princeton.edu/members/barrie/,RenΓ©e Barrie,"Barrie, RenΓ©e",,,,,,,1934,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1934,,https://shakespeareandco.princeton.edu/members/blaauw-a-j/,A. J. Blaauw,"Blaauw, A. J.",,,,,,,1934,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1934,,https://shakespeareandco.princeton.edu/members/borsoupzky/,M. Borsoupzky,"Borsoupzky, M.",,,,,,,1934,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1934,,https://shakespeareandco.princeton.edu/members/bostwick-muriel/,Muriel Bostwick,"Bostwick, Muriel",,,,,,,1934,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1934,,https://shakespeareandco.princeton.edu/members/bower/,Mrs. Scott Bower,"Bower, Mrs. Scott",,,,,,,1934,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1934,,https://shakespeareandco.princeton.edu/members/bowman-j-m/,J. M. Bowman,"Bowman, J. M.",,,,,,,1934,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1934,,https://shakespeareandco.princeton.edu/members/bullowa-arthur/,Arthur Bullowa,"Bullowa, Arthur",,,,,,,1934,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1934,,https://shakespeareandco.princeton.edu/members/burnett-robert/,Robert Burnett,"Burnett, Robert",,,,,,,1934,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1934,,https://shakespeareandco.princeton.edu/members/caruel/,Christine Caruel,"Caruel, Christine",,,,,,,1934,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1934,,https://shakespeareandco.princeton.edu/members/castet-jean/,Jean Castet,"Castet, Jean",,,,,,,1934,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1934,,https://shakespeareandco.princeton.edu/members/carrie-maurice/,Maurice Carrie,"Carrie, Maurice",,,,,,,1934,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1934,,https://shakespeareandco.princeton.edu/members/cuvellier/,Anne Marie Cuvellier,"Cuvellier, Anne Marie",,,,,,,1934,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1934,,https://shakespeareandco.princeton.edu/members/coestesco-michelle/,Michelle Costesco,"Costesco, Michelle",,,,,,,1934,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Purchase,1934,1934,https://shakespeareandco.princeton.edu/members/poole-kitty-wickes/,Kitty (Wickes) Poole / Miss Kitty Wickes,"Wickes, Kitty",,,,,,,,,,,12.50,FRF,https://shakespeareandco.princeton.edu/books/stevenson-inland-voyage-travels/,An Inland Voyage / Travels with a Donkey,,"Stevenson, Robert Louis",1910,,Lending Library Card,"Sylvia Beach, Kitty Wickes Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c05f1eb5-94d5-4b79-8165-35e4c6cf097e/manifest,https://iiif.princeton.edu/loris/figgy_prod/5f%2F97%2F47%2F5f97477dc38444e5bc903ab1050a6923%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1934,1934,https://shakespeareandco.princeton.edu/members/deshages-rollande/,Rollande Deshages,"Deshages, Rollande",,,,,,,,,,,,,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1935,,https://shakespeareandco.princeton.edu/members/dufau/,L. L. Dufau,"Dufau, L. L.",,,,,,,1935,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Purchase,1936,1936,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,,,14.00,FRF,https://shakespeareandco.princeton.edu/books/mackworth-time-tide/,Time and Tide,"Vol. 17, no. 34, Aug 22, 1936",,,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/2b%2Fa0%2Fc0%2F2ba0c08ed72a4180840f0a539fc4a4ac%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1936,1936,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/mackworth-time-tide/,Time and Tide,"Vol. 17, no. 24, Jun 13, 1936",,,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/2b%2Fa0%2Fc0%2F2ba0c08ed72a4180840f0a539fc4a4ac%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1936,1936-12-04,https://shakespeareandco.princeton.edu/members/mespoulet-suzanne/,Suzanne Mespoulet,"Mespoulet, Suzanne",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/dobree-restoration-comedy-1660/,"Restoration Comedy, 1660 β 1720",,"DobrΓ©e, Bonamy",1924,,Lending Library Card,"Sylvia Beach, Suzanne Mespoulet Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2b02721e-30c2-4736-9895-b687d07f80ce/manifest,https://iiif.princeton.edu/loris/figgy_prod/67%2Fa2%2F40%2F67a2409241794de184bdd5bfd312bd69%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1936,,https://shakespeareandco.princeton.edu/members/albanese-joseph/,Joseph Albanese,"Albanese, Joseph",,,,,,,1936,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Purchase,1936,1936,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/mackworth-time-tide/,Time and Tide,"Vol. 17, no. 26, Jun 27, 1936",,,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/2b%2Fa0%2Fc0%2F2ba0c08ed72a4180840f0a539fc4a4ac%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1936,1936,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/mackworth-time-tide/,Time and Tide,"Vol. 17, no. 33, Aug 15, 1936",,,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/2b%2Fa0%2Fc0%2F2ba0c08ed72a4180840f0a539fc4a4ac%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1936,,https://shakespeareandco.princeton.edu/members/downes-gladys/,Gladys Downes,"Downes, Gladys",,,,,,,1936,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Crossed out,1936,,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/auden-poets-tongue-anthology/,The Poet's Tongue: An Anthology,,,1935,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/2b%2Fa0%2Fc0%2F2ba0c08ed72a4180840f0a539fc4a4ac%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1936,1936,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,,,5.00,FRF,https://shakespeareandco.princeton.edu/books/croly-new-republic/,The New Republic,"Vol. 88, no. 1138, Sep 23, 1936",,,"Antoinette Bernheim's lending library card includes the following notation next to her borrow on March 1, 1939: 39/10/2. There is no issue of *The New Republic* on that date.",Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/2b%2Fa0%2Fc0%2F2ba0c08ed72a4180840f0a539fc4a4ac%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1937,1937,https://shakespeareandco.princeton.edu/members/cassaigne/,Ella Cassaigne,"Cassaigne, Ella",,,,,,,,,,,62.00,FRF,https://shakespeareandco.princeton.edu/books/mansfield-poems/,Poems,,"Mansfield, Katherine",1923,,Lending Library Card,"Sylvia Beach, Ella Cassaigne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f8c899e2-13f2-46f2-8826-730b5aa8b739/manifest,https://iiif.princeton.edu/loris/figgy_prod/52%2F0d%2Fd2%2F520dd28c7cf04679a452629b8eb899f7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Generic,1937,,https://shakespeareandco.princeton.edu/members/felder/,Mrs. Thomas J. Felder,"Felder, Mrs. Thomas J.",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/faulkner-light-august/,Light in August,,"Faulkner, William",1932,,Lending Library Card,"Sylvia Beach, Felder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ae8024df-29c2-4bc5-8e81-a46c21ed28c7/manifest,https://iiif-cloud.princeton.edu/iiif/2/02%2Fcb%2F4f%2F02cb4f85bb5745318aa8bdbe0049f11c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1937,1937-06-01,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/day-lewis-friendly-tree/,The Friendly Tree,,"Day Lewis, C.",1936,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/6d%2F74%2F3d%2F6d743d9d611c446d8d70cccf2d28abfd%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1937,1937-12-08,https://shakespeareandco.princeton.edu/members/rirachowsky-fanny/,Fanny Rirachowsky,"Rirachowsky, Fanny",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/spender-poems/,Poems,,"Spender, Stephen",1933,,Lending Library Card,"Sylvia Beach, Fanny Rirachowsky Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ed53891-0a1b-4bc4-8b10-d7d32f46663a/manifest,https://iiif-cloud.princeton.edu/iiif/2/b8%2F1a%2F16%2Fb81a166a0c2042a6af25144f8f30cd68%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1937,1937,https://shakespeareandco.princeton.edu/members/cassaigne/,Ella Cassaigne,"Cassaigne, Ella",,,,,,,,,,,25.35,FRF,https://shakespeareandco.princeton.edu/books/eliot-strange-gods/,After Strange Gods,,"Eliot, T. S.",1934,,Lending Library Card,"Sylvia Beach, Ella Cassaigne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f8c899e2-13f2-46f2-8826-730b5aa8b739/manifest,https://iiif.princeton.edu/loris/figgy_prod/87%2F7b%2F5b%2F877b5b47e37640f293a5bec5b56bef2b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1937,1937-12-08,https://shakespeareandco.princeton.edu/members/rirachowsky-fanny/,Fanny Rirachowsky,"Rirachowsky, Fanny",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/tagore-home-world/,The Home and the World,,"Tagore, Rabindranath",1919,,Lending Library Card,"Sylvia Beach, Fanny Rirachowsky Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ed53891-0a1b-4bc4-8b10-d7d32f46663a/manifest,https://iiif-cloud.princeton.edu/iiif/2/b8%2F1a%2F16%2Fb81a166a0c2042a6af25144f8f30cd68%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1937,1937-12-08,https://shakespeareandco.princeton.edu/members/rirachowsky-fanny/,Fanny Rirachowsky,"Rirachowsky, Fanny",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/garnett-lady-fox/,Lady into Fox,,"Garnett, David",1922,,Lending Library Card,"Sylvia Beach, Fanny Rirachowsky Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ed53891-0a1b-4bc4-8b10-d7d32f46663a/manifest,https://iiif-cloud.princeton.edu/iiif/2/b8%2F1a%2F16%2Fb81a166a0c2042a6af25144f8f30cd68%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1937,1937-12-08,https://shakespeareandco.princeton.edu/members/rirachowsky-fanny/,Fanny Rirachowsky,"Rirachowsky, Fanny",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/hemingway-green-hills-africa/,Green Hills of Africa,,"Hemingway, Ernest",1935,,Lending Library Card,"Sylvia Beach, Fanny Rirachowsky Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ed53891-0a1b-4bc4-8b10-d7d32f46663a/manifest,https://iiif-cloud.princeton.edu/iiif/2/b8%2F1a%2F16%2Fb81a166a0c2042a6af25144f8f30cd68%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1937,1937-12-08,https://shakespeareandco.princeton.edu/members/rirachowsky-fanny/,Fanny Rirachowsky,"Rirachowsky, Fanny",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/dos-passos-manhattan-transfer/,Manhattan Transfer,,"Dos Passos, John",1925,,Lending Library Card,"Sylvia Beach, Fanny Rirachowsky Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ed53891-0a1b-4bc4-8b10-d7d32f46663a/manifest,https://iiif-cloud.princeton.edu/iiif/2/b8%2F1a%2F16%2Fb81a166a0c2042a6af25144f8f30cd68%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1938,1938-06-23,https://shakespeareandco.princeton.edu/members/bertrand-fontaine-therese/,Thérèse Bertrand-Fontaine,"Bertrand-Fontaine, Thérèse",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/carr-wake-dead/,To Wake the Dead,,"Carr, John Dickson",1937,,Lending Library Card,"Sylvia Beach, René Leibowitz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3d15242a-3082-4b25-a0c8-f66a9a7ec2b8/manifest,https://iiif-cloud.princeton.edu/iiif/2/2b%2F4c%2Fb8%2F2b4cb8fd7ec14f368c82dae0ebed95b2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1938,,https://shakespeareandco.princeton.edu/members/sonnabend-2/,Sonnabend,Sonnabend,,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/masters-across-spoon-river/,Across Spoon River: An Autobiography,,"Masters, Edgar Lee",1936,,Lending Library Card,"Sylvia Beach, RenΓ© Leibowitz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3d15242a-3082-4b25-a0c8-f66a9a7ec2b8/manifest,https://iiif-cloud.princeton.edu/iiif/2/2b%2F4c%2Fb8%2F2b4cb8fd7ec14f368c82dae0ebed95b2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1938,,https://shakespeareandco.princeton.edu/members/sonnabend-2/,Sonnabend,Sonnabend,,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/wolfe-story-novel/,The Story of a Novel,,"Wolfe, Thomas",1936,,Lending Library Card,"Sylvia Beach, RenΓ© Leibowitz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3d15242a-3082-4b25-a0c8-f66a9a7ec2b8/manifest,https://iiif-cloud.princeton.edu/iiif/2/2b%2F4c%2Fb8%2F2b4cb8fd7ec14f368c82dae0ebed95b2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1938,,https://shakespeareandco.princeton.edu/members/lafleur/,Mlle Lafleur,"Lafleur, Mlle",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/frankau-everywoman-novel/,Everywoman: A Novel,,"Frankau, Gilbert",1933,,Lending Library Card,"Sylvia Beach, RenΓ© Leibowitz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3d15242a-3082-4b25-a0c8-f66a9a7ec2b8/manifest,https://iiif-cloud.princeton.edu/iiif/2/2b%2F4c%2Fb8%2F2b4cb8fd7ec14f368c82dae0ebed95b2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1938,,https://shakespeareandco.princeton.edu/members/alexandre/,M. Alexandre,"Alexandre, M.",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/hobbes-leviathan/,Leviathan,,"Hobbes, Thomas",1651,,Lending Library Card,"Sylvia Beach, RenΓ© Leibowitz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3d15242a-3082-4b25-a0c8-f66a9a7ec2b8/manifest,https://iiif-cloud.princeton.edu/iiif/2/2b%2F4c%2Fb8%2F2b4cb8fd7ec14f368c82dae0ebed95b2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1938,,https://shakespeareandco.princeton.edu/members/gereblon/,Gereblon,Gereblon,,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/anthony-catherine-great/,Catherine the Great,,"Anthony, Katharine Susan",1925,,Lending Library Card,"Sylvia Beach, RenΓ© Leibowitz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3d15242a-3082-4b25-a0c8-f66a9a7ec2b8/manifest,https://iiif-cloud.princeton.edu/iiif/2/2b%2F4c%2Fb8%2F2b4cb8fd7ec14f368c82dae0ebed95b2%2Fintermediate_file/full/full/0/default.jpg
+Generic,1938,,https://shakespeareandco.princeton.edu/members/steegmuller-francis/,Francis Steegmuller,"Steegmuller, Francis",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/fielding-history-tom-jones/,"The History of Tom Jones, a Foundling",,"Fielding, Henry",1749,,Lending Library Card,"Sylvia Beach, Francis Steegmuller Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f82f5cbd-8c78-424f-84a4-edd0e1f5044d/manifest,https://iiif.princeton.edu/loris/figgy_prod/9d%2Fe0%2Fb4%2F9de0b4edc30f41169ea8317cd81b48d4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1938,1938,https://shakespeareandco.princeton.edu/members/delimal-eric/,Eric Delimal,"Delimal, Eric",,,,,,,,,,,60.00,FRF,https://shakespeareandco.princeton.edu/books/kipling-mowgli-stories/,All the Mowgli Stories,,"Kipling, Rudyard",1933,,Lending Library Card,"Sylvia Beach, Eric Delimal Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1b0a6a78-3b26-43d5-9c11-bd9e28da591a/manifest,https://iiif.princeton.edu/loris/figgy_prod/72%2F6b%2F31%2F726b3181a1a64f6cae5af8a9d672607a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1938,,https://shakespeareandco.princeton.edu/members/gereblon/,Gereblon,Gereblon,,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/peter-great/,Peter the Great,,,,"Unidentified. Jacob Abbott's *Peter the Great* (1900), Stephen Graham's *Peter the Great* (1929), or Alexsei Tolstoy's *Peter the Great* (1936), etc.",Lending Library Card,"Sylvia Beach, RenΓ© Leibowitz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3d15242a-3082-4b25-a0c8-f66a9a7ec2b8/manifest,https://iiif-cloud.princeton.edu/iiif/2/2b%2F4c%2Fb8%2F2b4cb8fd7ec14f368c82dae0ebed95b2%2Fintermediate_file/full/full/0/default.jpg
+Generic,1938,,https://shakespeareandco.princeton.edu/members/steegmuller-francis/,Francis Steegmuller,"Steegmuller, Francis",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/smollett-adventures-roderick-random/,The Adventures of Roderick Random,,"Smollett, Tobias",1748,,Lending Library Card,"Sylvia Beach, Francis Steegmuller Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f82f5cbd-8c78-424f-84a4-edd0e1f5044d/manifest,https://iiif.princeton.edu/loris/figgy_prod/9d%2Fe0%2Fb4%2F9de0b4edc30f41169ea8317cd81b48d4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Generic,1938,,https://shakespeareandco.princeton.edu/members/steegmuller-francis/,Francis Steegmuller,"Steegmuller, Francis",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/unidentified-detective-novel/,[a good detective story],,,,"Unidentified. Lending library card includes the note, ""A good detective story not by Agatha Christie or David Frome.""",Lending Library Card,"Sylvia Beach, Francis Steegmuller Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f82f5cbd-8c78-424f-84a4-edd0e1f5044d/manifest,https://iiif.princeton.edu/loris/figgy_prod/9d%2Fe0%2Fb4%2F9de0b4edc30f41169ea8317cd81b48d4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1938,1938-12-06,https://shakespeareandco.princeton.edu/members/bernheim-antoinette/,Antoinette Bernheim,"Bernheim, Antoinette",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/stephens-crock-gold/,The Crock of Gold,,"Stephens, James",1912,,Lending Library Card,"Sylvia Beach, Antoinette Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5b0acd5e-3121-468b-8dc7-846b4a08dafb/manifest,https://iiif-cloud.princeton.edu/iiif/2/eb%2F7a%2F03%2Feb7a0304ade94735897bd92d3379f6a1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1938,1938-06-25,https://shakespeareandco.princeton.edu/members/bertrand-fontaine-therese/,Thérèse Bertrand-Fontaine,"Bertrand-Fontaine, Thérèse",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/bridge-enchanters-nightshade/,Enchanter's Nightshade,,"Bridge, Ann",1937,,Lending Library Card,"Sylvia Beach, René Leibowitz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3d15242a-3082-4b25-a0c8-f66a9a7ec2b8/manifest,https://iiif-cloud.princeton.edu/iiif/2/2b%2F4c%2Fb8%2F2b4cb8fd7ec14f368c82dae0ebed95b2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1938,1938-07-29,https://shakespeareandco.princeton.edu/members/mattos/,Mattos,Mattos,,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/jane-austen/,Jane Austen,,,,Unidentified. By or about Jane Austen.,Lending Library Card,"Sylvia Beach, RenΓ© Leibowitz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3d15242a-3082-4b25-a0c8-f66a9a7ec2b8/manifest,https://iiif-cloud.princeton.edu/iiif/2/2b%2F4c%2Fb8%2F2b4cb8fd7ec14f368c82dae0ebed95b2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1938,1938-05-14,https://shakespeareandco.princeton.edu/members/nguyen-minh-truyet/,NguyΓͺn Minh Truyet,NguyΓͺn Minh Truyet,,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/artemus-ward/,Artemus Ward,,,,Unidentified. By or about Ward.,Lending Library Card,"Sylvia Beach, RenΓ© Leibowitz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3d15242a-3082-4b25-a0c8-f66a9a7ec2b8/manifest,https://iiif-cloud.princeton.edu/iiif/2/2b%2F4c%2Fb8%2F2b4cb8fd7ec14f368c82dae0ebed95b2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1938,1938-05-16,https://shakespeareandco.princeton.edu/members/vincens/,Vincens,Vincens,,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/hanighen-secret-war-war/,The Secret War: The War for Oil,,"Hanighen, Frank Cleary",1934,,Lending Library Card,"Sylvia Beach, RenΓ© Leibowitz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3d15242a-3082-4b25-a0c8-f66a9a7ec2b8/manifest,https://iiif-cloud.princeton.edu/iiif/2/2b%2F4c%2Fb8%2F2b4cb8fd7ec14f368c82dae0ebed95b2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1938,1938-05-16,https://shakespeareandco.princeton.edu/members/vincens/,Vincens,Vincens,,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/osborn-freud-marx-dialectical/,Freud and Marx: A Dialectical Study,,"Osborn, R.",1937,,Lending Library Card,"Sylvia Beach, RenΓ© Leibowitz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3d15242a-3082-4b25-a0c8-f66a9a7ec2b8/manifest,https://iiif-cloud.princeton.edu/iiif/2/2b%2F4c%2Fb8%2F2b4cb8fd7ec14f368c82dae0ebed95b2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1938,1938-06-23,https://shakespeareandco.princeton.edu/members/bertrand-fontaine-therese/,Thérèse Bertrand-Fontaine,"Bertrand-Fontaine, Thérèse",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/charteris-ace-knaves/,The Ace of Knaves,,"Charteris, Leslie",1937,,Lending Library Card,"Sylvia Beach, René Leibowitz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3d15242a-3082-4b25-a0c8-f66a9a7ec2b8/manifest,https://iiif-cloud.princeton.edu/iiif/2/2b%2F4c%2Fb8%2F2b4cb8fd7ec14f368c82dae0ebed95b2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1938,1938-05-18,https://shakespeareandco.princeton.edu/members/gros-2/,Gros,Gros,,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/leavis-new-bearings-english/,New Bearings in English Poetry,,"Leavis, F. R.",1932,,Lending Library Card,"Sylvia Beach, RenΓ© Leibowitz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3d15242a-3082-4b25-a0c8-f66a9a7ec2b8/manifest,https://iiif-cloud.princeton.edu/iiif/2/2b%2F4c%2Fb8%2F2b4cb8fd7ec14f368c82dae0ebed95b2%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1939,1939,https://shakespeareandco.princeton.edu/members/campbell-arlen/,Arlen Campbell,"Campbell, Arlen",,,,,,,,,,,166.50,FRF,https://shakespeareandco.princeton.edu/books/menninger-man/,Man against Himself,,"Menninger, Karl",1938,,Lending Library Card,"Sylvia Beach, Arlen Campbell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/963e333d-0170-4f91-812c-6fd10fe8bd1b/manifest,https://iiif.princeton.edu/loris/figgy_prod/f8%2F28%2F5a%2Ff8285a0802434dff8abc6e66442842cd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Gift,1940,,https://shakespeareandco.princeton.edu/members/clizbe/,Mrs. Clizbe/Clizby,"Clizbe, Mrs.",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/wilson-paris-parade/,Paris on Parade,,"Wilson, Robert Forrest",1924,,Lending Library Card,"Sylvia Beach, Mrs. Clizby Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/65d9a7da-9c66-4829-af46-9cd670865ae8/manifest,https://iiif.princeton.edu/loris/figgy_prod/ad%2Fec%2F8b%2Fadec8b407ff24566b5de6de3262d85e0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Request,1940,,https://shakespeareandco.princeton.edu/members/campbell-arlen/,Arlen Campbell,"Campbell, Arlen",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/steinbeck-steinbecks-new-one/,[Steinbeck's new one],,"Steinbeck, John",,"Unidentified. ""Steinbeck's new one"": likely *The Grapes of Wrath* (1939).",Lending Library Card,"Sylvia Beach, Arlen Campbell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/963e333d-0170-4f91-812c-6fd10fe8bd1b/manifest,https://iiif.princeton.edu/loris/figgy_prod/f8%2F28%2F5a%2Ff8285a0802434dff8abc6e66442842cd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1940,1940-09-14,https://shakespeareandco.princeton.edu/members/claudius/,Agnes Claudius,"Claudius, Agnes",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/punch-judy/,Punch and Judy,,,,Unidentified. Likely John Dickson Carr's [*Punch and Judy Murders*](https://shakespeareandco.princeton.edu/books/carr-punch-judy-murders/) (1937).,Lending Library Card,"Sylvia Beach, Agnes Claudius Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18a9262d-8ea3-4d0c-9b36-8a1c638950fa/manifest,https://iiif.princeton.edu/loris/figgy_prod/82%2Fe2%2Fe7%2F82e2e7ca29c046659436f7907910e4c8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Request,1940,,https://shakespeareandco.princeton.edu/members/campbell-arlen/,Arlen Campbell,"Campbell, Arlen",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/bowen-death-heart/,The Death of the Heart,,"Bowen, Elizabeth",1938,,Lending Library Card,"Sylvia Beach, Arlen Campbell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/963e333d-0170-4f91-812c-6fd10fe8bd1b/manifest,https://iiif.princeton.edu/loris/figgy_prod/f8%2F28%2F5a%2Ff8285a0802434dff8abc6e66442842cd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Gift,1940,,https://shakespeareandco.princeton.edu/members/clizbe/,Mrs. Clizbe/Clizby,"Clizbe, Mrs.",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/portuguese-dictionary/,Portuguese Dictionary,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Mrs. Clizby Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/65d9a7da-9c66-4829-af46-9cd670865ae8/manifest,https://iiif.princeton.edu/loris/figgy_prod/ad%2Fec%2F8b%2Fadec8b407ff24566b5de6de3262d85e0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Gift,1940,,https://shakespeareandco.princeton.edu/members/clizbe/,Mrs. Clizbe/Clizby,"Clizbe, Mrs.",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/hugos-portuguese-simplified/,Hugo's Portuguese Simplified,,,1929,,Lending Library Card,"Sylvia Beach, Mrs. Clizby Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/65d9a7da-9c66-4829-af46-9cd670865ae8/manifest,https://iiif.princeton.edu/loris/figgy_prod/ad%2Fec%2F8b%2Fadec8b407ff24566b5de6de3262d85e0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1942,,https://shakespeareandco.princeton.edu/members/theves/,Elizabeth Theves / Elizabeth Jachiet / Mme Jean Theves,"Theves, Elizabeth",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/defoe-moll-flanders/,Moll Flanders,,"Defoe, Daniel",1722,,Lending Library Card,"Sylvia Beach, Elizabeth Theves Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ff5ce168-2276-4cd3-bdbf-bfe032c4e831/manifest,https://iiif.princeton.edu/loris/figgy_prod/2d%2F2b%2Fac%2F2d2bac92df2b4a26b1438b3751b9c9df%2Fintermediate_file.jp2/full/full/0/default.jpg
+Generic,1943,,https://shakespeareandco.princeton.edu/members/bernheim-francoise/,FranΓ§oise Bernheim,"Bernheim, FranΓ§oise",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/wright-native/,Native Son,,"Wright, Richard",1940,"On December 4, 1946, Sylvia Beach sent a copies of *Black Boy* and *Native Son* to Jean DenoΓ«l, who was helping to arrange for Italian translations of Wright's work.",Lending Library Card,"Sylvia Beach, FranΓ§oise Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5e7f717b-973d-41b9-8fbb-c14306386d92/manifest,https://iiif-cloud.princeton.edu/iiif/2/66%2F4a%2F6a%2F664a6a31d5714141885aa7f7f7019fe8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1944,1944-07-24,https://shakespeareandco.princeton.edu/members/vigan/,Monique de Vigan,"de Vigan, Monique",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/jefferies-bevis/,Bevis,,"Jefferies, Richard",1882,,Lending Library Card,"Sylvia Beach, Mlle Monique de Vigan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9d1f844b-08c2-43d8-955e-202b0e6355dd/manifest,https://iiif.princeton.edu/loris/figgy_prod/01%2F7f%2F52%2F017f5280c54b453bb5d5c154ba3e799a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1944,1944-07-24,https://shakespeareandco.princeton.edu/members/vigan/,Monique de Vigan,"de Vigan, Monique",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/hawthorne-snow-image-twice/,The Snow-Image and Other Twice-Told Tales,,"Hawthorne, Nathaniel",1851,,Lending Library Card,"Sylvia Beach, Mlle Monique de Vigan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9d1f844b-08c2-43d8-955e-202b0e6355dd/manifest,https://iiif.princeton.edu/loris/figgy_prod/01%2F7f%2F52%2F017f5280c54b453bb5d5c154ba3e799a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1944,,https://shakespeareandco.princeton.edu/members/wendel/,Hélène de Wendel / Comtesse de Noailles,"de Wendel, Hélène",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/ashton-swan-usk-historical/,The Swan of Usk: A Historical Novel,,"Ashton, Helen",1940,,Lending Library Card,"Sylvia Beach, Madame Hélène Wendel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c70e230a-8313-4c53-9939-22beb5f809b6/manifest,https://iiif-cloud.princeton.edu/iiif/2/0c%2F51%2Fb2%2F0c51b25af4744ae7be034c7ecee1384f%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1944,1944-07-24,https://shakespeareandco.princeton.edu/members/vigan/,Monique de Vigan,"de Vigan, Monique",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/hearn-east-reveries-studies/,Out of the East: Reveries and Studies in New Japan,,"Hearn, Lafcadio",1895,,Lending Library Card,"Sylvia Beach, Mlle Monique de Vigan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9d1f844b-08c2-43d8-955e-202b0e6355dd/manifest,https://iiif.princeton.edu/loris/figgy_prod/01%2F7f%2F52%2F017f5280c54b453bb5d5c154ba3e799a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1946,1946-11-03,https://shakespeareandco.princeton.edu/members/wright-ellen/,Ellen Wright / Mrs. Richard Wright,"Wright, Ellen",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/dunne-serial-universe/,The Serial Universe,,"Dunne, J. W.",1934,,Lending Library Card,"Sylvia Beach, Ellen Wright Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c75b7497-bd68-4f99-ae07-b9751bda9731/manifest,https://iiif.princeton.edu/loris/figgy_prod/13%2Fe8%2F39%2F13e839f94ac344f7bc0a5793c5c4df80%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1948,1948-10,https://shakespeareandco.princeton.edu/members/vigan/,Monique de Vigan,"de Vigan, Monique",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/maccarthy-life-letters/,Life and Letters,Mar 1948,,,,Lending Library Card,"Sylvia Beach, Mlle Monique de Vigan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9d1f844b-08c2-43d8-955e-202b0e6355dd/manifest,https://iiif.princeton.edu/loris/figgy_prod/9d%2Fd0%2Ff0%2F9dd0f0f0d3d646afae1eaa69e5cd6ce4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1948,1948-10,https://shakespeareandco.princeton.edu/members/vigan/,Monique de Vigan,"de Vigan, Monique",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/maccarthy-life-letters/,Life and Letters,"Vol. 25, no. 33, May 1948",,,,Lending Library Card,"Sylvia Beach, Mlle Monique de Vigan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9d1f844b-08c2-43d8-955e-202b0e6355dd/manifest,https://iiif.princeton.edu/loris/figgy_prod/9d%2Fd0%2Ff0%2F9dd0f0f0d3d646afae1eaa69e5cd6ce4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1948,1948-10,https://shakespeareandco.princeton.edu/members/vigan/,Monique de Vigan,"de Vigan, Monique",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/hemingway-green-hills-africa/,Green Hills of Africa,,"Hemingway, Ernest",1935,,Lending Library Card,"Sylvia Beach, Mlle Monique de Vigan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9d1f844b-08c2-43d8-955e-202b0e6355dd/manifest,https://iiif.princeton.edu/loris/figgy_prod/9d%2Fd0%2Ff0%2F9dd0f0f0d3d646afae1eaa69e5cd6ce4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1948,1948-10,https://shakespeareandco.princeton.edu/members/vigan/,Monique de Vigan,"de Vigan, Monique",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/greene-brighton-rock/,Brighton Rock,,"Greene, Graham",1938,,Lending Library Card,"Sylvia Beach, Mlle Monique de Vigan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9d1f844b-08c2-43d8-955e-202b0e6355dd/manifest,https://iiif.princeton.edu/loris/figgy_prod/9d%2Fd0%2Ff0%2F9dd0f0f0d3d646afae1eaa69e5cd6ce4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1948,1948-10,https://shakespeareandco.princeton.edu/members/vigan/,Monique de Vigan,"de Vigan, Monique",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/day-lewis-starting-point/,Starting Point,,"Day Lewis, C.",1937,,Lending Library Card,"Sylvia Beach, Mlle Monique de Vigan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9d1f844b-08c2-43d8-955e-202b0e6355dd/manifest,https://iiif.princeton.edu/loris/figgy_prod/9d%2Fd0%2Ff0%2F9dd0f0f0d3d646afae1eaa69e5cd6ce4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1948,1948-10,https://shakespeareandco.princeton.edu/members/vigan/,Monique de Vigan,"de Vigan, Monique",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/orwell-clergymans-daughter/,The Clergyman's Daughter,,"Orwell, George",1935,,Lending Library Card,"Sylvia Beach, Mlle Monique de Vigan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9d1f844b-08c2-43d8-955e-202b0e6355dd/manifest,https://iiif.princeton.edu/loris/figgy_prod/9d%2Fd0%2Ff0%2F9dd0f0f0d3d646afae1eaa69e5cd6ce4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1948,1948-10,https://shakespeareandco.princeton.edu/members/vigan/,Monique de Vigan,"de Vigan, Monique",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/chesterton-return-don-quixote/,The Return of Don Quixote,,"Chesterton, G. K.",1927,,Lending Library Card,"Sylvia Beach, Mlle Monique de Vigan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9d1f844b-08c2-43d8-955e-202b0e6355dd/manifest,https://iiif.princeton.edu/loris/figgy_prod/9d%2Fd0%2Ff0%2F9dd0f0f0d3d646afae1eaa69e5cd6ce4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1948,1948-10,https://shakespeareandco.princeton.edu/members/vigan/,Monique de Vigan,"de Vigan, Monique",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/bennett-pretty-lady/,The Pretty Lady,,"Bennett, Arnold",1918,,Lending Library Card,"Sylvia Beach, Mlle Monique de Vigan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9d1f844b-08c2-43d8-955e-202b0e6355dd/manifest,https://iiif.princeton.edu/loris/figgy_prod/9d%2Fd0%2Ff0%2F9dd0f0f0d3d646afae1eaa69e5cd6ce4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1948,1948-10,https://shakespeareandco.princeton.edu/members/vigan/,Monique de Vigan,"de Vigan, Monique",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/maccarthy-life-letters/,Life and Letters,Feb 1948,,,,Lending Library Card,"Sylvia Beach, Mlle Monique de Vigan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9d1f844b-08c2-43d8-955e-202b0e6355dd/manifest,https://iiif.princeton.edu/loris/figgy_prod/9d%2Fd0%2Ff0%2F9dd0f0f0d3d646afae1eaa69e5cd6ce4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1948,1948-10,https://shakespeareandco.princeton.edu/members/vigan/,Monique de Vigan,"de Vigan, Monique",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/maccarthy-life-letters/,Life and Letters,Apr 1948,,,,Lending Library Card,"Sylvia Beach, Mlle Monique de Vigan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9d1f844b-08c2-43d8-955e-202b0e6355dd/manifest,https://iiif.princeton.edu/loris/figgy_prod/9d%2Fd0%2Ff0%2F9dd0f0f0d3d646afae1eaa69e5cd6ce4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1952,1952,https://shakespeareandco.princeton.edu/members/harvey-dorothy/,Dorothy (Dudley) Harvey,"Harvey, Dorothy",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/guiney-letters-louise-imogen/,Letters of Louise Imogen Guiney,2 vols.,"Guiney, Louise Imogen",1926,,Lending Library Card,"Sylvia Beach, Dorothy (Dudley) Harvey Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e1a12659-737c-48fb-9940-d5e796b6b6c0/manifest,https://iiif.princeton.edu/loris/figgy_prod/1b%2Fce%2F11%2F1bce116d390a4938a25a39e6ab96ce16%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1952,1952,https://shakespeareandco.princeton.edu/members/harvey-dorothy/,Dorothy (Dudley) Harvey,"Harvey, Dorothy",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/faulkner-hamlet/,The Hamlet,,"Faulkner, William",1931,,Lending Library Card,"Sylvia Beach, Dorothy (Dudley) Harvey Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e1a12659-737c-48fb-9940-d5e796b6b6c0/manifest,https://iiif.princeton.edu/loris/figgy_prod/1b%2Fce%2F11%2F1bce116d390a4938a25a39e6ab96ce16%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1955,1955-05-10,https://shakespeareandco.princeton.edu/members/hartmann/,FranΓ§oise Hartmann,"Hartmann, FranΓ§oise",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/porter-day/,The Day Before,,"Porter, Katherine Anne",1952,,Lending Library Card,"Sylvia Beach, FranΓ§oise Hartmann Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/71673c86-bf65-4261-ad5b-04b09e9a9167/manifest,https://iiif.princeton.edu/loris/figgy_prod/e2%2F88%2Ffd%2Fe288fdc2d97c436cb191d58837b4deca%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1956,,https://shakespeareandco.princeton.edu/members/gray-william/,William Gray,"Gray, William",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/levin-toward-balzac/,Toward Balzac,,"Levin, Harry",1947,,Lending Library Card,"Sylvia Beach, William Gray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/152ba232-4b1b-4255-ad64-41e1c8d1df03/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F2b%2Ff2%2F562bf2b8771c499184effa87e099a9c8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1956,1956-03-02,https://shakespeareandco.princeton.edu/members/gray-william/,William Gray,"Gray, William",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/lalou-contemporary-french-literature/,Contemporary French Literature,,"Lalou, RenΓ©",1924,,Lending Library Card,"Sylvia Beach, William Gray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/152ba232-4b1b-4255-ad64-41e1c8d1df03/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F2b%2Ff2%2F562bf2b8771c499184effa87e099a9c8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Generic,1958,,https://shakespeareandco.princeton.edu/members/falquel/,Louis Falquel,"Falquel, Louis",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/eugene-jolas/,Eugene Jolas,,,,Unidentified. Likely a photograph of Jolas for the Les AnnΓ©es Vingt exposition at the Centre Culturel AmΓ©ricain in 1959.,Lending Library Card,"Sylvia Beach, Louis Falquel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b53a2030-f6c2-4cad-82f7-60b85bac185b/manifest,https://iiif.princeton.edu/loris/figgy_prod/96%2Fec%2Fb4%2F96ecb438db1445c6854ad6cea5097827%2Fintermediate_file.jp2/full/full/0/default.jpg
+Generic,1958,,https://shakespeareandco.princeton.edu/members/falquel/,Louis Falquel,"Falquel, Louis",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/adrienne-monnier-front/,[Adrienne Monnier in front of Shakespeare and Company],,,,,Lending Library Card,"Sylvia Beach, Louis Falquel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b53a2030-f6c2-4cad-82f7-60b85bac185b/manifest,https://iiif.princeton.edu/loris/figgy_prod/96%2Fec%2Fb4%2F96ecb438db1445c6854ad6cea5097827%2Fintermediate_file.jp2/full/full/0/default.jpg
+Generic,1958,,https://shakespeareandco.princeton.edu/members/falquel/,Louis Falquel,"Falquel, Louis",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/freund-photograph-sylvia-beach/,[Photograph of Sylvia Beach],,"Freund, GisΓ©le",,,Lending Library Card,"Sylvia Beach, Louis Falquel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b53a2030-f6c2-4cad-82f7-60b85bac185b/manifest,https://iiif.princeton.edu/loris/figgy_prod/96%2Fec%2Fb4%2F96ecb438db1445c6854ad6cea5097827%2Fintermediate_file.jp2/full/full/0/default.jpg
+Generic,1958,,https://shakespeareandco.princeton.edu/members/falquel/,Louis Falquel,"Falquel, Louis",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/andre-masson/,AndrΓ© Masson,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Louis Falquel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b53a2030-f6c2-4cad-82f7-60b85bac185b/manifest,https://iiif.princeton.edu/loris/figgy_prod/96%2Fec%2Fb4%2F96ecb438db1445c6854ad6cea5097827%2Fintermediate_file.jp2/full/full/0/default.jpg
+Crossed out,1960,,https://shakespeareandco.princeton.edu/members/harvey-dorothy/,Dorothy (Dudley) Harvey,"Harvey, Dorothy",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/murasaki-shikibu-tale-genji/,The Tale of Genji,,Murasaki Shikibu,,Unidentified volume of the six-volume *The Tale of Genji* (trans. 1925 β 1933).,Lending Library Card,"Sylvia Beach, Dorothy (Dudley) Harvey Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e1a12659-737c-48fb-9940-d5e796b6b6c0/manifest,https://iiif.princeton.edu/loris/figgy_prod/1b%2Fce%2F11%2F1bce116d390a4938a25a39e6ab96ce16%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1960,1960-04-18,https://shakespeareandco.princeton.edu/members/harvey-dorothy/,Dorothy (Dudley) Harvey,"Harvey, Dorothy",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/gogol-evenings-farm-near/,Evenings on a Farm Near Dikanka,,"Gogol, Nikolai",1926,,Lending Library Card,"Sylvia Beach, Dorothy (Dudley) Harvey Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e1a12659-737c-48fb-9940-d5e796b6b6c0/manifest,https://iiif.princeton.edu/loris/figgy_prod/1b%2Fce%2F11%2F1bce116d390a4938a25a39e6ab96ce16%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1960,1960-04-18,https://shakespeareandco.princeton.edu/members/harvey-dorothy/,Dorothy (Dudley) Harvey,"Harvey, Dorothy",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/gogol-overcoat-stories/,The Overcoat and Other Stories,,"Gogol, Nikolai",1923,,Lending Library Card,"Sylvia Beach, Dorothy (Dudley) Harvey Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e1a12659-737c-48fb-9940-d5e796b6b6c0/manifest,https://iiif.princeton.edu/loris/figgy_prod/1b%2Fce%2F11%2F1bce116d390a4938a25a39e6ab96ce16%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1960,1960-04-18,https://shakespeareandco.princeton.edu/members/harvey-dorothy/,Dorothy (Dudley) Harvey,"Harvey, Dorothy",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/gogol-dead-souls/,Dead Souls,2 vols.,"Gogol, Nikolai",1842,,Lending Library Card,"Sylvia Beach, Dorothy (Dudley) Harvey Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e1a12659-737c-48fb-9940-d5e796b6b6c0/manifest,https://iiif.princeton.edu/loris/figgy_prod/1b%2Fce%2F11%2F1bce116d390a4938a25a39e6ab96ce16%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1960,1960-04-18,https://shakespeareandco.princeton.edu/members/harvey-dorothy/,Dorothy (Dudley) Harvey,"Harvey, Dorothy",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/goncharov-oblomov/,Oblomov,,"Goncharov, Ivan",1929,,Lending Library Card,"Sylvia Beach, Dorothy (Dudley) Harvey Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e1a12659-737c-48fb-9940-d5e796b6b6c0/manifest,https://iiif.princeton.edu/loris/figgy_prod/1b%2Fce%2F11%2F1bce116d390a4938a25a39e6ab96ce16%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1960,1960-04-18,https://shakespeareandco.princeton.edu/members/harvey-dorothy/,Dorothy (Dudley) Harvey,"Harvey, Dorothy",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/mayhall-cousin-human/,Cousin to Human,,"Mayhall, Jane",1960,,Lending Library Card,"Sylvia Beach, Dorothy (Dudley) Harvey Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e1a12659-737c-48fb-9940-d5e796b6b6c0/manifest,https://iiif.princeton.edu/loris/figgy_prod/1b%2Fce%2F11%2F1bce116d390a4938a25a39e6ab96ce16%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-01,1920-02-05,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/shaw-cashel-byrons-profession/,Cashel Byron's Profession,,"Shaw, George Bernard",1886,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/1d%2F1f%2F7a%2F1d1f7a35a57a4617b44f01b3b49f9fd5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1920-03,,https://shakespeareandco.princeton.edu/members/dennis-holly/,Holly (Beach) Dennis / Miss Holly Beach / Mrs. Frederic Dennis,"Dennis, Holly",,,,,,,1920-03,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1920-03,,https://shakespeareandco.princeton.edu/members/boue-l/,L. BouΓ©,"BouΓ©, L.",,,,,,,1920-03,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1920-03,1920-03-22,https://shakespeareandco.princeton.edu/members/oerthel/,Maurice Oerthel,"Oerthel, Maurice",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/jerome-told-supper/,Told after Supper,,"Jerome, Jerome K.",1891,,Lending Library Card,"Sylvia Beach, Maurice Oerthel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f1c13c8-7dbf-4473-99cb-77f8d586b0b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/ac%2Fde%2Fb1%2Facdeb1e64fc44eabbfdb6677ca6ec189%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-03,1920-03-22,https://shakespeareandco.princeton.edu/members/oerthel/,Maurice Oerthel,"Oerthel, Maurice",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/clouston-lunatic-large-novel/,The Lunatic at Large: A Novel,,"Clouston, J. Storer",1899,,Lending Library Card,"Sylvia Beach, Maurice Oerthel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f1c13c8-7dbf-4473-99cb-77f8d586b0b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/ac%2Fde%2Fb1%2Facdeb1e64fc44eabbfdb6677ca6ec189%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-06,1920-06-29,https://shakespeareandco.princeton.edu/members/syrett/,Netta Syrett,"Syrett, Netta",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/squire-london-mercury/,The London Mercury,,,,,Lending Library Card,"Sylvia Beach, Netta Syrett Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/59e81014-d645-4cb8-bf8f-0c342131661e/manifest,https://iiif.princeton.edu/loris/figgy_prod/c8%2F25%2Ff0%2Fc825f002dd2f4b45a58807076ee3b176%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-06,1920-06-15,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/woolf-night-day/,Night and Day,,"Woolf, Virginia",1919,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/8e%2F4f%2F17%2F8e4f1788dae24022a461a8f79909e57d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-06,1920-06-29,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/hardy-group-noble-dames/,A Group of Noble Dames,,"Hardy, Thomas",1891,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/7d%2F3f%2F5c%2F7d3f5c4197064c14a37955e5e7185913%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1920-07,1920-07-26,https://shakespeareandco.princeton.edu/members/wallace-lillian/,Lillian Wallace,"Wallace, Lillian",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/dell-hundredth-chance/,The Hundredth Chance,,"Dell, Ethel M.",1917,,Lending Library Card,"Sylvia Beach, Lillian Wallace Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a234d29a-dbdf-436a-a710-3af0940cb6e3/manifest,https://iiif-cloud.princeton.edu/iiif/2/f9%2Fd2%2Ff6%2Ff9d2f6a4c93e44e2a0f6f038fd7d16cd%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1920-07,1920-07,https://shakespeareandco.princeton.edu/members/wallace-lillian/,Lillian Wallace,"Wallace, Lillian",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/green-filigree-ball-full/,The Filigree Ball: Being a Full and True Account of the Solution of the Mystery Concerning the Jeffrey-Moore Affair,,"Green, Anna Katharine",1903,,Lending Library Card,"Sylvia Beach, Lillian Wallace Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a234d29a-dbdf-436a-a710-3af0940cb6e3/manifest,https://iiif-cloud.princeton.edu/iiif/2/f9%2Fd2%2Ff6%2Ff9d2f6a4c93e44e2a0f6f038fd7d16cd%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1920-10,1920-12,https://shakespeareandco.princeton.edu/members/dunlap-sheila/,Sheila Dunlap,"Dunlap, Sheila",,,,,,,1920-10,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1920-12,1920-12-29,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/dunsany-five-plays/,Five Plays,,"Dunsany, Lord",1914,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/d5%2F83%2F19%2Fd583194615974935b1ec030005291783%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1920-12,,https://shakespeareandco.princeton.edu/members/linossier-raymonde/,Raymonde Linossier,"Linossier, Raymonde",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/norris-shanghaied/,Shanghaied,,"Norris, Frank",1920,,Lending Library Card,"Sylvia Beach, Raymonde Linossier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/53ede5bf-939d-44f5-9ddb-4dd39363bd20/manifest,https://iiif.princeton.edu/loris/figgy_prod/00%2F34%2F2f%2F00342f6fa20c49eb905cc64a929bc405%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-12,1920-12-10,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/stein-three-lives/,Three Lives,,"Stein, Gertrude",1909,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Subscription,1921-01,,https://shakespeareandco.princeton.edu/members/grant-mrs-robert/,Mrs. Robert Grant,"Grant, Mrs. Robert",,,,,,,1921-01,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1921-03,1921-03-26,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/stevenson-virginibus-puerisque-papers/,Virginibus Puerisque and Other Papers,,"Stevenson, Robert Louis",1881,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/75%2F5c%2F43%2F755c43399f914580beaeba71ebbbe454%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-03,1921-03-19,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/a-e-candle-vision/,The Candle of Vision,,Γ,1918,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/c6%2Fce%2F05%2Fc6ce05bd7e84464182eab837a191d953%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-05,1921-05-26,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/carpenter-intermediate-sex/,The Intermediate Sex,,"Carpenter, Edward",1908,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/7b%2F6e%2Ff2%2F7b6ef2acc8ca4328b1721c5be9e7e435%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-05,1921-05-24,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/joyce-exiles/,Exiles,,"Joyce, James",1918,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2F57%2Fa7%2F2357a71e936745469bffd98fcfdfd3ac%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1921-07,1921-08,https://shakespeareandco.princeton.edu/members/madam-g-s/,Mrs. G. S. Madam,"Madam, Mrs. G. S.",,,1 month,31,,,1921-07,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1921-09,1922-02,https://shakespeareandco.princeton.edu/members/moderwell-anne/;https://shakespeareandco.princeton.edu/members/moderwell-hiram/,Anne Moderwell;Hiram Moderwell / H. K. Moderwell,"Moderwell, Anne;Moderwell, Hiram",,,5 months,153,,,1921-09,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1921-09,1921-09-30,https://shakespeareandco.princeton.edu/members/schereck/,Mildred Schereck,"Schereck, Mildred",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/james-house-novel/,The Other House: A Novel,,"James, Henry",1896,,Lending Library Card,"Sylvia Beach, Mildred Schereck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3b15ea0c-ed8d-4b41-80f3-33485620b12c/manifest,https://iiif-cloud.princeton.edu/iiif/2/99%2F38%2Fff%2F9938ff01ec0842f2b00c74f04db2e46f%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-01,1922-01-30,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/beresford-revolution-story-near/,Revolution: A Story of the Near Future in England,,"Beresford, J. D.",1921,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/d2%2F47%2F71%2Fd247713ff02e4d05964ed3de9f98c6b6%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-01,,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/conrad-typhoon/,Typhoon,,"Conrad, Joseph",1902,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/e9%2F30%2F98%2Fe93098b0dad84c25a10ad281283ba11d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1922-01,,https://shakespeareandco.princeton.edu/members/arden/,Mrs. Arden,"Arden, Mrs.",,,,,,,1922-01,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-02,,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/strindberg-married/,Married,,"Strindberg, August",1917,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/e9%2F30%2F98%2Fe93098b0dad84c25a10ad281283ba11d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1922-04,1922-10,https://shakespeareandco.princeton.edu/members/cameron-mr/,Mr. Cameron,"Cameron, Mr.",,14.00,,,,,1922-04,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1922-05,,https://shakespeareandco.princeton.edu/members/brown-3/,Helen Brown,"Brown, Helen",,,,,,,1922-05,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1922-05,,https://shakespeareandco.princeton.edu/members/butler-john-1/,John Butler,"Butler, John",,,,,,,1922-05,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1922-06,,https://shakespeareandco.princeton.edu/members/classen-smith-margarita/,Margarita Classen Smith,"Classen Smith, Margarita",,,,,,,1922-06,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1922-07,,https://shakespeareandco.princeton.edu/members/de-ring/,Charles de Ring,"de Ring, Charles",,,,,,,1922-07,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1922-07,,https://shakespeareandco.princeton.edu/members/fisher-otto/,Otto Fisher,"Fisher, Otto",,,,,,,1922-07,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1922-09,,https://shakespeareandco.princeton.edu/members/chauncey/,Mlle Chauncey,"Chauncey, Mlle",,,,,,,1922-09,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1922-10,,https://shakespeareandco.princeton.edu/members/james-a/,A. James,"James, A.",,,,,,,1922-10,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1922-11,,https://shakespeareandco.princeton.edu/members/chevillard/,Chevillard,"Chevillard, Mlle",,,,,,,1922-11,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-11,1922-11-16,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/lee-life-william-shakespeare/,A Life of William Shakespeare,,"Lee, Sidney",1898,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/6a%2F29%2F86%2F6a29867f6869471cbe99e9eab34fb937%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1922-12,,https://shakespeareandco.princeton.edu/members/elliman/,Mr. Elliman,"Elliman, Mr.",,,,,,,1922-12,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1922-12,1923-04,https://shakespeareandco.princeton.edu/members/maurois/,AndrΓ© Maurois,"Maurois, AndrΓ©",,,,,,,1922-12,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-12,1922-12-16,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/wodehouse-little-warrior/,The Little Warrior,,"Wodehouse, P. G.",1920,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2F96%2Fd2%2F5e96d2c676ff4f7d8107736bf23ae839%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-01,1923-02-01,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/smith-trivia/,Trivia,,"Smith, Logan Pearsall",1917,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/18%2F8a%2F2d%2F188a2d5b46c44e5e96b6cdaf585e9dd1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-03,1923-04-06,https://shakespeareandco.princeton.edu/members/philip-terence/,Terence Philip,"Philip, Terence",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/james-varieties-religious-experience/,The Varieties of Religious Experience,2 vols.,"James, William",1902,,Lending Library Card,"Sylvia Beach, Terence Philip Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/880ae6be-2806-4c0e-abb5-8ae7f939b057/manifest,https://iiif.princeton.edu/loris/figgy_prod/88%2F0b%2F9e%2F880b9e079efd46a69f55bf9aa031317e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1923-04,,https://shakespeareandco.princeton.edu/members/classen-smith-margarita/,Margarita Classen Smith,"Classen Smith, Margarita",,,,,,,1923-04,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-04,1923-04-08,https://shakespeareandco.princeton.edu/members/rhys/,Mr. Rhys,"Rhys, Mr.",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/georgian-poetry/,Georgian Poetry,,,,Unidentified. Likely an anthology of Georgian poetry.,Lending Library Card,"Sylvia Beach, Rhys Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0fcf5eb6-f872-481c-a304-e45a0c9fe472/manifest,https://iiif.princeton.edu/loris/figgy_prod/67%2F3d%2F21%2F673d211972284e099df1c89a348719ce%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1923-04,,https://shakespeareandco.princeton.edu/members/allum/,L. G. Allum,"Allum, L. G.",,,,,,,1923-04,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-05,1923-05-05,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/sinclair-anne-severn-fieldings/,Anne Severn and the Fieldings,,"Sinclair, May",1922,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0e%2F11%2F22%2F0e112265b86349fcb3817e711b264d0a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1923-06,,https://shakespeareandco.princeton.edu/members/firbank-ronald/,Ronald Firbank,"Firbank, Ronald",,,,,,,1923-06,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1923-06,1923-10,https://shakespeareandco.princeton.edu/members/llona-victor/,Victor Llona,"Llona, Victor",,,4 months,122,,,1923-06,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1923-08,1923-09,https://shakespeareandco.princeton.edu/members/mcnair-l/,Mrs. L. McNair,"McNair, Mrs. L.",,,1 month,31,,,1923-08,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1923-08,,https://shakespeareandco.princeton.edu/members/boeguer-m/,Mme M. Boeguer,"Boeguer, Mme M.",,,,,,,1923-08,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1923-09,,https://shakespeareandco.princeton.edu/members/backlett-jessie/,Jessie Backlett,"Backlett, Jessie",,,,,,,1923-09,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-10,,https://shakespeareandco.princeton.edu/members/wilson-natalie/,Natalie Wilson,"Wilson, Natalie",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/blasco-ibanez-mare-nostrum-sea/,Mare Nostrum (Our Sea): A Novel,,"Blasco IbÑñez, Vincente",1919,,Lending Library Card,"Sylvia Beach, Miss Natalie Wilson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3b770bae-bddc-4878-863a-d7f29f4eceda/manifest,https://iiif.princeton.edu/loris/figgy_prod/a7%2F67%2F46%2Fa7674622f68844f7ad89b2673c573e69%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1923-11,,https://shakespeareandco.princeton.edu/members/bowen-stella/,Stella Bowen / Mrs. Ford M. Ford,"Bowen, Stella",,,,,,Free,1923-11,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1923-12,,https://shakespeareandco.princeton.edu/members/burlin-g/,Paul Burlin / Mr. G. Burlin,"Burlin, Paul",,,,,,,1923-12,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1924-01,,https://shakespeareandco.princeton.edu/members/behn-henry/,Harry Behn / Henry Behn,"Behn, Harry",,,,,,,1924-01,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1924-01,,https://shakespeareandco.princeton.edu/members/chavare/,Mr. Chavare,"Chavare, Mr.",,,,,,,1924-01,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1924-01,,https://shakespeareandco.princeton.edu/members/butler-john-1/,John Butler,"Butler, John",,,,,,,1924-01,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1924-01,,https://shakespeareandco.princeton.edu/members/colwell/,Sarah Colwell,"Colwell, Sarah",,,,,,,1924-01,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1924-02,1924-03,https://shakespeareandco.princeton.edu/members/martin-rene/,RenΓ© Martin,"Martin, RenΓ©",,,1 month,29,,,1924-02,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1924-02,1924-04,https://shakespeareandco.princeton.edu/members/monro-nigel/,Nigel Monro,"Monro, Nigel",,,2 months,60,,,1924-02,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1924-07,,https://shakespeareandco.princeton.edu/members/asch/,Nathan Asch,"Asch, Nathan",,,,,,,1924-07,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1924-07,,https://shakespeareandco.princeton.edu/members/benoist-mechin/,Jacques Benoist-MΓ©chin,"Benoist-MΓ©chin, Jacques",,,,,,,1924-07,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1924-09,,https://shakespeareandco.princeton.edu/members/earp-1/,Mr. Earp,"Earp, Mr.",,,,,,,1924-09,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1924-11,,https://shakespeareandco.princeton.edu/members/french/,Mrs. E. S. French,"French, Mrs. E. S.",,,,,,,1924-11,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1925-03,,https://shakespeareandco.princeton.edu/members/benedic/,Mlle Benedic,"Benedic, Mlle",,,,,,,1925-03,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1925-04,,https://shakespeareandco.princeton.edu/members/copeau-jacques/,Jacques Copeau,"Copeau, Jacques",,,,,,,1925-04,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1925-07,,https://shakespeareandco.princeton.edu/members/cameron-helen/,Helen Cameron,"Cameron, Helen",,,,,,,1925-07,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1925-07,,https://shakespeareandco.princeton.edu/members/corst-elizabeth/,Elizabeth Corst,"Corst, Elizabeth",,,,,,,1925-07,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1925-08,,https://shakespeareandco.princeton.edu/members/kennedy-edmond/,Edmond Kennedy,"Kennedy, Edmond",,30.00,,,,,1925-08,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1925-08,,https://shakespeareandco.princeton.edu/members/derieu-h-b/,H. B. Derieu,"Derieu, H. B.",,,,,,,1925-08,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1925-09,,https://shakespeareandco.princeton.edu/members/elsner-ida/,Ida Elsner,"Elsner, Ida",,,,,,,1925-09,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1925-09,,https://shakespeareandco.princeton.edu/members/campbell-4/,Louise Campbell,"Campbell, Louise",,40.00,,,,,1925-09,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1925-11,,https://shakespeareandco.princeton.edu/members/morgenstern-b/,B. Morgenstern,"Morgenstern, B.",,,,,,,1925-11,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-01,,https://shakespeareandco.princeton.edu/members/anderson-john/,John Anderson,"Anderson, John",,,,,,,1926-01,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-01,,https://shakespeareandco.princeton.edu/members/goldman-emma/,Emma Goldman / Mrs. Colton,"Goldman, Emma",,,,,,,1926-01,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-01,,https://shakespeareandco.princeton.edu/members/chenneviere-andre/,AndrΓ© Chenneviere,"Chenneviere, AndrΓ©",,,,,,,1926-01,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-02,,https://shakespeareandco.princeton.edu/members/dunlop/,Mrs. John Dunlop,"Dunlop, Mrs. John",,,,,,,1926-02,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-02,1926-02-06,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/conrad-lord-jim/,Lord Jim,,"Conrad, Joseph",1900,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/05%2Fcc%2F42%2F05cc420c01b74e7885f72bc117cfdb3d%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1926-02,,https://shakespeareandco.princeton.edu/members/browne-mrs-d/,Mrs. D. Browne,"Browne, Mrs. D.",,50.00,,,,,1926-02,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-02,1926-06,https://shakespeareandco.princeton.edu/members/du-bos/,Charles Du Bos,"Du Bos, Charles",,,,,,,1926-02,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-03,1926-10,https://shakespeareandco.princeton.edu/members/lorsignol-madeleine/,Madeleine Lorsignol,"Lorsignol, Madeleine",,,7 months,214,,,1926-03,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-03,,https://shakespeareandco.princeton.edu/members/gaskell-leonard/,Leonard Gaskell,"Gaskell, Leonard",,,,,,,1926-03,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-03,,https://shakespeareandco.princeton.edu/members/camescasse/,Pierre Camescasse / Camecarre,"Camescasse, Pierre",,,,,,,1926-03,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-03,,https://shakespeareandco.princeton.edu/members/embericos-alexandra/,Alexandra Embericos,"Embericos, Alexandra",,,,,,,1926-03,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-03,,https://shakespeareandco.princeton.edu/members/collins-dorothy/,Dorothy Collins,"Collins, Dorothy",,,,,,,1926-03,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-05,,https://shakespeareandco.princeton.edu/members/hall-h-r/,Mrs. H. R. Hall,"Hall, Mrs. H. R.",,,,,,,1926-05,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-05,,https://shakespeareandco.princeton.edu/members/gil-jack/,Jack Gil,"Gil, Jack",,,,,,,1926-05,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-06,,https://shakespeareandco.princeton.edu/members/ewing-max/,Max Ewing,"Ewing, Max",,,,,,,1926-06,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-06,,https://shakespeareandco.princeton.edu/members/derlanger/,Mlle d'Erlanger,"d'Erlanger, Mlle",,,,,,,1926-06,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-06,,https://shakespeareandco.princeton.edu/members/dunn-miss-a/,Miss A. Dunn,"Dunn, Miss A.",,,,,,,1926-06,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-06,,https://shakespeareandco.princeton.edu/members/jean-auriol/,Jean Auriol,"Auriol, Jean",,,,,,,1926-06,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-07,,https://shakespeareandco.princeton.edu/members/anderson-margaret/,Margaret C. Anderson,"Anderson, Margaret C.",,,,,,,1926-07,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-08,,https://shakespeareandco.princeton.edu/members/bacon/,Robert Bacon,"Bacon, Robert",,,,,,,1926-08,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-08,,https://shakespeareandco.princeton.edu/members/grosskamp-b/,B. Grosskamp,"Grosskamp, B.",,,,,,,1926-08,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-08,,https://shakespeareandco.princeton.edu/members/hamlet-r-c/,R. C. Hamlet,"Hamlet, R. C.",,,,,,,1926-08,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-08,,https://shakespeareandco.princeton.edu/members/bierring-e/,E. Bierring,"Bierring, E.",,,,,,,1926-08,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-08,,https://shakespeareandco.princeton.edu/members/burney-cumming-vera/,Vera (Aylward) Burney-Cumming,"Burney-Cumming, Vera",,,,,,,1926-08,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-09,,https://shakespeareandco.princeton.edu/members/abbott-berenice/,Berenice Abbott,"Abbott, Berenice",,,,,,,1926-09,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-10,,https://shakespeareandco.princeton.edu/members/booth-e-j/,E. J. Booth,"Booth, E. J.",,,,,,,1926-10,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-11,1926-11-29,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/slocum-sailing-alone-around/,Sailing Alone Around the World,,"Slocum, Joshua",1900,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F4d%2Fc2%2Fb44dc2e479c743ab81c35f675dc69e9f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-11,1926-12,https://shakespeareandco.princeton.edu/members/mathieu-m/,M. Mathieu,"Mathieu, M.",,,1 month,30,,,1926-11,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-11,,https://shakespeareandco.princeton.edu/members/bardeleben-emo/,Emo Bardeleben,"Bardeleben, Emo",,,,,,,1926-11,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-12,,https://shakespeareandco.princeton.edu/members/benoist-mechin/,Jacques Benoist-MΓ©chin,"Benoist-MΓ©chin, Jacques",,,,,,,1926-12,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-12,1927-10,https://shakespeareandco.princeton.edu/members/mcalmon-robert/,Robert McAlmon,"McAlmon, Robert",,,,,,,1926-12,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-12,,https://shakespeareandco.princeton.edu/members/naumburg-margaret/,Margaret Naumburg,"Naumburg, Margaret",,,,,,,1926-12,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1927-01,,https://shakespeareandco.princeton.edu/members/bridges-w/,Mrs. W. Bridges,"Bridges, Mrs. W.",,,,,,,1927-01,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1927-01,1927-03,https://shakespeareandco.princeton.edu/members/camille-georgette/,Georgette Camille,"Camille, Georgette",,,,,,,1927-01,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1927-02,,https://shakespeareandco.princeton.edu/members/isaacson/,Mrs. D. Isaacson,"Isaacson, Mrs. D.",,,,,,,1927-02,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1927-03,1928-02,https://shakespeareandco.princeton.edu/members/macgreevy-thomas/,Thomas MacGreevy,"MacGreevy, Thomas",,,11 months,337,,,1927-03,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1927-03,,https://shakespeareandco.princeton.edu/members/bosschere-jean-de/,Jean de BosschΓ¨re,"BosschΓ¨re, Jean de",,,,,,,1927-03,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1927-04,,https://shakespeareandco.princeton.edu/members/jean-auriol/,Jean Auriol,"Auriol, Jean",,,,,,,1927-04,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1927-05,,https://shakespeareandco.princeton.edu/members/desclos-5/,M. Desclos,"Desclos, M.",,,,,,,1927-05,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1927-05,,https://shakespeareandco.princeton.edu/members/bruel-andree/,AndrΓ©e Bruel,"Bruel, AndrΓ©e",,,,,,,1927-05,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1927-05,,https://shakespeareandco.princeton.edu/members/hilton-miss-v/,V. Hilton,"Hilton, V.",,,,,,,1927-05,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1927-06,,https://shakespeareandco.princeton.edu/members/bercovici-konrad/,Konrad Bercovici,"Bercovici, Konrad",,,,,,,1927-06,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1927-06,,https://shakespeareandco.princeton.edu/members/ivory-florence/,Florence Ivory,"Ivory, Florence",,,,,,,1927-06,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1927-07,1927-09,https://shakespeareandco.princeton.edu/members/little-mary/,Mary D. Little,"Little, Mary D.",,,,,,,1927-07,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1927-07,,https://shakespeareandco.princeton.edu/members/cuvran-mary/,Mary Cuvran,"Cuvran, Mary",,,,,,,1927-07,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1927-07,1927-10,https://shakespeareandco.princeton.edu/members/moss-arthur/,Arthur Moss,"Moss, Arthur",,,3 months,92,,,1927-07,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1927-08,,https://shakespeareandco.princeton.edu/members/ellison-1/,Mrs. Ellison,"Ellison, Mrs.",,,,,,,1927-08,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1927-08,,https://shakespeareandco.princeton.edu/members/gukowsky/,Gukowski / Gukowsky,Gukowsky,,,,,,,1927-08,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1927-08,,https://shakespeareandco.princeton.edu/members/bailly/,Mrs. Edward Bailly,"Bailly, Mrs. Edward",,100.00,,,,,1927-08,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1927-09,,https://shakespeareandco.princeton.edu/members/fanniere/,Mr. FanniΓ¨re,"FanniΓ¨re, Mr.",,,,,,,1927-09,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1927-10,,https://shakespeareandco.princeton.edu/members/anderson-margaret/,Margaret C. Anderson,"Anderson, Margaret C.",,,,,,,1927-10,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1927-10,1928-06,https://shakespeareandco.princeton.edu/members/meyer-ruth/,Ruth Meyer,"Meyer, Ruth",,,8 months,244,,,1927-10,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-11,1927-12-07,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/wilder-bridge-san-luis/,The Bridge of San Luis Rey,,"Wilder, Thornton",1927,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2F6e%2Fea%2F256eeabe8a054470a7abd5bdd9d57873%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1927-11,,https://shakespeareandco.princeton.edu/members/gast-g/,G. Gast,"Gast, G.",,,,,,,1927-11,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1927-11,,https://shakespeareandco.princeton.edu/members/bacholle-mlle/,Mlle Bacholle,"Bacholle, Mlle",,,,,,,1927-11,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1927-12,,https://shakespeareandco.princeton.edu/members/depret-bixiot/,Mme Depret-Bixiot,"Depret-Bixiot, Mme",,,,,,,1927-12,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1928-01,,https://shakespeareandco.princeton.edu/members/delebeque/,Mlle Delebecque,"Delebecque, Mlle",,,,,,,1928-01,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1928-01,,https://shakespeareandco.princeton.edu/members/brush-albert/,Albert Brush,"Brush, Albert",,,,,,,1928-01,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1928-01,,https://shakespeareandco.princeton.edu/members/gill-father/,Father Gill,"Gill, Father",,,,,,,1928-01,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1928-01,,https://shakespeareandco.princeton.edu/members/dalston-mary/,Mary Dalston,"Dalston, Mary",,,,,,,1928-01,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1928-01,,https://shakespeareandco.princeton.edu/members/menhinick-kathleen/,Kathleen Menhinick,"Menhinick, Kathleen",,,,,,,1928-01,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1928-01,,https://shakespeareandco.princeton.edu/members/brandeis/,F. Brandeis,"Brandeis, F.",,,,,,,1928-01,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1928-01,1928-05,https://shakespeareandco.princeton.edu/members/darrow-whitney/,Whitney Darrow,"Darrow, Whitney",,,,,,,1928-01,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1928-01,1928-04,https://shakespeareandco.princeton.edu/members/leroi-rene/,RenΓ© Leroi,"Leroi, RenΓ©",,,3 months,91,,,1928-01,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1928-01,,https://shakespeareandco.princeton.edu/members/ericson-david/,David Ericson,"Ericson, David",,,,,,,1928-01,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1928-01,,https://shakespeareandco.princeton.edu/members/bruning-h/,H. Bruning,"Bruning, H.",,,,,,,1928-01,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1928-02,1928-03,https://shakespeareandco.princeton.edu/members/black-joan/,Joan Black,"Black, Joan",,,,,,,1928-02,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1928-02,,https://shakespeareandco.princeton.edu/members/foulds-j/,J. Foulds,"Foulds, J.",,,,,,,1928-02,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1928-02,1928-03,https://shakespeareandco.princeton.edu/members/leopold-emmanuel/,Emmanuel Leopold,"Leopold, Emmanuel",,,1 month,29,,,1928-02,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1928-02,,https://shakespeareandco.princeton.edu/members/manning-grace/,Grace Manning,"Manning, Grace",,,,,,,1928-02,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1928-02,1928-03,https://shakespeareandco.princeton.edu/members/lozowick-louis/,Louis Lozowick,"Lozowick, Louis",,,1 month,29,,,1928-02,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1928-02,,https://shakespeareandco.princeton.edu/members/cooper-ellis/,Miss Cooper-Ellis,"Cooper-Ellis, Miss",,,,,,,1928-02,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1928-02,,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,1928-02,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1928-03,,https://shakespeareandco.princeton.edu/members/lallemand-pauline-de/,Pauline de Lallemand,"de Lallemand, Pauline",,,,,,,1928-11,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1928-03,,https://shakespeareandco.princeton.edu/members/duncan-4/,Mme D. Duncan,"Duncan, Mme D.",,,,,,,1928-03,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1928-04,,https://shakespeareandco.princeton.edu/members/brooks/,H. Brooks,"Brooks, H.",,,,,,,1928-04,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1928-04,,https://shakespeareandco.princeton.edu/members/hawes-elizabeth/,Elizabeth Hawes,"Hawes, Elizabeth",,,,,,,1928-04,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1928-05,,https://shakespeareandco.princeton.edu/members/cochran-joseph/,Joseph Wilson Cochran / Rev. J. Cochran,"Cochran, Joseph Wilson",,,,,,,1928-05,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1928-06,,https://shakespeareandco.princeton.edu/members/connolly-cyril/,Cyril Connolly,"Connolly, Cyril",,,,,,,1928-06,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1928-06,,https://shakespeareandco.princeton.edu/members/gutmann-henri/,Henri Gutmann,"Gutmann, Henri",,,,,,,1928-06,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1928-07,,https://shakespeareandco.princeton.edu/members/gilman-dorothy-foster/,Dorothy Foster Gilman,"Gilman, Dorothy Foster",,,,,,,1928-07,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1928-07,1928-09,https://shakespeareandco.princeton.edu/members/lack-dorothy/,Dorothy Lack,"Lack, Dorothy",,,,,,,1928-07,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1928-07,,https://shakespeareandco.princeton.edu/members/corbett-dorothy/,Dorothy Corbett,"Corbett, Dorothy",,,,,,,1928-07,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1928-08,,https://shakespeareandco.princeton.edu/members/lanux-eyre-de/,Eyre de Lanux / Mrs. Pierre de Lanux,"de Lanux, Eyre",,,,,,,1928-08,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1928-08,,https://shakespeareandco.princeton.edu/members/morris-laurence/,Laurence Morris,"Morris, Laurence",,,,,,,1928-08,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1928-09,,https://shakespeareandco.princeton.edu/members/glass-mr/,Mr. Glass,"Glass, Mr.",,,,,,,1928-09,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1928-09,1928-10,https://shakespeareandco.princeton.edu/members/ivimy-alice/,Alice Ivimy,"Ivimy, Alice",,,,,,,1928-09,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-11,1928-11-29,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/kennedy-red-sky-morning/,Red Sky at Morning,,"Kennedy, Margaret",1927,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/e2%2F8f%2F47%2Fe28f47a0edc74234a7fe62de67b2461a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-11,1928-11-29,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/galsworthy-swan-song/,Swan Song (A Modern Comedy),,"Galsworthy, John",1928,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/e2%2F8f%2F47%2Fe28f47a0edc74234a7fe62de67b2461a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-11,1928-11-29,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/de-la-roche-jalna/,Jalna,,"De la Roche, Mazo",1927,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/e2%2F8f%2F47%2Fe28f47a0edc74234a7fe62de67b2461a%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1928-12,,https://shakespeareandco.princeton.edu/members/cowles-edith/,Edith Cowles,"Cowles, Edith",,,,,,,1928-12,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1929-01,1929-05,https://shakespeareandco.princeton.edu/members/lady-colvin/,Lady E. Colvin,"Colvin, Lady E.",,,,,,,1929-01,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1929-01,,https://shakespeareandco.princeton.edu/members/bull-george/,George Bull,"Bull, George",,,,,,,1929-01,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1929-01,,https://shakespeareandco.princeton.edu/members/aitken/,Mrs. R. Aitken / Aetkin,"Aitken, Mrs. R.",,,,,,,1929-01,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1929-02,,https://shakespeareandco.princeton.edu/members/frohock-w-m/,W. M. Frohock,"Frohock, W. M.",,,,,,,1929-02,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1929-02,,https://shakespeareandco.princeton.edu/members/grenn-m-p/,M. P. Grenn,"Grenn, M. P.",,,,,,,1929-02,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1929-02,,https://shakespeareandco.princeton.edu/members/connont-mrs-n-f/,Mrs. N. F. Connont,"Connont, Mrs. N. F.",,,,,,,1929-02,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1929-04,,https://shakespeareandco.princeton.edu/members/jackson-g-ward/,G. Ward Jackson,"Jackson, G. Ward",,,,,,,1929-04,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1929-05,1929-10,https://shakespeareandco.princeton.edu/members/helstein-nadia/,Nadia Helstein,"Helstein, Nadia",,,,,,,1929-05,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1929-06,,https://shakespeareandco.princeton.edu/members/allen-irving/,Irving Allen,"Allen, Irving",,,,,,,1929-06,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1929-06,,https://shakespeareandco.princeton.edu/members/giedion-welcker/,Carola Giedion-Welcker,"Giedion-Welcker, Carola",,,,,,,1929-06,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1929-06,,https://shakespeareandco.princeton.edu/members/brunel-mlle-l/,Mlle L. Brunel,"Brunel, Mlle L.",,,,,,,1929-06,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1929-06,1930-04,https://shakespeareandco.princeton.edu/members/mourey-gabriel/,Gabriel Mourey,"Mourey, Gabriel",,,10 months,304,,,1929-06,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1929-06,,https://shakespeareandco.princeton.edu/members/beckett/,Samuel Beckett,"Beckett, Samuel",,,,,,,1929-06,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1929-07,,https://shakespeareandco.princeton.edu/members/covington/,R. Covington,"Covington, R.",,,,,,,1929-07,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1929-07,,https://shakespeareandco.princeton.edu/members/lanux-eyre-de/,Eyre de Lanux / Mrs. Pierre de Lanux,"de Lanux, Eyre",,,,,,,1929-07,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1929-07,,https://shakespeareandco.princeton.edu/members/bedel-chanoine/,Chanoine Bedel,"Bedel, Chanoine",,,,,,,1929-07,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1929-08,1929-09,https://shakespeareandco.princeton.edu/members/malbert-b/,B. Malbert,"Malbert, B.",,,1 month,31,,,1929-08,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1929-08,1929-09,https://shakespeareandco.princeton.edu/members/mcpherson-m/,M. McPherson,"McPherson, M.",,,1 month,31,,,1929-08,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1929-09,,https://shakespeareandco.princeton.edu/members/chadourne/,Marc Chadourne,"Chadourne, Marc",,,,,,,1929-09,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1929-09,1930-02,https://shakespeareandco.princeton.edu/members/holden-1/,Mrs. J. Holden,"Holden, Mrs. J.",,,,,,,1929-09,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1929-09,,https://shakespeareandco.princeton.edu/members/cooper-lettice/,Lettice Cooper,"Cooper, Lettice",,,,,,,1929-09,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1929-10,,https://shakespeareandco.princeton.edu/members/bancroft-hester/,Hester Bancroft,"Bancroft, Hester",,,,,,,1929-10,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1929-10,,https://shakespeareandco.princeton.edu/members/fairfax-j/,J. Fairfax,"Fairfax, J.",,,,,,,1929-10,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1929-10,,https://shakespeareandco.princeton.edu/members/boyd-mrs-ernest/,Mrs. Ernest Boyd,"Boyd, Mrs. Ernest",,,,,,,1929-10,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1929-10,1929-12,https://shakespeareandco.princeton.edu/members/black-j/,J. Black,"Black, J.",,,,,,,1929-10,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1929-10,,https://shakespeareandco.princeton.edu/members/amor-mme/,Mme Amor,"Amor, Mme",,,,,,,1929-10,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1929-12,,https://shakespeareandco.princeton.edu/members/duncan-j/,J. Duncan,"Duncan, J.",,,,,,,1929-12,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1929-12,,https://shakespeareandco.princeton.edu/members/baker-l-m/,L. M. Baker,"Baker, L. M.",,,,,,,1929-12,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1929-12,,https://shakespeareandco.princeton.edu/members/fraser-gladys/,Gladys Fraser,"Fraser, Gladys",,,,,,,1929-12,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1930-01,,https://shakespeareandco.princeton.edu/members/berr-de-turique-marcelle/,Marcelle Berr de Turique,"Berr de Turique, Marcelle",,,,,,,1930-01,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1930-01,1930-02,https://shakespeareandco.princeton.edu/members/foeringer/,Mme Foeringer,"Foeringer, Mme",,50.00,,,,,1930-01,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1930-01,1930-04,https://shakespeareandco.princeton.edu/members/marsh-f/,F. Marsh,"Marsh, F.",,,3 months,90,,,1930-01,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1930-01,1930-04,https://shakespeareandco.princeton.edu/members/meyer-mrs-herbert/,Mrs. Herbert Meyer,"Meyer, Mrs. Herbert",,,3 months,90,,,1930-01,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1930-01,1930-05,https://shakespeareandco.princeton.edu/members/eichheim/,Mme Henry Eichheim,"Eichheim, Mme Henry",,100.00,,,,,1930-01,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1930-01,1930-03,https://shakespeareandco.princeton.edu/members/baillon/,Mme O. Baillon,"Baillon, Mme O.",,,,,,,1930-01,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1930-01,1930-09,https://shakespeareandco.princeton.edu/members/delmond-jacques/,Jacques Delmond,"Delmond, Jacques",,,8 months,243,,,1930-01,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1930-02,,https://shakespeareandco.princeton.edu/members/barker-caroline-r/,Caroline R. Barker,"Barker, Caroline R.",,,,,,,1930-02,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1930-02,,https://shakespeareandco.princeton.edu/members/berveller-michel/,Michel Berveller,"Berveller, Michel",,,,,,,1930-02,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1930-02,1930-06,https://shakespeareandco.princeton.edu/members/mozley-loren/,Loren Mozley,"Mozley, Loren",,,4 months,120,,,1930-02,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1930-02,,https://shakespeareandco.princeton.edu/members/doring-p-m/,P. M. Doring,"Doring, P. M.",,175.00,,,,,1930-02,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1930-02,,https://shakespeareandco.princeton.edu/members/cooke-j-m/,J. M. Cooke,"Cooke, J. M.",,50.00,,,,,1930-02,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1930-02,,https://shakespeareandco.princeton.edu/members/allen-mrs-wright/,Mrs. Wright Allen,"Allen, Mrs. Wright",,,,,,,1930-02,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1930-02,,https://shakespeareandco.princeton.edu/members/gardon-g/,G. Gardon,"Gardon, G.",,,,,,,,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1930-03,,https://shakespeareandco.princeton.edu/members/beneke-olga/,Olga Beneke,"Beneke, Olga",,,,,,,1930-03,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1930-03,,https://shakespeareandco.princeton.edu/members/faguer-marguerite/,Marguerite Faguer,"Faguer, Marguerite",,,,,,Free,1930-03,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1930-03,,https://shakespeareandco.princeton.edu/members/hughes-martha/,Martha Hughes,"Hughes, Martha",,,,,,,1930-03,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1930-03,,https://shakespeareandco.princeton.edu/members/handley-nancy/,Nancy Handley,"Handley, Nancy",,,,,,,1930-03,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1930-04,,https://shakespeareandco.princeton.edu/members/gatti-a/,A. Gatti,"Gatti, A.",,,,,,,1930-04,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1930-04,,https://shakespeareandco.princeton.edu/members/greville-e/,Ed. Greville,"Greville, Ed.",,,,,,,1930-04,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1930-04,1930-05,https://shakespeareandco.princeton.edu/members/manion-james-p/,James P. Manion,"Manion, James P.",,,,,,,1930-04,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1930-04,,https://shakespeareandco.princeton.edu/members/church-5/,Mrs. Withington Church,"Church, Mrs. Withington",,,,,,,1930-04,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1930-04,,https://shakespeareandco.princeton.edu/members/fonseka-lionel-de/,Lionel de Fonseka,"Fonseka, Lionel de",,,,,,,1930-04,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1930-04,,https://shakespeareandco.princeton.edu/members/ericson-david/,David Ericson,"Ericson, David",,,,,,,1930-04,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1930-05,1930-06,https://shakespeareandco.princeton.edu/members/lowey-r-l/,R. L. Lowey,"Lowey, R. L.",,,1 month,31,,,1930-05,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1930-05,1930-07,https://shakespeareandco.princeton.edu/members/lewis-a/,A. Lewis,"Lewis, A.",,,2 months,61,,,1930-05,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1930-05,,https://shakespeareandco.princeton.edu/members/hogman-c-a/,C. A. Hogman,"Hogman, C. A.",,,,,,,1930-05,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1930-05,1930-10,https://shakespeareandco.princeton.edu/members/moody-sue/,Sue Moody,"Moody, Sue",,,,,,,1930-05,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1930-06,,https://shakespeareandco.princeton.edu/members/boer-josephine-de/,Josephine de Boer,"de Boer, Josephine",,,,,,,1930-06,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1930-07,,https://shakespeareandco.princeton.edu/members/hollard-mireille/,Mireille Hollard,"Hollard, Mireille",,,,,,,1930-07,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1930-09,1931-05,https://shakespeareandco.princeton.edu/members/dufraigne-louise/,Louise Dufraigne,"Dufraigne, Louise",,,,,,,1930-09,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1930-09,1930-12,https://shakespeareandco.princeton.edu/members/ninaanthony/,Nina Anthony,"Anthony, Nina",,,3 months,91,,,1930-09,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1930-09,,https://shakespeareandco.princeton.edu/members/andrews-chase/,Mrs. Chase Andrews,"Andrews, Mrs. Chase",,,,,,,1930-09,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1930-09,,https://shakespeareandco.princeton.edu/members/cooke-j-m/,J. M. Cooke,"Cooke, J. M.",,,,,,,1930-09,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1930-09,1931-01,https://shakespeareandco.princeton.edu/members/loy-mina/,Mina Loy,"Loy, Mina",,,,,,,1930-09,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1930-10,1930-10,https://shakespeareandco.princeton.edu/members/carr-3/,Helen Carr,"Carr, Helen",,,,,,,1930-10,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1930-10,,https://shakespeareandco.princeton.edu/members/guerreiro-molly/,Molly Guerreiro,"Guerreiro, Molly",,,,,,,1930-10,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1930-10,1930-12,https://shakespeareandco.princeton.edu/members/holmes-edna/,Edna Holmes,"Holmes, Edna",,50.00,,,,,1930-10,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1930-11,1930-12,https://shakespeareandco.princeton.edu/members/hutchinson-marguerite/,Marguerite Gay Hutchinson,"Hutchinson, Marguerite Gay",,,1 month,30,,,1930-11,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1930-11,1931-05,https://shakespeareandco.princeton.edu/members/gatchell-1/,Mrs. Charles Gatchell,"Gatchell, Mrs. Charles",,,,,,,1930-11,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1930-11,,https://shakespeareandco.princeton.edu/members/misgeville-p/,Mme P. Misgeville,"Misgeville, Mme P.",,,,,,,1930-11,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Gift,1930-12,,https://shakespeareandco.princeton.edu/members/beach-family/,Beach Family / Beaches,Beach Family,,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/giraudoux/,Giraudoux,,,,Unidentified. By or about Jean Giraudoux.,Lending Library Card,"Sylvia Beach, Beach Family Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/146e4755-a019-4eef-abd4-26af985499f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/20%2Fc3%2F5d%2F20c35d88f77d4fd2adf60a8f0adbaaa9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Gift,1930-12,,https://shakespeareandco.princeton.edu/members/beach-family/,Beach Family / Beaches,Beach Family,,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/pierre-quint-marcel-proust-vie/,"Marcel Proust, sa vie, son oeuvre",,"Pierre-Quint, LΓ©on",1925,,Lending Library Card,"Sylvia Beach, Beach Family Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/146e4755-a019-4eef-abd4-26af985499f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/20%2Fc3%2F5d%2F20c35d88f77d4fd2adf60a8f0adbaaa9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Gift,1930-12,,https://shakespeareandco.princeton.edu/members/beach-family/,Beach Family / Beaches,Beach Family,,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/ayme-rue/,La rue sans nom,,"AymΓ©, Marcel",1930,,Lending Library Card,"Sylvia Beach, Beach Family Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/146e4755-a019-4eef-abd4-26af985499f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/20%2Fc3%2F5d%2F20c35d88f77d4fd2adf60a8f0adbaaa9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Gift,1930-12,,https://shakespeareandco.princeton.edu/members/beach-family/,Beach Family / Beaches,Beach Family,,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/lecache-verine/,SΓ©verine,,"Lecache, Bernard",1930,,Lending Library Card,"Sylvia Beach, Beach Family Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/146e4755-a019-4eef-abd4-26af985499f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/20%2Fc3%2F5d%2F20c35d88f77d4fd2adf60a8f0adbaaa9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Gift,1930-12,,https://shakespeareandco.princeton.edu/members/beach-family/,Beach Family / Beaches,Beach Family,,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/carroll-phantasmagoria-poems/,Phantasmagoria and Other Poems,,"Carroll, Lewis",1869,,Lending Library Card,"Sylvia Beach, Beach Family Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/146e4755-a019-4eef-abd4-26af985499f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/20%2Fc3%2F5d%2F20c35d88f77d4fd2adf60a8f0adbaaa9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Gift,1930-12,,https://shakespeareandco.princeton.edu/members/beach-family/,Beach Family / Beaches,Beach Family,,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/eliot-ariel-poems-marina/,Ariel Poems: Marina,,"Eliot, T. S.",1930,,Lending Library Card,"Sylvia Beach, Beach Family Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/146e4755-a019-4eef-abd4-26af985499f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/20%2Fc3%2F5d%2F20c35d88f77d4fd2adf60a8f0adbaaa9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Gift,1930-12,,https://shakespeareandco.princeton.edu/members/beach-family/,Beach Family / Beaches,Beach Family,,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/woolf-room-ones/,A Room of One's Own,,"Woolf, Virginia",1929,,Lending Library Card,"Sylvia Beach, Beach Family Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/146e4755-a019-4eef-abd4-26af985499f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/20%2Fc3%2F5d%2F20c35d88f77d4fd2adf60a8f0adbaaa9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1930-12,1931-03,https://shakespeareandco.princeton.edu/members/micheli-d/,Mme D. Micheli,"Micheli, Mme D.",,,3 months,90,,,1930-12,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1931-01,1931-03-09,https://shakespeareandco.princeton.edu/members/trevelyan-julian/,Julian Trevelyan,"Trevelyan, Julian",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/joyce-dubliners/,Dubliners,,"Joyce, James",1914,,Lending Library Card,"Sylvia Beach, Julian Trevelyan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/029b1d10-e2db-4aa7-971e-4c15694d6785/manifest,https://iiif.princeton.edu/loris/figgy_prod/0d%2Fa3%2F7c%2F0da37c9a29f04e85b742cc58f8870ed2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-01,1931-02-21,https://shakespeareandco.princeton.edu/members/trevelyan-julian/,Julian Trevelyan,"Trevelyan, Julian",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/damon-odyssey-dublin-2/,The Odyssey in Dublin,,"Damon, S. Foster",1929,An separate printing of Damon's article from [*Hound & Horn*](https://shakespeareandco.princeton.edu/books/kirstein-hound-horn/) 3.1 (1929).,Lending Library Card,"Sylvia Beach, Julian Trevelyan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/029b1d10-e2db-4aa7-971e-4c15694d6785/manifest,https://iiif.princeton.edu/loris/figgy_prod/0d%2Fa3%2F7c%2F0da37c9a29f04e85b742cc58f8870ed2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-01,1931-03-09,https://shakespeareandco.princeton.edu/members/trevelyan-julian/,Julian Trevelyan,"Trevelyan, Julian",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/joyce-portrait-artist-young/,A Portrait of the Artist as a Young Man,1928,"Joyce, James",1916,,Lending Library Card,"Sylvia Beach, Julian Trevelyan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/029b1d10-e2db-4aa7-971e-4c15694d6785/manifest,https://iiif.princeton.edu/loris/figgy_prod/0d%2Fa3%2F7c%2F0da37c9a29f04e85b742cc58f8870ed2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1931-02,,https://shakespeareandco.princeton.edu/members/davies-m-a/,M. A. Davies,"Davies, M. A.",,,,,,,1931-02,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1931-03,1931-05,https://shakespeareandco.princeton.edu/members/harvey-dorothy/,Dorothy (Dudley) Harvey,"Harvey, Dorothy",,,2 months,61,,,1931-03,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1931-04,1932-01,https://shakespeareandco.princeton.edu/members/maury-mme/,Mme Maury,"Maury, Mme",,,,,,,1931-04,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1931-04,,https://shakespeareandco.princeton.edu/members/cotta-s/,S. Cotta,"Cotta, S.",,,,,,,1931-04,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1931-05,1931-06,https://shakespeareandco.princeton.edu/members/goldberg-rubin/,Rubin Goldberg,"Goldberg, Rubin",,,1 month,31,,,1931-05,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1931-05,1931-12,https://shakespeareandco.princeton.edu/members/holland-b/,B. Holland,"Holland, B.",,,,,,,1931-05,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1931-06,1931-07,https://shakespeareandco.princeton.edu/members/morgan-e-h/,E. H. Morgan,"Morgan, E. H.",,,1 month,30,,,1931-06,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1931-07,1931-10,https://shakespeareandco.princeton.edu/members/gregory-m/,M. Gregory,"Gregory, M.",,,3 months,92,,,1931-07,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1931-07,1931-08,https://shakespeareandco.princeton.edu/members/millard-mona/,Mona Millard,"Millard, Mona",,,1 month,31,,,1931-07,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1931-08,1931-12,https://shakespeareandco.princeton.edu/members/fleischer-arthur/,Arthur Fleischer,"Fleischer, Arthur",,,,,,,1931-08,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1931-08,1931-09,https://shakespeareandco.princeton.edu/members/cammett-elaine/,Elaine Cammett,"Cammett, Elaine",,,1 month,31,,,1931-08,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1931-08,,https://shakespeareandco.princeton.edu/members/hanak-ruth/,Ruth Hanak,"Hanak, Ruth",,,,,,,1931-08,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1931-09,1932-02,https://shakespeareandco.princeton.edu/members/braslavsky-ellen/,Ellen Braslavsky,"Braslavsky, Ellen",,,,,,,1931-09,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1931-09,1931-12,https://shakespeareandco.princeton.edu/members/livesay-dorothy/,Dorothy Livesay,"Livesay, Dorothy",,,3 months,91,,,1931-09,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1931-09,1931-10,https://shakespeareandco.princeton.edu/members/mcwilliam-frederick/,Frederick McWilliam,"McWilliam, Frederick",,,1 month,30,,,1931-09,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1931-09,1931-11,https://shakespeareandco.princeton.edu/members/hubert/,Mrs. F. Hubert,"Hubert, Mrs. F.",,,,,,,1931-09,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1931-09,1931-12,https://shakespeareandco.princeton.edu/members/levison/,Mrs. I. Levison,"Levison, Mrs. I.",,50.00,,,,,1931-09,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1931-09,1931-12,https://shakespeareandco.princeton.edu/members/lannon-margaret/,Margaret Lannon,"Lannon, Margaret",,,3 months,91,,,1931-09,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1931-10,1932-03,https://shakespeareandco.princeton.edu/members/jones-r-e-h/,R. E. H. Jones,"Jones, R. E. H.",,,5 months,152,,,1931-10,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1931-10,1931-11,https://shakespeareandco.princeton.edu/members/dupre/,Marie Antoinette DuprΓ©,"DuprΓ©, Marie Antoinette",,,1 month,31,,,1931-10,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1931-10,1931-11,https://shakespeareandco.princeton.edu/members/hawthorne-e-m/,E. M. Hawthorne,"Hawthorne, E. M.",,,1 month,31,,,1931-10,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1931-10,1932-02,https://shakespeareandco.princeton.edu/members/gauthier-villars/,Mlle Gauthier-Villars,"Gauthier-Villars, Mlle",,,,,,,1931-01,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1931-10,1932-02,https://shakespeareandco.princeton.edu/members/davison-ellen/,Ellen Davison,"Davison, Ellen",,,4 months,123,,,1931-10,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1931-10,1931-11,https://shakespeareandco.princeton.edu/members/drake-louise-s/,Louise S. Drake,"Drake, Louise S.",,,,,,,1931-10,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1931-11,1932-05,https://shakespeareandco.princeton.edu/members/maytham/,Miss Maytham,"Maytham, Miss",,,,,,,1931-11,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1931-11,1931-12,https://shakespeareandco.princeton.edu/members/dutilleul-s/,Mme S. Dutilleul,"Dutilleul, Mme S.",,,1 month,30,,,1931-11,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1931-11,1931-12,https://shakespeareandco.princeton.edu/members/meterie/,Mme MΓ©tΓ©rie,"MΓ©tΓ©rie, Mme",,,1 month,30,,,1931-11,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1931-11,1932-06,https://shakespeareandco.princeton.edu/members/leland-marine/,Marine Leland,"Leland, Marine",,,7 months,213,,,1931-11,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1931-12,1932-05,https://shakespeareandco.princeton.edu/members/kennedy-mrs/,Mrs. Kennedy,"Kennedy, Mrs.",,,5 months,152,,,1931-12,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1931-12,1932-01,https://shakespeareandco.princeton.edu/members/horton-p-c/,P. C. Horton,"Horton, P. C.",,,1 month,31,,,1931-12,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1931-12,1932-01,https://shakespeareandco.princeton.edu/members/holley-bertha/,Bertha Holley,"Holley, Bertha",,,,,,,1931-12,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1931-12,1932-02,https://shakespeareandco.princeton.edu/members/hatch-j-d/,J. D. Hatch,"Hatch, J. D.",,,2 months,62,,,1931-12,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1931-12,1932-04,https://shakespeareandco.princeton.edu/members/deknatel-frederick-b/,Frederick B. Deknatel / Frederic Deknatel,"Deknatel, Frederick B.",,,4 months,122,,,1931-12,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1932-01,,https://shakespeareandco.princeton.edu/members/mottier/,Mme Mottier,"Mottier, Mme",,,,,,,1932-01,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1932-01,1932-02,https://shakespeareandco.princeton.edu/members/gilbert-lawrence/,Lawrence Gilbert,"Gilbert, Lawrence",,,1 month,31,,,1932-01,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1932-01,1932-07,https://shakespeareandco.princeton.edu/members/auge-2/,Simone AugΓ©,"AugΓ©, Simone",,,,,,,1932-01,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1932-01,,https://shakespeareandco.princeton.edu/members/baylor-maria-roy/,Maria Roy Baylor,"Baylor, Maria Roy",,,,,,,1932-01,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1932-01,1932-04,https://shakespeareandco.princeton.edu/members/carlaw-mrs/,Mrs. Carlaw,"Carlaw, Mrs.",,,,,,,1932-01,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1932-01,1932-03,https://shakespeareandco.princeton.edu/members/moness-n/,N. Moness,"Moness, N",,,2 months,60,,,1932-01,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1932-02,,https://shakespeareandco.princeton.edu/members/guerin-1/,Mme Marcel Guerin,"Guerin, Mme Marcel",,,,,,,1932-02,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1932-02,1932-03,https://shakespeareandco.princeton.edu/members/elinore-lady/,Lady Elinore / Mrs. Dakin,"Elinore, Lady",,,,,,,1932-02,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1932-02,1932-05,https://shakespeareandco.princeton.edu/members/clarke-elizabeth/,Elizabeth Clarke,"Clarke, Elizabeth",,,,,,,1932-02,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1932-02,1932-03,https://shakespeareandco.princeton.edu/members/lowenstein/,Mrs. Lowenstein,"Lowenstein, Mrs.",,,1 month,29,,,1932-02,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1932-02,1932-03,https://shakespeareandco.princeton.edu/members/dyett-edmund-g/,Edmund G. Dyett,"Dyett, Edmund G.",,,1 month,29,,,1932-02,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1932-02,1932-06,https://shakespeareandco.princeton.edu/members/dunham-amelia/,Amelia Dunham,"Dunham, Amelia",,,4 months,121,,,1932-02,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1932-02,,https://shakespeareandco.princeton.edu/members/eckstein-viola/,Viola Eckstein,"Eckstein, Viola",,,,,,Day By Day,1932-02,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1932-03,1932-04,https://shakespeareandco.princeton.edu/members/dubruel/,Mme de Broglio Dubruel,"Dubruel, Mme de Broglio",,,1 month,31,,,1932-03,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1932-03,,https://shakespeareandco.princeton.edu/members/neagoe-peter/,Peter Neagoe,"Neagoe, Peter",,,,,,,1932-03,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1932-03,1932-05,https://shakespeareandco.princeton.edu/members/kean-e/,E. Kean,"Kean, E.",,,2 months,61,,,1932-03,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1932-03,1932-05,https://shakespeareandco.princeton.edu/members/dammann-gertrude/,Gertrude Dammann,"Dammann, Gertrude",,,2 months,61,,,1932-03,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1932-03,,https://shakespeareandco.princeton.edu/members/klaussen-olaf/,Olaf Klaussen,"Klaussen, Olaf",,,,,,,1932-03,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1932-04,,https://shakespeareandco.princeton.edu/members/boivin-v/,Mme V. Boivin,"Boivin, Mme V.",,,,,,,1932-04,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1932-04,1932-06,https://shakespeareandco.princeton.edu/members/magalaes-de/,Mlle de MagalaΓ«s,"MagalaΓ«s, Mlle de",,,,,,,1932-04,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1932-04,,https://shakespeareandco.princeton.edu/members/hale-w-h/,W. H. Hale,"Hale, W. H.",,,,,,,1932-04,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1932-04,,https://shakespeareandco.princeton.edu/members/nedwick-rhoda/,Rhoda Nedwick,"Nedwick, Rhoda",,,,,,,1932-04,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1932-04,,https://shakespeareandco.princeton.edu/members/deakin-marguerite/,Marguerite Deakin,"Deakin, Marguerite",,,,,,Day By Day,1932-04,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1932-04,,https://shakespeareandco.princeton.edu/members/frankenberg-jasper/,Jasper Frankenberg,"Frankenberg, Jasper",,,,,,,1932-04,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1932-04,1932-04-28,https://shakespeareandco.princeton.edu/members/schlumberger-jean/,Jean Schlumberger,"Schlumberger, Jean",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/murry-woman-story-h/,Son of Woman: The Story of D. H. Lawrence,,"Murry, John Middleton",1931,,Lending Library Card,"Sylvia Beach, Jean Schlumberger Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b29e004f-91aa-4b3a-b2b9-3abfb69b8ac7/manifest,https://iiif-cloud.princeton.edu/iiif/2/e8%2Fed%2Fc2%2Fe8edc28311914253a864357db8714fbd%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1932-04,1932-05,https://shakespeareandco.princeton.edu/members/schlumberger-jean/,Jean Schlumberger,"Schlumberger, Jean",25.00,,1 month,30,1,,1932-04,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Jean Schlumberger Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b29e004f-91aa-4b3a-b2b9-3abfb69b8ac7/manifest,https://iiif-cloud.princeton.edu/iiif/2/e8%2Fed%2Fc2%2Fe8edc28311914253a864357db8714fbd%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1932-05,1932-06,https://shakespeareandco.princeton.edu/members/ehrenberg-lucile/,Lucile Ehrenberg,"Ehrenberg, Lucile",,,1 month,31,,,1932-05,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1932-06,,https://shakespeareandco.princeton.edu/members/murdoch/,J. R. Murdoch,"Murdoch, J. R.",,,,,,,1932-06,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1932-07,1932-09,https://shakespeareandco.princeton.edu/members/quackenbush-stanley/,Stanley L. Quackenbush,"Quackenbush, Stanley L.",,,,,,,1932-07,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1932-07,,https://shakespeareandco.princeton.edu/members/melera-5/,Melera,Melera,,,,,,,1932-07,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1932-07,,https://shakespeareandco.princeton.edu/members/chassinat/,Mme Chassinat,"Chassinat, Mme",,,,,,,1932-07,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1932-08,1932-09,https://shakespeareandco.princeton.edu/members/newcomb-1/,Miss Newcomb,"Newcomb, Miss",,,,,,,1932-08,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1932-09,,https://shakespeareandco.princeton.edu/members/beauvoir-simone-de/,Simone de Beauvoir,"de Beauvoir, Simone",,,,,,,1932-09,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1932-09,,https://shakespeareandco.princeton.edu/members/pinkham-1/,Mrs. Pinkham,"Pinkham, Mrs.",,,,,,,1932-09,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1932-09,,https://shakespeareandco.princeton.edu/members/baker-miss/,Miss Baker,"Baker, Miss",,,,,,,1932-09,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1932-12,,https://shakespeareandco.princeton.edu/members/back-dr/,Dr. Back,"Back, Dr.",,,,,,,1932-12,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Purchase,1933-02,1933-02,https://shakespeareandco.princeton.edu/members/oppen/,George Oppen / To Publishers,"Oppen, George",,,,,,,,,,,19.25,FRF,https://shakespeareandco.princeton.edu/books/ben-jonson/,Ben Jonson,,,,"Unidentified edition. N. E. Mayer borrows volume 1, Stanislas Pascal Franchot borrows volume 3, Irene Wissotzky borrows volumes 1β3, and Francoise de Marcilly borrows volume 2.",Lending Library Card,"Sylvia Beach, George Oppen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f6f86621-7670-4887-954c-25658976393e/manifest,https://iiif.princeton.edu/loris/figgy_prod/3e%2F11%2F7f%2F3e117f3d715b4d979bc396525858069e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Generic,1933-12,,https://shakespeareandco.princeton.edu/members/meyer-florence/,Florence Meyer,"Meyer, Florence",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/aubert-art-pantomime/,The Art of Pantomime,,"Aubert, Charles",1927,,Lending Library Card,"Sylvia Beach, Florence Meyer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd3b6930-a7f4-40e5-88ad-1a27c20d35f1/manifest,https://iiif.princeton.edu/loris/figgy_prod/ce%2F38%2Fc0%2Fce38c07006f54cd5b453f4e61d7f497a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03,1934-03-27,https://shakespeareandco.princeton.edu/members/tony-mayer/,Thérèse Tony-Mayer,"Tony-Mayer, Thérèse",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/richardson-oberland-pilgrimage-9/,Oberland (Pilgrimage 9),,"Richardson, Dorothy M.",1927,,Lending Library Card,"Sylvia Beach, Thérèse Tony-Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/27246b4c-7d99-4dca-b874-ab90bd542cfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2Fa0%2Fff%2F50a0ff19abc240c680a6a33baf060b76%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03,1934-03-03,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/goethe-faust/,Faust,,"Goethe, Johann Wolfgang von",,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/c3%2Fcf%2Fcb%2Fc3cfcbac695b438cb411cef7054fed8e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03,1934-03,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/gide-lafcadios-adventures/,Lafcadio's Adventures,,"Gide, AndrΓ©",1925,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/c3%2Fcf%2Fcb%2Fc3cfcbac695b438cb411cef7054fed8e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03,1934-03-05,https://shakespeareandco.princeton.edu/members/wibbelz-henry/,Henry W. Wibbelz,"Wibbelz, Henry W.",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/williams-american-grain/,In the American Grain,,"Williams, William Carlos",1925,,Lending Library Card,"Sylvia Beach, Henry W. Wibbelz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/225d5fc4-c83d-46e5-b861-ad36ae4548b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/fd%2F3b%2F61%2Ffd3b61e39369435c9938f281cc02292f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-07,1935-07-25,https://shakespeareandco.princeton.edu/members/rirachowsky-fanny/,Fanny Rirachowsky,"Rirachowsky, Fanny",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/macaulay-told-idiot/,Told by an Idiot,,"Macaulay, Rose",1923,,Lending Library Card,"Sylvia Beach, Fanny Rirachowsky Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ed53891-0a1b-4bc4-8b10-d7d32f46663a/manifest,https://iiif-cloud.princeton.edu/iiif/2/2c%2Fe2%2F41%2F2ce24179ad9943f384d53e6947c82f6c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,,1935-12,https://shakespeareandco.princeton.edu/members/weiss-colette/,Colette Weiss,"Weiss, Colette",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/kirstein-hound-horn/,Hound & Horn,"Vol. 3, no. 3, Apr β Jun 1930",,,,Lending Library Card,"Sylvia Beach, Mme Collette Weiss Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a67263e9-aea1-4914-a98b-c9086ec72353/manifest,https://iiif.princeton.edu/loris/figgy_prod/ac%2Fdf%2Fbe%2Facdfbe2fe2604170a4a1a9a8c63ef0b5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1936-11,1936-11,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,,,82.50,FRF,https://shakespeareandco.princeton.edu/books/hone-life-george-moore/,The Life of George Moore,,"Hone, Joseph Maunsell",1936,,Lending Library Card,"Sylvia Beach, James Joyce Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/60df1b72-de14-4053-ac2b-b16671872306/manifest,https://iiif.princeton.edu/loris/figgy_prod/80%2Fc4%2Feb%2F80c4eb4edb8f46bc8c6e625f513271ba%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1936-12,1936-12-15,https://shakespeareandco.princeton.edu/members/church-henry/,Henry Church,"Church, Henry",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/spender-burning-cactus/,The Burning Cactus,,"Spender, Stephen",1936,,Lending Library Card,"Sylvia Beach, Henry Church Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4f79663d-da9d-460a-bbd7-44cd14c2cc0f/manifest,https://iiif-cloud.princeton.edu/iiif/2/17%2F7d%2F89%2F177d8978b5794fef94ea51f318e9a26e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1936-12,1936-12-15,https://shakespeareandco.princeton.edu/members/church-henry/,Henry Church,"Church, Henry",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/crofts-man-overboard/,Man Overboard,,"Crofts, Freeman Wills",1936,,Lending Library Card,"Sylvia Beach, Henry Church Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4f79663d-da9d-460a-bbd7-44cd14c2cc0f/manifest,https://iiif-cloud.princeton.edu/iiif/2/17%2F7d%2F89%2F177d8978b5794fef94ea51f318e9a26e%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1937-01,1937-01,https://shakespeareandco.princeton.edu/members/vanderpyl/,Mr. Vanderpyl,"Vanderpyl, Mr.",,,,,,,,,,,,,,,,,,,Address Book,"Sylvia Beach, Address Book 1935β1937, box 70, folder 2, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1937-04,1937-04,https://shakespeareandco.princeton.edu/members/milon-denise/,Denise Milon,"Milon, Denise",,,,,,,,,,,,,,,,,,,Address Book,"Sylvia Beach, Address Book 1935β1937, box 70, folder 2, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1937-05,1937-05,https://shakespeareandco.princeton.edu/members/lunn-jean/,Jean Lunn,"Lunn, Jean",,,,,,,,30.00,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1935β1937, box 70, folder 2, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Generic,1937-07,,https://shakespeareandco.princeton.edu/members/marian-willard/,Marian Willard,"Willard, Marian",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/bacot-poete-tibetain-milarepa/,"Le poète tibétain Milarépa: Ses crimes, ses épreuves, son nirvãna",,,1925,,Lending Library Card,"Sylvia Beach, Miss Marian Willard Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7b2e3b73-f04b-42d8-a9d8-22d013c3e10d/manifest,https://iiif.princeton.edu/loris/figgy_prod/9f%2Fb0%2F39%2F9fb039c2f7fb45ed85e7f39a8875a632%2Fintermediate_file.jp2/full/full/0/default.jpg
+Generic,1937-07,,https://shakespeareandco.princeton.edu/members/marian-willard/,Marian Willard,"Willard, Marian",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/calder-marshall-dead-centre/,Dead Centre,,"Calder-Marshall, Arthur",1933,,Lending Library Card,"Sylvia Beach, Miss Marian Willard Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7b2e3b73-f04b-42d8-a9d8-22d013c3e10d/manifest,https://iiif.princeton.edu/loris/figgy_prod/9f%2Fb0%2F39%2F9fb039c2f7fb45ed85e7f39a8875a632%2Fintermediate_file.jp2/full/full/0/default.jpg
+Generic,1937-07,,https://shakespeareandco.princeton.edu/members/marian-willard/,Marian Willard,"Willard, Marian",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/guilloux-sang-noir/,Le sang noir,,"Guilloux, Louis",1935,,Lending Library Card,"Sylvia Beach, Miss Marian Willard Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7b2e3b73-f04b-42d8-a9d8-22d013c3e10d/manifest,https://iiif.princeton.edu/loris/figgy_prod/9f%2Fb0%2F39%2F9fb039c2f7fb45ed85e7f39a8875a632%2Fintermediate_file.jp2/full/full/0/default.jpg
+Generic,1937-07,,https://shakespeareandco.princeton.edu/members/marian-willard/,Marian Willard,"Willard, Marian",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/ramus/,Ramu's?,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Miss Marian Willard Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7b2e3b73-f04b-42d8-a9d8-22d013c3e10d/manifest,https://iiif.princeton.edu/loris/figgy_prod/9f%2Fb0%2F39%2F9fb039c2f7fb45ed85e7f39a8875a632%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1937-09,1937-09-20,https://shakespeareandco.princeton.edu/members/davet-yvonne/,Yvonne Davet,"Davet, Yvonne",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/new-masses/,New Masses,,,,,Lending Library Card,"Sylvia Beach, Yvonne Davet Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8169ca8b-1853-41d7-80d9-b7adf4271c59/manifest,https://iiif.princeton.edu/loris/figgy_prod/8c%2F3b%2F20%2F8c3b207e430f4cc58816ebaada15fa48%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1937-12,1937-12-10,https://shakespeareandco.princeton.edu/members/teissier-jeanine-delpech/,Jeanine (Delpech) Teissier,"Teissier, Jeanine",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/obrien-best-short-stories/,The Best Short Stories,,,,Unidentified edition. Year unknown.,Lending Library Card,"Sylvia Beach, Teissier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f51ad0a-e65d-435c-a9bc-8683d87d3a45/manifest,https://iiif.princeton.edu/loris/figgy_prod/1d%2F7f%2F9d%2F1d7f9dee20654e1d8eca93907c9d3b48%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1937-12,1937-12-30,https://shakespeareandco.princeton.edu/members/prenter/,Helen Prenter,"Prenter, Helen",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/morgan-sparkenbroke/,Sparkenbroke,,"Morgan, Charles",1936,,Lending Library Card,"Sylvia Beach, Helen Prenter Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2d1c5b0b-e993-4778-8a9a-2a88937829a5/manifest,https://iiif-cloud.princeton.edu/iiif/2/44%2Fd9%2Fa5%2F44d9a5bdf4ea4686b28082f33da8a343%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1938-04,1938-04,https://shakespeareandco.princeton.edu/members/mercanton-jacques/,Jacques Mercanton,"Mercanton, Jacques",,,,,,,,,,,200.00,FRF,https://shakespeareandco.princeton.edu/books/joyce-anna-livia-plurabelle/,Anna Livia Plurabelle,,"Joyce, James",1930,"Likely the Faber & Faber edition of *Anna Livia Plurabelle: Fragment of Work in Progress* (1930). Jacques Mercanton, however, likely purchases the Crosby Gaige edition of [*Anna Livia Plurabelle*](http://www.riverrun.org.uk/jj/ALP.pdf) (1928).",Lending Library Card,"Sylvia Beach, Jacques Mercanton Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/93d3b41b-61d9-4391-a76e-d5b1a1e3d629/manifest,https://iiif.princeton.edu/loris/figgy_prod/37%2F71%2F73%2F3771737b205e4a818d9903a437ebb23c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Generic,1938-04,,https://shakespeareandco.princeton.edu/members/mercanton-jacques/,Jacques Mercanton,"Mercanton, Jacques",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/yeats-collected-poems-w/,The Collected Poems of W. B. Yeats,,"Yeats, William Butler",1933,,Lending Library Card,"Sylvia Beach, Jacques Mercanton Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/93d3b41b-61d9-4391-a76e-d5b1a1e3d629/manifest,https://iiif.princeton.edu/loris/figgy_prod/37%2F71%2F73%2F3771737b205e4a818d9903a437ebb23c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1938-06,1938-06-18,https://shakespeareandco.princeton.edu/members/massey/,Adelaide W. Massey / A. W. Massey,"Massey, Adelaide W.",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/st-ignatius/,St. Ignatius,,,,Unidentified. Likely Francis Thompson's [*Saint Ignatius Loyola*](https://shakespeareandco.princeton.edu/books/thompson-saint-ignatius-loyola/) (1909).,Lending Library Card,"Sylvia Beach, A. W. Massey Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c4712c46-76f3-4581-99d6-d0ffd31b4138/manifest,https://iiif-cloud.princeton.edu/iiif/2/7b%2F09%2F3b%2F7b093b600c4645f6932513f2b0b77eea%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1938-11,,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/rosten-education-hyman-kaplan/,The Education of Hyman Kaplan,,"Rosten, Leo",1937,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/50%2Fd7%2F12%2F50d712c7ee894ff5a015c9e171d40f0c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1938-12,,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/new-masses/,New Masses,,,,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/92%2F2b%2F71%2F922b71306ee04d528d0a4d2e7c2688b8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1939-03,1939-03-31,https://shakespeareandco.princeton.edu/members/campbell-arlen/,Arlen Campbell,"Campbell, Arlen",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/maugham-summing/,The Summing Up,,"Maugham, W. Somerset",1938,,Lending Library Card,"Sylvia Beach, Arlen Campbell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/963e333d-0170-4f91-812c-6fd10fe8bd1b/manifest,https://iiif.princeton.edu/loris/figgy_prod/c2%2F90%2Fc1%2Fc290c184059d41faa3b4c5726b41c49c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1939-04,1939-04,https://shakespeareandco.princeton.edu/members/leyris-pierre/,Pierre Leyris,"Leyris, Pierre",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/richardson-tunnel-pilgrimage-4/,The Tunnel (Pilgrimage 4),,"Richardson, Dorothy M.",1919,,Lending Library Card,"Sylvia Beach, Pierre Leyris Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6c75c34b-de6f-4465-baee-8f7cd76f5c87/manifest,https://iiif-cloud.princeton.edu/iiif/2/7c%2F62%2F6f%2F7c626fa43c644674b95599ffb016b824%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1939-04,1939-04,https://shakespeareandco.princeton.edu/members/leyris-pierre/,Pierre Leyris,"Leyris, Pierre",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/richardson-honeycomb-pilgrimage-3/,Honeycomb (Pilgrimage 3),,"Richardson, Dorothy M.",1917,,Lending Library Card,"Sylvia Beach, Pierre Leyris Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6c75c34b-de6f-4465-baee-8f7cd76f5c87/manifest,https://iiif-cloud.princeton.edu/iiif/2/7c%2F62%2F6f%2F7c626fa43c644674b95599ffb016b824%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1939-07,1939-09-16,https://shakespeareandco.princeton.edu/members/teissier-jeanine-delpech/,Jeanine (Delpech) Teissier,"Teissier, Jeanine",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/waln-reaching-stars/,Reaching for the Stars,,"Waln, Nora",1939,,Lending Library Card,"Sylvia Beach, Teissier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f51ad0a-e65d-435c-a9bc-8683d87d3a45/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2F1b%2F80%2Fcb1b8055a26a4bf9b96525794ef57e7b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Gift,1939-07,,https://shakespeareandco.princeton.edu/members/spender-stephen/,Stephen Spender,"Spender, Stephen",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/lambert-listener/,The Listener,"Vol. 20, no. 519, Dec 22, 1938",,,,Lending Library Card,"Sylvia Beach, Stephen Spender Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c05b9878-2542-4d04-a2dd-d9d8caf20719/manifest,https://iiif-cloud.princeton.edu/iiif/2/68%2Fd6%2Fb8%2F68d6b882b97b42ada0b9a66b2509c5c7%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1939-12,1939-12-11,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/lewis-babbitt/,Babbitt,,"Lewis, Sinclair",1922,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/cf%2Fa8%2F0c%2Fcfa80ca7fa814b99bc1c424665893694%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1940-02,1940-03-01,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/walpole-prayer/,A Prayer for My Son: A Novel,,"Walpole, Hugh",1936,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/86%2Ffc%2Fb7%2F86fcb7f123a340758e21b36f0766db47%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1940-11,,https://shakespeareandco.princeton.edu/members/woodward-daphne/,Daphne Woodward,"Woodward, Daphne",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/best-crime-stories/,Best Crime Stories,,,1934,,Lending Library Card,"Sylvia Beach, Miss Daphne Woodward Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/08cd6638-4534-4f54-b94d-4c6a7def9689/manifest,https://iiif.princeton.edu/loris/figgy_prod/4b%2Fea%2F56%2F4bea5607bfa54c7c920c911e1ed30951%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1940-12,1940-12-16,https://shakespeareandco.princeton.edu/members/lamblin-bianca/,Bianca (Bienenfeld) Lamblin / Mlle Bianca Bienenfeld,"Lamblin, Bianca",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/ofaolain-bird-alone/,Bird Alone,,"Γ FaolΓ‘in, SeΓ‘n",1936,,Lending Library Card,"Sylvia Beach, Bianca Bienenfeld Lamblin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/48164c24-3131-4351-95fc-073c13608301/manifest,https://iiif.princeton.edu/loris/figgy_prod/ab%2F1e%2F6e%2Fab1e6ec2216a4bd994929bcf5b81f067%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1942-08,1942-09-14,https://shakespeareandco.princeton.edu/members/sibon-marcelle/,Marcelle Sibon,"Sibon, Marcelle",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/austen-letters-jane-austen/,Letters of Jane Austen,,"Austen, Jane",1884,,Lending Library Card,"Sylvia Beach, Marcelle Sibon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b0fd48ce-dfc4-4f15-a5f4-02dd56b84717/manifest,https://iiif-cloud.princeton.edu/iiif/2/dd%2F1c%2Ff0%2Fdd1cf09e15c14a108c6c67d4e5c14bd7%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1943-03,1943-07-08,https://shakespeareandco.princeton.edu/members/watson-sarah-pressly/,Sarah Pressly Watson / Miss S. P. Watson,"Watson, Sarah Pressly",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/smith-unforgotten-years/,Unforgotten Years,,"Smith, Logan Pearsall",1938,,Lending Library Card,"Sylvia Beach, Sarah Pressly Watson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b54712a1-8ea4-4b3b-9dbb-f81c5950ac57/manifest,https://iiif.princeton.edu/loris/figgy_prod/c4%2F3f%2Fcc%2Fc43fccf5a07842e5a90e99001309aeec%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1943-09,1943-11-28,https://shakespeareandco.princeton.edu/members/vigan/,Monique de Vigan,"de Vigan, Monique",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/lawrence-seven-pillars-wisdom/,Seven Pillars of Wisdom,,"Lawrence, T. E.",1935,,Lending Library Card,"Sylvia Beach, Mlle Monique de Vigan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9d1f844b-08c2-43d8-955e-202b0e6355dd/manifest,https://iiif.princeton.edu/loris/figgy_prod/01%2F7f%2F52%2F017f5280c54b453bb5d5c154ba3e799a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Generic,1944-04,,https://shakespeareandco.princeton.edu/members/duhamel-marcel/,Marcel Duhamel,"Duhamel, Marcel",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/dos-passos-big-money/,Big Money,,"Dos Passos, John",1936,,Lending Library Card,"Sylvia Beach, Marcel Duhamel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/843f16aa-4918-4ae3-a80b-caf0404b87e6/manifest,https://iiif.princeton.edu/loris/figgy_prod/91%2F68%2F1e%2F91681ef12c4d41a7ae700bfc4d5a1c13%2Fintermediate_file.jp2/full/full/0/default.jpg
+Generic,1944-04,,https://shakespeareandco.princeton.edu/members/duhamel-marcel/,Marcel Duhamel,"Duhamel, Marcel",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/wilder-heavens-destination/,Heaven's My Destination,,"Wilder, Thornton",1934,,Lending Library Card,"Sylvia Beach, Marcel Duhamel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/843f16aa-4918-4ae3-a80b-caf0404b87e6/manifest,https://iiif.princeton.edu/loris/figgy_prod/91%2F68%2F1e%2F91681ef12c4d41a7ae700bfc4d5a1c13%2Fintermediate_file.jp2/full/full/0/default.jpg
+Generic,1944-04,,https://shakespeareandco.princeton.edu/members/duhamel-marcel/,Marcel Duhamel,"Duhamel, Marcel",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/hurston-jonahs-gourd-vine/,Jonah's Gourd Vine,,"Hurston, Zora Neale",1934,,Lending Library Card,"Sylvia Beach, Marcel Duhamel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/843f16aa-4918-4ae3-a80b-caf0404b87e6/manifest,https://iiif.princeton.edu/loris/figgy_prod/91%2F68%2F1e%2F91681ef12c4d41a7ae700bfc4d5a1c13%2Fintermediate_file.jp2/full/full/0/default.jpg
+Generic,1944-04,,https://shakespeareandco.princeton.edu/members/duhamel-marcel/,Marcel Duhamel,"Duhamel, Marcel",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/baker-young-man-horn/,Young Man with a Horn,,"Baker, Dorothy",1939,,Lending Library Card,"Sylvia Beach, Marcel Duhamel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/843f16aa-4918-4ae3-a80b-caf0404b87e6/manifest,https://iiif.princeton.edu/loris/figgy_prod/91%2F68%2F1e%2F91681ef12c4d41a7ae700bfc4d5a1c13%2Fintermediate_file.jp2/full/full/0/default.jpg
+Generic,1944-04,,https://shakespeareandco.princeton.edu/members/duhamel-marcel/,Marcel Duhamel,"Duhamel, Marcel",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/hemingway-torrents-spring/,The Torrents of Spring,,"Hemingway, Ernest",1926,,Lending Library Card,"Sylvia Beach, Marcel Duhamel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/843f16aa-4918-4ae3-a80b-caf0404b87e6/manifest,https://iiif.princeton.edu/loris/figgy_prod/91%2F68%2F1e%2F91681ef12c4d41a7ae700bfc4d5a1c13%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1944-04,,https://shakespeareandco.princeton.edu/members/watson-captain/,Captain Watson,"Watson, Captain",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/hardy-dynasts/,The Dynasts,,"Hardy, Thomas",1904,,Lending Library Card,"Sylvia Beach, Watson Lending Library Card, Sylvia Beach Papers, Box 43, Rare Books and Special Collections, Princeton University",https://figgy.princeton.edu/concern/scanned_resources/291584d0-57d8-43e1-87e7-ce56143687cf/manifest,https://iiif.princeton.edu/loris/figgy_prod/02%2F53%2F96%2F025396b2e4aa4e78a9ad40407171be45%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1944-04,,https://shakespeareandco.princeton.edu/members/watson-captain/,Captain Watson,"Watson, Captain",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/james-portrait-lady/,The Portrait of a Lady,,"James, Henry",1881,,Lending Library Card,"Sylvia Beach, Watson Lending Library Card, Sylvia Beach Papers, Box 43, Rare Books and Special Collections, Princeton University",https://figgy.princeton.edu/concern/scanned_resources/291584d0-57d8-43e1-87e7-ce56143687cf/manifest,https://iiif.princeton.edu/loris/figgy_prod/02%2F53%2F96%2F025396b2e4aa4e78a9ad40407171be45%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1944-06,1944-06,https://shakespeareandco.princeton.edu/members/wendel/,Hélène de Wendel / Comtesse de Noailles,"de Wendel, Hélène",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/boswell-shorter-boswell/,A Shorter Boswell,,"Boswell, James",1925,,Lending Library Card,"Sylvia Beach, Madame Hélène Wendel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c70e230a-8313-4c53-9939-22beb5f809b6/manifest,https://iiif-cloud.princeton.edu/iiif/2/0c%2F51%2Fb2%2F0c51b25af4744ae7be034c7ecee1384f%2Fintermediate_file/full/full/0/default.jpg
+Borrow,,1944-06,https://shakespeareandco.princeton.edu/members/wendel/,Hélène de Wendel / Comtesse de Noailles,"de Wendel, Hélène",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/jefferies-story-heart-autobiography/,The Story of My Heart: My Autobiography,,"Jefferies, Richard",1883,,Lending Library Card,"Sylvia Beach, Madame Hélène Wendel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c70e230a-8313-4c53-9939-22beb5f809b6/manifest,https://iiif-cloud.princeton.edu/iiif/2/0c%2F51%2Fb2%2F0c51b25af4744ae7be034c7ecee1384f%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1945-03,1945-04-04,https://shakespeareandco.princeton.edu/members/vigan/,Monique de Vigan,"de Vigan, Monique",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/osborne-letters-dorothy-osborne/,The Letters from Dorothy Osborne to Sir William Temple,,"Osborne, Dorothy",,,Lending Library Card,"Sylvia Beach, Mlle Monique de Vigan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9d1f844b-08c2-43d8-955e-202b0e6355dd/manifest,https://iiif.princeton.edu/loris/figgy_prod/2b%2Fc2%2F5a%2F2bc25ac709274774946ab1b5f30302db%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1945-03,1945-04-04,https://shakespeareandco.princeton.edu/members/vigan/,Monique de Vigan,"de Vigan, Monique",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/heywood-woman-killed-kindness/,A Woman Killed with Kindness,,"Heywood, Thomas",,,Lending Library Card,"Sylvia Beach, Mlle Monique de Vigan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9d1f844b-08c2-43d8-955e-202b0e6355dd/manifest,https://iiif.princeton.edu/loris/figgy_prod/2b%2Fc2%2F5a%2F2bc25ac709274774946ab1b5f30302db%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1945-03,,https://shakespeareandco.princeton.edu/members/watson-sarah-pressly/,Sarah Pressly Watson / Miss S. P. Watson,"Watson, Sarah Pressly",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/bennett-helen-high-hand/,Helen with the High Hand,,"Bennett, Arnold",1910,,Lending Library Card,"Sylvia Beach, Sarah Pressly Watson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b54712a1-8ea4-4b3b-9dbb-f81c5950ac57/manifest,https://iiif.princeton.edu/loris/figgy_prod/e0%2F81%2Fe9%2Fe081e9ec3c794babafffbb1efd87f83b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Generic,1945-03,,https://shakespeareandco.princeton.edu/members/watson-sarah-pressly/,Sarah Pressly Watson / Miss S. P. Watson,"Watson, Sarah Pressly",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/capek-letters-england/,Letters from England,,"Capek, Karel",1925,,Lending Library Card,"Sylvia Beach, Sarah Pressly Watson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b54712a1-8ea4-4b3b-9dbb-f81c5950ac57/manifest,https://iiif.princeton.edu/loris/figgy_prod/e0%2F81%2Fe9%2Fe081e9ec3c794babafffbb1efd87f83b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1945-03,,https://shakespeareandco.princeton.edu/members/watson-sarah-pressly/,Sarah Pressly Watson / Miss S. P. Watson,"Watson, Sarah Pressly",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/bennett-card-story-adventure/,The Card: A Story of Adventure in the Five Towns,,"Bennett, Arnold",1911,,Lending Library Card,"Sylvia Beach, Sarah Pressly Watson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b54712a1-8ea4-4b3b-9dbb-f81c5950ac57/manifest,https://iiif.princeton.edu/loris/figgy_prod/e0%2F81%2Fe9%2Fe081e9ec3c794babafffbb1efd87f83b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1946-03,1951-03,https://shakespeareandco.princeton.edu/members/wendel/,Hélène de Wendel / Comtesse de Noailles,"de Wendel, Hélène",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/richardson-pointed-roofs/,Pointed Roofs (Pilgrimage 1),,"Richardson, Dorothy M.",1915,,Lending Library Card,"Sylvia Beach, Madame Hélène Wendel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c70e230a-8313-4c53-9939-22beb5f809b6/manifest,https://iiif-cloud.princeton.edu/iiif/2/04%2F5b%2F6e%2F045b6e895d1d4158a297747a699e0f2e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1946-03,,https://shakespeareandco.princeton.edu/members/wendel/,Hélène de Wendel / Comtesse de Noailles,"de Wendel, Hélène",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/paltock-life-adventures-peter/,The Life and Adventures of Peter Wilkins,,"Paltock, Robert",1751,,Lending Library Card,"Sylvia Beach, Madame Hélène Wendel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c70e230a-8313-4c53-9939-22beb5f809b6/manifest,https://iiif-cloud.princeton.edu/iiif/2/04%2F5b%2F6e%2F045b6e895d1d4158a297747a699e0f2e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1946-03,,https://shakespeareandco.princeton.edu/members/wendel/,Hélène de Wendel / Comtesse de Noailles,"de Wendel, Hélène",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/beowulf/,Beowulf,,,,,Lending Library Card,"Sylvia Beach, Madame Hélène Wendel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c70e230a-8313-4c53-9939-22beb5f809b6/manifest,https://iiif-cloud.princeton.edu/iiif/2/04%2F5b%2F6e%2F045b6e895d1d4158a297747a699e0f2e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1946-03,1946-11,https://shakespeareandco.princeton.edu/members/wendel/,Hélène de Wendel / Comtesse de Noailles,"de Wendel, Hélène",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/ashton-swan-usk-historical/,The Swan of Usk: A Historical Novel,,"Ashton, Helen",1940,,Lending Library Card,"Sylvia Beach, Madame Hélène Wendel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c70e230a-8313-4c53-9939-22beb5f809b6/manifest,https://iiif-cloud.princeton.edu/iiif/2/04%2F5b%2F6e%2F045b6e895d1d4158a297747a699e0f2e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1946-03,1946-11,https://shakespeareandco.princeton.edu/members/wendel/,Hélène de Wendel / Comtesse de Noailles,"de Wendel, Hélène",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/hudson-shepherds-life/,A Shepherd's Life,,"Hudson, W. H.",1910,,Lending Library Card,"Sylvia Beach, Madame Hélène Wendel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c70e230a-8313-4c53-9939-22beb5f809b6/manifest,https://iiif-cloud.princeton.edu/iiif/2/04%2F5b%2F6e%2F045b6e895d1d4158a297747a699e0f2e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1946-12,1947-02,https://shakespeareandco.princeton.edu/members/vigan/,Monique de Vigan,"de Vigan, Monique",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/wright-black-boy/,Black Boy,,"Wright, Richard",1945,"On December 4, 1946, Sylvia Beach sent a copies of *Black Boy* and *Native Son* to Jean DenoΓ«l, who was helping to arrange for Italian translations of Wright's work.",Lending Library Card,"Sylvia Beach, Mlle Monique de Vigan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9d1f844b-08c2-43d8-955e-202b0e6355dd/manifest,https://iiif.princeton.edu/loris/figgy_prod/54%2Ff7%2F63%2F54f763c800c34e1ba964e3ea00c6904c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1947-05,,https://shakespeareandco.princeton.edu/members/yeats-anne/,Anne Yeats,"Yeats, Anne",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/faulkner-lay-dying/,As I Lay Dying,,"Faulkner, William",1930,,Lending Library Card,"Sylvia Beach, Miss Anne Yeats Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/34fc1590-183a-457f-aa13-0715ab8aaf92/manifest,https://iiif.princeton.edu/loris/figgy_prod/57%2Fb7%2Fc9%2F57b7c97d63cc4fb2b95b5bf81085ed55%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1947-05,,https://shakespeareandco.princeton.edu/members/yeats-anne/,Anne Yeats,"Yeats, Anne",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/wright-black-boy/,Black Boy,,"Wright, Richard",1945,"On December 4, 1946, Sylvia Beach sent a copies of *Black Boy* and *Native Son* to Jean DenoΓ«l, who was helping to arrange for Italian translations of Wright's work.",Lending Library Card,"Sylvia Beach, Miss Anne Yeats Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/34fc1590-183a-457f-aa13-0715ab8aaf92/manifest,https://iiif.princeton.edu/loris/figgy_prod/57%2Fb7%2Fc9%2F57b7c97d63cc4fb2b95b5bf81085ed55%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1947-05,,https://shakespeareandco.princeton.edu/members/yeats-anne/,Anne Yeats,"Yeats, Anne",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/michaux-plume-precede-lointain/,Plume: PrΓ©cΓ©dΓ© de lointain intΓ©rieur,,"Michaux, Henri",1938,,Lending Library Card,"Sylvia Beach, Miss Anne Yeats Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/34fc1590-183a-457f-aa13-0715ab8aaf92/manifest,https://iiif.princeton.edu/loris/figgy_prod/57%2Fb7%2Fc9%2F57b7c97d63cc4fb2b95b5bf81085ed55%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1947-05,,https://shakespeareandco.princeton.edu/members/yeats-anne/,Anne Yeats,"Yeats, Anne",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/cassells-french-english/,"Cassell's French-English, English-French Dictionary",,,1921,"Likely the 30th edition, published in 1947.",Lending Library Card,"Sylvia Beach, Miss Anne Yeats Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/34fc1590-183a-457f-aa13-0715ab8aaf92/manifest,https://iiif.princeton.edu/loris/figgy_prod/57%2Fb7%2Fc9%2F57b7c97d63cc4fb2b95b5bf81085ed55%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1947-05,,https://shakespeareandco.princeton.edu/members/yeats-anne/,Anne Yeats,"Yeats, Anne",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/hemingway-farewell-arms/,A Farewell to Arms,,"Hemingway, Ernest",1929,,Lending Library Card,"Sylvia Beach, Miss Anne Yeats Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/34fc1590-183a-457f-aa13-0715ab8aaf92/manifest,https://iiif.princeton.edu/loris/figgy_prod/57%2Fb7%2Fc9%2F57b7c97d63cc4fb2b95b5bf81085ed55%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1954-05,1954-05-14,https://shakespeareandco.princeton.edu/members/schlumberger-jean/,Jean Schlumberger,"Schlumberger, Jean",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/eliot-cocktail-party-comedy/,The Cocktail Party: A Comedy,,"Eliot, T. S.",1950,,Lending Library Card,"Sylvia Beach, Jean Schlumberger Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b29e004f-91aa-4b3a-b2b9-3abfb69b8ac7/manifest,https://iiif-cloud.princeton.edu/iiif/2/04%2Fb7%2F17%2F04b71716fc93479c92dc7e84833aaaed%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1956-01,1956-04-01,https://shakespeareandco.princeton.edu/members/beach-sylvia/,Sylvia Beach,"Beach, Sylvia",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/larbaud-lettres-andre-gide/,Lettres Γ AndrΓ© Gide,,"Larbaud, Valery",1948,,Lending Library Card,"Sylvia Beach, Sylvia Beach Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/aaa32e69-48d3-4682-bd8a-7dcf6541c391/manifest,https://iiif.princeton.edu/loris/figgy_prod/44%2Fe7%2F1e%2F44e71e31375d4409836f069e073b4017%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1956-01,1956-04-01,https://shakespeareandco.princeton.edu/members/beach-sylvia/,Sylvia Beach,"Beach, Sylvia",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/vaucaire-toussaint-louverture/,Toussaint-Louverture,,"Vaucaire, Michel",1930,,Lending Library Card,"Sylvia Beach, Sylvia Beach Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/aaa32e69-48d3-4682-bd8a-7dcf6541c391/manifest,https://iiif.princeton.edu/loris/figgy_prod/44%2Fe7%2F1e%2F44e71e31375d4409836f069e073b4017%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1956-01,1956-04-01,https://shakespeareandco.princeton.edu/members/beach-sylvia/,Sylvia Beach,"Beach, Sylvia",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/butler-vie-habitude/,La vie et l'habitude,,"Butler, Samuel",1922,,Lending Library Card,"Sylvia Beach, Sylvia Beach Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/aaa32e69-48d3-4682-bd8a-7dcf6541c391/manifest,https://iiif.princeton.edu/loris/figgy_prod/44%2Fe7%2F1e%2F44e71e31375d4409836f069e073b4017%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1956-01,1956-04-01,https://shakespeareandco.princeton.edu/members/beach-sylvia/,Sylvia Beach,"Beach, Sylvia",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/lamartine-jean-jacques-rousseau/,J. -J. Rousseau,,"Lamartine, Alphonse de",1866,,Lending Library Card,"Sylvia Beach, Sylvia Beach Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/aaa32e69-48d3-4682-bd8a-7dcf6541c391/manifest,https://iiif.princeton.edu/loris/figgy_prod/44%2Fe7%2F1e%2F44e71e31375d4409836f069e073b4017%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1956-01,1956-04-01,https://shakespeareandco.princeton.edu/members/beach-sylvia/,Sylvia Beach,"Beach, Sylvia",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/coleridge-chanson-vieux-marin/,La chanson du vieux marin,,"Coleridge, Samuel Taylor",1911,,Lending Library Card,"Sylvia Beach, Sylvia Beach Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/aaa32e69-48d3-4682-bd8a-7dcf6541c391/manifest,https://iiif.princeton.edu/loris/figgy_prod/44%2Fe7%2F1e%2F44e71e31375d4409836f069e073b4017%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1956-01,1956-04-01,https://shakespeareandco.princeton.edu/members/beach-sylvia/,Sylvia Beach,"Beach, Sylvia",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/landor-hautes-basses-classes/,Hautes et basses classes en Italie,,"Landor, Walter Savage",1911,,Lending Library Card,"Sylvia Beach, Sylvia Beach Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/aaa32e69-48d3-4682-bd8a-7dcf6541c391/manifest,https://iiif.princeton.edu/loris/figgy_prod/44%2Fe7%2F1e%2F44e71e31375d4409836f069e073b4017%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1956-01,1956-04-01,https://shakespeareandco.princeton.edu/members/beach-sylvia/,Sylvia Beach,"Beach, Sylvia",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/tavernier-confluences/,Confluences,"no. 1, 1941",,,,Lending Library Card,"Sylvia Beach, Sylvia Beach Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/aaa32e69-48d3-4682-bd8a-7dcf6541c391/manifest,https://iiif.princeton.edu/loris/figgy_prod/44%2Fe7%2F1e%2F44e71e31375d4409836f069e073b4017%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1956-01,1956-04-01,https://shakespeareandco.princeton.edu/members/beach-sylvia/,Sylvia Beach,"Beach, Sylvia",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/poe-criticisms/,Criticisms,,"Poe, Edgar Allan",1908,,Lending Library Card,"Sylvia Beach, Sylvia Beach Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/aaa32e69-48d3-4682-bd8a-7dcf6541c391/manifest,https://iiif.princeton.edu/loris/figgy_prod/44%2Fe7%2F1e%2F44e71e31375d4409836f069e073b4017%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1956-01,1956-04-01,https://shakespeareandco.princeton.edu/members/beach-sylvia/,Sylvia Beach,"Beach, Sylvia",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/maeterlinck-mort/,La mort,,"Maeterlinck, Maurice",1913,,Lending Library Card,"Sylvia Beach, Sylvia Beach Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/aaa32e69-48d3-4682-bd8a-7dcf6541c391/manifest,https://iiif.princeton.edu/loris/figgy_prod/44%2Fe7%2F1e%2F44e71e31375d4409836f069e073b4017%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1956-01,1956-04-01,https://shakespeareandco.princeton.edu/members/beach-sylvia/,Sylvia Beach,"Beach, Sylvia",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/tavernier-confluences/,Confluences,"no. 37/38, 1944 PrΓ©sence de Valery Larbaud",,,,Lending Library Card,"Sylvia Beach, Sylvia Beach Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/aaa32e69-48d3-4682-bd8a-7dcf6541c391/manifest,https://iiif.princeton.edu/loris/figgy_prod/44%2Fe7%2F1e%2F44e71e31375d4409836f069e073b4017%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1961-02,1961-06-24,https://shakespeareandco.princeton.edu/members/zibell/,FranΓ§oise Zibell,"Zibell, FranΓ§oise",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/michaud-american-novel-day/,The American Novel To-Day: A Social and Psychological Study,,"Michaud, RΓ©gis",1928,,Lending Library Card,"Sylvia Beach, Francoise Zibell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b58b0f55-f7eb-4d06-b81f-61a7a1750f39/manifest,https://iiif.princeton.edu/loris/figgy_prod/7e%2Fc8%2Fd9%2F7ec8d94059c04a65adec3dcb8ffec507%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,--01-07,--01-13,https://shakespeareandco.princeton.edu/members/pulsford-g-e/,G. E. Pulsford,"Pulsford, G. E.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/bennett-ghost/,The Ghost: A Modern Fantasy,,"Bennett, Arnold",1907,,Lending Library Card,"Sylvia Beach, G.E.Pulsford Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/102cb596-6c26-4ff2-8da7-c975308e6c89/manifest,https://iiif.princeton.edu/loris/figgy_prod/17%2Fa4%2F9d%2F17a49dea8b714727b1502dbfdd0673d8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,--01-12,--01-20,https://shakespeareandco.princeton.edu/members/pulsford-g-e/,G. E. Pulsford,"Pulsford, G. E.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/bennett-buried-alive/,Buried Alive,,"Bennett, Arnold",1908,,Lending Library Card,"Sylvia Beach, G.E.Pulsford Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/102cb596-6c26-4ff2-8da7-c975308e6c89/manifest,https://iiif.princeton.edu/loris/figgy_prod/17%2Fa4%2F9d%2F17a49dea8b714727b1502dbfdd0673d8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,--01-16,--02-16,https://shakespeareandco.princeton.edu/members/sage-robert/,Robert D. Sage,"Sage, Robert D.",,,,,,,,,Returned,31,,,https://shakespeareandco.princeton.edu/books/hulme-speculations-essays-humanism/,Speculations: Essays on Humanism and the Philosophy of Art,,"Hulme, T. E.",1924,,Lending Library Card,"Sylvia Beach, Robert Sage Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/222c7bee-1104-420b-879a-fa13a26a189a/manifest,https://iiif-cloud.princeton.edu/iiif/2/66%2F5f%2F5a%2F665f5a7bb8cd4b29b8a9059cc62863c5%2Fintermediate_file/full/full/0/default.jpg
+Borrow,--01-19,--01-24,https://shakespeareandco.princeton.edu/members/stein-gertrude/,Gertrude Stein,"Stein, Gertrude",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/howells-hazard-new-fortunes/,A Hazard of New Fortunes,2 vols.,"Howells, William Dean",1890,,Lending Library Card,"Sylvia Beach, Gertrude Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f6f307d-2eb7-4960-8dc1-9dec4ea53022/manifest,https://iiif.princeton.edu/loris/figgy_prod/87%2F12%2Ffe%2F8712fe479f4f46f0a4647976f6d44102%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,--01-20,--01-28,https://shakespeareandco.princeton.edu/members/pulsford-g-e/,G. E. Pulsford,"Pulsford, G. E.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/wells-kipps-story-simple/,Kipps: The Story of A Simple Soul,,"Wells, H. G.",1905,,Lending Library Card,"Sylvia Beach, G.E.Pulsford Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/102cb596-6c26-4ff2-8da7-c975308e6c89/manifest,https://iiif.princeton.edu/loris/figgy_prod/17%2Fa4%2F9d%2F17a49dea8b714727b1502dbfdd0673d8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,--01-24,--03-20,https://shakespeareandco.princeton.edu/members/stein-gertrude/,Gertrude Stein,"Stein, Gertrude",,,,,,,,,Returned,55,,,https://shakespeareandco.princeton.edu/books/howells-landlord-lions-head/,The Landlord at Lion's Head: A Novel,,"Howells, William Dean",1896,,Lending Library Card,"Sylvia Beach, Gertrude Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f6f307d-2eb7-4960-8dc1-9dec4ea53022/manifest,https://iiif.princeton.edu/loris/figgy_prod/87%2F12%2Ffe%2F8712fe479f4f46f0a4647976f6d44102%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,--01-24,--03-20,https://shakespeareandco.princeton.edu/members/stein-gertrude/,Gertrude Stein,"Stein, Gertrude",,,,,,,,,Returned,55,,,https://shakespeareandco.princeton.edu/books/howells-indian-summer/,Indian Summer,,"Howells, William Dean",1886,,Lending Library Card,"Sylvia Beach, Gertrude Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f6f307d-2eb7-4960-8dc1-9dec4ea53022/manifest,https://iiif.princeton.edu/loris/figgy_prod/87%2F12%2Ffe%2F8712fe479f4f46f0a4647976f6d44102%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,--01-24,--03-20,https://shakespeareandco.princeton.edu/members/stein-gertrude/,Gertrude Stein,"Stein, Gertrude",,,,,,,,,Returned,55,,,https://shakespeareandco.princeton.edu/books/howells-foregone-conclusion/,A Foregone Conclusion,,"Howells, William Dean",1874,,Lending Library Card,"Sylvia Beach, Gertrude Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f6f307d-2eb7-4960-8dc1-9dec4ea53022/manifest,https://iiif.princeton.edu/loris/figgy_prod/87%2F12%2Ffe%2F8712fe479f4f46f0a4647976f6d44102%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,--01-24,--05-30,https://shakespeareandco.princeton.edu/members/stein-gertrude/,Gertrude Stein,"Stein, Gertrude",,,,,,,,,Returned,126,,,https://shakespeareandco.princeton.edu/books/rorer-mrs-rorers-new/,Mrs. Rorer's New Cook Book: A Manual of Housekeeping,,"Rorer, Sarah Tyson",1911,,Lending Library Card,"Sylvia Beach, Gertrude Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f6f307d-2eb7-4960-8dc1-9dec4ea53022/manifest,https://iiif.princeton.edu/loris/figgy_prod/87%2F12%2Ffe%2F8712fe479f4f46f0a4647976f6d44102%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,--01-24,--05-30,https://shakespeareandco.princeton.edu/members/stein-gertrude/,Gertrude Stein,"Stein, Gertrude",,,,,,,,,Returned,126,,,https://shakespeareandco.princeton.edu/books/farmer-boston-cooking-school/,Boston Cooking-School Cook Book,,"Farmer, Fannie Merritt",1896,,Lending Library Card,"Sylvia Beach, Gertrude Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f6f307d-2eb7-4960-8dc1-9dec4ea53022/manifest,https://iiif.princeton.edu/loris/figgy_prod/87%2F12%2Ffe%2F8712fe479f4f46f0a4647976f6d44102%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,--01-24,--03-20,https://shakespeareandco.princeton.edu/members/stein-gertrude/,Gertrude Stein,"Stein, Gertrude",,,,,,,,,Returned,55,,,https://shakespeareandco.princeton.edu/books/howells-dr-breens-practice/,Dr. Breen's Practice,,"Howells, William Dean",1881,,Lending Library Card,"Sylvia Beach, Gertrude Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f6f307d-2eb7-4960-8dc1-9dec4ea53022/manifest,https://iiif.princeton.edu/loris/figgy_prod/87%2F12%2Ffe%2F8712fe479f4f46f0a4647976f6d44102%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,--01-27,,https://shakespeareandco.princeton.edu/members/masoliver/,Juan RamΓ³n Masoliver,"Masoliver, Juan RamΓ³n",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/joyce-work-progress/,Work in Progress,,"Joyce, James",,Unidentified edition. Early versions of Joyce's [*Finnegans Wake*](https://shakespeareandco.princeton.edu/books/joyce-finnegans-wake/) (1939). Likely a collection of offprints from [*transition*](https://shakespeareandco.princeton.edu/books/jolas-transition/). Sylvia Beach's personal library includes a [bound copy of offprints](https://catalog.princeton.edu/catalog/2943072). See also [*Fragments from Work in Progress*](https://shakespeareandco.princeton.edu/books/joyce-fragments-work-progress/).,Lending Library Card,"Sylvia Beach, Juan RamΓ³n Masoliver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9d0caa86-e3ac-4d52-94b5-f23456e96fdf/manifest,https://iiif.princeton.edu/loris/figgy_prod/61%2F22%2Fc0%2F6122c05e85424354884c4e11cb1baf2e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,--01-28,--02-04,https://shakespeareandco.princeton.edu/members/pulsford-g-e/,G. E. Pulsford,"Pulsford, G. E.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/london-little-lady-big/,The Little Lady of the Big House,,"London, Jack",1915,,Lending Library Card,"Sylvia Beach, G.E.Pulsford Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/102cb596-6c26-4ff2-8da7-c975308e6c89/manifest,https://iiif.princeton.edu/loris/figgy_prod/17%2Fa4%2F9d%2F17a49dea8b714727b1502dbfdd0673d8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,--01-29,--02-01,https://shakespeareandco.princeton.edu/members/larbaud-valery/,Valery Larbaud,"Larbaud, Valery",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/james-turn-screw/,The Turn of the Screw,,"James, Henry",1898,,Lending Library Card,"Sylvia Beach, Valery Larbaud Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12f9ce6a-ae5d-4429-a1c8-72c28435cbfc/manifest,https://iiif.princeton.edu/loris/figgy_prod/a6%2Fb7%2Fad%2Fa6b7ad7077424b02b02643971ba9985f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,,--02-01,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/yeats-cutting-agate/,The Cutting of an Agate,,"Yeats, William Butler",1912,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,--02-04,--02-11,https://shakespeareandco.princeton.edu/members/pulsford-g-e/,G. E. Pulsford,"Pulsford, G. E.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/jack-london-book/,Jack London Book,,,,Unidentified. Likely Charmian London's *The Book of Jack London* (1921).,Lending Library Card,"Sylvia Beach, G.E.Pulsford Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/102cb596-6c26-4ff2-8da7-c975308e6c89/manifest,https://iiif.princeton.edu/loris/figgy_prod/17%2Fa4%2F9d%2F17a49dea8b714727b1502dbfdd0673d8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Crossed out,--02-10,,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/galsworthy-river/,Over the River (End of Chapter),,"Galsworthy, John",1933,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/cc%2Ffa%2F5d%2Fccfa5dcefcc7400ca591e470e0d28a7a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,--02-11,--02-18,https://shakespeareandco.princeton.edu/members/pulsford-g-e/,G. E. Pulsford,"Pulsford, G. E.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/pain-problem-club/,The Problem Club,,"Pain, Barry",1920,,Lending Library Card,"Sylvia Beach, G.E.Pulsford Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/102cb596-6c26-4ff2-8da7-c975308e6c89/manifest,https://iiif.princeton.edu/loris/figgy_prod/17%2Fa4%2F9d%2F17a49dea8b714727b1502dbfdd0673d8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,--02-18,--02-28,https://shakespeareandco.princeton.edu/members/pulsford-g-e/,G. E. Pulsford,"Pulsford, G. E.",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/kipling/,Kipling,,,,Unidentified. By or about Rudyard Kipling.,Lending Library Card,"Sylvia Beach, G.E.Pulsford Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/102cb596-6c26-4ff2-8da7-c975308e6c89/manifest,https://iiif.princeton.edu/loris/figgy_prod/17%2Fa4%2F9d%2F17a49dea8b714727b1502dbfdd0673d8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Generic,--02-28,,https://shakespeareandco.princeton.edu/members/denis-pierre/,Pierre Denis,"Denis, Pierre",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/eliot-sacred-wood-essays/,The Sacred Wood: Essays on Poetry and Criticism,,"Eliot, T. S.",1920,,Lending Library Card,"Sylvia Beach, Pierre Denis Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fa3a8be0-9d05-4cce-921e-7f90a8be05ad/manifest,https://iiif.princeton.edu/loris/figgy_prod/b2%2Ff4%2F7a%2Fb2f47af482af4034b49983705d6a103d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Generic,--02-28,,https://shakespeareandco.princeton.edu/members/denis-pierre/,Pierre Denis,"Denis, Pierre",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/francoise/,FranΓ§oise,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Pierre Denis Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fa3a8be0-9d05-4cce-921e-7f90a8be05ad/manifest,https://iiif.princeton.edu/loris/figgy_prod/b2%2Ff4%2F7a%2Fb2f47af482af4034b49983705d6a103d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Generic,--02-28,,https://shakespeareandco.princeton.edu/members/denis-pierre/,Pierre Denis,"Denis, Pierre",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/euripides-ion/,Ion,,Euripides,1937,,Lending Library Card,"Sylvia Beach, Pierre Denis Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fa3a8be0-9d05-4cce-921e-7f90a8be05ad/manifest,https://iiif.princeton.edu/loris/figgy_prod/b2%2Ff4%2F7a%2Fb2f47af482af4034b49983705d6a103d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Generic,--02-28,,https://shakespeareandco.princeton.edu/members/denis-pierre/,Pierre Denis,"Denis, Pierre",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/eliot-collected-poems-1909/,"Collected Poems, 1909 β 1935",,"Eliot, T. S.",1936,,Lending Library Card,"Sylvia Beach, Pierre Denis Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fa3a8be0-9d05-4cce-921e-7f90a8be05ad/manifest,https://iiif.princeton.edu/loris/figgy_prod/b2%2Ff4%2F7a%2Fb2f47af482af4034b49983705d6a103d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Generic,--02-28,,https://shakespeareandco.princeton.edu/members/denis-pierre/,Pierre Denis,"Denis, Pierre",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/dickinson-selected-poems-emily/,Selected Poems of Emily Dickinson,,"Dickinson, Emily",1924,,Lending Library Card,"Sylvia Beach, Pierre Denis Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fa3a8be0-9d05-4cce-921e-7f90a8be05ad/manifest,https://iiif.princeton.edu/loris/figgy_prod/b2%2Ff4%2F7a%2Fb2f47af482af4034b49983705d6a103d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,--03-13,--04-27,https://shakespeareandco.princeton.edu/members/fournerey/,M. Fournerey,"Fournerey, M.",,,,,,,,,Returned,45,,,https://shakespeareandco.princeton.edu/books/vogues-book-etiquette/,Vogue's Book of Etiquette,,,1923,*Vogue's Book of Etiquette* was first published in 1923.,Lending Library Card,"Sylvia Beach, Fournerey Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3f38e227-faea-4335-8719-c0d1f6dbefc3/manifest,https://iiif.princeton.edu/loris/figgy_prod/c7%2F41%2F47%2Fc74147d406c5483987b4705d7a0b0589%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,--03-30,--04-06,https://shakespeareandco.princeton.edu/members/visser/,Mrs. Visser,"Visser, Mrs.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/lewis-arrowsmith/,Arrowsmith,,"Lewis, Sinclair",1925,,Lending Library Card,"Sylvia Beach, Mrs. Visser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d5ffde1e-1fad-4d12-a27c-bd3df4844e3c/manifest,https://iiif.princeton.edu/loris/figgy_prod/b8%2F13%2Fe0%2Fb813e069af8e4bd1b633adf94ec7b2e1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,--04-13,,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Bought,,,,https://shakespeareandco.princeton.edu/books/murry-necessity-communism/,The Necessity of Communism,,"Murry, John Middleton",1932,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/7a%2F4b%2Ff1%2F7a4bf12029214373807c72e29dd0739f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,--04-20,--04-23,https://shakespeareandco.princeton.edu/members/mcalmon-robert/,Robert McAlmon,"McAlmon, Robert",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/peacock-headlong-hall/,Headlong Hall,,"Peacock, Thomas Love",1816,,Lending Library Card,"Sylvia Beach, Robert McAlmon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/889ff3f8-b62c-42f6-8e88-1dd95434b2f5/manifest,https://iiif-cloud.princeton.edu/iiif/2/9c%2Fd9%2F46%2F9cd9465b1bf7423aa751012e23b9dc34%2Fintermediate_file/full/full/0/default.jpg
+Borrow,--05-07,--05-23,https://shakespeareandco.princeton.edu/members/hommel-bernard/,Bernard Hommel,"Hommel, Bernard",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/steed-vital-peace-study/,Vital Peace: A Study of Risks,,"Steed, Henry Wickham",1936,,Lending Library Card,"Sylvia Beach, Bernard Hommel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f15588a-10b9-41fb-a1ca-ebd8635470de/manifest,https://iiif.princeton.edu/loris/figgy_prod/41%2Ff1%2F8f%2F41f18f0b2c6f4d019fa6e7ac0c7f9f7a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,--05-14,--05-23,https://shakespeareandco.princeton.edu/members/hommel-bernard/,Bernard Hommel,"Hommel, Bernard",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/linklater-juan-america/,Juan in America,,"Linklater, Eric",1931,,Lending Library Card,"Sylvia Beach, Bernard Hommel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f15588a-10b9-41fb-a1ca-ebd8635470de/manifest,https://iiif.princeton.edu/loris/figgy_prod/41%2Ff1%2F8f%2F41f18f0b2c6f4d019fa6e7ac0c7f9f7a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,--06-07,--06-06,https://shakespeareandco.princeton.edu/members/davet-yvonne/,Yvonne Davet,"Davet, Yvonne",,,,,,,,,Returned,364,,,https://shakespeareandco.princeton.edu/books/deliverance/,Deliverance,,,,Unidentified. Likely Ellen Glasgow's *The Deliverance: A Romance of the Virginia Tobacco Fields* (1904).,Lending Library Card,"Sylvia Beach, Yvonne Davet Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8169ca8b-1853-41d7-80d9-b7adf4271c59/manifest,https://iiif.princeton.edu/loris/figgy_prod/8c%2F3b%2F20%2F8c3b207e430f4cc58816ebaada15fa48%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,--06-23,--06-30,https://shakespeareandco.princeton.edu/members/lamy-marthe/,Marthe Lamy,"Lamy, Marthe",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/bowen-death-heart/,The Death of the Heart,,"Bowen, Elizabeth",1938,,Lending Library Card,"Sylvia Beach, Marthe Lamy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c715a1d2-668f-44c0-b48d-5f245d0752ba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5b%2F5b%2F88%2F5b5b8821d798454b850e5467fe85b88b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,--06-27,,https://shakespeareandco.princeton.edu/members/wright-julia/,Julia Wright,"Wright, Julia",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/lang-yellow-fairy-book/,Yellow Fairy Book,,"Lang, Andrew",1894,,Lending Library Card,"Sylvia Beach, Julia Wright Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dcfcbe3d-415f-4394-884c-ce1f2cca71a3/manifest,https://iiif.princeton.edu/loris/figgy_prod/a1%2F0e%2F1b%2Fa10e1bfe5c5f469fa5d610c5b3a6dec4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,--06-27,,https://shakespeareandco.princeton.edu/members/wright-julia/,Julia Wright,"Wright, Julia",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/hawthorne-wonder-book-girls/,A Wonder-Book for Girls and Boys,,"Hawthorne, Nathaniel",1851,,Lending Library Card,"Sylvia Beach, Julia Wright Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dcfcbe3d-415f-4394-884c-ce1f2cca71a3/manifest,https://iiif.princeton.edu/loris/figgy_prod/a1%2F0e%2F1b%2Fa10e1bfe5c5f469fa5d610c5b3a6dec4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,--06-27,,https://shakespeareandco.princeton.edu/members/wright-julia/,Julia Wright,"Wright, Julia",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/mother-goose/,Mother Goose,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Julia Wright Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dcfcbe3d-415f-4394-884c-ce1f2cca71a3/manifest,https://iiif.princeton.edu/loris/figgy_prod/a1%2F0e%2F1b%2Fa10e1bfe5c5f469fa5d610c5b3a6dec4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Generic,--07-01,,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/clark-great-short-novels/,Great Short Novels of the World,,,1925,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/0c%2Ffc%2F32%2F0cfc3229219146c7bcdb6779946530e3%2Fintermediate_file/full/full/0/default.jpg
+Crossed out,--08-21,,https://shakespeareandco.princeton.edu/members/dennis-holly/,Holly (Beach) Dennis / Miss Holly Beach / Mrs. Frederic Dennis,"Dennis, Holly",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/adams-mont-saint-michel/,Mont-Saint-Michel and Chartres,,"Adams, Henry",1904,,Lending Library Card,"Sylvia Beach, Mrs Frederic Dennis Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e0f0b413-503d-4a43-8794-097eb6420dd3/manifest,https://iiif.princeton.edu/loris/figgy_prod/05%2Fc1%2F88%2F05c1885a9904486c86048e7cce4750c1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,--10-06,--10-13,https://shakespeareandco.princeton.edu/members/felder/,Mrs. Thomas J. Felder,"Felder, Mrs. Thomas J.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/green-winchester-house/,Winchester House,,"Green, Anne",1936,,Lending Library Card,"Sylvia Beach, Felder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ae8024df-29c2-4bc5-8e81-a46c21ed28c7/manifest,https://iiif-cloud.princeton.edu/iiif/2/d8%2Fe7%2Fb4%2Fd8e7b41fa9a1418392729b81e4cbee23%2Fintermediate_file/full/full/0/default.jpg
+Borrow,--10-06,--10-07,https://shakespeareandco.princeton.edu/members/wilson-romer/,Romer Wilson,"Wilson, Romer",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/joyce-portrait-artist-young/,A Portrait of the Artist as a Young Man,,"Joyce, James",1916,,Lending Library Card,"Sylvia Beach, Miss Romer Wilson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e3848a8c-f7ed-41e2-a95c-ce16d182158e/manifest,https://iiif.princeton.edu/loris/figgy_prod/4c%2F33%2F9a%2F4c339ad70163447c8dfce7f4eb5ef032%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,--10-06,--11-06,https://shakespeareandco.princeton.edu/members/felder/,Mrs. Thomas J. Felder,"Felder, Mrs. Thomas J.",35.00,30.00,1 month,31,1,,--10-06,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Felder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ae8024df-29c2-4bc5-8e81-a46c21ed28c7/manifest,https://iiif-cloud.princeton.edu/iiif/2/d8%2Fe7%2Fb4%2Fd8e7b41fa9a1418392729b81e4cbee23%2Fintermediate_file/full/full/0/default.jpg
+Subscription,--10-06,--10-13,https://shakespeareandco.princeton.edu/members/wilson-romer/,Romer Wilson,"Wilson, Romer",2.00,,1 week,7,1,,--10-06,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Miss Romer Wilson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e3848a8c-f7ed-41e2-a95c-ce16d182158e/manifest,https://iiif.princeton.edu/loris/figgy_prod/4c%2F33%2F9a%2F4c339ad70163447c8dfce7f4eb5ef032%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,--10-07,--10-10,https://shakespeareandco.princeton.edu/members/wilson-romer/,Romer Wilson,"Wilson, Romer",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/moore-untilled-field/,The Untilled Field,,"Moore, George",1903,,Lending Library Card,"Sylvia Beach, Miss Romer Wilson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e3848a8c-f7ed-41e2-a95c-ce16d182158e/manifest,https://iiif.princeton.edu/loris/figgy_prod/4c%2F33%2F9a%2F4c339ad70163447c8dfce7f4eb5ef032%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,--10-10,--10-11,https://shakespeareandco.princeton.edu/members/wilson-romer/,Romer Wilson,"Wilson, Romer",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/moore-lake-2/,The Lake,,"Moore, George",1905,,Lending Library Card,"Sylvia Beach, Miss Romer Wilson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e3848a8c-f7ed-41e2-a95c-ce16d182158e/manifest,https://iiif.princeton.edu/loris/figgy_prod/4c%2F33%2F9a%2F4c339ad70163447c8dfce7f4eb5ef032%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,--10-11,,https://shakespeareandco.princeton.edu/members/aragon/,Louis Aragon,"Aragon, Louis",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/joyce-portrait-artist-young/,A Portrait of the Artist as a Young Man,,"Joyce, James",1916,,Lending Library Card,"Sylvia Beach, Louis Aragon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/474f2551-d578-4d74-b6fc-6918117fc8f2/manifest,https://iiif.princeton.edu/loris/figgy_prod/52%2F58%2Fe6%2F5258e6eb5b16480c8b912616ffad542a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,--10-11,,https://shakespeareandco.princeton.edu/members/aragon/,Louis Aragon,"Aragon, Louis",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/joyce-exiles/,Exiles,,"Joyce, James",1918,,Lending Library Card,"Sylvia Beach, Louis Aragon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/474f2551-d578-4d74-b6fc-6918117fc8f2/manifest,https://iiif.princeton.edu/loris/figgy_prod/52%2F58%2Fe6%2F5258e6eb5b16480c8b912616ffad542a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,--10-11,,https://shakespeareandco.princeton.edu/members/wilson-romer/,Romer Wilson,"Wilson, Romer",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/moore-muslin/,Muslin,,"Moore, George",1915,,Lending Library Card,"Sylvia Beach, Miss Romer Wilson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e3848a8c-f7ed-41e2-a95c-ce16d182158e/manifest,https://iiif.princeton.edu/loris/figgy_prod/4c%2F33%2F9a%2F4c339ad70163447c8dfce7f4eb5ef032%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,--10-12,--10-13,https://shakespeareandco.princeton.edu/members/wilson-romer/,Romer Wilson,"Wilson, Romer",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/moore-lewis-seymour-women/,Lewis Seymour and Some Women,,"Moore, George",1916,,Lending Library Card,"Sylvia Beach, Miss Romer Wilson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e3848a8c-f7ed-41e2-a95c-ce16d182158e/manifest,https://iiif.princeton.edu/loris/figgy_prod/4c%2F33%2F9a%2F4c339ad70163447c8dfce7f4eb5ef032%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,--10-13,--10-18,https://shakespeareandco.princeton.edu/members/felder/,Mrs. Thomas J. Felder,"Felder, Mrs. Thomas J.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/propper-divorce-court-murder/,The Divorce Court Murder,,"Propper, Milton M.",1934,,Lending Library Card,"Sylvia Beach, Felder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ae8024df-29c2-4bc5-8e81-a46c21ed28c7/manifest,https://iiif-cloud.princeton.edu/iiif/2/d8%2Fe7%2Fb4%2Fd8e7b41fa9a1418392729b81e4cbee23%2Fintermediate_file/full/full/0/default.jpg
+Borrow,--10-13,,https://shakespeareandco.princeton.edu/members/wilson-romer/,Romer Wilson,"Wilson, Romer",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/sinnett-growth-soul/,The Growth of the Soul,,"Sinnett, A. P.",1918,,Lending Library Card,"Sylvia Beach, Miss Romer Wilson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e3848a8c-f7ed-41e2-a95c-ce16d182158e/manifest,https://iiif.princeton.edu/loris/figgy_prod/4c%2F33%2F9a%2F4c339ad70163447c8dfce7f4eb5ef032%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,--10-15,,https://shakespeareandco.princeton.edu/members/wilson-romer/,Romer Wilson,"Wilson, Romer",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/twain-letters-mark-twain/,"Letters of Mark Twain, pseud. of Samuel Langhorne Clemens: With a Biographical Sketch and Commentary",,"Twain, Mark",1920,,Lending Library Card,"Sylvia Beach, Miss Romer Wilson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e3848a8c-f7ed-41e2-a95c-ce16d182158e/manifest,https://iiif.princeton.edu/loris/figgy_prod/4c%2F33%2F9a%2F4c339ad70163447c8dfce7f4eb5ef032%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,--10-15,,https://shakespeareandco.princeton.edu/members/wilson-romer/,Romer Wilson,"Wilson, Romer",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/beerbohm-even-now/,And Even Now,,"Beerbohm, Max",1920,,Lending Library Card,"Sylvia Beach, Miss Romer Wilson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e3848a8c-f7ed-41e2-a95c-ce16d182158e/manifest,https://iiif.princeton.edu/loris/figgy_prod/4c%2F33%2F9a%2F4c339ad70163447c8dfce7f4eb5ef032%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,--10-18,--10-27,https://shakespeareandco.princeton.edu/members/felder/,Mrs. Thomas J. Felder,"Felder, Mrs. Thomas J.",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/thurber-let-mind-alone/,Let Your Mind Alone!,,"Thurber, James",1937,,Lending Library Card,"Sylvia Beach, Felder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ae8024df-29c2-4bc5-8e81-a46c21ed28c7/manifest,https://iiif-cloud.princeton.edu/iiif/2/d8%2Fe7%2Fb4%2Fd8e7b41fa9a1418392729b81e4cbee23%2Fintermediate_file/full/full/0/default.jpg
+Borrow,--10-27,--11-02,https://shakespeareandco.princeton.edu/members/felder/,Mrs. Thomas J. Felder,"Felder, Mrs. Thomas J.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/marlowe-coming-sir-autobiography/,"Coming, Sir!: The Autobiography of a Waiter",,"Marlowe, Dave",1937,,Lending Library Card,"Sylvia Beach, Felder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ae8024df-29c2-4bc5-8e81-a46c21ed28c7/manifest,https://iiif-cloud.princeton.edu/iiif/2/d8%2Fe7%2Fb4%2Fd8e7b41fa9a1418392729b81e4cbee23%2Fintermediate_file/full/full/0/default.jpg
+Crossed out,--10-29,,https://shakespeareandco.princeton.edu/members/wyck/,William van Wyck,"van Wyck, William",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/west-return-soldier/,The Return of the Soldier,,"West, Rebecca",1918,,Lending Library Card,"Sylvia Beach, William van Wyck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f6b2d812-ade2-4fc6-912e-aab71c67a4a0/manifest,https://iiif.princeton.edu/loris/figgy_prod/a0%2F6f%2F45%2Fa06f452bb28b4e55be9ebfe9a000c2d6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Crossed out,--10-30,,https://shakespeareandco.princeton.edu/members/wyck/,William van Wyck,"van Wyck, William",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/holding-invincible-minnie/,Invincible Minnie,,"Holding, Elisabeth Sanxay",1920,,Lending Library Card,"Sylvia Beach, William van Wyck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f6b2d812-ade2-4fc6-912e-aab71c67a4a0/manifest,https://iiif.princeton.edu/loris/figgy_prod/a0%2F6f%2F45%2Fa06f452bb28b4e55be9ebfe9a000c2d6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Crossed out,--11-05,,https://shakespeareandco.princeton.edu/members/harden-e/,E. Harden,"Harden, E.",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/manning-mount-venus/,Mount Venus,,"Manning, Mary",1938,,Lending Library Card,"Sylvia Beach, E. Harden Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/749a23d1-2b17-4f7e-b8b1-97901aa3da8a/manifest,https://iiif.princeton.edu/loris/figgy_prod/0b%2F83%2F7a%2F0b837ade7d6f45fb93b9e7f48c963f9d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,--11-14,,https://shakespeareandco.princeton.edu/members/reid-marjorie/,Marjorie Reid,"Reid, Marjorie",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/joyce-portrait-artist-young/,A Portrait of the Artist as a Young Man,,"Joyce, James",1916,,Lending Library Card,"Sylvia Beach, Marjorie Reid Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a16726ca-d1df-4cd0-a18c-844db25f32c3/manifest,https://iiif.princeton.edu/loris/figgy_prod/3d%2F04%2F92%2F3d0492fd60464cccbf65d0b721ca1ded%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,--11-18,--11-20,https://shakespeareandco.princeton.edu/members/visser/,Mrs. Visser,"Visser, Mrs.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/dreiser-american-tragedy/,An American Tragedy,,"Dreiser, Theodore",1925,,Lending Library Card,"Sylvia Beach, Mrs. Visser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d5ffde1e-1fad-4d12-a27c-bd3df4844e3c/manifest,https://iiif.princeton.edu/loris/figgy_prod/b8%2F13%2Fe0%2Fb813e069af8e4bd1b633adf94ec7b2e1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,--11-18,,https://shakespeareandco.princeton.edu/members/visser/,Mrs. Visser,"Visser, Mrs.",2.00,100.00,,,1,Day By Day,--11-18,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Mrs. Visser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d5ffde1e-1fad-4d12-a27c-bd3df4844e3c/manifest,https://iiif.princeton.edu/loris/figgy_prod/b8%2F13%2Fe0%2Fb813e069af8e4bd1b633adf94ec7b2e1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,--11-20,--11-20,https://shakespeareandco.princeton.edu/members/visser/,Mrs. Visser,"Visser, Mrs.",,,,,,,,,,,125.00,FRF,https://shakespeareandco.princeton.edu/books/joyce-james-joyce-reading/,"James Joyce Reading ""Anna Livia Plurabelle""",,"Joyce, James",1929,[Listen](https://archive.org/details/JamesJoyceReadsannaLiviaPlurabelleFromFinnegansWake1929).,Lending Library Card,"Sylvia Beach, Mrs. Visser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d5ffde1e-1fad-4d12-a27c-bd3df4844e3c/manifest,https://iiif.princeton.edu/loris/figgy_prod/b8%2F13%2Fe0%2Fb813e069af8e4bd1b633adf94ec7b2e1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,--11-20,--11-20,https://shakespeareandco.princeton.edu/members/visser/,Mrs. Visser,"Visser, Mrs.",,,,,,,,100.00,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Mrs. Visser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d5ffde1e-1fad-4d12-a27c-bd3df4844e3c/manifest,https://iiif.princeton.edu/loris/figgy_prod/b8%2F13%2Fe0%2Fb813e069af8e4bd1b633adf94ec7b2e1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,--12-02,--01-02,https://shakespeareandco.princeton.edu/members/brull-ulmann/,Colette Brull-Ulmann / Mlle Colette Brull,"Brull-Ulmann, Colette",20.00,50.00,1 month,31,1,Student,--12-06,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Colette Brull Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/51b32d9e-0018-4841-be9e-71de798c0ec4/manifest,https://iiif.princeton.edu/loris/figgy_prod/f1%2F4d%2F96%2Ff14d961bae7044c987bd20dc0c3f73e8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,--12-02,--12-06,https://shakespeareandco.princeton.edu/members/brull-ulmann/,Colette Brull-Ulmann / Mlle Colette Brull,"Brull-Ulmann, Colette",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/hawthorne-scarlet-letter/,The Scarlet Letter,,"Hawthorne, Nathaniel",1850,,Lending Library Card,"Sylvia Beach, Colette Brull Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/51b32d9e-0018-4841-be9e-71de798c0ec4/manifest,https://iiif.princeton.edu/loris/figgy_prod/f1%2F4d%2F96%2Ff14d961bae7044c987bd20dc0c3f73e8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Crossed out,--12-03,,https://shakespeareandco.princeton.edu/members/ulmann/,Denise Ulmann,"Ulmann, Denise",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/harte-idyls-foothills-prose/,Idyls of the Foothills: In Prose and Verse,,"Harte, Bret",1874,,Lending Library Card,"Sylvia Beach, Mlle Denise Ulmann Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e73e13d0-f8ae-468d-8321-115a0f3dd398/manifest,https://iiif.princeton.edu/loris/figgy_prod/86%2F35%2Ff8%2F8635f832812a4b3eb539848ea26cd087%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,--12-06,--12-10,https://shakespeareandco.princeton.edu/members/brull-ulmann/,Colette Brull-Ulmann / Mlle Colette Brull,"Brull-Ulmann, Colette",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/bronte-villette/,Villette,,"BrontΓ«, Charlotte",1853,,Lending Library Card,"Sylvia Beach, Colette Brull Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/51b32d9e-0018-4841-be9e-71de798c0ec4/manifest,https://iiif.princeton.edu/loris/figgy_prod/f1%2F4d%2F96%2Ff14d961bae7044c987bd20dc0c3f73e8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,--12-10,,https://shakespeareandco.princeton.edu/members/brull-ulmann/,Colette Brull-Ulmann / Mlle Colette Brull,"Brull-Ulmann, Colette",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/bronte-professor/,The Professor,,"BrontΓ«, Charlotte",1857,,Lending Library Card,"Sylvia Beach, Colette Brull Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/51b32d9e-0018-4841-be9e-71de798c0ec4/manifest,https://iiif.princeton.edu/loris/figgy_prod/f1%2F4d%2F96%2Ff14d961bae7044c987bd20dc0c3f73e8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,--12-28,--01-07,https://shakespeareandco.princeton.edu/members/pulsford-g-e/,G. E. Pulsford,"Pulsford, G. E.",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/jerome-three-men-boat/,Three Men in a Boat (To Say Nothing of the Dog),,"Jerome, Jerome K.",1889,,Lending Library Card,"Sylvia Beach, G.E.Pulsford Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/102cb596-6c26-4ff2-8da7-c975308e6c89/manifest,https://iiif.princeton.edu/loris/figgy_prod/17%2Fa4%2F9d%2F17a49dea8b714727b1502dbfdd0673d8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,--12-28,--01-28,https://shakespeareandco.princeton.edu/members/pulsford-g-e/,G. E. Pulsford,"Pulsford, G. E.",6.40,,1 month,31,1,,--12-28,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, G.E.Pulsford Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/102cb596-6c26-4ff2-8da7-c975308e6c89/manifest,https://iiif.princeton.edu/loris/figgy_prod/17%2Fa4%2F9d%2F17a49dea8b714727b1502dbfdd0673d8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Crossed out,--12-31,,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/nichols-star-spangled-manner/,The Star-Spangled Manner,,"Nichols, Beverley",1928,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/e2%2F8f%2F47%2Fe28f47a0edc74234a7fe62de67b2461a%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1919-11-17,1919-12-17,https://shakespeareandco.princeton.edu/members/cahun/,Claude Cahun / Mlle Lucie Schwob,"Cahun, Claude",4.00,,1 month,30,1,,1919-11-17,,,,,FRF,,,,,,,Lending Library Card;Logbook,"Sylvia Beach, Lucie Schwob Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",https://figgy.princeton.edu/concern/scanned_resources/551885d9-db78-4e7d-a579-306fca091a7e/manifest;,https://iiif.princeton.edu/loris/figgy_prod/3a%2F10%2Fd5%2F3a10d501c2c84577820c817512e81cef%2Fintermediate_file.jp2/full/full/0/default.jpg;
+Subscription,1919-11-18,1919-12-18,https://shakespeareandco.princeton.edu/members/regnier/,Henri Regnier,"Regnier, Henri",4.00,5.60,1 month,30,1,Student,1919-11-18,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Henri Regnier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/89debf8e-0da8-481e-abe6-b4f10214521d/manifest,;https://iiif.princeton.edu/loris/figgy_prod/ce%2Fe1%2F24%2Fcee1241a8a404cb18203972c8bc6a266%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1919-11-18,1919-11-28,https://shakespeareandco.princeton.edu/members/ulmann/,Denise Ulmann,"Ulmann, Denise",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/meredith-diana-crossways/,Diana of the Crossways,,"Meredith, George",1885,,Lending Library Card,"Sylvia Beach, Mlle Denise Ulmann Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e73e13d0-f8ae-468d-8321-115a0f3dd398/manifest,https://iiif.princeton.edu/loris/figgy_prod/86%2F35%2Ff8%2F8635f832812a4b3eb539848ea26cd087%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1919-11-18,1919-11-28,https://shakespeareandco.princeton.edu/members/ulmann/,Denise Ulmann,"Ulmann, Denise",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/wilde-profundis/,De Profundis,,"Wilde, Oscar",1905,,Lending Library Card,"Sylvia Beach, Mlle Denise Ulmann Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e73e13d0-f8ae-468d-8321-115a0f3dd398/manifest,https://iiif.princeton.edu/loris/figgy_prod/86%2F35%2Ff8%2F8635f832812a4b3eb539848ea26cd087%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1919-11-18,1919-11-22,https://shakespeareandco.princeton.edu/members/regnier/,Henri Regnier,"Regnier, Henri",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/hardy-trumpet-major/,The Trumpet-Major,,"Hardy, Thomas",1880,,Lending Library Card,"Sylvia Beach, Henri Regnier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/89debf8e-0da8-481e-abe6-b4f10214521d/manifest,https://iiif.princeton.edu/loris/figgy_prod/ce%2Fe1%2F24%2Fcee1241a8a404cb18203972c8bc6a266%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1919-11-18,1919-12-18,https://shakespeareandco.princeton.edu/members/ulmann/,Denise Ulmann,"Ulmann, Denise",6.40,11.20,1 month,30,2,Student,1919-11-18,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Mlle Denise Ulmann Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/e73e13d0-f8ae-468d-8321-115a0f3dd398/manifest,;https://iiif.princeton.edu/loris/figgy_prod/86%2F35%2Ff8%2F8635f832812a4b3eb539848ea26cd087%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1919-11-18,1919-12-18,https://shakespeareandco.princeton.edu/members/keller-m/,M. Keller,"Keller, M.",5.00,7.00,1 month,30,1,,1919-11-18,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1919-11-19,1919-11-22,https://shakespeareandco.princeton.edu/members/cahun/,Claude Cahun / Mlle Lucie Schwob,"Cahun, Claude",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/james-roderick-hudson/,Roderick Hudson,Vol. 1,"James, Henry",1875,,Lending Library Card,"Sylvia Beach, Lucie Schwob Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/551885d9-db78-4e7d-a579-306fca091a7e/manifest,https://iiif.princeton.edu/loris/figgy_prod/3a%2F10%2Fd5%2F3a10d501c2c84577820c817512e81cef%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1919-11-19,1920-05-19,https://shakespeareandco.princeton.edu/members/oerthel/,Maurice Oerthel,"Oerthel, Maurice",16.00,,6 months,182,1,AdL,1919-11-19,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Maurice Oerthel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/9f1c13c8-7dbf-4473-99cb-77f8d586b0b6/manifest,;https://iiif.princeton.edu/loris/figgy_prod/ac%2Fde%2Fb1%2Facdeb1e64fc44eabbfdb6677ca6ec189%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1919-11-19,1919-11-22,https://shakespeareandco.princeton.edu/members/oerthel/,Maurice Oerthel,"Oerthel, Maurice",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/hazlitt-characters-shakespeares-plays/,Characters of Shakespeare's Plays,Vol. 1,"Hazlitt, William",1817,Published in the Everyman's Library series and as volume 1 of *The Collected Works of William Hazlitt.*,Lending Library Card,"Sylvia Beach, Maurice Oerthel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f1c13c8-7dbf-4473-99cb-77f8d586b0b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/ac%2Fde%2Fb1%2Facdeb1e64fc44eabbfdb6677ca6ec189%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1919-11-20,1920-05-20,https://shakespeareandco.princeton.edu/members/morand-jacqueline/,Jacqueline Morand,"Morand, Jacqueline",16.00,7.00,6 months,182,1,,1919-11-20,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1919-11-21,1920-05-21,https://shakespeareandco.princeton.edu/members/foubert-lucienne/,Lucienne Foubert,"Foubert, Lucienne",16.00,7.00,6 months,182,1,,1919-11-21,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1919-11-22,,https://shakespeareandco.princeton.edu/members/regnier/,Henri Regnier,"Regnier, Henri",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/wells-passionate-friends/,The Passionate Friends,,"Wells, H. G.",1913,,Lending Library Card,"Sylvia Beach, Henri Regnier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/89debf8e-0da8-481e-abe6-b4f10214521d/manifest,https://iiif.princeton.edu/loris/figgy_prod/ce%2Fe1%2F24%2Fcee1241a8a404cb18203972c8bc6a266%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1919-11-22,1919-12-04,https://shakespeareandco.princeton.edu/members/oerthel/,Maurice Oerthel,"Oerthel, Maurice",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/kipling-many-inventions/,Many Inventions,,"Kipling, Rudyard",1893,,Lending Library Card,"Sylvia Beach, Maurice Oerthel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f1c13c8-7dbf-4473-99cb-77f8d586b0b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/ac%2Fde%2Fb1%2Facdeb1e64fc44eabbfdb6677ca6ec189%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1919-11-22,1919-11-24,https://shakespeareandco.princeton.edu/members/cahun/,Claude Cahun / Mlle Lucie Schwob,"Cahun, Claude",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/james-roderick-hudson/,Roderick Hudson,Vol. 2,"James, Henry",1875,,Lending Library Card,"Sylvia Beach, Lucie Schwob Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/551885d9-db78-4e7d-a579-306fca091a7e/manifest,https://iiif.princeton.edu/loris/figgy_prod/3a%2F10%2Fd5%2F3a10d501c2c84577820c817512e81cef%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1919-11-24,1919-12-02,https://shakespeareandco.princeton.edu/members/cahun/,Claude Cahun / Mlle Lucie Schwob,"Cahun, Claude",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/butler-pigs-pigs/,Pigs Is Pigs,,"Butler, Ellis Parker",1906,,Lending Library Card,"Sylvia Beach, Lucie Schwob Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/551885d9-db78-4e7d-a579-306fca091a7e/manifest,https://iiif.princeton.edu/loris/figgy_prod/3a%2F10%2Fd5%2F3a10d501c2c84577820c817512e81cef%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1919-11-25,1919-12-01,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/conrad-lord-jim/,Lord Jim,,"Conrad, Joseph",1900,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/be%2Ffa%2Fd0%2Fbefad0e49beb46fdb8b539c225e737e2%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1919-11-25,1920-02-25,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",9.60,7.00,3 months,92,1,Professor / Teacher,1919-11-25,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,;https://iiif-cloud.princeton.edu/iiif/2/be%2Ffa%2Fd0%2Fbefad0e49beb46fdb8b539c225e737e2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1919-11-28,1919-12-03,https://shakespeareandco.princeton.edu/members/ulmann/,Denise Ulmann,"Ulmann, Denise",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/wilde-picture-dorian-grey/,The Picture of Dorian Grey,,"Wilde, Oscar",1890,,Lending Library Card,"Sylvia Beach, Mlle Denise Ulmann Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e73e13d0-f8ae-468d-8321-115a0f3dd398/manifest,https://iiif.princeton.edu/loris/figgy_prod/86%2F35%2Ff8%2F8635f832812a4b3eb539848ea26cd087%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1919-11-28,1919-12-03,https://shakespeareandco.princeton.edu/members/ulmann/,Denise Ulmann,"Ulmann, Denise",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/wilde-intentions/,Intentions,,"Wilde, Oscar",1891,,Lending Library Card,"Sylvia Beach, Mlle Denise Ulmann Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e73e13d0-f8ae-468d-8321-115a0f3dd398/manifest,https://iiif.princeton.edu/loris/figgy_prod/86%2F35%2Ff8%2F8635f832812a4b3eb539848ea26cd087%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1919-11-28,1919-12-28,https://shakespeareandco.princeton.edu/members/unnamed-student-member-1/,[unnamed student member],[unnamed student member],4.00,7.00,1 month,30,1,Student,1919-11-28,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1919-11-29,1919-12-29,https://shakespeareandco.princeton.edu/members/corcoran-joan/,Joan Corcoran,"Corcoran, Joan",4.00,,1 month,30,1,,1919-11-29,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1919-11-29,1919-12-19,https://shakespeareandco.princeton.edu/members/pfeffel/,Mlle de Pfeffel,"de Pfeffel, Mlle",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/bronte-wuthering-heights/,Wuthering Heights,,"BrontΓ«, Emily",1847,,Lending Library Card,"Sylvia Beach, Mlle de Pfeffel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3d95f81b-cb4a-4c14-9fa7-645bf372e82f/manifest,https://iiif.princeton.edu/loris/figgy_prod/94%2Ff8%2Ff3%2F94f8f3e2a0c94142b6fb5407e052ec60%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1919-11-29,1920-02-29,https://shakespeareandco.princeton.edu/members/raphael/,Raphael,Raphael,12.00,7.00,3 months,92,1,,1919-11-29,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1919-11-29,1919-12-29,https://shakespeareandco.princeton.edu/members/castel-2/,Mme Castel,"Castel, Mme",8.00,14.00,1 month,30,2,,1919-11-29,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1919-11-29,1919-12-29,https://shakespeareandco.princeton.edu/members/pfeffel/,Mlle de Pfeffel,"de Pfeffel, Mlle",5.00,7.00,1 month,30,1,,1919-11-29,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Mlle de Pfeffel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/3d95f81b-cb4a-4c14-9fa7-645bf372e82f/manifest,;https://iiif.princeton.edu/loris/figgy_prod/94%2Ff8%2Ff3%2F94f8f3e2a0c94142b6fb5407e052ec60%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1919-11-29,1920-05-29,https://shakespeareandco.princeton.edu/members/legay/,Mme Legay,"Legay, Mme",16.00,,6 months,182,1,AdL,1919-11-29,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Supplement,1919-11-29,1920-02-29,https://shakespeareandco.princeton.edu/members/neufville-agnes-de/,AgnΓ¨s de Neufville,"de Neufville, AgnΓ¨s",6.40,,3 months,92,1,,1919-11-29,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1919-12-01,1920-01-01,https://shakespeareandco.princeton.edu/members/reverchon/,Blanche Reverchon,"Reverchon, Blanche",4.00,,1 month,31,1,AdL,1919-12-01,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Blanche Reverchon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/d262583b-49c8-4685-87c0-f84c4d6f6cdd/manifest,;https://iiif.princeton.edu/loris/figgy_prod/7e%2F3f%2F99%2F7e3f994822ec4acda1963f50d27c879b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1919-12-01,1919-12-13,https://shakespeareandco.princeton.edu/members/reverchon/,Blanche Reverchon,"Reverchon, Blanche",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/shaw-heartbreak-house-fantasia/,Heartbreak House: A Fantasia in the Russian Manner on English Themes,,"Shaw, George Bernard",1919,,Lending Library Card,"Sylvia Beach, Blanche Reverchon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d262583b-49c8-4685-87c0-f84c4d6f6cdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/7e%2F3f%2F99%2F7e3f994822ec4acda1963f50d27c879b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1919-12-01,,https://shakespeareandco.princeton.edu/members/reverchon/,Blanche Reverchon,"Reverchon, Blanche",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/arens-playboy-portfolio-art/,Playboy: A Portfolio of Art and Satire,,,,,Lending Library Card,"Sylvia Beach, Blanche Reverchon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d262583b-49c8-4685-87c0-f84c4d6f6cdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/7e%2F3f%2F99%2F7e3f994822ec4acda1963f50d27c879b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1919-12-01,1920-03-01,https://shakespeareandco.princeton.edu/members/linossier-raymonde/,Raymonde Linossier,"Linossier, Raymonde",9.60,,3 months,91,1,AdL,1919-12-01,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Raymonde Linossier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/53ede5bf-939d-44f5-9ddb-4dd39363bd20/manifest,;https://iiif.princeton.edu/loris/figgy_prod/e0%2F4c%2F48%2Fe04c48674192442089f4cc4578c69942%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1919-12-01,1919-12-04,https://shakespeareandco.princeton.edu/members/linossier-raymonde/,Raymonde Linossier,"Linossier, Raymonde",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/dunsany-five-plays/,Five Plays,,"Dunsany, Lord",1914,,Lending Library Card,"Sylvia Beach, Raymonde Linossier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/53ede5bf-939d-44f5-9ddb-4dd39363bd20/manifest,https://iiif.princeton.edu/loris/figgy_prod/e0%2F4c%2F48%2Fe04c48674192442089f4cc4578c69942%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1919-12-01,1919-12-05,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/dunsany-fifty-one-tales/,Fifty-One Tales,,"Dunsany, Lord",1915,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/be%2Ffa%2Fd0%2Fbefad0e49beb46fdb8b539c225e737e2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1919-12-02,1920-01-05,https://shakespeareandco.princeton.edu/members/winger/,Mr. Winger,"Winger, Mr.",,,,,,,,,Returned,34,,,https://shakespeareandco.princeton.edu/books/webster-white-devil/,The White Devil,,"Webster, John",1612,,Lending Library Card,"Sylvia Beach, Mr Winger Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/880d3c93-f5f1-49be-8558-b9756db548d5/manifest,https://iiif.princeton.edu/loris/figgy_prod/78%2F94%2F7e%2F78947eb3028844d7b12a7d1b7d9a7e0b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1919-12-02,1920-01-05,https://shakespeareandco.princeton.edu/members/winger/,Mr. Winger,"Winger, Mr.",,,,,,,,,Returned,34,,,https://shakespeareandco.princeton.edu/books/unclear-ile/,[unclear]ile,,,,Unidentified. Handwriting unclear.,Lending Library Card,"Sylvia Beach, Mr Winger Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/880d3c93-f5f1-49be-8558-b9756db548d5/manifest,https://iiif.princeton.edu/loris/figgy_prod/78%2F94%2F7e%2F78947eb3028844d7b12a7d1b7d9a7e0b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1919-12-02,1920-01-02,https://shakespeareandco.princeton.edu/members/breton-simone/,Simone Breton / Mlle Simone Kahn,"Breton, Simone",4.00,,1 month,31,1,AdL,1919-12-02,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1919-12-02,1920-01-02,https://shakespeareandco.princeton.edu/members/denans/,Mlle Denans,"Denans, Mlle",4.00,7.00,1 month,31,1,Student,1919-12-02,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1919-12-02,1920-06-02,https://shakespeareandco.princeton.edu/members/winger/,Mr. Winger,"Winger, Mr.",9.60,,6 months,182,1,,--12-02,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Mr Winger Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/880d3c93-f5f1-49be-8558-b9756db548d5/manifest,https://iiif.princeton.edu/loris/figgy_prod/78%2F94%2F7e%2F78947eb3028844d7b12a7d1b7d9a7e0b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1919-12-03,,https://shakespeareandco.princeton.edu/members/ulmann/,Denise Ulmann,"Ulmann, Denise",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/ransome-oscar-wilde-critical/,Oscar Wilde: A Critical Study,,"Ransome, Arthur",1912,,Lending Library Card,"Sylvia Beach, Mlle Denise Ulmann Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e73e13d0-f8ae-468d-8321-115a0f3dd398/manifest,https://iiif.princeton.edu/loris/figgy_prod/86%2F35%2Ff8%2F8635f832812a4b3eb539848ea26cd087%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1919-12-03,,https://shakespeareandco.princeton.edu/members/ulmann/,Denise Ulmann,"Ulmann, Denise",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/hearn-japan-attempt-interpretation/,Japan: An Attempt at Interpretation,,"Hearn, Lafcadio",1904,,Lending Library Card,"Sylvia Beach, Mlle Denise Ulmann Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e73e13d0-f8ae-468d-8321-115a0f3dd398/manifest,https://iiif.princeton.edu/loris/figgy_prod/86%2F35%2Ff8%2F8635f832812a4b3eb539848ea26cd087%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1919-12-04,1919-12-13,https://shakespeareandco.princeton.edu/members/linossier-raymonde/,Raymonde Linossier,"Linossier, Raymonde",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/deirdre/,Deirdre,,,,"Unidentified. Robert Dwyer Joyce's *DeirdreΜ* (1877), A. E.'s *Deirdre* (1902), or W. B. Yeats's *Deirdre* (1907), etc.",Lending Library Card,"Sylvia Beach, Raymonde Linossier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/53ede5bf-939d-44f5-9ddb-4dd39363bd20/manifest,https://iiif.princeton.edu/loris/figgy_prod/e0%2F4c%2F48%2Fe04c48674192442089f4cc4578c69942%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1919-12-04,1919-12-19,https://shakespeareandco.princeton.edu/members/oerthel/,Maurice Oerthel,"Oerthel, Maurice",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/harte-idyls-foothills-prose/,Idyls of the Foothills: In Prose and Verse,,"Harte, Bret",1874,,Lending Library Card,"Sylvia Beach, Maurice Oerthel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f1c13c8-7dbf-4473-99cb-77f8d586b0b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/ac%2Fde%2Fb1%2Facdeb1e64fc44eabbfdb6677ca6ec189%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1919-12-04,1919-12-13,https://shakespeareandco.princeton.edu/members/linossier-raymonde/,Raymonde Linossier,"Linossier, Raymonde",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/thompson-shelley/,Shelley,,"Thompson, Francis",1908,,Lending Library Card,"Sylvia Beach, Raymonde Linossier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/53ede5bf-939d-44f5-9ddb-4dd39363bd20/manifest,https://iiif.princeton.edu/loris/figgy_prod/e0%2F4c%2F48%2Fe04c48674192442089f4cc4578c69942%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1919-12-05,1919-12-11,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/dreiser-sister-carrie/,Sister Carrie,,"Dreiser, Theodore",1900,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/be%2Ffa%2Fd0%2Fbefad0e49beb46fdb8b539c225e737e2%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1919-12-06,1920-06-06,https://shakespeareandco.princeton.edu/members/latrasse/,Mlle Latrasse,"Latrasse, Mlle",16.00,7.00,6 months,183,1,Professor / Teacher,1919-12-06,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1919-12-11,1919-12-16,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/masters-spoon-river-anthology/,Spoon River Anthology,,"Masters, Edgar Lee",1914,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/be%2Ffa%2Fd0%2Fbefad0e49beb46fdb8b539c225e737e2%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1919-12-11,1920-01-11,https://shakespeareandco.princeton.edu/members/culbertson/,Mr. Culbertson,"Culbertson, Mr.",4.00,7.00,1 month,31,1,,1919-12-11,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1919-12-13,1919-12-15,https://shakespeareandco.princeton.edu/members/linossier-raymonde/,Raymonde Linossier,"Linossier, Raymonde",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/gilbert-bab-ballads/,Bab Ballads,,"Gilbert, W. S.",1904,,Lending Library Card,"Sylvia Beach, Raymonde Linossier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/53ede5bf-939d-44f5-9ddb-4dd39363bd20/manifest,https://iiif.princeton.edu/loris/figgy_prod/e0%2F4c%2F48%2Fe04c48674192442089f4cc4578c69942%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1919-12-13,1919-12-30,https://shakespeareandco.princeton.edu/members/reverchon/,Blanche Reverchon,"Reverchon, Blanche",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/conrad-shadow-line-confession/,The Shadow Line: A Confession,,"Conrad, Joseph",1917,,Lending Library Card,"Sylvia Beach, Blanche Reverchon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d262583b-49c8-4685-87c0-f84c4d6f6cdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/7e%2F3f%2F99%2F7e3f994822ec4acda1963f50d27c879b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1919-12-13,1919-12-15,https://shakespeareandco.princeton.edu/members/linossier-raymonde/,Raymonde Linossier,"Linossier, Raymonde",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/conrad-shadow-line-confession/,The Shadow Line: A Confession,,"Conrad, Joseph",1917,,Lending Library Card,"Sylvia Beach, Raymonde Linossier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/53ede5bf-939d-44f5-9ddb-4dd39363bd20/manifest,https://iiif.princeton.edu/loris/figgy_prod/e0%2F4c%2F48%2Fe04c48674192442089f4cc4578c69942%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1919-12-13,1919-12-15,https://shakespeareandco.princeton.edu/members/linossier-raymonde/,Raymonde Linossier,"Linossier, Raymonde",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/davis-van-bibber-others/,Van Bibber and Others,,"Davis, Richard Harding",1892,,Lending Library Card,"Sylvia Beach, Raymonde Linossier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/53ede5bf-939d-44f5-9ddb-4dd39363bd20/manifest,https://iiif.princeton.edu/loris/figgy_prod/e0%2F4c%2F48%2Fe04c48674192442089f4cc4578c69942%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1919-12-15,1919-12-19,https://shakespeareandco.princeton.edu/members/linossier-raymonde/,Raymonde Linossier,"Linossier, Raymonde",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/harris-uncle-remus-songs/,Uncle Remus: His Songs and His Sayings,,"Harris, Joel Chandler",1880,,Lending Library Card,"Sylvia Beach, Raymonde Linossier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/53ede5bf-939d-44f5-9ddb-4dd39363bd20/manifest,https://iiif.princeton.edu/loris/figgy_prod/e0%2F4c%2F48%2Fe04c48674192442089f4cc4578c69942%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1919-12-16,1919-12-26,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/shaw-heartbreak-house-fantasia/,Heartbreak House: A Fantasia in the Russian Manner on English Themes,,"Shaw, George Bernard",1919,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/be%2Ffa%2Fd0%2Fbefad0e49beb46fdb8b539c225e737e2%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1919-12-17,1920-03-17,https://shakespeareandco.princeton.edu/members/descher/,M. Descher,"Descher, M.",12.00,7.00,3 months,91,1,,1919-12-17,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1919-12-19,1920-03-19,https://shakespeareandco.princeton.edu/members/maurois/,AndrΓ© Maurois,"Maurois, AndrΓ©",20.00,14.00,3 months,91,2,,1919-12-19,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, AndrΓ© Maurois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/e726b67c-8075-417c-9cdc-fc0c64e88f2d/manifest,;https://iiif.princeton.edu/loris/figgy_prod/65%2F2e%2F6e%2F652e6e1240e941ce96026dcc510e76b5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1919-12-19,1920-01-08,https://shakespeareandco.princeton.edu/members/pfeffel/,Mlle de Pfeffel,"de Pfeffel, Mlle",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/conrad-lord-jim/,Lord Jim,,"Conrad, Joseph",1900,,Lending Library Card,"Sylvia Beach, Mlle de Pfeffel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3d95f81b-cb4a-4c14-9fa7-645bf372e82f/manifest,https://iiif.princeton.edu/loris/figgy_prod/94%2Ff8%2Ff3%2F94f8f3e2a0c94142b6fb5407e052ec60%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1919-12-19,1920-01-10,https://shakespeareandco.princeton.edu/members/maurois/,AndrΓ© Maurois,"Maurois, AndrΓ©",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/eastman-colors-life-poems/,Colors of Life: Poems and Songs and Sonnets,,"Eastman, Max",1918,,Lending Library Card,"Sylvia Beach, AndrΓ© Maurois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e726b67c-8075-417c-9cdc-fc0c64e88f2d/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2F2e%2F6e%2F652e6e1240e941ce96026dcc510e76b5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1919-12-19,,https://shakespeareandco.princeton.edu/members/linossier-raymonde/,Raymonde Linossier,"Linossier, Raymonde",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/irwin-letters-japanese-schoolboy/,Letters of a Japanese Schoolboy,,"Irwin, Wallace",1909,,Lending Library Card,"Sylvia Beach, Raymonde Linossier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/53ede5bf-939d-44f5-9ddb-4dd39363bd20/manifest,https://iiif.princeton.edu/loris/figgy_prod/e0%2F4c%2F48%2Fe04c48674192442089f4cc4578c69942%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1919-12-19,1920-01-10,https://shakespeareandco.princeton.edu/members/oerthel/,Maurice Oerthel,"Oerthel, Maurice",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/kipling-diversity-creatures/,A Diversity of Creatures,,"Kipling, Rudyard",1917,,Lending Library Card,"Sylvia Beach, Maurice Oerthel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f1c13c8-7dbf-4473-99cb-77f8d586b0b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/ac%2Fde%2Fb1%2Facdeb1e64fc44eabbfdb6677ca6ec189%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1919-12-19,1920-01-10,https://shakespeareandco.princeton.edu/members/maurois/,AndrΓ© Maurois,"Maurois, AndrΓ©",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/abercrombie-speculative-dialogues/,Speculative Dialogues,,"Abercrombie, Lascelles",1913,,Lending Library Card,"Sylvia Beach, AndrΓ© Maurois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e726b67c-8075-417c-9cdc-fc0c64e88f2d/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2F2e%2F6e%2F652e6e1240e941ce96026dcc510e76b5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1919-12-20,1919-12-22,https://shakespeareandco.princeton.edu/members/linossier-raymonde/,Raymonde Linossier,"Linossier, Raymonde",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/masefield-tarpaulin-muster/,A Tarpaulin Muster,,"Masefield, John",1907,,Lending Library Card,"Sylvia Beach, Raymonde Linossier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/53ede5bf-939d-44f5-9ddb-4dd39363bd20/manifest,https://iiif.princeton.edu/loris/figgy_prod/e0%2F4c%2F48%2Fe04c48674192442089f4cc4578c69942%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1919-12-22,1920-01-05,https://shakespeareandco.princeton.edu/members/linossier-raymonde/,Raymonde Linossier,"Linossier, Raymonde",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/de-quincey-confessions-english-opium/,Confessions of an English Opium Eater,,"de Quincey, Thomas",1821,"Bernard Saby borrowed *Confessions of an English Opium Eater,* edited by William Sharp (Walter Scott, 1888).",Lending Library Card,"Sylvia Beach, Raymonde Linossier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/53ede5bf-939d-44f5-9ddb-4dd39363bd20/manifest,https://iiif.princeton.edu/loris/figgy_prod/e0%2F4c%2F48%2Fe04c48674192442089f4cc4578c69942%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1919-12-23,1919-12-30,https://shakespeareandco.princeton.edu/members/suter/,G. V. Suter,"Suter, G. V.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/conrad-lord-jim/,Lord Jim,,"Conrad, Joseph",1900,,Lending Library Card,"Sylvia Beach, G.V. Suter Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f20608fb-4ece-4fc2-879f-36c8e209048b/manifest,https://iiif.princeton.edu/loris/figgy_prod/bb%2Fba%2Fd9%2Fbbbad98ff8fd4145b66084f47304c632%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1919-12-23,1920-01-23,https://shakespeareandco.princeton.edu/members/suter/,G. V. Suter,"Suter, G. V.",4.00,7.00,1 month,31,1,Student,1919-12-23,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, G.V. Suter Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/f20608fb-4ece-4fc2-879f-36c8e209048b/manifest,;https://iiif.princeton.edu/loris/figgy_prod/bb%2Fba%2Fd9%2Fbbbad98ff8fd4145b66084f47304c632%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1919-12-24,1920-12-24,https://shakespeareandco.princeton.edu/members/boussinisq/,Mlle Boussinisq,"Boussinisq, Mlle",28.00,7.00,1 year,366,1,,1919-12-24,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1919-12-26,1919-12-28,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/henry-four-million/,The Four Million,,"Henry, O.",1906,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/be%2Ffa%2Fd0%2Fbefad0e49beb46fdb8b539c225e737e2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1919-12-26,1919-12-30,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/conrad-shadow-line-confession/,The Shadow Line: A Confession,,"Conrad, Joseph",1917,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/71%2F3f%2F42%2F713f429eb7a24c96879802c2ccdd1200%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1919-12-26,1920-03-26,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",12.00,,3 months,91,1,,1919-12-26,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,;https://iiif.princeton.edu/loris/figgy_prod/71%2F3f%2F42%2F713f429eb7a24c96879802c2ccdd1200%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1919-12-27,1920-01-27,https://shakespeareandco.princeton.edu/members/Cahn-1/,M. Cahn,"Cahn, M.",4.00,,1 month,31,1,AdL,1919-12-27,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1919-12-28,1920-01-03,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/gardner-william-blake-man/,William Blake: The Man,,"Gardner, Charles",1919,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/be%2Ffa%2Fd0%2Fbefad0e49beb46fdb8b539c225e737e2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1919-12-30,1920-01-22,https://shakespeareandco.princeton.edu/members/suter/,G. V. Suter,"Suter, G. V.",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/shaw-heartbreak-house-fantasia/,Heartbreak House: A Fantasia in the Russian Manner on English Themes,,"Shaw, George Bernard",1919,,Lending Library Card,"Sylvia Beach, G.V. Suter Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f20608fb-4ece-4fc2-879f-36c8e209048b/manifest,https://iiif.princeton.edu/loris/figgy_prod/bb%2Fba%2Fd9%2Fbbbad98ff8fd4145b66084f47304c632%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1919-12-30,1920-01-06,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/conrad-youth-narrative/,Youth: A Narrative,,"Conrad, Joseph",1902,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/71%2F3f%2F42%2F713f429eb7a24c96879802c2ccdd1200%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1919-12-30,,https://shakespeareandco.princeton.edu/members/reverchon/,Blanche Reverchon,"Reverchon, Blanche",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/noguchi-story-yone-noguchi/,The Story of Yone Noguchi: Told by Himself,,"Noguchi, YonΓ©",1915,,Lending Library Card,"Sylvia Beach, Blanche Reverchon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d262583b-49c8-4685-87c0-f84c4d6f6cdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/7e%2F3f%2F99%2F7e3f994822ec4acda1963f50d27c879b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1919-12-30,1920-01-12,https://shakespeareandco.princeton.edu/members/reverchon/,Blanche Reverchon,"Reverchon, Blanche",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/noguchi-american-diary-japanese/,The American Diary of a Japanese Girl,,"Noguchi, YonΓ©",1902,,Lending Library Card,"Sylvia Beach, Blanche Reverchon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d262583b-49c8-4685-87c0-f84c4d6f6cdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/7e%2F3f%2F99%2F7e3f994822ec4acda1963f50d27c879b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1919-12-30,1920-01-12,https://shakespeareandco.princeton.edu/members/reverchon/,Blanche Reverchon,"Reverchon, Blanche",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/noguchi-story-yone-noguchi/,The Story of Yone Noguchi: Told by Himself,,"Noguchi, YonΓ©",1915,,Lending Library Card,"Sylvia Beach, Blanche Reverchon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d262583b-49c8-4685-87c0-f84c4d6f6cdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/7e%2F3f%2F99%2F7e3f994822ec4acda1963f50d27c879b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-01-03,1920-01-08,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/symons-william-blake/,William Blake,,"Symons, Arthur",1907,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/be%2Ffa%2Fd0%2Fbefad0e49beb46fdb8b539c225e737e2%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1920-01-03,1920-04-03,https://shakespeareandco.princeton.edu/members/denans/,Mlle Denans,"Denans, Mlle",9.60,,3 months,91,1,,1920-01-03,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1920-01-05,1920-02-05,https://shakespeareandco.princeton.edu/members/desclos-5/,M. Desclos,"Desclos, M.",4.00,7.00,1 month,31,1,Professor / Teacher,1920-01-05,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1920-01-05,,https://shakespeareandco.princeton.edu/members/linossier-raymonde/,Raymonde Linossier,"Linossier, Raymonde",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/james-princess-casamassima/,The Princess Casamassima,,"James, Henry",1886,,Lending Library Card,"Sylvia Beach, Raymonde Linossier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/53ede5bf-939d-44f5-9ddb-4dd39363bd20/manifest,https://iiif.princeton.edu/loris/figgy_prod/e0%2F4c%2F48%2Fe04c48674192442089f4cc4578c69942%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-01-05,1920-01-16,https://shakespeareandco.princeton.edu/members/winger/,Mr. Winger,"Winger, Mr.",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/marlowe/,Marlowe,,,,Unidentified. By or about Marlowe.,Lending Library Card,"Sylvia Beach, Mr Winger Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/880d3c93-f5f1-49be-8558-b9756db548d5/manifest,https://iiif.princeton.edu/loris/figgy_prod/78%2F94%2F7e%2F78947eb3028844d7b12a7d1b7d9a7e0b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-01-05,1920-01-16,https://shakespeareandco.princeton.edu/members/winger/,Mr. Winger,"Winger, Mr.",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/sanskrit-literature/,Sanskrit Literature,,,,Unidentified. Likely Arthur A. MacDonell's *A History of Sanskrit Literature* (1900).,Lending Library Card,"Sylvia Beach, Mr Winger Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/880d3c93-f5f1-49be-8558-b9756db548d5/manifest,https://iiif.princeton.edu/loris/figgy_prod/78%2F94%2F7e%2F78947eb3028844d7b12a7d1b7d9a7e0b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-01-06,1920-01-15,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/conrad-twixt-land-sea/,'Twixt Land and Sea,,"Conrad, Joseph",1912,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/71%2F3f%2F42%2F713f429eb7a24c96879802c2ccdd1200%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1920-01-06,1920-02-06,https://shakespeareandco.princeton.edu/members/beauvais/,Mme Beauvais,"Beauvais, Mme",5.00,7.00,1 month,31,1,,1920-01-06,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Supplement,1920-01-06,1920-06-26,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",8.00,,"5 months, 20 days",172,1,,1920-01-06,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,;https://iiif.princeton.edu/loris/figgy_prod/71%2F3f%2F42%2F713f429eb7a24c96879802c2ccdd1200%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1920-01-06,1920-04-06,https://shakespeareandco.princeton.edu/members/boudes/,Odette Boudes,"Boudes, Odette",9.60,7.00,3 months,91,1,Student,1920-01-06,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1920-01-08,1920-01-09,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/conrad-shadow-line-confession/,The Shadow Line: A Confession,,"Conrad, Joseph",1917,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/be%2Ffa%2Fd0%2Fbefad0e49beb46fdb8b539c225e737e2%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1920-01-09,1920-02-09,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",5.00,7.00,1 month,31,1,,1920-01-09,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,;https://iiif.princeton.edu/loris/figgy_prod/1d%2F1f%2F7a%2F1d1f7a35a57a4617b44f01b3b49f9fd5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-01-09,1920-01-22,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/moore-lewis-seymour-women/,Lewis Seymour and Some Women,,"Moore, George",1916,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/1d%2F1f%2F7a%2F1d1f7a35a57a4617b44f01b3b49f9fd5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-01-09,,https://shakespeareandco.princeton.edu/members/pfeffel/,Mlle de Pfeffel,"de Pfeffel, Mlle",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/conrad-youth-narrative/,Youth: A Narrative,,"Conrad, Joseph",1902,,Lending Library Card,"Sylvia Beach, Mlle de Pfeffel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3d95f81b-cb4a-4c14-9fa7-645bf372e82f/manifest,https://iiif.princeton.edu/loris/figgy_prod/94%2Ff8%2Ff3%2F94f8f3e2a0c94142b6fb5407e052ec60%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-01-09,1920-01-24,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/moore-muslin/,Muslin,,"Moore, George",1915,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/be%2Ffa%2Fd0%2Fbefad0e49beb46fdb8b539c225e737e2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1920-01-10,1920-01-31,https://shakespeareandco.princeton.edu/members/oerthel/,Maurice Oerthel,"Oerthel, Maurice",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/hardy-jude-obscure/,Jude the Obscure,,"Hardy, Thomas",1895,,Lending Library Card,"Sylvia Beach, Maurice Oerthel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f1c13c8-7dbf-4473-99cb-77f8d586b0b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/ac%2Fde%2Fb1%2Facdeb1e64fc44eabbfdb6677ca6ec189%2Fintermediate_file.jp2/full/full/0/default.jpg
+Crossed out,1920-01-10,,https://shakespeareandco.princeton.edu/members/maurois/,AndrΓ© Maurois,"Maurois, AndrΓ©",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/graves-irish-literary-musical/,Irish Literary and Musical Studies,,"Graves, Alfred Perceval",1913,,Lending Library Card,"Sylvia Beach, AndrΓ© Maurois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e726b67c-8075-417c-9cdc-fc0c64e88f2d/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2F2e%2F6e%2F652e6e1240e941ce96026dcc510e76b5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-01-10,1920-01-23,https://shakespeareandco.princeton.edu/members/maurois/,AndrΓ© Maurois,"Maurois, AndrΓ©",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/butler-erewhon-revisited-twenty/,"Erewhon Revisited: Twenty Years Later, Both by the Original Discoverer of the Country and by His Son",,"Butler, Samuel",1901,,Lending Library Card,"Sylvia Beach, AndrΓ© Maurois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e726b67c-8075-417c-9cdc-fc0c64e88f2d/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2F2e%2F6e%2F652e6e1240e941ce96026dcc510e76b5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-01-10,1920-01-23,https://shakespeareandco.princeton.edu/members/maurois/,AndrΓ© Maurois,"Maurois, AndrΓ©",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/james-aspern-papers/,The Aspern Papers,,"James, Henry",1888,,Lending Library Card,"Sylvia Beach, AndrΓ© Maurois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e726b67c-8075-417c-9cdc-fc0c64e88f2d/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2F2e%2F6e%2F652e6e1240e941ce96026dcc510e76b5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1920-01-12,1920-04-12,https://shakespeareandco.princeton.edu/members/astruc/,Lucienne Astruc,"Astruc, Lucienne",9.60,,3 months,91,1,AdL,1920-01-12,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1920-01-12,,https://shakespeareandco.princeton.edu/members/allegret/,Marc AllΓ©gret,"AllΓ©gret, Marc",,,,,,,1920-01-12,,,,,,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1920-01-12,1920-01-22,https://shakespeareandco.princeton.edu/members/reverchon/,Blanche Reverchon,"Reverchon, Blanche",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/galsworthy-addresses-america-1919/,"Addresses in America, 1919",,"Galsworthy, John",1919,,Lending Library Card,"Sylvia Beach, Blanche Reverchon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d262583b-49c8-4685-87c0-f84c4d6f6cdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/7e%2F3f%2F99%2F7e3f994822ec4acda1963f50d27c879b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-01-15,1920-03-24,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,69,,,https://shakespeareandco.princeton.edu/books/chesterton-charles-dickens-critical/,Charles Dickens: A Critical Study,,"Chesterton, G. K.",1906,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/71%2F3f%2F42%2F713f429eb7a24c96879802c2ccdd1200%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-01-15,1920-03-24,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,69,,,https://shakespeareandco.princeton.edu/books/walpole-joseph-conrad/,Joseph Conrad,,"Walpole, Hugh",1916,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/71%2F3f%2F42%2F713f429eb7a24c96879802c2ccdd1200%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1920-01-16,1920-04-16,https://shakespeareandco.princeton.edu/members/zimmer/,Isabelle Zimmer,"Zimmer, Isabelle",9.60,7.00,3 months,91,1,Student,1920-01-16,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Isabelle Zimmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/fd5a7d89-809b-4930-adc6-ac5066cd5858/manifest,;https://iiif.princeton.edu/loris/figgy_prod/11%2F74%2F7a%2F11747a862ff34d7b9b2120d1daafff4b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-01-16,,https://shakespeareandco.princeton.edu/members/linossier-raymonde/,Raymonde Linossier,"Linossier, Raymonde",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/sanskrit-literature/,Sanskrit Literature,,,,Unidentified. Likely Arthur A. MacDonell's *A History of Sanskrit Literature* (1900).,Lending Library Card,"Sylvia Beach, Raymonde Linossier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/53ede5bf-939d-44f5-9ddb-4dd39363bd20/manifest,https://iiif.princeton.edu/loris/figgy_prod/e0%2F4c%2F48%2Fe04c48674192442089f4cc4578c69942%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-01-16,1920-02-21,https://shakespeareandco.princeton.edu/members/zimmer/,Isabelle Zimmer,"Zimmer, Isabelle",,,,,,,,,Returned,36,,,https://shakespeareandco.princeton.edu/books/kipling-jungle-book/,The Jungle Book,,"Kipling, Rudyard",1894,,Lending Library Card,"Sylvia Beach, Isabelle Zimmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fd5a7d89-809b-4930-adc6-ac5066cd5858/manifest,https://iiif.princeton.edu/loris/figgy_prod/11%2F74%2F7a%2F11747a862ff34d7b9b2120d1daafff4b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-01-16,,https://shakespeareandco.princeton.edu/members/winger/,Mr. Winger,"Winger, Mr.",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/shanks-queen-china-poems/,The Queen of China and Other Poems,,"Shanks, Edward",1919,,Lending Library Card,"Sylvia Beach, Mr Winger Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/880d3c93-f5f1-49be-8558-b9756db548d5/manifest,https://iiif.princeton.edu/loris/figgy_prod/78%2F94%2F7e%2F78947eb3028844d7b12a7d1b7d9a7e0b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-01-17,,https://shakespeareandco.princeton.edu/members/reverchon/,Blanche Reverchon,"Reverchon, Blanche",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/eastman-liberator/,The Liberator,,,,,Lending Library Card,"Sylvia Beach, Blanche Reverchon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d262583b-49c8-4685-87c0-f84c4d6f6cdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/7e%2F3f%2F99%2F7e3f994822ec4acda1963f50d27c879b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1920-01-19,1920-04-19,https://shakespeareandco.princeton.edu/members/guebhard/,Comtesse Guebhard/Gebhard,"Guebhard, Comtesse",12.00,7.00,3 months,91,1,,1920-01-19,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1920-01-22,1920-01,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/james-awkward-age/,The Awkward Age,,"James, Henry",1899,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/1d%2F1f%2F7a%2F1d1f7a35a57a4617b44f01b3b49f9fd5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-01-22,,https://shakespeareandco.princeton.edu/members/reverchon/,Blanche Reverchon,"Reverchon, Blanche",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/yeats/,Yeats,,,,Unidentified. By or about W. B. Yeats.,Lending Library Card,"Sylvia Beach, Blanche Reverchon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d262583b-49c8-4685-87c0-f84c4d6f6cdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/7e%2F3f%2F99%2F7e3f994822ec4acda1963f50d27c879b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-01-22,1920-03-13,https://shakespeareandco.princeton.edu/members/reverchon/,Blanche Reverchon,"Reverchon, Blanche",,,,,,,,,Returned,51,,,https://shakespeareandco.princeton.edu/books/dreiser-sister-carrie/,Sister Carrie,,"Dreiser, Theodore",1900,,Lending Library Card,"Sylvia Beach, Blanche Reverchon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d262583b-49c8-4685-87c0-f84c4d6f6cdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/7e%2F3f%2F99%2F7e3f994822ec4acda1963f50d27c879b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-01-22,1920-03-03,https://shakespeareandco.princeton.edu/members/suter/,G. V. Suter,"Suter, G. V.",,,,,,,,,Returned,41,,,https://shakespeareandco.princeton.edu/books/bisland-life-letters-lafcadio/,The Life and Letters of Lafcadio Hearn,,"Bisland, Elizabeth",1906,,Lending Library Card,"Sylvia Beach, G.V. Suter Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f20608fb-4ece-4fc2-879f-36c8e209048b/manifest,https://iiif.princeton.edu/loris/figgy_prod/bb%2Fba%2Fd9%2Fbbbad98ff8fd4145b66084f47304c632%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-01-23,1920-02-21,https://shakespeareandco.princeton.edu/members/maurois/,AndrΓ© Maurois,"Maurois, AndrΓ©",,,,,,,,,Returned,29,,,https://shakespeareandco.princeton.edu/books/butler-erewhon/,Erewhon,,"Butler, Samuel",1872,,Lending Library Card,"Sylvia Beach, AndrΓ© Maurois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e726b67c-8075-417c-9cdc-fc0c64e88f2d/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2F2e%2F6e%2F652e6e1240e941ce96026dcc510e76b5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1920-01-23,1920-04-23,https://shakespeareandco.princeton.edu/members/suter/,G. V. Suter,"Suter, G. V.",9.60,,3 months,91,1,Student,1920-01-22,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, G.V. Suter Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/f20608fb-4ece-4fc2-879f-36c8e209048b/manifest,;https://iiif.princeton.edu/loris/figgy_prod/bb%2Fba%2Fd9%2Fbbbad98ff8fd4145b66084f47304c632%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1920-01-23,1920-02-23,https://shakespeareandco.princeton.edu/members/cousin-suzanne/,Suzanne Cousin / Mlle Suzanne Dufour / Mme Jean Cousin,"Cousin, Suzanne",4.00,,1 month,31,1,,1920-01-23,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1920-01-23,1920-02-21,https://shakespeareandco.princeton.edu/members/maurois/,AndrΓ© Maurois,"Maurois, AndrΓ©",,,,,,,,,Returned,29,,,https://shakespeareandco.princeton.edu/books/hardy-collected-poems-thomas/,Collected Poems of Thomas Hardy,,"Hardy, Thomas",1919,,Lending Library Card,"Sylvia Beach, AndrΓ© Maurois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e726b67c-8075-417c-9cdc-fc0c64e88f2d/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2F2e%2F6e%2F652e6e1240e941ce96026dcc510e76b5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1920-01-23,1920-02-23,https://shakespeareandco.princeton.edu/members/culbertson/,Mr. Culbertson,"Culbertson, Mr.",4.00,,1 month,31,1,,1920-01-23,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1920-01-24,1920-02-03,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/dreiser-titan/,The Titan,,"Dreiser, Theodore",1914,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/be%2Ffa%2Fd0%2Fbefad0e49beb46fdb8b539c225e737e2%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1920-01-28,1920-02-28,https://shakespeareandco.princeton.edu/members/Cahn-1/,M. Cahn,"Cahn, M.",6.60,,1 month,31,2,,1920-01-28,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1920-01-29,1920-04-29,https://shakespeareandco.princeton.edu/members/royer/,Mlle Royer,"Royer, Mlle",9.60,7.00,3 months,91,1,Professor / Teacher,1920-01-29,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1920-01-31,1920-02-21,https://shakespeareandco.princeton.edu/members/oerthel/,Maurice Oerthel,"Oerthel, Maurice",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/henry-options/,Options,,"Henry, O.",1909,,Lending Library Card,"Sylvia Beach, Maurice Oerthel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f1c13c8-7dbf-4473-99cb-77f8d586b0b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/ac%2Fde%2Fb1%2Facdeb1e64fc44eabbfdb6677ca6ec189%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-02-03,1920-02-14,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/shaw-fannys-first-play/,Fanny's First Play,,"Shaw, George Bernard",1917,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/be%2Ffa%2Fd0%2Fbefad0e49beb46fdb8b539c225e737e2%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1920-02-04,1920-05-04,https://shakespeareandco.princeton.edu/members/jansse/,Mlle Jansse / Mlle Janesse,"Jansse, Mlle",9.60,,3 months,90,1,AdL,1920-02-04,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1920-02-05,1920-02-21,https://shakespeareandco.princeton.edu/members/maurois/,AndrΓ© Maurois,"Maurois, AndrΓ©",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/monroe-new-poetry-anthology/,The New Poetry: Anthology of Twentieth Century Verse in English,,,1918,,Lending Library Card,"Sylvia Beach, AndrΓ© Maurois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e726b67c-8075-417c-9cdc-fc0c64e88f2d/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2F2e%2F6e%2F652e6e1240e941ce96026dcc510e76b5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1920-02-05,1920-05-05,https://shakespeareandco.princeton.edu/members/royer-mlle/,Mlle Royer,"Royer, Mlle",9.60,,3 months,90,1,Student,1920-02-05,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1920-02-05,1920-02-09,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/monroe-new-poetry-anthology/,The New Poetry: Anthology of Twentieth Century Verse in English,,,1918,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/1d%2F1f%2F7a%2F1d1f7a35a57a4617b44f01b3b49f9fd5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1920-02-06,1920-03-06,https://shakespeareandco.princeton.edu/members/unnamed-member/,Mlle [unnamed student member],"[unnamed member], Mlle",4.00,7.00,1 month,29,1,Student,1920-02-06,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1920-02-09,1920-03-09,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",5.00,,1 month,29,1,,1920-02-09,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,;https://iiif.princeton.edu/loris/figgy_prod/1d%2F1f%2F7a%2F1d1f7a35a57a4617b44f01b3b49f9fd5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-02-09,1920-03-05,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,25,,,https://shakespeareandco.princeton.edu/books/pater-marius-epicurean/,Marius the Epicurean,,"Pater, Walter",1885,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/1d%2F1f%2F7a%2F1d1f7a35a57a4617b44f01b3b49f9fd5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-02-14,1920-02-16,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/saltus-paliser-case/,The Paliser Case,,"Saltus, Edgar",1919,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/be%2Ffa%2Fd0%2Fbefad0e49beb46fdb8b539c225e737e2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1920-02-16,1920-02-20,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/butler-erewhon/,Erewhon,,"Butler, Samuel",1872,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/b6%2Ffb%2F06%2Fb6fb064f4e774203bffe9ae19457ecc1%2Fintermediate_file/full/full/0/default.jpg
+Crossed out,1920-02-16,,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/gold-unclear/,The Gold of [unclear],,,,Unidentified. Handwriting unclear.,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/b6%2Ffb%2F06%2Fb6fb064f4e774203bffe9ae19457ecc1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1920-02-20,1920-02-23,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/stephens-mary-mary/,"Mary, Mary",,"Stephens, James",1912,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/b6%2Ffb%2F06%2Fb6fb064f4e774203bffe9ae19457ecc1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1920-02-21,1920-04-13,https://shakespeareandco.princeton.edu/members/maurois/,AndrΓ© Maurois,"Maurois, AndrΓ©",,,,,,,,,Returned,52,,,https://shakespeareandco.princeton.edu/books/butler-humour-homer-essays/,The Humour of Homer and Other Essays,,"Butler, Samuel",1913,,Lending Library Card,"Sylvia Beach, AndrΓ© Maurois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e726b67c-8075-417c-9cdc-fc0c64e88f2d/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2F2e%2F6e%2F652e6e1240e941ce96026dcc510e76b5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-02-21,1920-04-13,https://shakespeareandco.princeton.edu/members/maurois/,AndrΓ© Maurois,"Maurois, AndrΓ©",,,,,,,,,Returned,52,,,https://shakespeareandco.princeton.edu/books/stephens-mary-mary/,"Mary, Mary",,"Stephens, James",1912,,Lending Library Card,"Sylvia Beach, AndrΓ© Maurois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e726b67c-8075-417c-9cdc-fc0c64e88f2d/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2F2e%2F6e%2F652e6e1240e941ce96026dcc510e76b5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-02-21,1920-03-06,https://shakespeareandco.princeton.edu/members/oerthel/,Maurice Oerthel,"Oerthel, Maurice",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/jerome-three-men-boat/,Three Men in a Boat (To Say Nothing of the Dog),,"Jerome, Jerome K.",1889,,Lending Library Card,"Sylvia Beach, Maurice Oerthel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f1c13c8-7dbf-4473-99cb-77f8d586b0b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/ac%2Fde%2Fb1%2Facdeb1e64fc44eabbfdb6677ca6ec189%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1920-02-21,1920-03-21,https://shakespeareandco.princeton.edu/members/boon/,M. Boon,"Boon, M.",4.00,7.00,1 month,29,1,Student,1920-02-21,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1920-02-21,1920-02-27,https://shakespeareandco.princeton.edu/members/zimmer/,Isabelle Zimmer,"Zimmer, Isabelle",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/kipling-light-failed/,The Light That Failed,,"Kipling, Rudyard",1891,,Lending Library Card,"Sylvia Beach, Isabelle Zimmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fd5a7d89-809b-4930-adc6-ac5066cd5858/manifest,https://iiif.princeton.edu/loris/figgy_prod/11%2F74%2F7a%2F11747a862ff34d7b9b2120d1daafff4b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-02-23,1920-02-28,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/davies-autobiography-super-tramp/,The Autobiography of a Super-Tramp,,"Davies, W. H.",1908,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/b6%2Ffb%2F06%2Fb6fb064f4e774203bffe9ae19457ecc1%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1920-02-25,1920-05-25,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",9.60,,3 months,90,1,Professor / Teacher,1920-02-23,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,;https://iiif-cloud.princeton.edu/iiif/2/b6%2Ffb%2F06%2Fb6fb064f4e774203bffe9ae19457ecc1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1920-02-27,,https://shakespeareandco.princeton.edu/members/winger/,Mr. Winger,"Winger, Mr.",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/butler-humour-homer-essays/,The Humour of Homer and Other Essays,,"Butler, Samuel",1913,,Lending Library Card,"Sylvia Beach, Mr Winger Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/880d3c93-f5f1-49be-8558-b9756db548d5/manifest,https://iiif.princeton.edu/loris/figgy_prod/78%2F94%2F7e%2F78947eb3028844d7b12a7d1b7d9a7e0b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-02-27,1920-03-18,https://shakespeareandco.princeton.edu/members/zimmer/,Isabelle Zimmer,"Zimmer, Isabelle",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/dickens-oliver-twist/,Oliver Twist,,"Dickens, Charles",1837,,Lending Library Card,"Sylvia Beach, Isabelle Zimmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fd5a7d89-809b-4930-adc6-ac5066cd5858/manifest,https://iiif.princeton.edu/loris/figgy_prod/11%2F74%2F7a%2F11747a862ff34d7b9b2120d1daafff4b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1920-02-27,1920-03-27,https://shakespeareandco.princeton.edu/members/Cahn-1/,M. Cahn,"Cahn, M.",6.60,,1 month,29,2,,1920-02-27,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1920-02-28,1920-03-02,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/keynes-economic-consequences-peace/,The Economic Consequences of the Peace,,"Keynes, John Maynard",1919,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/b6%2Ffb%2F06%2Fb6fb064f4e774203bffe9ae19457ecc1%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1920-03-01,1921-03-01,https://shakespeareandco.princeton.edu/members/linossier-raymonde/,Raymonde Linossier,"Linossier, Raymonde",28.00,,1 year,365,1,AdL,1920-04-15,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Raymonde Linossier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/53ede5bf-939d-44f5-9ddb-4dd39363bd20/manifest,;https://iiif.princeton.edu/loris/figgy_prod/e0%2F4c%2F48%2Fe04c48674192442089f4cc4578c69942%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-03-02,1920-03-04,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/joyce-exiles/,Exiles,,"Joyce, James",1918,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/b6%2Ffb%2F06%2Fb6fb064f4e774203bffe9ae19457ecc1%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1920-03-02,1920-06-02,https://shakespeareandco.princeton.edu/members/nerassian/,Mlle der Nerassian,"Nerassian, Mlle der",9.60,,3 months,92,1,Student,1920-03-02,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1920-03-03,1920-03-23,https://shakespeareandco.princeton.edu/members/suter/,G. V. Suter,"Suter, G. V.",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/conrad-nigger-narcissus/,The Nigger of the Narcissus,,"Conrad, Joseph",1897,,Lending Library Card,"Sylvia Beach, G.V. Suter Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f20608fb-4ece-4fc2-879f-36c8e209048b/manifest,https://iiif.princeton.edu/loris/figgy_prod/bb%2Fba%2Fd9%2Fbbbad98ff8fd4145b66084f47304c632%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-03-03,1920-03-16,https://shakespeareandco.princeton.edu/members/suter/,G. V. Suter,"Suter, G. V.",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/chesterton-victorian-age-literature/,The Victorian Age in Literature,,"Chesterton, G. K.",1913,,Lending Library Card,"Sylvia Beach, G.V. Suter Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f20608fb-4ece-4fc2-879f-36c8e209048b/manifest,https://iiif.princeton.edu/loris/figgy_prod/bb%2Fba%2Fd9%2Fbbbad98ff8fd4145b66084f47304c632%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1920-03-04,1921-03-04,https://shakespeareandco.princeton.edu/members/dutihl/,Mme Dutilh,"Dutilh, Mme",30.00,,1 year,365,2,AdL,1920-03-01,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1920-03-04,1920-03-06,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/joyce-dubliners/,Dubliners,,"Joyce, James",1914,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/b6%2Ffb%2F06%2Fb6fb064f4e774203bffe9ae19457ecc1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1920-03-05,1920-03-10,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/stephens-mary-mary/,"Mary, Mary",,"Stephens, James",1912,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/1d%2F1f%2F7a%2F1d1f7a35a57a4617b44f01b3b49f9fd5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-03-06,1920-03-25,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/dreiser-jennie-gerhardt/,Jennie Gerhardt,,"Dreiser, Theodore",1911,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/b6%2Ffb%2F06%2Fb6fb064f4e774203bffe9ae19457ecc1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1920-03-06,1920-03-20,https://shakespeareandco.princeton.edu/members/oerthel/,Maurice Oerthel,"Oerthel, Maurice",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/whitman-leaves-grass/,Leaves of Grass,,"Whitman, Walt",,Unspecified edition.,Lending Library Card,"Sylvia Beach, Maurice Oerthel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f1c13c8-7dbf-4473-99cb-77f8d586b0b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/ac%2Fde%2Fb1%2Facdeb1e64fc44eabbfdb6677ca6ec189%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1920-03-07,1920-04-07,https://shakespeareandco.princeton.edu/members/hazant/,Mlle Hazant,"Hazant, Mlle",4.00,,1 month,31,1,,1920-03-06,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1920-03-08,1920-06-08,https://shakespeareandco.princeton.edu/members/bloch/,AndrΓ© Bloch,"Bloch, AndrΓ©",12.00,7.00,3 months,92,1,,1920-03-08,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1920-03-09,1920-04-09,https://shakespeareandco.princeton.edu/members/hazant-mlle/,Mlle Hazant,"Hazant, Mlle",4.00,,1 month,31,1,,1920-03-09,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1920-03-10,1920-03-26,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/butler-way-flesh/,The Way of All Flesh,,"Butler, Samuel",1903,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/1d%2F1f%2F7a%2F1d1f7a35a57a4617b44f01b3b49f9fd5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1920-03-10,1920-03-24,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",2.00,,2 weeks,14,1,,1920-03-10,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/1d%2F1f%2F7a%2F1d1f7a35a57a4617b44f01b3b49f9fd5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-03-12,1920-03-24,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/chesterton-orthodoxy/,Orthodoxy,,"Chesterton, G. K.",1908,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/71%2F3f%2F42%2F713f429eb7a24c96879802c2ccdd1200%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1920-03-13,1920-04-13,https://shakespeareandco.princeton.edu/members/lafitte/,Mme Lafitte,"Lafitte, Mme",5.00,,1 month,31,1,,1920-02-23,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1920-03-13,1920-04-17,https://shakespeareandco.princeton.edu/members/reverchon/,Blanche Reverchon,"Reverchon, Blanche",,,,,,,,,Returned,35,,,https://shakespeareandco.princeton.edu/books/hardy-return-native/,The Return of the Native,,"Hardy, Thomas",1878,,Lending Library Card,"Sylvia Beach, Blanche Reverchon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d262583b-49c8-4685-87c0-f84c4d6f6cdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/7e%2F3f%2F99%2F7e3f994822ec4acda1963f50d27c879b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1920-03-16,1921-03-16,https://shakespeareandco.princeton.edu/members/savitzky/,Ludmila Savitzky / Mme Ludmila Bloch,"Savitzky, Ludmila",30.00,,1 year,365,2,AdL,1920-03-16,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Ludmila Savitski Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/6a1e59dd-7799-42ba-b130-b9f6907e7f1c/manifest,;https://iiif-cloud.princeton.edu/iiif/2/08%2Fb6%2F16%2F08b616a7c8e84b0eae58a7edb3603ae7%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1920-03-16,1920-07-29,https://shakespeareandco.princeton.edu/members/savitzky/,Ludmila Savitzky / Mme Ludmila Bloch,"Savitzky, Ludmila",,,,,,,,,Returned,135,,,https://shakespeareandco.princeton.edu/books/swinburne-selections-algernon-charles/,Selections from A. C. Swinburne,,"Swinburne, Algernon Charles",1919,,Lending Library Card,"Sylvia Beach, Ludmila Savitski Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6a1e59dd-7799-42ba-b130-b9f6907e7f1c/manifest,https://iiif-cloud.princeton.edu/iiif/2/08%2Fb6%2F16%2F08b616a7c8e84b0eae58a7edb3603ae7%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1920-03-16,1920-07-29,https://shakespeareandco.princeton.edu/members/savitzky/,Ludmila Savitzky / Mme Ludmila Bloch,"Savitzky, Ludmila",,,,,,,,,Returned,135,,,https://shakespeareandco.princeton.edu/books/georgian-poetry/,Georgian Poetry,,,,Unidentified. Likely an anthology of Georgian poetry.,Lending Library Card,"Sylvia Beach, Ludmila Savitski Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6a1e59dd-7799-42ba-b130-b9f6907e7f1c/manifest,https://iiif-cloud.princeton.edu/iiif/2/08%2Fb6%2F16%2F08b616a7c8e84b0eae58a7edb3603ae7%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1920-03-16,1921-03-16,https://shakespeareandco.princeton.edu/members/stein-gertrude/,Gertrude Stein,"Stein, Gertrude",50.00,,1 year,365,2,,1920-03-16,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Gertrude Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/9f6f307d-2eb7-4960-8dc1-9dec4ea53022/manifest,;https://iiif.princeton.edu/loris/figgy_prod/12%2Fe6%2F12%2F12e612fbcef343bcb74f5bec1a44a4f8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1920-03-17,1920-06-17,https://shakespeareandco.princeton.edu/members/descher/,M. Descher,"Descher, M.",12.00,,3 months,92,1,,1920-03-17,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1920-03-18,,https://shakespeareandco.princeton.edu/members/stein-gertrude/,Gertrude Stein,"Stein, Gertrude",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/vorse-prestons/,The Prestons,,"Vorse, Mary Heaton",1918,,Lending Library Card,"Sylvia Beach, Gertrude Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f6f307d-2eb7-4960-8dc1-9dec4ea53022/manifest,https://iiif.princeton.edu/loris/figgy_prod/12%2Fe6%2F12%2F12e612fbcef343bcb74f5bec1a44a4f8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-03-18,1920-03-30,https://shakespeareandco.princeton.edu/members/zimmer/,Isabelle Zimmer,"Zimmer, Isabelle",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/jerome-three-men-boat/,Three Men in a Boat (To Say Nothing of the Dog),,"Jerome, Jerome K.",1889,,Lending Library Card,"Sylvia Beach, Isabelle Zimmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fd5a7d89-809b-4930-adc6-ac5066cd5858/manifest,https://iiif.princeton.edu/loris/figgy_prod/11%2F74%2F7a%2F11747a862ff34d7b9b2120d1daafff4b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-03-18,,https://shakespeareandco.princeton.edu/members/stein-gertrude/,Gertrude Stein,"Stein, Gertrude",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/p-barnum/,P. T. Barnum,,,,Unidentified. By or about Barnum.,Lending Library Card,"Sylvia Beach, Gertrude Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f6f307d-2eb7-4960-8dc1-9dec4ea53022/manifest,https://iiif.princeton.edu/loris/figgy_prod/12%2Fe6%2F12%2F12e612fbcef343bcb74f5bec1a44a4f8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1920-03-19,1920-06-19,https://shakespeareandco.princeton.edu/members/fletcher/,Mrs. Fletcher,"Fletcher, Mrs.",9.60,,3 months,92,1,,1920-03-19,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1920-03-22,1920-04-03,https://shakespeareandco.princeton.edu/members/oerthel/,Maurice Oerthel,"Oerthel, Maurice",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/kipling-kim/,Kim,,"Kipling, Rudyard",1901,,Lending Library Card,"Sylvia Beach, Maurice Oerthel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f1c13c8-7dbf-4473-99cb-77f8d586b0b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/ac%2Fde%2Fb1%2Facdeb1e64fc44eabbfdb6677ca6ec189%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1920-03-23,1920-04-23,https://shakespeareandco.princeton.edu/members/unnamed-member-2/,[unnamed member],[unnamed member],6.60,,1 month,31,2,,1920-03-23,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1920-03-24,1920-04-14,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/chesterton-heretics/,Heretics,,"Chesterton, G. K.",1905,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/71%2F3f%2F42%2F713f429eb7a24c96879802c2ccdd1200%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-03-25,1920-03-29,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/freud-totem-taboo/,Totem and Taboo,,"Freud, Sigmund",1919,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/b6%2Ffb%2F06%2Fb6fb064f4e774203bffe9ae19457ecc1%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1920-03-26,1920-04-26,https://shakespeareandco.princeton.edu/members/chilowsky/,Mlle Chilowsky,"Chilowsky, Mlle",5.00,7.00,1 month,31,1,,1920-03-26,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Supplement,1920-03-27,1920-06-04,https://shakespeareandco.princeton.edu/members/hay/,Miss Hay,"Hay, Miss",3.00,,"2 months, 8 days",69,1,,1920-03-27,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1920-03-29,1920-04-03,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/hardy-desperate-remedies/,Desperate Remedies,,"Hardy, Thomas",1871,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/b6%2Ffb%2F06%2Fb6fb064f4e774203bffe9ae19457ecc1%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1920-03-29,1920-04-29,https://shakespeareandco.princeton.edu/members/maniere/,Mlle ManiΓ¨re,"ManiΓ¨re, Mlle",12.00,14.00,1 month,31,2,,1920-03-29,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1920-03-30,1920-04-15,https://shakespeareandco.princeton.edu/members/zimmer/,Isabelle Zimmer,"Zimmer, Isabelle",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/kipling-just-stories/,Just So Stories,,"Kipling, Rudyard",1902,,Lending Library Card,"Sylvia Beach, Isabelle Zimmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fd5a7d89-809b-4930-adc6-ac5066cd5858/manifest,https://iiif.princeton.edu/loris/figgy_prod/11%2F74%2F7a%2F11747a862ff34d7b9b2120d1daafff4b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1920-03-30,1920-06-30,https://shakespeareandco.princeton.edu/members/newstratten/,Mlle Newstratten,"Newstratten, Mlle",9.60,,3 months,92,1,,1920-03-30,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1920-04-01,1920-05-01,https://shakespeareandco.princeton.edu/members/schenk/,M. Schenk,"Schenk, M.",5.00,7.00,1 month,30,1,,1920-04-01,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Monsieur Schenk Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/40c91b4f-857e-4f5a-affc-c8bd3e318531/manifest,;https://iiif.princeton.edu/loris/figgy_prod/78%2F99%2F80%2F7899808414ba48c3956e20eb96649118%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1920-04-01,1920-05-01,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",8.00,14.00,1 month,30,2,,1920-04-01,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1920-04-01,1920-04-02,https://shakespeareandco.princeton.edu/members/schenk/,M. Schenk,"Schenk, M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/dell-second-country-france/,My Second Country (France),,"Dell, Robert",1920,,Lending Library Card,"Sylvia Beach, Monsieur Schenk Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/40c91b4f-857e-4f5a-affc-c8bd3e318531/manifest,https://iiif.princeton.edu/loris/figgy_prod/78%2F99%2F80%2F7899808414ba48c3956e20eb96649118%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-04-02,1920-04-06,https://shakespeareandco.princeton.edu/members/schenk/,M. Schenk,"Schenk, M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/joyce-dubliners/,Dubliners,,"Joyce, James",1914,,Lending Library Card,"Sylvia Beach, Monsieur Schenk Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/40c91b4f-857e-4f5a-affc-c8bd3e318531/manifest,https://iiif.princeton.edu/loris/figgy_prod/78%2F99%2F80%2F7899808414ba48c3956e20eb96649118%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-04-03,1920-04-19,https://shakespeareandco.princeton.edu/members/oerthel/,Maurice Oerthel,"Oerthel, Maurice",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/lang-cock-lane-common/,Cock Lane and Common-Sense,,"Lang, Andrew",1894,,Lending Library Card,"Sylvia Beach, Maurice Oerthel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f1c13c8-7dbf-4473-99cb-77f8d586b0b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/ac%2Fde%2Fb1%2Facdeb1e64fc44eabbfdb6677ca6ec189%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-04-03,1920-04-05,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/goldring-margots-progress/,Margot's Progress,,"Goldring, Douglas",1916,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/b6%2Ffb%2F06%2Fb6fb064f4e774203bffe9ae19457ecc1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1920-04-06,1920-04-10,https://shakespeareandco.princeton.edu/members/schenk/,M. Schenk,"Schenk, M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/pound-pavannes-divisions/,Pavannes and Divisions,,"Pound, Ezra",1918,,Lending Library Card,"Sylvia Beach, Monsieur Schenk Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/40c91b4f-857e-4f5a-affc-c8bd3e318531/manifest,https://iiif.princeton.edu/loris/figgy_prod/78%2F99%2F80%2F7899808414ba48c3956e20eb96649118%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1920-04-07,1920-07-07,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",17.10,,3 months,91,1,Professor / Teacher,1920-04-07,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1920-04-08,1920-05-08,https://shakespeareandco.princeton.edu/members/hazant/,Mlle Hazant,"Hazant, Mlle",4.00,,1 month,30,1,Student,1920-04-08,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1920-04-10,1920-04-12,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/london-john-barleycorn/,John Barleycorn,,"London, Jack",1913,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/b6%2Ffb%2F06%2Fb6fb064f4e774203bffe9ae19457ecc1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1920-04-10,1920-04-12,https://shakespeareandco.princeton.edu/members/schenk/,M. Schenk,"Schenk, M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/joyce-portrait-artist-young/,A Portrait of the Artist as a Young Man,,"Joyce, James",1916,,Lending Library Card,"Sylvia Beach, Monsieur Schenk Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/40c91b4f-857e-4f5a-affc-c8bd3e318531/manifest,https://iiif.princeton.edu/loris/figgy_prod/78%2F99%2F80%2F7899808414ba48c3956e20eb96649118%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-04-12,1920-04-15,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/galsworthy-mob/,The Mob,,"Galsworthy, John",1914,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/b6%2Ffb%2F06%2Fb6fb064f4e774203bffe9ae19457ecc1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1920-04-12,1920-04-13,https://shakespeareandco.princeton.edu/members/schenk/,M. Schenk,"Schenk, M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/swinnerton-george-gissing-critical/,George Gissing: A Critical Study,,"Swinnerton, Frank",1912,,Lending Library Card,"Sylvia Beach, Monsieur Schenk Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/40c91b4f-857e-4f5a-affc-c8bd3e318531/manifest,https://iiif.princeton.edu/loris/figgy_prod/78%2F99%2F80%2F7899808414ba48c3956e20eb96649118%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-04-13,1921-04-22,https://shakespeareandco.princeton.edu/members/maurois/,AndrΓ© Maurois,"Maurois, AndrΓ©",,,,,,,,,Returned,374,,,https://shakespeareandco.princeton.edu/books/freud-totem-taboo/,Totem and Taboo,,"Freud, Sigmund",1919,,Lending Library Card,"Sylvia Beach, AndrΓ© Maurois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e726b67c-8075-417c-9cdc-fc0c64e88f2d/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2F2e%2F6e%2F652e6e1240e941ce96026dcc510e76b5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-04-13,,https://shakespeareandco.princeton.edu/members/maurois/,AndrΓ© Maurois,"Maurois, AndrΓ©",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/squire-london-mercury/,The London Mercury,"Vol. 1, no. 4, Feb 1920",,,,Lending Library Card,"Sylvia Beach, AndrΓ© Maurois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e726b67c-8075-417c-9cdc-fc0c64e88f2d/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2F2e%2F6e%2F652e6e1240e941ce96026dcc510e76b5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-04-13,1920-04-19,https://shakespeareandco.princeton.edu/members/maurois/,AndrΓ© Maurois,"Maurois, AndrΓ©",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/davies-autobiography-super-tramp/,The Autobiography of a Super-Tramp,,"Davies, W. H.",1908,,Lending Library Card,"Sylvia Beach, AndrΓ© Maurois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e726b67c-8075-417c-9cdc-fc0c64e88f2d/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2F2e%2F6e%2F652e6e1240e941ce96026dcc510e76b5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-04-13,1920-04-15,https://shakespeareandco.princeton.edu/members/schenk/,M. Schenk,"Schenk, M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/synge/,J. M. Synge,,,,Unidentified. By or about J. M. Synge.,Lending Library Card,"Sylvia Beach, Monsieur Schenk Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/40c91b4f-857e-4f5a-affc-c8bd3e318531/manifest,https://iiif.princeton.edu/loris/figgy_prod/78%2F99%2F80%2F7899808414ba48c3956e20eb96649118%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-04-15,1920-04-16,https://shakespeareandco.princeton.edu/members/schenk/,M. Schenk,"Schenk, M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/butler-humour-homer-essays/,The Humour of Homer and Other Essays,,"Butler, Samuel",1913,,Lending Library Card,"Sylvia Beach, Monsieur Schenk Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/40c91b4f-857e-4f5a-affc-c8bd3e318531/manifest,https://iiif.princeton.edu/loris/figgy_prod/78%2F99%2F80%2F7899808414ba48c3956e20eb96649118%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-04-15,1920-04,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/woolf-night-day/,Night and Day,,"Woolf, Virginia",1919,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/b6%2Ffb%2F06%2Fb6fb064f4e774203bffe9ae19457ecc1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1920-04-15,1920-05-07,https://shakespeareandco.princeton.edu/members/zimmer/,Isabelle Zimmer,"Zimmer, Isabelle",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/hardy-greenwood-tree/,Under the Greenwood Tree,,"Hardy, Thomas",1872,,Lending Library Card,"Sylvia Beach, Isabelle Zimmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fd5a7d89-809b-4930-adc6-ac5066cd5858/manifest,https://iiif.princeton.edu/loris/figgy_prod/11%2F74%2F7a%2F11747a862ff34d7b9b2120d1daafff4b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-04-16,1920-04-22,https://shakespeareandco.princeton.edu/members/suter/,G. V. Suter,"Suter, G. V.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/conrad-nostromo-tale-seaboard/,Nostromo: A Tale of the Seaboard,,"Conrad, Joseph",1904,,Lending Library Card,"Sylvia Beach, G.V. Suter Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f20608fb-4ece-4fc2-879f-36c8e209048b/manifest,https://iiif.princeton.edu/loris/figgy_prod/bb%2Fba%2Fd9%2Fbbbad98ff8fd4145b66084f47304c632%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-04-16,1920-05-07,https://shakespeareandco.princeton.edu/members/suter/,G. V. Suter,"Suter, G. V.",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/meredith-evan-harrington/,Evan Harrington,,"Meredith, George",1861,,Lending Library Card,"Sylvia Beach, G.V. Suter Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f20608fb-4ece-4fc2-879f-36c8e209048b/manifest,https://iiif.princeton.edu/loris/figgy_prod/bb%2Fba%2Fd9%2Fbbbad98ff8fd4145b66084f47304c632%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-04-16,1920-04-17,https://shakespeareandco.princeton.edu/members/schenk/,M. Schenk,"Schenk, M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/swinnerton-nocturne/,Nocturne,,"Swinnerton, Frank",1917,,Lending Library Card,"Sylvia Beach, Monsieur Schenk Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/40c91b4f-857e-4f5a-affc-c8bd3e318531/manifest,https://iiif.princeton.edu/loris/figgy_prod/78%2F99%2F80%2F7899808414ba48c3956e20eb96649118%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1920-04-16,1920-07-16,https://shakespeareandco.princeton.edu/members/zimmer/,Isabelle Zimmer,"Zimmer, Isabelle",9.60,,3 months,91,1,Student,1920-05-07,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Isabelle Zimmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/fd5a7d89-809b-4930-adc6-ac5066cd5858/manifest,;https://iiif.princeton.edu/loris/figgy_prod/11%2F74%2F7a%2F11747a862ff34d7b9b2120d1daafff4b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-04-17,,https://shakespeareandco.princeton.edu/members/reverchon/,Blanche Reverchon,"Reverchon, Blanche",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/galsworthy-mob/,The Mob,,"Galsworthy, John",1914,,Lending Library Card,"Sylvia Beach, Blanche Reverchon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d262583b-49c8-4685-87c0-f84c4d6f6cdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/7e%2F3f%2F99%2F7e3f994822ec4acda1963f50d27c879b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-04-17,1920-04-19,https://shakespeareandco.princeton.edu/members/schenk/,M. Schenk,"Schenk, M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/symons-plays-acting-music/,"Plays, Acting, and Music",,"Symons, Arthur",1903,,Lending Library Card,"Sylvia Beach, Monsieur Schenk Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/40c91b4f-857e-4f5a-affc-c8bd3e318531/manifest,https://iiif.princeton.edu/loris/figgy_prod/78%2F99%2F80%2F7899808414ba48c3956e20eb96649118%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-04-17,1920-05-01,https://shakespeareandco.princeton.edu/members/linossier-raymonde/,Raymonde Linossier,"Linossier, Raymonde",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/stein-three-lives/,Three Lives,,"Stein, Gertrude",1909,,Lending Library Card,"Sylvia Beach, Raymonde Linossier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/53ede5bf-939d-44f5-9ddb-4dd39363bd20/manifest,https://iiif.princeton.edu/loris/figgy_prod/e0%2F4c%2F48%2Fe04c48674192442089f4cc4578c69942%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-04-19,1920-04-30,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/schreiner-story-african-farm/,The Story of an African Farm,,"Schreiner, Olive",1883,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/71%2F3f%2F42%2F713f429eb7a24c96879802c2ccdd1200%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-04-19,,https://shakespeareandco.princeton.edu/members/maurois/,AndrΓ© Maurois,"Maurois, AndrΓ©",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/woolf-voyage/,The Voyage Out,,"Woolf, Virginia",1915,,Lending Library Card,"Sylvia Beach, AndrΓ© Maurois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e726b67c-8075-417c-9cdc-fc0c64e88f2d/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2F2e%2F6e%2F652e6e1240e941ce96026dcc510e76b5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-04-19,1920-05-04,https://shakespeareandco.princeton.edu/members/oerthel/,Maurice Oerthel,"Oerthel, Maurice",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/conrad-lord-jim/,Lord Jim,,"Conrad, Joseph",1900,,Lending Library Card,"Sylvia Beach, Maurice Oerthel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f1c13c8-7dbf-4473-99cb-77f8d586b0b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/ac%2Fde%2Fb1%2Facdeb1e64fc44eabbfdb6677ca6ec189%2Fintermediate_file.jp2/full/full/0/default.jpg
+Crossed out,1920-04-22,,https://shakespeareandco.princeton.edu/members/suter/,G. V. Suter,"Suter, G. V.",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/wilde-happy-prince-tales/,The Happy Prince and Other Tales,,"Wilde, Oscar",1888,,Lending Library Card,"Sylvia Beach, G.V. Suter Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f20608fb-4ece-4fc2-879f-36c8e209048b/manifest,https://iiif.princeton.edu/loris/figgy_prod/bb%2Fba%2Fd9%2Fbbbad98ff8fd4145b66084f47304c632%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1920-04-23,1920-05-23,https://shakespeareandco.princeton.edu/members/suter/,G. V. Suter,"Suter, G. V.",4.00,,1 month,30,1,Student,1920-04-22,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, G.V. Suter Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f20608fb-4ece-4fc2-879f-36c8e209048b/manifest,https://iiif.princeton.edu/loris/figgy_prod/bb%2Fba%2Fd9%2Fbbbad98ff8fd4145b66084f47304c632%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1920-04-26,1920-10-26,https://shakespeareandco.princeton.edu/members/guebhard/,Comtesse Guebhard/Gebhard,"Guebhard, Comtesse",20.00,,6 months,183,1,,1920-04-26,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1920-04-29,,https://shakespeareandco.princeton.edu/members/stein-gertrude/,Gertrude Stein,"Stein, Gertrude",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/elton-schoolboys-exiles/,Schoolboys and Exiles,,"Elton, Godfrey, Baron",1919,,Lending Library Card,"Sylvia Beach, Gertrude Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f6f307d-2eb7-4960-8dc1-9dec4ea53022/manifest,https://iiif.princeton.edu/loris/figgy_prod/12%2Fe6%2F12%2F12e612fbcef343bcb74f5bec1a44a4f8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-04-29,,https://shakespeareandco.princeton.edu/members/stein-gertrude/,Gertrude Stein,"Stein, Gertrude",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/moore-lewis-seymour-women/,Lewis Seymour and Some Women,,"Moore, George",1916,,Lending Library Card,"Sylvia Beach, Gertrude Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f6f307d-2eb7-4960-8dc1-9dec4ea53022/manifest,https://iiif.princeton.edu/loris/figgy_prod/12%2Fe6%2F12%2F12e612fbcef343bcb74f5bec1a44a4f8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1920-04-29,1920-07-29,https://shakespeareandco.princeton.edu/members/huchon/,RenΓ© Huchon,"Huchon, RenΓ©",9.60,,3 months,91,1,Professor / Teacher,1920-04-29,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1920-04-29,1920-07-29,https://shakespeareandco.princeton.edu/members/maniere/,Mlle ManiΓ¨re,"ManiΓ¨re, Mlle",30.00,,3 months,91,2,,1920-04-29,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1920-04-29,1920-06-03,https://shakespeareandco.princeton.edu/members/stein-gertrude/,Gertrude Stein,"Stein, Gertrude",,,,,,,,,Returned,35,,,https://shakespeareandco.princeton.edu/books/howells/,Howells,2 vols.,,,Unidentified. By or about William Dean Howells. In 2 volumes.,Lending Library Card,"Sylvia Beach, Gertrude Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f6f307d-2eb7-4960-8dc1-9dec4ea53022/manifest,https://iiif.princeton.edu/loris/figgy_prod/12%2Fe6%2F12%2F12e612fbcef343bcb74f5bec1a44a4f8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-04-29,1920-06-03,https://shakespeareandco.princeton.edu/members/stein-gertrude/,Gertrude Stein,"Stein, Gertrude",,,,,,,,,Returned,35,,,https://shakespeareandco.princeton.edu/books/meredith-letters-george-meredith/,The Letters of George Meredith,2 vols.,"Meredith, George",1912,,Lending Library Card,"Sylvia Beach, Gertrude Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f6f307d-2eb7-4960-8dc1-9dec4ea53022/manifest,https://iiif.princeton.edu/loris/figgy_prod/12%2Fe6%2F12%2F12e612fbcef343bcb74f5bec1a44a4f8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-04-29,,https://shakespeareandco.princeton.edu/members/stein-gertrude/,Gertrude Stein,"Stein, Gertrude",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/robert-elizabeth-browning/,Robert and Elizabeth Browning,,,,Unidentified. By or about the Brownings.,Lending Library Card,"Sylvia Beach, Gertrude Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f6f307d-2eb7-4960-8dc1-9dec4ea53022/manifest,https://iiif.princeton.edu/loris/figgy_prod/12%2Fe6%2F12%2F12e612fbcef343bcb74f5bec1a44a4f8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-04-29,,https://shakespeareandco.princeton.edu/members/stein-gertrude/,Gertrude Stein,"Stein, Gertrude",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/crosfield-love-ancient-days/,A Love in Ancient Days,,"Crosfield, T. H.",1908,,Lending Library Card,"Sylvia Beach, Gertrude Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f6f307d-2eb7-4960-8dc1-9dec4ea53022/manifest,https://iiif.princeton.edu/loris/figgy_prod/12%2Fe6%2F12%2F12e612fbcef343bcb74f5bec1a44a4f8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-04-30,1920-05-04,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/schreiner-trooper-peter-halket/,Trooper Peter Halket of Mashonaland,,"Schreiner, Olive",1897,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/71%2F3f%2F42%2F713f429eb7a24c96879802c2ccdd1200%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-04-30,1920-05-06,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/james-spoils-poynton/,The Spoils of Poynton,,"James, Henry",1897,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/7d%2F3f%2F5c%2F7d3f5c4197064c14a37955e5e7185913%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1920-04-30,1920-07-30,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",12.00,,3 months,91,1,,1920-04-30,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1920-05-03,1920-08-03,https://shakespeareandco.princeton.edu/members/royer/,Mlle Royer,"Royer, Mlle",9.60,,3 months,92,1,,1920-05-03,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1920-05-04,1920-05-21,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/dickens-old-curiosity-shop/,The Old Curiosity Shop,,"Dickens, Charles",1841,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/71%2F3f%2F42%2F713f429eb7a24c96879802c2ccdd1200%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1920-05-04,1920-08-04,https://shakespeareandco.princeton.edu/members/jansse/,Mlle Jansse / Mlle Janesse,"Jansse, Mlle",16.00,,3 months,92,2,Student,1920-05-04,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1920-05-04,1920-05-15,https://shakespeareandco.princeton.edu/members/oerthel/,Maurice Oerthel,"Oerthel, Maurice",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/galsworthy-justice/,Justice,,"Galsworthy, John",1910,,Lending Library Card,"Sylvia Beach, Maurice Oerthel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f1c13c8-7dbf-4473-99cb-77f8d586b0b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/ac%2Fde%2Fb1%2Facdeb1e64fc44eabbfdb6677ca6ec189%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1920-05-05,1920-06-05,https://shakespeareandco.princeton.edu/members/goukowsky/,Mlle Goukowsky / Goukowska,Mlle Goukowsky,4.00,7.00,1 month,31,1,Student,1920-05-05,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1920-05-06,1920-07-06,https://shakespeareandco.princeton.edu/members/desclos-5/,M. Desclos,"Desclos, M.",7.00,,2 months,61,1,Professor / Teacher,1920-05-06,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1920-05-06,1920-05-08,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/abercrombie-thomas-hardy-critical/,Thomas Hardy: A Critical Study,,"Abercrombie, Lascelles",1912,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/7d%2F3f%2F5c%2F7d3f5c4197064c14a37955e5e7185913%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1920-05-07,1920-05-18,https://shakespeareandco.princeton.edu/members/zimmer/,Isabelle Zimmer,"Zimmer, Isabelle",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/haggard-history-adventure/,She: A History of Adventure,,"Haggard, H. Rider",1887,,Lending Library Card,"Sylvia Beach, Isabelle Zimmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fd5a7d89-809b-4930-adc6-ac5066cd5858/manifest,https://iiif.princeton.edu/loris/figgy_prod/11%2F74%2F7a%2F11747a862ff34d7b9b2120d1daafff4b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-05-07,1920-06-01,https://shakespeareandco.princeton.edu/members/suter/,G. V. Suter,"Suter, G. V.",,,,,,,,,Returned,25,,,https://shakespeareandco.princeton.edu/books/meredith-lord-ormont-aminta/,Lord Ormont and His Aminta,,"Meredith, George",1894,,Lending Library Card,"Sylvia Beach, G.V. Suter Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f20608fb-4ece-4fc2-879f-36c8e209048b/manifest,https://iiif.princeton.edu/loris/figgy_prod/bb%2Fba%2Fd9%2Fbbbad98ff8fd4145b66084f47304c632%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-05-08,1920-05-14,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/hergesheimer-three-black-pennys/,The Three Black Pennys,,"Hergesheimer, Joseph",1917,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/7d%2F3f%2F5c%2F7d3f5c4197064c14a37955e5e7185913%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1920-05-10,1920-06-10,https://shakespeareandco.princeton.edu/members/Cahn-1/,M. Cahn,"Cahn, M.",4.00,,1 month,31,1,,1920-05-10,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1920-05-10,1920-05-26,https://shakespeareandco.princeton.edu/members/riviere-jean/,Jean Rivière,"Rivière, Jean",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/butler-erewhon/,Erewhon,,"Butler, Samuel",1872,,Lending Library Card,"Sylvia Beach, Jean Riviere Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f28d3be1-45c2-4eed-ade9-1d5204a2cb0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/59%2Fa8%2Ff7%2F59a8f743ff2542319ce1b277ba46641b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1920-05-10,1920-11-10,https://shakespeareandco.princeton.edu/members/riviere-jean/,Jean RiviΓ¨re,"RiviΓ¨re, Jean",4.00,,6 months,184,1,,1920-05-10,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Jean Riviere Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/f28d3be1-45c2-4eed-ade9-1d5204a2cb0d/manifest,;https://iiif.princeton.edu/loris/figgy_prod/59%2Fa8%2Ff7%2F59a8f743ff2542319ce1b277ba46641b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-05-11,1920-05-14,https://shakespeareandco.princeton.edu/members/syrett/,Netta Syrett,"Syrett, Netta",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/woolf-mark-wall/,The Mark on the Wall,,"Woolf, Virginia",1919,,Lending Library Card,"Sylvia Beach, Netta Syrett Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/59e81014-d645-4cb8-bf8f-0c342131661e/manifest,https://iiif.princeton.edu/loris/figgy_prod/c8%2F25%2Ff0%2Fc825f002dd2f4b45a58807076ee3b176%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-05-11,1920-05-14,https://shakespeareandco.princeton.edu/members/syrett/,Netta Syrett,"Syrett, Netta",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/woolf-kew-gardens/,Kew Gardens,,"Woolf, Virginia",1919,,Lending Library Card,"Sylvia Beach, Netta Syrett Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/59e81014-d645-4cb8-bf8f-0c342131661e/manifest,https://iiif.princeton.edu/loris/figgy_prod/c8%2F25%2Ff0%2Fc825f002dd2f4b45a58807076ee3b176%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1920-05-11,1920-06-11,https://shakespeareandco.princeton.edu/members/syrett/,Netta Syrett,"Syrett, Netta",5.00,7.00,1 month,31,1,,1920-05-11,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Netta Syrett Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/59e81014-d645-4cb8-bf8f-0c342131661e/manifest,;https://iiif.princeton.edu/loris/figgy_prod/c8%2F25%2Ff0%2Fc825f002dd2f4b45a58807076ee3b176%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-05-14,1920-05-15,https://shakespeareandco.princeton.edu/members/syrett/,Netta Syrett,"Syrett, Netta",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/squire-london-mercury/,The London Mercury,"Vol. 2, no. 7, May 1920",,,,Lending Library Card,"Sylvia Beach, Netta Syrett Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/59e81014-d645-4cb8-bf8f-0c342131661e/manifest,https://iiif.princeton.edu/loris/figgy_prod/c8%2F25%2Ff0%2Fc825f002dd2f4b45a58807076ee3b176%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-05-14,1920-05-25,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/synge/,J. M. Synge,,,,Unidentified. By or about J. M. Synge.,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/7d%2F3f%2F5c%2F7d3f5c4197064c14a37955e5e7185913%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1920-05-15,1920-05-17,https://shakespeareandco.princeton.edu/members/syrett/,Netta Syrett,"Syrett, Netta",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/hergesheimer-linda-condon/,Linda Condon,,"Hergesheimer, Joseph",1919,,Lending Library Card,"Sylvia Beach, Netta Syrett Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/59e81014-d645-4cb8-bf8f-0c342131661e/manifest,https://iiif.princeton.edu/loris/figgy_prod/c8%2F25%2Ff0%2Fc825f002dd2f4b45a58807076ee3b176%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-05-15,1920-05-31,https://shakespeareandco.princeton.edu/members/oerthel/,Maurice Oerthel,"Oerthel, Maurice",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/galsworthy-plays/,Plays,,"Galsworthy, John",,Unidentified. Series unknown.,Lending Library Card,"Sylvia Beach, Maurice Oerthel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f1c13c8-7dbf-4473-99cb-77f8d586b0b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/2a%2F80%2F6a%2F2a806a8717844643b81a37e7e5c825aa%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1920-05-15,1920-08-15,https://shakespeareandco.princeton.edu/members/lecoeur-mlle/,Mlle Lecoeur,"Lecoeur, Mlle",12.00,7.00,3 months,92,1,,1920-05-15,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1920-05-15,1920-06-15,https://shakespeareandco.princeton.edu/members/sebillotte/,Mme SΓ©billotte,"SΓ©billotte, Mme",5.00,,1 month,31,1,,1920-05-15,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1920-05-17,1920-05-29,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/butler-erewhon/,Erewhon,,"Butler, Samuel",1872,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/05%2Fd1%2F20%2F05d120f890cb4152b7f64e0179929987%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-05-17,1920-05-25,https://shakespeareandco.princeton.edu/members/syrett/,Netta Syrett,"Syrett, Netta",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/james-spoils-poynton/,The Spoils of Poynton,,"James, Henry",1897,,Lending Library Card,"Sylvia Beach, Netta Syrett Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/59e81014-d645-4cb8-bf8f-0c342131661e/manifest,https://iiif.princeton.edu/loris/figgy_prod/c8%2F25%2Ff0%2Fc825f002dd2f4b45a58807076ee3b176%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1920-05-17,1920-08-17,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",9.60,,3 months,92,1,Professor / Teacher,1920-05-17,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,;https://iiif.princeton.edu/loris/figgy_prod/05%2Fd1%2F20%2F05d120f890cb4152b7f64e0179929987%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-05-18,1920-06-03,https://shakespeareandco.princeton.edu/members/zimmer/,Isabelle Zimmer,"Zimmer, Isabelle",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/london-adventure/,Adventure,,"London, Jack",1911,,Lending Library Card,"Sylvia Beach, Isabelle Zimmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fd5a7d89-809b-4930-adc6-ac5066cd5858/manifest,https://iiif.princeton.edu/loris/figgy_prod/11%2F74%2F7a%2F11747a862ff34d7b9b2120d1daafff4b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1920-05-19,1920-11-19,https://shakespeareandco.princeton.edu/members/oerthel/,Maurice Oerthel,"Oerthel, Maurice",16.00,,6 months,184,1,AdL,1920-05-31,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Maurice Oerthel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/9f1c13c8-7dbf-4473-99cb-77f8d586b0b6/manifest,;https://iiif.princeton.edu/loris/figgy_prod/2a%2F80%2F6a%2F2a806a8717844643b81a37e7e5c825aa%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1920-05-22,1920-06-22,https://shakespeareandco.princeton.edu/members/bernard/,Mlle Bernard,"Bernard, Mlle",4.00,7.00,1 month,31,1,Student,1920-05-22,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1920-05-25,1920-05-29,https://shakespeareandco.princeton.edu/members/syrett/,Netta Syrett,"Syrett, Netta",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/moore-lewis-seymour-women/,Lewis Seymour and Some Women,,"Moore, George",1916,,Lending Library Card,"Sylvia Beach, Netta Syrett Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/59e81014-d645-4cb8-bf8f-0c342131661e/manifest,https://iiif.princeton.edu/loris/figgy_prod/c8%2F25%2Ff0%2Fc825f002dd2f4b45a58807076ee3b176%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1920-05-25,1920-07-16,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",7.00,,"1 month, 21 days",52,,,1920-06-29,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,;https://iiif-cloud.princeton.edu/iiif/2/7d%2F3f%2F5c%2F7d3f5c4197064c14a37955e5e7185913%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1920-05-25,1920-05-28,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/gissing/,Gissing,,,,Unidentified. By or about George Gissing.,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/7d%2F3f%2F5c%2F7d3f5c4197064c14a37955e5e7185913%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1920-05-26,1920-07-15,https://shakespeareandco.princeton.edu/members/riviere-jean/,Jean Rivière,"Rivière, Jean",,,,,,,,,Returned,50,,,https://shakespeareandco.princeton.edu/books/butler-erewhon/,Erewhon,,"Butler, Samuel",1872,,Lending Library Card,"Sylvia Beach, Jean Riviere Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f28d3be1-45c2-4eed-ade9-1d5204a2cb0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/59%2Fa8%2Ff7%2F59a8f743ff2542319ce1b277ba46641b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1920-05-28,1920-06-28,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",5.00,,1 month,31,1,,1920-05-28,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,;https://iiif.princeton.edu/loris/figgy_prod/1d%2F1f%2F7a%2F1d1f7a35a57a4617b44f01b3b49f9fd5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-05-28,1920-06-01,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/de-quincey-quincey-autobiography/,De Quincey Autobiography,,"de Quincey, Thomas",,"Likely volume 1 (*Autobiography from 1785 to 1803*) or 2 (*Autobiography and Literary Reminiscences*) of *The Collected Writings of Thomas De Quincey,* edited by David Masson (1896 β 1897); or volume 14 (*Autobiographic Sketches 1790β1803*) of *The Works of Thomas De Quincey* (1862 β 1871).",Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/7d%2F3f%2F5c%2F7d3f5c4197064c14a37955e5e7185913%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1920-05-28,1920-06,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/james-aspern-papers/,The Aspern Papers,,"James, Henry",1888,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/1d%2F1f%2F7a%2F1d1f7a35a57a4617b44f01b3b49f9fd5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-05-29,1920-06-21,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/butler-note-books-samuel/,The Note-Books of Samuel Butler,,"Butler, Samuel",1907,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/05%2Fd1%2F20%2F05d120f890cb4152b7f64e0179929987%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-05-29,1920-06-08,https://shakespeareandco.princeton.edu/members/syrett/,Netta Syrett,"Syrett, Netta",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/gosse-diversions-man-letters/,Some Diversions of a Man of Letters,,"Gosse, Edmund",1919,,Lending Library Card,"Sylvia Beach, Netta Syrett Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/59e81014-d645-4cb8-bf8f-0c342131661e/manifest,https://iiif.princeton.edu/loris/figgy_prod/c8%2F25%2Ff0%2Fc825f002dd2f4b45a58807076ee3b176%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-05-31,1920-06-14,https://shakespeareandco.princeton.edu/members/oerthel/,Maurice Oerthel,"Oerthel, Maurice",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/galsworthy-little-man-satires/,"The Little Man, and Other Satires",,"Galsworthy, John",1915,,Lending Library Card,"Sylvia Beach, Maurice Oerthel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f1c13c8-7dbf-4473-99cb-77f8d586b0b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/2a%2F80%2F6a%2F2a806a8717844643b81a37e7e5c825aa%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-06-01,1920-06-11,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/hardy-laodicean-story-day/,A Laodicean: A Story of To-day,,"Hardy, Thomas",1881,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/7d%2F3f%2F5c%2F7d3f5c4197064c14a37955e5e7185913%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1920-06-02,1920-09-02,https://shakespeareandco.princeton.edu/members/nerassian/,Mlle der Nerassian,"Nerassian, Mlle der",9.60,,3 months,92,1,,1920-03-09,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Purchase,1920-06-03,1920-06-03,https://shakespeareandco.princeton.edu/members/zimmer/,Isabelle Zimmer,"Zimmer, Isabelle",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/tagore-gitanjali/,Gitanjali,,"Tagore, Rabindranath",1912,,Lending Library Card,"Sylvia Beach, Isabelle Zimmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fd5a7d89-809b-4930-adc6-ac5066cd5858/manifest,https://iiif.princeton.edu/loris/figgy_prod/11%2F74%2F7a%2F11747a862ff34d7b9b2120d1daafff4b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-06-03,1920-06-15,https://shakespeareandco.princeton.edu/members/stein-gertrude/,Gertrude Stein,"Stein, Gertrude",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/howells/,Howells,2 vols.,,,Unidentified. By or about William Dean Howells. In 2 volumes.,Lending Library Card,"Sylvia Beach, Gertrude Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f6f307d-2eb7-4960-8dc1-9dec4ea53022/manifest,https://iiif.princeton.edu/loris/figgy_prod/12%2Fe6%2F12%2F12e612fbcef343bcb74f5bec1a44a4f8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1920-06-05,1920-07-05,https://shakespeareandco.princeton.edu/members/klepatz/,Dr. KlΓ©patz,"KlΓ©patz, Dr.",5.00,7.00,1 month,30,1,,1920-06-05,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1920-06-08,1920-06-12,https://shakespeareandco.princeton.edu/members/syrett/,Netta Syrett,"Syrett, Netta",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/dickinson-european-anarchy/,The European Anarchy,,"Dickinson, G. Lowes",1916,,Lending Library Card,"Sylvia Beach, Netta Syrett Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/59e81014-d645-4cb8-bf8f-0c342131661e/manifest,https://iiif.princeton.edu/loris/figgy_prod/c8%2F25%2Ff0%2Fc825f002dd2f4b45a58807076ee3b176%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1920-06-10,1920-07-10,https://shakespeareandco.princeton.edu/members/kolpaktchy/,M. Kolpaktchy,"Kolpaktchy, M.",4.00,7.00,1 month,30,1,Professor / Teacher,1920-06-10,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1920-06-11,1921-06-11,https://shakespeareandco.princeton.edu/members/burt-maud/,Maud Burt,"Burt, Maud",28.00,,1 year,365,1,Professor / Teacher,1920-05-22,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1920-06-11,1920-07-11,https://shakespeareandco.princeton.edu/members/syrett/,Netta Syrett,"Syrett, Netta",5.00,,1 month,30,,,1920-06-22,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Netta Syrett Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/59e81014-d645-4cb8-bf8f-0c342131661e/manifest,;https://iiif.princeton.edu/loris/figgy_prod/c8%2F25%2Ff0%2Fc825f002dd2f4b45a58807076ee3b176%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-06-11,1920-06,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/west-henry-james/,Henry James,,"West, Rebecca",1916,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/7d%2F3f%2F5c%2F7d3f5c4197064c14a37955e5e7185913%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1920-06-12,1920-06-22,https://shakespeareandco.princeton.edu/members/syrett/,Netta Syrett,"Syrett, Netta",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/de-la-mare-listeners-poems/,"The Listeners, and Other Poems",,"De la Mare, Walter",1912,,Lending Library Card,"Sylvia Beach, Netta Syrett Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/59e81014-d645-4cb8-bf8f-0c342131661e/manifest,https://iiif.princeton.edu/loris/figgy_prod/c8%2F25%2Ff0%2Fc825f002dd2f4b45a58807076ee3b176%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1920-06-12,1920-07-12,https://shakespeareandco.princeton.edu/members/desprets/,M. Desprets,"Desprets, M.",4.00,7.00,1 month,30,1,Student,1920-06-12,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1920-06-14,1920-07-09,https://shakespeareandco.princeton.edu/members/oerthel/,Maurice Oerthel,"Oerthel, Maurice",,,,,,,,,Returned,25,,,https://shakespeareandco.princeton.edu/books/darwin-origin-species/,On the Origin of Species,,"Darwin, Charles",1859,,Lending Library Card,"Sylvia Beach, Maurice Oerthel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f1c13c8-7dbf-4473-99cb-77f8d586b0b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/2a%2F80%2F6a%2F2a806a8717844643b81a37e7e5c825aa%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-06-15,1920-07-10,https://shakespeareandco.princeton.edu/members/stein-gertrude/,Gertrude Stein,"Stein, Gertrude",,,,,,,,,Returned,25,,,https://shakespeareandco.princeton.edu/books/robins-dark-lantern-story/,A Dark Lantern: A Story with a Prologue,,"Robins, Elizabeth",1905,,Lending Library Card,"Sylvia Beach, Gertrude Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f6f307d-2eb7-4960-8dc1-9dec4ea53022/manifest,https://iiif.princeton.edu/loris/figgy_prod/12%2Fe6%2F12%2F12e612fbcef343bcb74f5bec1a44a4f8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1920-06-15,1920-07-15,https://shakespeareandco.princeton.edu/members/kori-torahiko/,Torahiko Kori,"Kori, Torahiko",4.00,7.00,1 month,30,1,Student,1920-06-15,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1920-06-15,1920-06-26,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/shaw-heartbreak-house-fantasia/,Heartbreak House: A Fantasia in the Russian Manner on English Themes,,"Shaw, George Bernard",1919,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/8e%2F4f%2F17%2F8e4f1788dae24022a461a8f79909e57d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-06-15,1920-07-10,https://shakespeareandco.princeton.edu/members/stein-gertrude/,Gertrude Stein,"Stein, Gertrude",,,,,,,,,Returned,25,,,https://shakespeareandco.princeton.edu/books/wodehouse-mutual-child/,Their Mutual Child,,"Wodehouse, P. G.",1919,,Lending Library Card,"Sylvia Beach, Gertrude Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f6f307d-2eb7-4960-8dc1-9dec4ea53022/manifest,https://iiif.princeton.edu/loris/figgy_prod/12%2Fe6%2F12%2F12e612fbcef343bcb74f5bec1a44a4f8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1920-06-15,1920-07-15,https://shakespeareandco.princeton.edu/members/goukowsky/,Mlle Goukowsky / Goukowska,Mlle Goukowsky,4.00,,1 month,30,1,Student,1920-06-15,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Supplement,1920-06-15,1921-03-12,https://shakespeareandco.princeton.edu/members/le-verrier-2/,M. Le Verrier,"Le Verrier, M.",7.00,,"8 months, 25 days",270,2,Professor / Teacher,1920-06-15,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1920-06-17,1920-12-17,https://shakespeareandco.princeton.edu/members/descher/,M. Descher,"Descher, M.",20.00,,6 months,183,1,,1920-06-10,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1920-06-21,1920-09-21,https://shakespeareandco.princeton.edu/members/brizard/,Mme Brizard,"Brizard, Mme",12.00,,3 months,92,1,,1920-06-16,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1920-06-21,1920-06-23,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/seeger-letters-diary-alan/,Letters and Diary of Alan Seeger,,"Seeger, Alan",1917,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/05%2Fd1%2F20%2F05d120f890cb4152b7f64e0179929987%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1920-06-22,1920-07-22,https://shakespeareandco.princeton.edu/members/syrett/,Netta Syrett,"Syrett, Netta",10.00,,1 month,30,1,,1920-06-22,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Netta Syrett Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/59e81014-d645-4cb8-bf8f-0c342131661e/manifest,;https://iiif.princeton.edu/loris/figgy_prod/c8%2F25%2Ff0%2Fc825f002dd2f4b45a58807076ee3b176%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1920-06-22,1920-06-22,https://shakespeareandco.princeton.edu/members/bernard/,Mlle Bernard,"Bernard, Mlle",,,,,,,,7.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1920-06-22,1920-06,https://shakespeareandco.princeton.edu/members/syrett/,Netta Syrett,"Syrett, Netta",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/bennett-human-machine/,The Human Machine,,"Bennett, Arnold",1908,,Lending Library Card,"Sylvia Beach, Netta Syrett Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/59e81014-d645-4cb8-bf8f-0c342131661e/manifest,https://iiif.princeton.edu/loris/figgy_prod/c8%2F25%2Ff0%2Fc825f002dd2f4b45a58807076ee3b176%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-06-23,1920-07-05,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/swinnerton-george-gissing-critical/,George Gissing: A Critical Study,,"Swinnerton, Frank",1912,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/05%2Fd1%2F20%2F05d120f890cb4152b7f64e0179929987%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-06-24,1920-07,https://shakespeareandco.princeton.edu/members/wallace-lillian/,Lillian Wallace,"Wallace, Lillian",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/woolf-night-day/,Night and Day,,"Woolf, Virginia",1919,,Lending Library Card,"Sylvia Beach, Lillian Wallace Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a234d29a-dbdf-436a-a710-3af0940cb6e3/manifest,https://iiif-cloud.princeton.edu/iiif/2/f9%2Fd2%2Ff6%2Ff9d2f6a4c93e44e2a0f6f038fd7d16cd%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1920-06-24,1920-07-24,https://shakespeareandco.princeton.edu/members/wallace-lillian/,Lillian Wallace,"Wallace, Lillian",5.00,,1 month,30,1,,1920-06-24,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Lillian Wallace Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/a234d29a-dbdf-436a-a710-3af0940cb6e3/manifest,;https://iiif-cloud.princeton.edu/iiif/2/f9%2Fd2%2Ff6%2Ff9d2f6a4c93e44e2a0f6f038fd7d16cd%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1920-06-26,1920-07-26,https://shakespeareandco.princeton.edu/members/cassagnol-gillette/,Gillette Cassagnol,"Cassagnol, Gillette",5.00,7.00,1 month,30,1,,1920-06-26,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1920-06-26,1920-06-30,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/shaw-philanderer/,The Philanderer,,"Shaw, George Bernard",1905,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/8e%2F4f%2F17%2F8e4f1788dae24022a461a8f79909e57d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1920-06-29,1920-06-29,https://shakespeareandco.princeton.edu/members/klepatz/,Dr. KlΓ©patz,"KlΓ©patz, Dr.",,,,,,,,7.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1920-06-29,,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/hardy-changed-man/,A Changed Man,,"Hardy, Thomas",1913,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/7d%2F3f%2F5c%2F7d3f5c4197064c14a37955e5e7185913%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1920-06-29,1920-07-09,https://shakespeareandco.princeton.edu/members/syrett/,Netta Syrett,"Syrett, Netta",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/galsworthy-saints-progress/,Saint's Progress,,"Galsworthy, John",1919,,Lending Library Card,"Sylvia Beach, Netta Syrett Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/59e81014-d645-4cb8-bf8f-0c342131661e/manifest,https://iiif.princeton.edu/loris/figgy_prod/a0%2F68%2F4d%2Fa0684d9e1e0844a38ba745fb296bc9d7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1920-06-30,1920-12-30,https://shakespeareandco.princeton.edu/members/bruten/,M. Bruten,"Bruten, M.",20.00,7.00,6 months,183,1,,1920-06-30,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1920-06-30,1920-07-03,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/kipling-light-failed/,The Light That Failed,,"Kipling, Rudyard",1891,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/8e%2F4f%2F17%2F8e4f1788dae24022a461a8f79909e57d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1920-06-30,1920-07-30,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",5.00,,1 month,30,1,,1920-06-30,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,;https://iiif.princeton.edu/loris/figgy_prod/8e%2F4f%2F17%2F8e4f1788dae24022a461a8f79909e57d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1920-07-01,1920-08-01,https://shakespeareandco.princeton.edu/members/cheneau/,Maurice ChΓ©neau,"ChΓ©neau, Maurice",5.00,7.00,1 month,31,1,Student,1920-07-01,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1920-07-03,1920-07-08,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/james-awkward-age/,The Awkward Age,,"James, Henry",1899,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/7d%2F3f%2F5c%2F7d3f5c4197064c14a37955e5e7185913%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1920-07-03,1920-07-09,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/john-galsworthy/,John Galsworthy,,,,Unidentified. By or about John Galsworthy.,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/8e%2F4f%2F17%2F8e4f1788dae24022a461a8f79909e57d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1920-07-05,1920-08-05,https://shakespeareandco.princeton.edu/members/mckenney-r/,Ruth McKenney,"McKenney, Ruth",4.00,7.00,1 month,31,1,,1920-07-05,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1920-07-05,1920-07-05,https://shakespeareandco.princeton.edu/members/cheneau/,Maurice ChΓ©neau,"ChΓ©neau, Maurice",,,,,,,,7.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1920-07-05,1920-09-09,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,66,,,https://shakespeareandco.princeton.edu/books/drinkwater-prose-papers/,Prose Papers,,"Drinkwater, John",1917,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/05%2Fd1%2F20%2F05d120f890cb4152b7f64e0179929987%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-07-08,1920-07,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/hardy-trumpet-major/,The Trumpet-Major,,"Hardy, Thomas",1880,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/7d%2F3f%2F5c%2F7d3f5c4197064c14a37955e5e7185913%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1920-07-08,1920-07-08,https://shakespeareandco.princeton.edu/members/kolpaktchy/,M. Kolpaktchy,"Kolpaktchy, M.",,,,,,,,7.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1920-07-08,1920-07-08,https://shakespeareandco.princeton.edu/members/neufville-agnes-de/,AgnΓ¨s de Neufville,"de Neufville, AgnΓ¨s",,,,,,,,7.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1920-07-09,1920-07-28,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/renaissance-2/,The Renaissance,,,,Unidentified. Likely Walter Pater's *The Renaissance: Studies of Art and Poetry* (1873).,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/8e%2F4f%2F17%2F8e4f1788dae24022a461a8f79909e57d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-07-09,1920-09-02,https://shakespeareandco.princeton.edu/members/oerthel/,Maurice Oerthel,"Oerthel, Maurice",,,,,,,,,Returned,55,,,https://shakespeareandco.princeton.edu/books/fiske-destiny-man-viewed/,"The Destiny of Man, Viewed in the Light of His Origin",,"Fiske, John",1884,,Lending Library Card,"Sylvia Beach, Maurice Oerthel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f1c13c8-7dbf-4473-99cb-77f8d586b0b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/2a%2F80%2F6a%2F2a806a8717844643b81a37e7e5c825aa%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-07-10,1920-10-09,https://shakespeareandco.princeton.edu/members/stein-gertrude/,Gertrude Stein,"Stein, Gertrude",,,,,,,,,Returned,91,,,https://shakespeareandco.princeton.edu/books/soutar-equality-island/,Equality Island,,"Soutar, Andrew",1919,,Lending Library Card,"Sylvia Beach, Gertrude Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f6f307d-2eb7-4960-8dc1-9dec4ea53022/manifest,https://iiif.princeton.edu/loris/figgy_prod/12%2Fe6%2F12%2F12e612fbcef343bcb74f5bec1a44a4f8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-07-10,1920-10-09,https://shakespeareandco.princeton.edu/members/stein-gertrude/,Gertrude Stein,"Stein, Gertrude",,,,,,,,,Returned,91,,,https://shakespeareandco.princeton.edu/books/howells-undiscovered-country/,The Undiscovered Country,,"Howells, William Dean",1880,,Lending Library Card,"Sylvia Beach, Gertrude Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f6f307d-2eb7-4960-8dc1-9dec4ea53022/manifest,https://iiif.princeton.edu/loris/figgy_prod/12%2Fe6%2F12%2F12e612fbcef343bcb74f5bec1a44a4f8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-07-10,1920-10-09,https://shakespeareandco.princeton.edu/members/stein-gertrude/,Gertrude Stein,"Stein, Gertrude",,,,,,,,,Returned,91,,,https://shakespeareandco.princeton.edu/books/shadow/,The Shadow,,,,"Unidentified. W. D. Howells's *The Shadow of a Dream* (1890), Vicente Blasco IbaΓ±ez's *The Shadow of the Cathedral* (1919), or Mary White Ovington's *The Shadow* (1920), etc.",Lending Library Card,"Sylvia Beach, Gertrude Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f6f307d-2eb7-4960-8dc1-9dec4ea53022/manifest,https://iiif.princeton.edu/loris/figgy_prod/12%2Fe6%2F12%2F12e612fbcef343bcb74f5bec1a44a4f8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-07-10,1920-10-09,https://shakespeareandco.princeton.edu/members/stein-gertrude/,Gertrude Stein,"Stein, Gertrude",,,,,,,,,Returned,91,,,https://shakespeareandco.princeton.edu/books/du-bois-darkwater/,Darkwater: Voices from within the Veil,,"Du Bois, W. E. B.",1920,,Lending Library Card,"Sylvia Beach, Gertrude Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f6f307d-2eb7-4960-8dc1-9dec4ea53022/manifest,https://iiif.princeton.edu/loris/figgy_prod/12%2Fe6%2F12%2F12e612fbcef343bcb74f5bec1a44a4f8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1920-07-13,1920-09-13,https://shakespeareandco.princeton.edu/members/bourgogne/,M. Bourgogne,"Bourgogne, M.",16.00,7.00,2 months,62,1,Professor / Teacher,1920-07-13,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1920-07-15,1920-07-15,https://shakespeareandco.princeton.edu/members/kori-torahiko/,Torahiko Kori,"Kori, Torahiko",,,,,,,,7.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1920-07-15,1920-09-29,https://shakespeareandco.princeton.edu/members/riviere-jean/,Jean Rivière,"Rivière, Jean",,,,,,,,,Returned,76,,,https://shakespeareandco.princeton.edu/books/bennett-buried-alive/,Buried Alive,,"Bennett, Arnold",1908,,Lending Library Card,"Sylvia Beach, Jean Riviere Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f28d3be1-45c2-4eed-ade9-1d5204a2cb0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/59%2Fa8%2Ff7%2F59a8f743ff2542319ce1b277ba46641b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-07-15,1920-09-29,https://shakespeareandco.princeton.edu/members/riviere-jean/,Jean Rivière,"Rivière, Jean",,,,,,,,,Returned,76,,,https://shakespeareandco.princeton.edu/books/dunsany-five-plays/,Five Plays,,"Dunsany, Lord",1914,,Lending Library Card,"Sylvia Beach, Jean Riviere Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f28d3be1-45c2-4eed-ade9-1d5204a2cb0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/59%2Fa8%2Ff7%2F59a8f743ff2542319ce1b277ba46641b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1920-07-15,1920-08-15,https://shakespeareandco.princeton.edu/members/goukowsky/,Mlle Goukowsky / Goukowska,Mlle Goukowsky,4.00,,1 month,31,1,Student,1920-07-12,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1920-07-15,1920-09-29,https://shakespeareandco.princeton.edu/members/riviere-jean/,Jean Rivière,"Rivière, Jean",,,,,,,,,Returned,76,,,https://shakespeareandco.princeton.edu/books/twain-adventures-huckleberry-finn/,The Adventures of Huckleberry Finn,,"Twain, Mark",1884,,Lending Library Card,"Sylvia Beach, Jean Riviere Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f28d3be1-45c2-4eed-ade9-1d5204a2cb0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/59%2Fa8%2Ff7%2F59a8f743ff2542319ce1b277ba46641b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-07-16,,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/hudson-birds-town-village/,Birds in Town and Village,,"Hudson, W. H.",1920,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/7d%2F3f%2F5c%2F7d3f5c4197064c14a37955e5e7185913%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1920-07-16,1920-07-28,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/arthur-symons/,Arthur Symons,,,,Unidentified. By or about Arthur Symons.,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/8e%2F4f%2F17%2F8e4f1788dae24022a461a8f79909e57d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1920-07-17,1920-08-17,https://shakespeareandco.princeton.edu/members/fabre-luce/,Mlle Fabre-Luce,"Fabre-Luce, Mlle",8.00,,1 month,31,2,,1920-06-28,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1920-07-27,1921-01-27,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",20.00,7.00,6 months,184,1,,1920-07-27,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,;https://iiif-cloud.princeton.edu/iiif/2/f7%2Fa7%2F97%2Ff7a7979f7b5e405bb084aee54a824c32%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1920-07-27,1920-07-30,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/dunsany-tales-wonder/,Tales of Wonder,,"Dunsany, Lord",1916,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/f7%2Fa7%2F97%2Ff7a7979f7b5e405bb084aee54a824c32%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1920-07-29,1920-07-29,https://shakespeareandco.princeton.edu/members/cassagnol-gillette/,Gillette Cassagnol,"Cassagnol, Gillette",,,,,,,,7.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1920-07-29,1921-02-21,https://shakespeareandco.princeton.edu/members/savitzky/,Ludmila Savitzky / Mme Ludmila Bloch,"Savitzky, Ludmila",,,,,,,,,Returned,207,,,https://shakespeareandco.princeton.edu/books/joyce-chamber-music/,Chamber Music,,"Joyce, James",1907,,Lending Library Card,"Sylvia Beach, Ludmila Savitski Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6a1e59dd-7799-42ba-b130-b9f6907e7f1c/manifest,https://iiif-cloud.princeton.edu/iiif/2/08%2Fb6%2F16%2F08b616a7c8e84b0eae58a7edb3603ae7%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1920-07-29,1920-10-29,https://shakespeareandco.princeton.edu/members/cousin-suzanne/,Suzanne Cousin / Mlle Suzanne Dufour / Mme Jean Cousin,"Cousin, Suzanne",9.60,,3 months,92,1,Student,1920-07-13,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1920-07-29,1921-01-29,https://shakespeareandco.princeton.edu/members/huchon/,RenΓ© Huchon,"Huchon, RenΓ©",16.00,,6 months,184,,Professor / Teacher,1920-07-29,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1920-07-29,1921-07-29,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",35.00,,1 year,365,1,,1920-07-29,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1920-07-29,1921-02-21,https://shakespeareandco.princeton.edu/members/savitzky/,Ludmila Savitzky / Mme Ludmila Bloch,"Savitzky, Ludmila",,,,,,,,,Returned,207,,,https://shakespeareandco.princeton.edu/books/joyce-dubliners/,Dubliners,,"Joyce, James",1914,,Lending Library Card,"Sylvia Beach, Ludmila Savitski Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6a1e59dd-7799-42ba-b130-b9f6907e7f1c/manifest,https://iiif-cloud.princeton.edu/iiif/2/08%2Fb6%2F16%2F08b616a7c8e84b0eae58a7edb3603ae7%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1920-07-30,1920-10-30,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",12.00,,3 months,92,1,,1920-07-27,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1920-07-30,1920-09-02,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,34,,,https://shakespeareandco.princeton.edu/books/de-la-mare-peacock-pie-book/,Peacock Pie: A Book of Rhymes,,"De la Mare, Walter",1920,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/f7%2Fa7%2F97%2Ff7a7979f7b5e405bb084aee54a824c32%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1920-07-30,1920-09-02,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,34,,,https://shakespeareandco.princeton.edu/books/butler-erewhon-revisited-twenty/,"Erewhon Revisited: Twenty Years Later, Both by the Original Discoverer of the Country and by His Son",,"Butler, Samuel",1901,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/f7%2Fa7%2F97%2Ff7a7979f7b5e405bb084aee54a824c32%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1920-07-30,1920-09-02,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,34,,,https://shakespeareandco.princeton.edu/books/conrad-typhoon/,Typhoon,,"Conrad, Joseph",1902,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/f7%2Fa7%2F97%2Ff7a7979f7b5e405bb084aee54a824c32%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1920-07-30,1920-09-02,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,34,,,https://shakespeareandco.princeton.edu/books/merrick-paris-laughed-pranks/,While Paris Laughed: Being Pranks and Passions of the Poet Tricotrin,,"Merrick, Leonard",1918,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/f7%2Fa7%2F97%2Ff7a7979f7b5e405bb084aee54a824c32%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1920-07-30,1920-09-02,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,34,,,https://shakespeareandco.princeton.edu/books/gosse-father-study-two/,Father and Son: A Study of Two Temperaments,,"Gosse, Edmund",1907,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/f7%2Fa7%2F97%2Ff7a7979f7b5e405bb084aee54a824c32%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1920-09-02,1920-09-11,https://shakespeareandco.princeton.edu/members/oerthel/,Maurice Oerthel,"Oerthel, Maurice",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/conrad-typhoon/,Typhoon,,"Conrad, Joseph",1902,,Lending Library Card,"Sylvia Beach, Maurice Oerthel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f1c13c8-7dbf-4473-99cb-77f8d586b0b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/2a%2F80%2F6a%2F2a806a8717844643b81a37e7e5c825aa%2Fintermediate_file.jp2/full/full/0/default.jpg
+Supplement,1920-09-02,1921-06-11,https://shakespeareandco.princeton.edu/members/burt-maud/,Maud Burt,"Burt, Maud",12.00,,"9 months, 9 days",282,2,Professor / Teacher,1920-09-02,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1920-09-02,1920-10-01,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,29,,,https://shakespeareandco.princeton.edu/books/merrick-love-flies-o/,When Love Flies Out o' the Window,,"Merrick, Leonard",1919,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/f7%2Fa7%2F97%2Ff7a7979f7b5e405bb084aee54a824c32%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1920-09-04,1920-10-04,https://shakespeareandco.princeton.edu/members/joy-c-e/,C. E. Joy,"Joy, C. E.",5.00,,1 month,30,1,,1920-09-04,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1920-09-04,1920-09-20,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/bennett-old-wives-tale/,The Old Wives' Tale,,"Bennett, Arnold",1908,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/e2%2F35%2F9d%2Fe2359da0c4fc4152ba222f6e2c27e8ec%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1920-09-04,1920-12-04,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",12.00,7.00,3 months,91,1,,1920-09-04,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,;https://iiif-cloud.princeton.edu/iiif/2/e2%2F35%2F9d%2Fe2359da0c4fc4152ba222f6e2c27e8ec%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1920-09-11,1920-09-18,https://shakespeareandco.princeton.edu/members/oerthel/,Maurice Oerthel,"Oerthel, Maurice",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/fiske-idea-god-affected/,The Idea of God as Affected by Modern Knowledge,,"Fiske, John",1885,,Lending Library Card,"Sylvia Beach, Maurice Oerthel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f1c13c8-7dbf-4473-99cb-77f8d586b0b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/2a%2F80%2F6a%2F2a806a8717844643b81a37e7e5c825aa%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1920-09-17,1921-09-17,https://shakespeareandco.princeton.edu/members/bos/,Mlle Bos,"Bos, Mlle",35.00,,1 year,365,1,,1920-09-17,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1920-09-18,1920-09-25,https://shakespeareandco.princeton.edu/members/oerthel/,Maurice Oerthel,"Oerthel, Maurice",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/lodge-modern-problems-discussion/,Modern Problems: A Discussion of Debatable Subjects,,"Lodge, Oliver",1912,,Lending Library Card,"Sylvia Beach, Maurice Oerthel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f1c13c8-7dbf-4473-99cb-77f8d586b0b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/2a%2F80%2F6a%2F2a806a8717844643b81a37e7e5c825aa%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1920-09-18,1920-12-18,https://shakespeareandco.princeton.edu/members/flecker/,Mrs. Flecker,"Flecker, Mrs.",9.60,,3 months,91,1,,1920-09-11,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1920-09-20,1920-10-02,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/bennett-ghost/,The Ghost: A Modern Fantasy,,"Bennett, Arnold",1907,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/e2%2F35%2F9d%2Fe2359da0c4fc4152ba222f6e2c27e8ec%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1920-09-21,1920-12-21,https://shakespeareandco.princeton.edu/members/latrasse/,Mlle Latrasse,"Latrasse, Mlle",16.00,7.00,3 months,91,2,,1920-09-14,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1920-09-25,1920-10-07,https://shakespeareandco.princeton.edu/members/oerthel/,Maurice Oerthel,"Oerthel, Maurice",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/wells-mr-britling-sees/,Mr. Britling Sees It Through,,"Wells, H. G.",1916,,Lending Library Card,"Sylvia Beach, Maurice Oerthel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f1c13c8-7dbf-4473-99cb-77f8d586b0b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/2a%2F80%2F6a%2F2a806a8717844643b81a37e7e5c825aa%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-09-29,1920-10-18,https://shakespeareandco.princeton.edu/members/riviere-jean/,Jean Rivière,"Rivière, Jean",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/meredith-egoist/,The Egoist,,"Meredith, George",1879,,Lending Library Card,"Sylvia Beach, Jean Riviere Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f28d3be1-45c2-4eed-ade9-1d5204a2cb0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/59%2Fa8%2Ff7%2F59a8f743ff2542319ce1b277ba46641b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-09-29,1920-10-18,https://shakespeareandco.princeton.edu/members/riviere-jean/,Jean Rivière,"Rivière, Jean",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/hundred-seventy-chinese/,A Hundred and Seventy Chinese Poems,,,1918,,Lending Library Card,"Sylvia Beach, Jean Riviere Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f28d3be1-45c2-4eed-ade9-1d5204a2cb0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/59%2Fa8%2Ff7%2F59a8f743ff2542319ce1b277ba46641b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-10-01,1920-10-08,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/moore-lewis-seymour-women/,Lewis Seymour and Some Women,,"Moore, George",1916,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/f7%2Fa7%2F97%2Ff7a7979f7b5e405bb084aee54a824c32%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1920-10-02,1920-11-02,https://shakespeareandco.princeton.edu/members/israel/,Mlle Israel,"Israel, Mlle",8.00,7.00,1 month,31,1,,1920-10-02,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1920-10-02,1920-11-15,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,44,,,https://shakespeareandco.princeton.edu/books/bennett-united-states/,Those United States,,"Bennett, Arnold",1912,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/e2%2F35%2F9d%2Fe2359da0c4fc4152ba222f6e2c27e8ec%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1920-10-04,1920-10-04,https://shakespeareandco.princeton.edu/members/boscq-marie/,Marie Boscq / Bosq,"Boscq, Marie",,,,,,,,7.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1920-10-07,1921-10-07,https://shakespeareandco.princeton.edu/members/maniere/,Mlle ManiΓ¨re,"ManiΓ¨re, Mlle",48.00,,1 year,365,1,Professor / Teacher,1920-10-07,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1920-10-07,1920-10-14,https://shakespeareandco.princeton.edu/members/oerthel/,Maurice Oerthel,"Oerthel, Maurice",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/jerome-angel-author-others/,"The Angel and the Author, and Others",,"Jerome, Jerome K.",1904,,Lending Library Card,"Sylvia Beach, Maurice Oerthel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f1c13c8-7dbf-4473-99cb-77f8d586b0b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/2a%2F80%2F6a%2F2a806a8717844643b81a37e7e5c825aa%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1920-10-07,1920-10-07,https://shakespeareandco.princeton.edu/members/maniere/,Mlle ManiΓ¨re,"ManiΓ¨re, Mlle",,,,,,,,7.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1920-10-08,1920-10-15,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/hergesheimer-java-head/,Java Head,,"Hergesheimer, Joseph",1918,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/f7%2Fa7%2F97%2Ff7a7979f7b5e405bb084aee54a824c32%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1920-10-09,1920-10,https://shakespeareandco.princeton.edu/members/stein-gertrude/,Gertrude Stein,"Stein, Gertrude",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/picked-company/,A Picked Company,,,,"Unidentified. Mary Hallock Foote's *A Picked Company: A Novel* (1912) or Hilaire Belloc's *A Picked Company: Being a Selection from the Writings of H. Belloc,* edited by E. V. Lucas (1915).",Lending Library Card,"Sylvia Beach, Gertrude Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f6f307d-2eb7-4960-8dc1-9dec4ea53022/manifest,https://iiif.princeton.edu/loris/figgy_prod/12%2Fe6%2F12%2F12e612fbcef343bcb74f5bec1a44a4f8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1920-10-09,1921-01-09,https://shakespeareandco.princeton.edu/members/worthing/,Mrs. Worthing,"Worthing, Mrs.",9.60,,3 months,92,1,,1920-09-21,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1920-10-09,1920-10,https://shakespeareandco.princeton.edu/members/stein-gertrude/,Gertrude Stein,"Stein, Gertrude",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/arnim-caravaners/,The Caravaners,,"Arnim, Elizabeth von",1909,,Lending Library Card,"Sylvia Beach, Gertrude Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f6f307d-2eb7-4960-8dc1-9dec4ea53022/manifest,https://iiif.princeton.edu/loris/figgy_prod/12%2Fe6%2F12%2F12e612fbcef343bcb74f5bec1a44a4f8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1920-10-11,1921-01-11,https://shakespeareandco.princeton.edu/members/marsland/,Harriet Marsland,"Marsland, Harriet",24.00,,3 months,92,2,Student,1920-10-11,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Harriet Marsland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/34833978-1579-4eb9-a196-73e566a04a2c/manifest,;https://iiif.princeton.edu/loris/figgy_prod/3e%2Fb5%2F55%2F3eb555341d4841829c517731f5f5de1b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-10-11,1920-10-14,https://shakespeareandco.princeton.edu/members/marsland/,Harriet Marsland,"Marsland, Harriet",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/meredith-egoist/,The Egoist,Vol. 2,"Meredith, George",1879,,Lending Library Card,"Sylvia Beach, Harriet Marsland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/34833978-1579-4eb9-a196-73e566a04a2c/manifest,https://iiif.princeton.edu/loris/figgy_prod/3e%2Fb5%2F55%2F3eb555341d4841829c517731f5f5de1b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-10-11,1920-10-14,https://shakespeareandco.princeton.edu/members/marsland/,Harriet Marsland,"Marsland, Harriet",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/symonds-key-blue-prose/,In the Key of Blue and Other Prose Essays,,"Symonds, John Addington",1896,,Lending Library Card,"Sylvia Beach, Harriet Marsland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/34833978-1579-4eb9-a196-73e566a04a2c/manifest,https://iiif.princeton.edu/loris/figgy_prod/3e%2Fb5%2F55%2F3eb555341d4841829c517731f5f5de1b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1920-10-11,1921-01-11,https://shakespeareandco.princeton.edu/members/coronio/,Mlle Coronis,"Coronis, Mlle",20.00,,3 months,92,1,,1920-10-11,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1935β1937, box 70, folder 2, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1920-10-11,1921-10-11,https://shakespeareandco.princeton.edu/members/barney-natalie-clifford/,Natalie Clifford Barney,"Barney, Natalie Clifford",64.00,,1 year,365,2,AdL,1920-10-11,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1920-10-12,1921-04-12,https://shakespeareandco.princeton.edu/members/deschamps/,Mlle Deschamps,"Deschamps, Mlle",28.00,7.00,6 months,182,1,Student,1920-10-12,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1920-10-14,1921-01-14,https://shakespeareandco.princeton.edu/members/adams/,Mr. Adams,"Adams, Mr.",16.00,7.00,3 months,92,1,Professor / Teacher,1920-10-14,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1920-10-14,1921-01-14,https://shakespeareandco.princeton.edu/members/floran/,Mme Dispan de Floran,"Dispan de Floran, Mme",12.00,,3 months,92,1,,1920-10-04,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1920-10-14,1920-10-30,https://shakespeareandco.princeton.edu/members/oerthel/,Maurice Oerthel,"Oerthel, Maurice",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/stevenson-new-arabian-nights/,New Arabian Nights,,"Stevenson, Robert Louis",1882,,Lending Library Card,"Sylvia Beach, Maurice Oerthel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f1c13c8-7dbf-4473-99cb-77f8d586b0b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/2a%2F80%2F6a%2F2a806a8717844643b81a37e7e5c825aa%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-10-14,1920-10-16,https://shakespeareandco.princeton.edu/members/marsland/,Harriet Marsland,"Marsland, Harriet",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/whitman-walt-whitmans-poems/,Walt Whitman's Poems,,"Whitman, Walt",,,Lending Library Card,"Sylvia Beach, Harriet Marsland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/34833978-1579-4eb9-a196-73e566a04a2c/manifest,https://iiif.princeton.edu/loris/figgy_prod/3e%2Fb5%2F55%2F3eb555341d4841829c517731f5f5de1b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-10-14,1920-10-16,https://shakespeareandco.princeton.edu/members/marsland/,Harriet Marsland,"Marsland, Harriet",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/davis-exiles-stories/,The Exiles and Other Stories,,"Davis, Richard Harding",1894,,Lending Library Card,"Sylvia Beach, Harriet Marsland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/34833978-1579-4eb9-a196-73e566a04a2c/manifest,https://iiif.princeton.edu/loris/figgy_prod/3e%2Fb5%2F55%2F3eb555341d4841829c517731f5f5de1b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-10-15,1920-10-23,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/wilde-picture-dorian-grey/,The Picture of Dorian Grey,,"Wilde, Oscar",1890,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/f7%2Fa7%2F97%2Ff7a7979f7b5e405bb084aee54a824c32%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1920-10-15,1920-11-15,https://shakespeareandco.princeton.edu/members/julian-mr/,Mr. Julian,"Julian, Mr.",6.40,,1 month,31,1,Professor / Teacher,1920-10-15,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1920-10-16,1920-11-16,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",8.00,,1 month,31,1,,1920-10-16,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,;https://iiif.princeton.edu/loris/figgy_prod/94%2F45%2F1b%2F94451bbd9c1046daab6b51d85a4ca313%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-10-16,1920-10-21,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/joyce-dubliners/,Dubliners,,"Joyce, James",1914,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/94%2F45%2F1b%2F94451bbd9c1046daab6b51d85a4ca313%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-10-16,1920-11-04,https://shakespeareandco.princeton.edu/members/marsland/,Harriet Marsland,"Marsland, Harriet",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/pound-exultations/,Exultations,,"Pound, Ezra",1909,,Lending Library Card,"Sylvia Beach, Harriet Marsland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/34833978-1579-4eb9-a196-73e566a04a2c/manifest,https://iiif.princeton.edu/loris/figgy_prod/3e%2Fb5%2F55%2F3eb555341d4841829c517731f5f5de1b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-10-21,1920-10-25,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/pound-lustra/,Lustra,,"Pound, Ezra",1916,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/94%2F45%2F1b%2F94451bbd9c1046daab6b51d85a4ca313%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-10-21,1920-10-25,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/thayer-dial/,The Dial,"Vol. 69, no. 4, Oct 1920",,,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/94%2F45%2F1b%2F94451bbd9c1046daab6b51d85a4ca313%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-10-23,1920-10-29,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/moore-muslin/,Muslin,,"Moore, George",1915,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/f7%2Fa7%2F97%2Ff7a7979f7b5e405bb084aee54a824c32%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1920-10-25,1920-10-29,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/squire-london-mercury/,The London Mercury,"Vol. 2, no. 11, Sep 1920",,,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/94%2F45%2F1b%2F94451bbd9c1046daab6b51d85a4ca313%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-10-25,1920-10-29,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/ashford-young-visiters-mister/,"The Young Visiters, or Mister Salteena's Plan",,"Ashford, Daisy",1919,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/94%2F45%2F1b%2F94451bbd9c1046daab6b51d85a4ca313%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-10-28,,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/elizabeth-browning/,Elizabeth Browning,,,,Unidentified. By or about Elizabeth Barrett Browning.,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/05%2Fd1%2F20%2F05d120f890cb4152b7f64e0179929987%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1920-10-28,1921-04-28,https://shakespeareandco.princeton.edu/members/weyl/,Mr. Weyl,"Weyl, Mr.",35.00,,6 months,182,1,,1920-10-26,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1920-10-29,1920-11-05,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/studio-book-number/,Studio Book Number,,,,Unidentified. Likely an issue of *The Studio* (1893β1964).,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/f7%2Fa7%2F97%2Ff7a7979f7b5e405bb084aee54a824c32%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1920-10-29,1920-11-05,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/burke-limehouse-nights-tales/,Limehouse Nights: Tales of Chinatown,,"Burke, Thomas",1916,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/f7%2Fa7%2F97%2Ff7a7979f7b5e405bb084aee54a824c32%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1920-10-29,1920-11-13,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/joyce-exiles/,Exiles,,"Joyce, James",1918,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/94%2F45%2F1b%2F94451bbd9c1046daab6b51d85a4ca313%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-10-30,1920-11-03,https://shakespeareandco.princeton.edu/members/oerthel/,Maurice Oerthel,"Oerthel, Maurice",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/jerome-passing-third-floor/,The Passing of the Third Floor Back,,"Jerome, Jerome K.",1908,,Lending Library Card,"Sylvia Beach, Maurice Oerthel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f1c13c8-7dbf-4473-99cb-77f8d586b0b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/2a%2F80%2F6a%2F2a806a8717844643b81a37e7e5c825aa%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1920-10-30,1921-01-30,https://shakespeareandco.princeton.edu/members/zimmer/,Isabelle Zimmer,"Zimmer, Isabelle",9.60,7.00,3 months,92,1,Student,1920-10-30,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Isabelle Zimmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/fd5a7d89-809b-4930-adc6-ac5066cd5858/manifest,;https://iiif.princeton.edu/loris/figgy_prod/11%2F74%2F7a%2F11747a862ff34d7b9b2120d1daafff4b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-10-30,1920-11-12,https://shakespeareandco.princeton.edu/members/zimmer/,Isabelle Zimmer,"Zimmer, Isabelle",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/wells-passionate-friends/,The Passionate Friends,,"Wells, H. G.",1913,,Lending Library Card,"Sylvia Beach, Isabelle Zimmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fd5a7d89-809b-4930-adc6-ac5066cd5858/manifest,https://iiif.princeton.edu/loris/figgy_prod/11%2F74%2F7a%2F11747a862ff34d7b9b2120d1daafff4b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1920-10-30,1921-04-30,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",16.00,,6 months,182,1,,1920-10-26,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1920-11-02,1920-11,https://shakespeareandco.princeton.edu/members/stein-gertrude/,Gertrude Stein,"Stein, Gertrude",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/johnston-mrs-warrens-daughter/,Mrs. Warren's Daughter,,"Johnston, Harry Hamilton",1920,,Lending Library Card,"Sylvia Beach, Gertrude Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f6f307d-2eb7-4960-8dc1-9dec4ea53022/manifest,https://iiif.princeton.edu/loris/figgy_prod/12%2Fe6%2F12%2F12e612fbcef343bcb74f5bec1a44a4f8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-11-02,1920-11,https://shakespeareandco.princeton.edu/members/stein-gertrude/,Gertrude Stein,"Stein, Gertrude",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/kennedy-mixed-company/,Mixed Company,,"Kennedy, Douglas D.",1917,,Lending Library Card,"Sylvia Beach, Gertrude Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f6f307d-2eb7-4960-8dc1-9dec4ea53022/manifest,https://iiif.princeton.edu/loris/figgy_prod/12%2Fe6%2F12%2F12e612fbcef343bcb74f5bec1a44a4f8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-11-03,1920-11-13,https://shakespeareandco.princeton.edu/members/oerthel/,Maurice Oerthel,"Oerthel, Maurice",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/jerome-idle-thoughts-idle/,The Idle Thoughts of an Idle Fellow,,"Jerome, Jerome K.",1886,,Lending Library Card,"Sylvia Beach, Maurice Oerthel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f1c13c8-7dbf-4473-99cb-77f8d586b0b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/2a%2F80%2F6a%2F2a806a8717844643b81a37e7e5c825aa%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-11-04,1920-11-24,https://shakespeareandco.princeton.edu/members/marsland/,Harriet Marsland,"Marsland, Harriet",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/houghton-younger-generation/,The Younger Generation,,"Houghton, Stanley",1910,,Lending Library Card,"Sylvia Beach, Harriet Marsland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/34833978-1579-4eb9-a196-73e566a04a2c/manifest,https://iiif.princeton.edu/loris/figgy_prod/3e%2Fb5%2F55%2F3eb555341d4841829c517731f5f5de1b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-11-04,1920-11-09,https://shakespeareandco.princeton.edu/members/tournier/,Mlle Tournier,"Tournier, Mlle",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/london-night-born/,The Night-Born,,"London, Jack",1913,,Lending Library Card,"Sylvia Beach, Mlle Tournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3fad2988-1d91-42e9-a8de-e375c07f6b64/manifest,https://iiif.princeton.edu/loris/figgy_prod/e9%2Fd2%2Ffc%2Fe9d2fc2a1f3a4e15a11dd0d43cac75da%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-11-04,1920-11-24,https://shakespeareandco.princeton.edu/members/marsland/,Harriet Marsland,"Marsland, Harriet",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/pound-quia-pauper-amavi/,Quia Pauper Amavi,,"Pound, Ezra",1919,,Lending Library Card,"Sylvia Beach, Harriet Marsland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/34833978-1579-4eb9-a196-73e566a04a2c/manifest,https://iiif.princeton.edu/loris/figgy_prod/3e%2Fb5%2F55%2F3eb555341d4841829c517731f5f5de1b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1920-11-04,1920-12-04,https://shakespeareandco.princeton.edu/members/clarke-austin/,Austin Clarke,"Clarke, Austin",12.00,14.00,1 month,30,2,,1920-11-04,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1920-11-05,1920-11-30,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,25,,,https://shakespeareandco.princeton.edu/books/shaw-plays-pleasant-unpleasant/,Plays: Pleasant and Unpleasant,Vol. 2 Pleasant Plays,"Shaw, George Bernard",1898,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/e2%2F35%2F9d%2Fe2359da0c4fc4152ba222f6e2c27e8ec%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1920-11-05,1920-11-09,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/bennett-ghost/,The Ghost: A Modern Fantasy,,"Bennett, Arnold",1907,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/f7%2Fa7%2F97%2Ff7a7979f7b5e405bb084aee54a824c32%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1920-11-06,1921-02-06,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",16.00,,3 months,92,,Professor / Teacher,1920-11-06,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,;https://iiif-cloud.princeton.edu/iiif/2/d5%2F83%2F19%2Fd583194615974935b1ec030005291783%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1920-11-06,1920-11-09,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/du-bois-darkwater/,Darkwater: Voices from within the Veil,,"Du Bois, W. E. B.",1920,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/d5%2F83%2F19%2Fd583194615974935b1ec030005291783%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1920-11-09,1920-12-09,https://shakespeareandco.princeton.edu/members/tournier/,Mlle Tournier,"Tournier, Mlle",6.40,7.00,1 month,30,1,Professor / Teacher,1920-11-09,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Mlle Tournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/3fad2988-1d91-42e9-a8de-e375c07f6b64/manifest,;https://iiif.princeton.edu/loris/figgy_prod/e9%2Fd2%2Ffc%2Fe9d2fc2a1f3a4e15a11dd0d43cac75da%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1920-11-09,1921-11-09,https://shakespeareandco.princeton.edu/members/beerblock-maurice/,Maurice Beerblock,"Beerblock, Maurice",60.00,7.00,1 year,365,1,,1920-11-09,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1920-11-09,1920-11-13,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/conrad-rescue-romance-shallows/,The Rescue: A Romance of the Shallows,,"Conrad, Joseph",1920,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/d5%2F83%2F19%2Fd583194615974935b1ec030005291783%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1920-11-09,1920-11-16,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/empty-house/,The Empty House,,,,"Unidentified. Algernon Blackwood's *The Empty House and Other Ghost Stories* (1906), Elizabeth Stuart Phelps's *The Empty House and Other Stories* (1910), or Francis Grierson's *The Empty House* (1934), etc.",Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/f7%2Fa7%2F97%2Ff7a7979f7b5e405bb084aee54a824c32%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1920-11-09,1920-11-12,https://shakespeareandco.princeton.edu/members/tournier/,Mlle Tournier,"Tournier, Mlle",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/taylor-punch/,Punch,"Vol. 72, 1877",,,,Lending Library Card,"Sylvia Beach, Mlle Tournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3fad2988-1d91-42e9-a8de-e375c07f6b64/manifest,https://iiif.princeton.edu/loris/figgy_prod/e9%2Fd2%2Ffc%2Fe9d2fc2a1f3a4e15a11dd0d43cac75da%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-11-10,1920-11-18,https://shakespeareandco.princeton.edu/members/linossier-raymonde/,Raymonde Linossier,"Linossier, Raymonde",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/martin-emmy-lou-book/,Emmy Lou: Her Book and Heart,,"Martin, George Madden",1903,,Lending Library Card,"Sylvia Beach, Raymonde Linossier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/53ede5bf-939d-44f5-9ddb-4dd39363bd20/manifest,https://iiif.princeton.edu/loris/figgy_prod/00%2F34%2F2f%2F00342f6fa20c49eb905cc64a929bc405%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-11-10,1920-11-18,https://shakespeareandco.princeton.edu/members/linossier-raymonde/,Raymonde Linossier,"Linossier, Raymonde",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/dreiser-sister-carrie/,Sister Carrie,,"Dreiser, Theodore",1900,,Lending Library Card,"Sylvia Beach, Raymonde Linossier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/53ede5bf-939d-44f5-9ddb-4dd39363bd20/manifest,https://iiif.princeton.edu/loris/figgy_prod/00%2F34%2F2f%2F00342f6fa20c49eb905cc64a929bc405%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1920-11-12,1920-12-12,https://shakespeareandco.princeton.edu/members/jacob-j/,J. Jacob,"Jacob, J.",6.40,7.00,1 month,30,1,Professor / Teacher,1920-11-12,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1920-11-12,1920-11-13,https://shakespeareandco.princeton.edu/members/tournier/,Mlle Tournier,"Tournier, Mlle",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/clouston-lunatic-large-novel/,The Lunatic at Large: A Novel,,"Clouston, J. Storer",1899,,Lending Library Card,"Sylvia Beach, Mlle Tournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3fad2988-1d91-42e9-a8de-e375c07f6b64/manifest,https://iiif.princeton.edu/loris/figgy_prod/e9%2Fd2%2Ffc%2Fe9d2fc2a1f3a4e15a11dd0d43cac75da%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-11-12,1920-11-13,https://shakespeareandco.princeton.edu/members/tournier/,Mlle Tournier,"Tournier, Mlle",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/shaw-androcles-lion/,Androcles and the Lion,,"Shaw, George Bernard",1916,,Lending Library Card,"Sylvia Beach, Mlle Tournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3fad2988-1d91-42e9-a8de-e375c07f6b64/manifest,https://iiif.princeton.edu/loris/figgy_prod/e9%2Fd2%2Ffc%2Fe9d2fc2a1f3a4e15a11dd0d43cac75da%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1920-11-12,1920-12-12,https://shakespeareandco.princeton.edu/members/benet-stephen-vincent/,Stephen Vincent BenΓ©t,"BenΓ©t, Stephen Vincent",9.60,14.00,1 month,30,2,Student,1920-11-12,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1920-11-12,1920-12-07,https://shakespeareandco.princeton.edu/members/zimmer/,Isabelle Zimmer,"Zimmer, Isabelle",,,,,,,,,Returned,25,,,https://shakespeareandco.princeton.edu/books/kipling-wee-willie-winkie/,Wee Willie Winkie and Other Child Stories,,"Kipling, Rudyard",1888,,Lending Library Card,"Sylvia Beach, Isabelle Zimmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fd5a7d89-809b-4930-adc6-ac5066cd5858/manifest,https://iiif.princeton.edu/loris/figgy_prod/3b%2Fbd%2Fef%2F3bbdef545eb445698c6caddfe6fe1a8e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Supplement,1920-11-12,1920-12-09,https://shakespeareandco.princeton.edu/members/tournier/,Mlle Tournier,"Tournier, Mlle",3.20,7.00,27 days,27,2,,1920-11-12,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1920-11-13,1920-11-25,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/a-e-collected-poems/,Collected Poems,,Γ,1920,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/94%2F45%2F1b%2F94451bbd9c1046daab6b51d85a4ca313%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1920-11-13,1920-12-13,https://shakespeareandco.princeton.edu/members/bazin/,Mlle Bazin,"Bazin, Mlle",8.00,7.00,1 month,30,1,Student,1920-11-13,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1920-11-13,1920-11,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/wells-outline-history/,The Outline of History,,"Wells, H. G.",1920,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/d5%2F83%2F19%2Fd583194615974935b1ec030005291783%2Fintermediate_file/full/full/0/default.jpg
+Supplement,1920-11-13,1920-12-09,https://shakespeareandco.princeton.edu/members/fabre-luce/,Mlle Fabre-Luce,"Fabre-Luce, Mlle",4.50,,26 days,26,2,,1920-11-13,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1920-11-13,1920-11-27,https://shakespeareandco.princeton.edu/members/oerthel/,Maurice Oerthel,"Oerthel, Maurice",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/pope-rape-lock/,The Rape of the Lock,,"Pope, Alexander",1712,,Lending Library Card,"Sylvia Beach, Maurice Oerthel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f1c13c8-7dbf-4473-99cb-77f8d586b0b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/2a%2F80%2F6a%2F2a806a8717844643b81a37e7e5c825aa%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-11-13,1920-11-16,https://shakespeareandco.princeton.edu/members/tournier/,Mlle Tournier,"Tournier, Mlle",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/bennett-matador-five-towns/,The Matador of the Five Towns and Other Stories,,"Bennett, Arnold",1912,,Lending Library Card,"Sylvia Beach, Mlle Tournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3fad2988-1d91-42e9-a8de-e375c07f6b64/manifest,https://iiif.princeton.edu/loris/figgy_prod/e9%2Fd2%2Ffc%2Fe9d2fc2a1f3a4e15a11dd0d43cac75da%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-11-13,1920-11-16,https://shakespeareandco.princeton.edu/members/tournier/,Mlle Tournier,"Tournier, Mlle",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/shaw-misalliance/,Misalliance,,"Shaw, George Bernard",1919,,Lending Library Card,"Sylvia Beach, Mlle Tournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3fad2988-1d91-42e9-a8de-e375c07f6b64/manifest,https://iiif.princeton.edu/loris/figgy_prod/e9%2Fd2%2Ffc%2Fe9d2fc2a1f3a4e15a11dd0d43cac75da%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1920-11-15,1921-07-15,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",47.00,,8 months,242,1,,1920-11-15,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,;https://iiif.princeton.edu/loris/figgy_prod/c3%2F68%2F10%2Fc36810021f8f4b3698cee423d89e7bcc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-11-15,1920-11-23,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/squire-london-mercury/,The London Mercury,,,,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/c3%2F68%2F10%2Fc36810021f8f4b3698cee423d89e7bcc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1920-11-16,1920-12-16,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",8.00,,1 month,30,1,,1920-11-16,,,,,FRF,,,,,,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1920-11-16,1920-11-20,https://shakespeareandco.princeton.edu/members/tournier/,Mlle Tournier,"Tournier, Mlle",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/bennett-anna-five-towns/,Anna of the Five Towns,,"Bennett, Arnold",1902,,Lending Library Card,"Sylvia Beach, Mlle Tournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3fad2988-1d91-42e9-a8de-e375c07f6b64/manifest,https://iiif.princeton.edu/loris/figgy_prod/e9%2Fd2%2Ffc%2Fe9d2fc2a1f3a4e15a11dd0d43cac75da%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1920-11-16,1920-12-16,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",8.00,,1 month,30,1,,1920-11-13,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,;https://iiif.princeton.edu/loris/figgy_prod/94%2F45%2F1b%2F94451bbd9c1046daab6b51d85a4ca313%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-11-16,1920-11-19,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/ibsen-master-builder/,The Master Builder,,"Ibsen, Henrik",1892,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1920-11-16,1920-12-10,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,24,,,https://shakespeareandco.princeton.edu/books/gosse-diversions-man-letters/,Some Diversions of a Man of Letters,,"Gosse, Edmund",1919,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/89%2F8b%2F8d%2F898b8d1f0e0f4accaef691dc7f9316ab%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1920-11-18,1920-12-18,https://shakespeareandco.princeton.edu/members/carpentier/,Mlle Carpentier,"Carpentier, Mlle",6.40,7.00,1 month,30,1,Student,1920-11-18,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1920-11-18,1920-12-02,https://shakespeareandco.princeton.edu/members/botez/,Mme Botez,"Botez, Mme",6.00,20.00,2 weeks,14,2,,1920-11-18,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Separate Payment,1920-11-18,1920-11-18,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",8.00,,,,,,1920-11-18,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1920-11-19,1920-12,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/shaw-heartbreak-house-fantasia/,Heartbreak House: A Fantasia in the Russian Manner on English Themes,,"Shaw, George Bernard",1919,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1920-11-19,,https://shakespeareandco.princeton.edu/members/linossier-raymonde/,Raymonde Linossier,"Linossier, Raymonde",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/stockton-casting-away-mrs/,The Casting Away of Mrs. Lecks and Mrs. Aleshine,,"Stockton, Frank Richard",1886,,Lending Library Card,"Sylvia Beach, Raymonde Linossier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/53ede5bf-939d-44f5-9ddb-4dd39363bd20/manifest,https://iiif.princeton.edu/loris/figgy_prod/00%2F34%2F2f%2F00342f6fa20c49eb905cc64a929bc405%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-11-19,,https://shakespeareandco.princeton.edu/members/linossier-raymonde/,Raymonde Linossier,"Linossier, Raymonde",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/rice-mrs-wiggs-cabbage/,Mrs. Wiggs of the Cabbage Patch,,"Rice, Alice Caldwell Hegan",1901,,Lending Library Card,"Sylvia Beach, Raymonde Linossier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/53ede5bf-939d-44f5-9ddb-4dd39363bd20/manifest,https://iiif.princeton.edu/loris/figgy_prod/00%2F34%2F2f%2F00342f6fa20c49eb905cc64a929bc405%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-11-19,,https://shakespeareandco.princeton.edu/members/linossier-raymonde/,Raymonde Linossier,"Linossier, Raymonde",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/davis-gallagher-stories/,Gallagher and Other Stories,,"Davis, Richard Harding",1919,,Lending Library Card,"Sylvia Beach, Raymonde Linossier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/53ede5bf-939d-44f5-9ddb-4dd39363bd20/manifest,https://iiif.princeton.edu/loris/figgy_prod/00%2F34%2F2f%2F00342f6fa20c49eb905cc64a929bc405%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1920-11-19,1921-05-19,https://shakespeareandco.princeton.edu/members/oerthel/,Maurice Oerthel,"Oerthel, Maurice",28.00,,6 months,181,1,AdL,1920-11-27,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Maurice Oerthel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/9f1c13c8-7dbf-4473-99cb-77f8d586b0b6/manifest,;https://iiif.princeton.edu/loris/figgy_prod/2a%2F80%2F6a%2F2a806a8717844643b81a37e7e5c825aa%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-11-20,1920-11-23,https://shakespeareandco.princeton.edu/members/tournier/,Mlle Tournier,"Tournier, Mlle",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/bennett-sacred-profane-love/,Sacred and Profane Love: A Novel in Three Episodes,,"Bennett, Arnold",1905,,Lending Library Card,"Sylvia Beach, Mlle Tournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3fad2988-1d91-42e9-a8de-e375c07f6b64/manifest,https://iiif.princeton.edu/loris/figgy_prod/e9%2Fd2%2Ffc%2Fe9d2fc2a1f3a4e15a11dd0d43cac75da%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-11-20,1920-11-23,https://shakespeareandco.princeton.edu/members/tournier/,Mlle Tournier,"Tournier, Mlle",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/bennett-honeymoon-comedy-three/,The Honeymoon: A Comedy in Three Acts,,"Bennett, Arnold",1910,,Lending Library Card,"Sylvia Beach, Mlle Tournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3fad2988-1d91-42e9-a8de-e375c07f6b64/manifest,https://iiif.princeton.edu/loris/figgy_prod/e9%2Fd2%2Ffc%2Fe9d2fc2a1f3a4e15a11dd0d43cac75da%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-11-23,1920-11-25,https://shakespeareandco.princeton.edu/members/tournier/,Mlle Tournier,"Tournier, Mlle",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/jerome-told-supper/,Told after Supper,,"Jerome, Jerome K.",1891,,Lending Library Card,"Sylvia Beach, Mlle Tournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3fad2988-1d91-42e9-a8de-e375c07f6b64/manifest,https://iiif.princeton.edu/loris/figgy_prod/e9%2Fd2%2Ffc%2Fe9d2fc2a1f3a4e15a11dd0d43cac75da%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-11-23,1920-11-25,https://shakespeareandco.princeton.edu/members/tournier/,Mlle Tournier,"Tournier, Mlle",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/leacock-nonsense-novels/,Nonsense Novels,,"Leacock, Stephen",1920,,Lending Library Card,"Sylvia Beach, Mlle Tournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3fad2988-1d91-42e9-a8de-e375c07f6b64/manifest,https://iiif.princeton.edu/loris/figgy_prod/e9%2Fd2%2Ffc%2Fe9d2fc2a1f3a4e15a11dd0d43cac75da%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-11-23,1920-12-02,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/zangwill-children-ghetto-study/,Children of the Ghetto: A Study of a Peculiar People,,"Zangwill, Israel",1892,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/c3%2F68%2F10%2Fc36810021f8f4b3698cee423d89e7bcc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-11-24,1920-11-25,https://shakespeareandco.princeton.edu/members/marsland/,Harriet Marsland,"Marsland, Harriet",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/joyce-dubliners/,Dubliners,,"Joyce, James",1914,,Lending Library Card,"Sylvia Beach, Harriet Marsland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/34833978-1579-4eb9-a196-73e566a04a2c/manifest,https://iiif.princeton.edu/loris/figgy_prod/3e%2Fb5%2F55%2F3eb555341d4841829c517731f5f5de1b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-11-24,1920-11-25,https://shakespeareandco.princeton.edu/members/marsland/,Harriet Marsland,"Marsland, Harriet",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/stein-three-lives/,Three Lives,,"Stein, Gertrude",1909,,Lending Library Card,"Sylvia Beach, Harriet Marsland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/34833978-1579-4eb9-a196-73e566a04a2c/manifest,https://iiif.princeton.edu/loris/figgy_prod/3e%2Fb5%2F55%2F3eb555341d4841829c517731f5f5de1b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-11-25,1920-11-27,https://shakespeareandco.princeton.edu/members/tournier/,Mlle Tournier,"Tournier, Mlle",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/jerome-three-men-boat/,Three Men in a Boat (To Say Nothing of the Dog),,"Jerome, Jerome K.",1889,,Lending Library Card,"Sylvia Beach, Mlle Tournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3fad2988-1d91-42e9-a8de-e375c07f6b64/manifest,https://iiif.princeton.edu/loris/figgy_prod/e9%2Fd2%2Ffc%2Fe9d2fc2a1f3a4e15a11dd0d43cac75da%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-11-25,1920-11-27,https://shakespeareandco.princeton.edu/members/tournier/,Mlle Tournier,"Tournier, Mlle",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/bennett-denry-audacious/,Denry the Audacious,,"Bennett, Arnold",1911,,Lending Library Card,"Sylvia Beach, Mlle Tournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3fad2988-1d91-42e9-a8de-e375c07f6b64/manifest,https://iiif.princeton.edu/loris/figgy_prod/e9%2Fd2%2Ffc%2Fe9d2fc2a1f3a4e15a11dd0d43cac75da%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-11-25,1920-11-27,https://shakespeareandco.princeton.edu/members/marsland/,Harriet Marsland,"Marsland, Harriet",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/gilman-man-made-world/,"The Man-Made World; Or, Our Androcentric Culture",,"Gilman, Charlotte Perkins",1911,,Lending Library Card,"Sylvia Beach, Harriet Marsland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/34833978-1579-4eb9-a196-73e566a04a2c/manifest,https://iiif.princeton.edu/loris/figgy_prod/3e%2Fb5%2F55%2F3eb555341d4841829c517731f5f5de1b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-11-25,1920-11-27,https://shakespeareandco.princeton.edu/members/marsland/,Harriet Marsland,"Marsland, Harriet",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/a-e-collected-poems/,Collected Poems,,Γ,1920,,Lending Library Card,"Sylvia Beach, Harriet Marsland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/34833978-1579-4eb9-a196-73e566a04a2c/manifest,https://iiif.princeton.edu/loris/figgy_prod/3e%2Fb5%2F55%2F3eb555341d4841829c517731f5f5de1b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-11-25,1920-12-10,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/santayana-interpretations-poetry-religion/,Interpretations of Poetry and Religion,,"Santayana, George",1900,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/94%2F45%2F1b%2F94451bbd9c1046daab6b51d85a4ca313%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-11-27,1920-11-29,https://shakespeareandco.princeton.edu/members/tournier/,Mlle Tournier,"Tournier, Mlle",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/galsworthy-plays/,Plays,,"Galsworthy, John",,Unidentified. Series unknown.,Lending Library Card,"Sylvia Beach, Mlle Tournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3fad2988-1d91-42e9-a8de-e375c07f6b64/manifest,https://iiif.princeton.edu/loris/figgy_prod/e9%2Fd2%2Ffc%2Fe9d2fc2a1f3a4e15a11dd0d43cac75da%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-11-27,1920-11-29,https://shakespeareandco.princeton.edu/members/marsland/,Harriet Marsland,"Marsland, Harriet",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/chekhov-black-monk/,The Black Monk and Other Stories,,"Chekhov, Anton",1915,,Lending Library Card,"Sylvia Beach, Harriet Marsland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/34833978-1579-4eb9-a196-73e566a04a2c/manifest,https://iiif.princeton.edu/loris/figgy_prod/3e%2Fb5%2F55%2F3eb555341d4841829c517731f5f5de1b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-11-27,1920-11-29,https://shakespeareandco.princeton.edu/members/marsland/,Harriet Marsland,"Marsland, Harriet",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/bradby-psycho-analysis-place/,Psycho-Analysis and Its Place in Life,,"Bradby, M. K.",1919,,Lending Library Card,"Sylvia Beach, Harriet Marsland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/34833978-1579-4eb9-a196-73e566a04a2c/manifest,https://iiif.princeton.edu/loris/figgy_prod/3e%2Fb5%2F55%2F3eb555341d4841829c517731f5f5de1b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-11-27,1920-11-29,https://shakespeareandco.princeton.edu/members/tournier/,Mlle Tournier,"Tournier, Mlle",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/bennett-literary-taste-form/,Literary Taste: How to Form It,,"Bennett, Arnold",1909,,Lending Library Card,"Sylvia Beach, Mlle Tournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3fad2988-1d91-42e9-a8de-e375c07f6b64/manifest,https://iiif.princeton.edu/loris/figgy_prod/e9%2Fd2%2Ffc%2Fe9d2fc2a1f3a4e15a11dd0d43cac75da%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-11-27,1920-12-18,https://shakespeareandco.princeton.edu/members/oerthel/,Maurice Oerthel,"Oerthel, Maurice",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/wells-mankind-making/,Mankind in the Making,,"Wells, H. G.",1903,,Lending Library Card,"Sylvia Beach, Maurice Oerthel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f1c13c8-7dbf-4473-99cb-77f8d586b0b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/2a%2F80%2F6a%2F2a806a8717844643b81a37e7e5c825aa%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-11-29,1920-12-04,https://shakespeareandco.princeton.edu/members/tournier/,Mlle Tournier,"Tournier, Mlle",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/great-adventure/,The Great Adventure,,,,"Unidentified. Louise Pond Jewell's *The Great Adventure* (1911), Arnold Bennett's *The Great Adventure: A Play of Fancy in Four Acts* (1913), or Theodore Roosevelt's *The Great Adventure: Present-Day Studies in American Nationalism* (1919), etc.",Lending Library Card,"Sylvia Beach, Mlle Tournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3fad2988-1d91-42e9-a8de-e375c07f6b64/manifest,https://iiif.princeton.edu/loris/figgy_prod/bd%2F8c%2Fe0%2Fbd8ce0340bf4461583c5b4e466a59bb4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-11-29,1920-12-04,https://shakespeareandco.princeton.edu/members/tournier/,Mlle Tournier,"Tournier, Mlle",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/bennett-united-states/,Those United States,,"Bennett, Arnold",1912,,Lending Library Card,"Sylvia Beach, Mlle Tournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3fad2988-1d91-42e9-a8de-e375c07f6b64/manifest,https://iiif.princeton.edu/loris/figgy_prod/bd%2F8c%2Fe0%2Fbd8ce0340bf4461583c5b4e466a59bb4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-11-29,1920-12-09,https://shakespeareandco.princeton.edu/members/marsland/,Harriet Marsland,"Marsland, Harriet",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/lewis-tarr/,Tarr,,"Lewis, Wyndham",1918,,Lending Library Card,"Sylvia Beach, Harriet Marsland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/34833978-1579-4eb9-a196-73e566a04a2c/manifest,https://iiif.princeton.edu/loris/figgy_prod/3e%2Fb5%2F55%2F3eb555341d4841829c517731f5f5de1b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-11-29,1920-12-09,https://shakespeareandco.princeton.edu/members/marsland/,Harriet Marsland,"Marsland, Harriet",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/james-sense-past/,The Sense of the Past,,"James, Henry",1917,,Lending Library Card,"Sylvia Beach, Harriet Marsland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/34833978-1579-4eb9-a196-73e566a04a2c/manifest,https://iiif.princeton.edu/loris/figgy_prod/3e%2Fb5%2F55%2F3eb555341d4841829c517731f5f5de1b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-11-30,1920-12-23,https://shakespeareandco.princeton.edu/members/stein-gertrude/,Gertrude Stein,"Stein, Gertrude",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/waugh-loom-youth/,The Loom of Youth,,"Waugh, Alec",1917,,Lending Library Card,"Sylvia Beach, Gertrude Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f6f307d-2eb7-4960-8dc1-9dec4ea53022/manifest,https://iiif.princeton.edu/loris/figgy_prod/4e%2F51%2F33%2F4e5133fc38ac495ba74a000ffc979d4f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-11-30,1920-12-11,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/shaw-man-superman/,Man and Superman,,"Shaw, George Bernard",1903,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/e2%2F35%2F9d%2Fe2359da0c4fc4152ba222f6e2c27e8ec%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1920-11-30,1920-12-23,https://shakespeareandco.princeton.edu/members/stein-gertrude/,Gertrude Stein,"Stein, Gertrude",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/sinclair-brass-check/,The Brass Check,,"Sinclair, Upton",1919,,Lending Library Card,"Sylvia Beach, Gertrude Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f6f307d-2eb7-4960-8dc1-9dec4ea53022/manifest,https://iiif.princeton.edu/loris/figgy_prod/4e%2F51%2F33%2F4e5133fc38ac495ba74a000ffc979d4f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-11-30,1920-12-04,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/galsworthy-chancery-forsyte-saga/,In Chancery (The Forsyte Saga),,"Galsworthy, John",1920,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/d5%2F83%2F19%2Fd583194615974935b1ec030005291783%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1920-12-01,1921-01-01,https://shakespeareandco.princeton.edu/members/billoud/,Mlle Billoud,"Billoud, Mlle",12.00,8.00,1 month,31,2,,1920-12-01,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1920-12-02,1920-12-10,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/synge-deirdre-sorrows/,Deirdre of the Sorrows,,"Synge, John Millington",1910,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/c3%2F68%2F10%2Fc36810021f8f4b3698cee423d89e7bcc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-12-04,1920-12-09,https://shakespeareandco.princeton.edu/members/tournier/,Mlle Tournier,"Tournier, Mlle",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/jerome-idle-thoughts-idle/,The Idle Thoughts of an Idle Fellow,,"Jerome, Jerome K.",1886,,Lending Library Card,"Sylvia Beach, Mlle Tournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3fad2988-1d91-42e9-a8de-e375c07f6b64/manifest,https://iiif.princeton.edu/loris/figgy_prod/bd%2F8c%2Fe0%2Fbd8ce0340bf4461583c5b4e466a59bb4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1920-12-04,1921-01-04,https://shakespeareandco.princeton.edu/members/Cahn-1/,M. Cahn,"Cahn, M.",6.40,7.00,1 month,31,1,Student,1920-12-04,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1920-12-04,1921-06-04,https://shakespeareandco.princeton.edu/members/guebhard/,Comtesse Guebhard/Gebhard,"Guebhard, Comtesse",35.00,,6 months,182,1,,1920-12-04,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1920-12-04,1920-12-13,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/dane-legend/,Legend,,"Dane, Clemence",1919,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/d5%2F83%2F19%2Fd583194615974935b1ec030005291783%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1920-12-04,1920-12-09,https://shakespeareandco.princeton.edu/members/tournier/,Mlle Tournier,"Tournier, Mlle",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/bennett-human-machine/,The Human Machine,,"Bennett, Arnold",1908,,Lending Library Card,"Sylvia Beach, Mlle Tournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3fad2988-1d91-42e9-a8de-e375c07f6b64/manifest,https://iiif.princeton.edu/loris/figgy_prod/bd%2F8c%2Fe0%2Fbd8ce0340bf4461583c5b4e466a59bb4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1920-12-04,1921-03-04,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",12.00,,3 months,90,1,,1920-12-04,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,;https://iiif-cloud.princeton.edu/iiif/2/e2%2F35%2F9d%2Fe2359da0c4fc4152ba222f6e2c27e8ec%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1920-12-06,1921-01-06,https://shakespeareandco.princeton.edu/members/baker-bobby/,Bobby Baker,"Baker, Bobby",6.40,,1 month,31,1,Student,1920-11-19,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1920-12-07,1920-12-18,https://shakespeareandco.princeton.edu/members/zimmer/,Isabelle Zimmer,"Zimmer, Isabelle",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/tagore-hungry-stones-stories/,The Hungry Stones and Other Stories,,"Tagore, Rabindranath",1916,,Lending Library Card;Lending Library Card,"Sylvia Beach, Isabelle Zimmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Isabelle Zimmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fd5a7d89-809b-4930-adc6-ac5066cd5858/manifest;https://figgy.princeton.edu/concern/scanned_resources/fd5a7d89-809b-4930-adc6-ac5066cd5858/manifest,https://iiif.princeton.edu/loris/figgy_prod/ad%2F11%2Fd2%2Fad11d25067a8498aa765033e79012b32%2Fintermediate_file.jp2/full/full/0/default.jpg;https://iiif.princeton.edu/loris/figgy_prod/3b%2Fbd%2Fef%2F3bbdef545eb445698c6caddfe6fe1a8e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-12-09,1920-12-13,https://shakespeareandco.princeton.edu/members/tournier/,Mlle Tournier,"Tournier, Mlle",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/macy-spirit-american-literature/,The Spirit of American Literature,,"Macy, John Albert",1913,,Lending Library Card,"Sylvia Beach, Mlle Tournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3fad2988-1d91-42e9-a8de-e375c07f6b64/manifest,https://iiif.princeton.edu/loris/figgy_prod/bd%2F8c%2Fe0%2Fbd8ce0340bf4461583c5b4e466a59bb4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1920-12-09,1921-01-09,https://shakespeareandco.princeton.edu/members/delorne/,Mlle Delorne,"Delorne, Mlle",8.00,,1 month,31,1,,1920-12-09,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1920-12-09,1921-03-31,https://shakespeareandco.princeton.edu/members/marsland/,Harriet Marsland,"Marsland, Harriet",,,,,,,,,Returned,112,,,https://shakespeareandco.princeton.edu/books/meredith-midnight-series-dialogues/,Up to Midnight: A Series of Dialogues Contributed to The Graphic,,"Meredith, George",1913,,Lending Library Card,"Sylvia Beach, Harriet Marsland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/34833978-1579-4eb9-a196-73e566a04a2c/manifest,https://iiif.princeton.edu/loris/figgy_prod/3e%2Fb5%2F55%2F3eb555341d4841829c517731f5f5de1b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-12-09,1920-12-13,https://shakespeareandco.princeton.edu/members/tournier/,Mlle Tournier,"Tournier, Mlle",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/trent-history-american-literature/,A History of American Literature,,"Trent, William P.",1903,,Lending Library Card,"Sylvia Beach, Mlle Tournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3fad2988-1d91-42e9-a8de-e375c07f6b64/manifest,https://iiif.princeton.edu/loris/figgy_prod/bd%2F8c%2Fe0%2Fbd8ce0340bf4461583c5b4e466a59bb4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-12-09,1921-03-31,https://shakespeareandco.princeton.edu/members/marsland/,Harriet Marsland,"Marsland, Harriet",,,,,,,,,Returned,112,,,https://shakespeareandco.princeton.edu/books/monro-strange-meetings/,Strange Meetings,,"Monro, Harold",1917,,Lending Library Card,"Sylvia Beach, Harriet Marsland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/34833978-1579-4eb9-a196-73e566a04a2c/manifest,https://iiif.princeton.edu/loris/figgy_prod/3e%2Fb5%2F55%2F3eb555341d4841829c517731f5f5de1b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1920-12-09,1921-06-09,https://shakespeareandco.princeton.edu/members/tournier/,Mlle Tournier,"Tournier, Mlle",28.00,,6 months,182,1,Professor / Teacher,1920-12-11,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Mlle Tournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/3fad2988-1d91-42e9-a8de-e375c07f6b64/manifest,;https://iiif.princeton.edu/loris/figgy_prod/bd%2F8c%2Fe0%2Fbd8ce0340bf4461583c5b4e466a59bb4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-12-10,1920-12-13,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/synge-playboy-western-world/,The Playboy of the Western World,,"Synge, John Millington",1907,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/c3%2F68%2F10%2Fc36810021f8f4b3698cee423d89e7bcc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-12-10,1920-12-20,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/symonds-key-blue-prose/,In the Key of Blue and Other Prose Essays,,"Symonds, John Addington",1896,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/89%2F8b%2F8d%2F898b8d1f0e0f4accaef691dc7f9316ab%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1920-12-10,1920-12-14,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/dunsany-five-plays/,Five Plays,,"Dunsany, Lord",1914,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1920-12-10,1920-12-14,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/richmond-times-literary-supplement/,The Times Literary Supplement,"no. 985, Dec 2, 1920",,,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1920-12-10,,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/brooks-wine-puritans/,The Wine of the Puritans,,"Brooks, Van Wyck",1908,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/94%2F45%2F1b%2F94451bbd9c1046daab6b51d85a4ca313%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-12-11,1921-01-13,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,33,,,https://shakespeareandco.princeton.edu/books/hearn-east-reveries-studies/,Out of the East: Reveries and Studies in New Japan,,"Hearn, Lafcadio",1895,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/e2%2F35%2F9d%2Fe2359da0c4fc4152ba222f6e2c27e8ec%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1920-12-11,1921-01-11,https://shakespeareandco.princeton.edu/members/mr-wright/,Mr. Wright,"Wright, Mr.",6.40,,1 month,31,1,Student,1920-12-11,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1920-12-11,1920-12-11,https://shakespeareandco.princeton.edu/members/tournier/,Mlle Tournier,"Tournier, Mlle",,,,,,,,7.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1920-12-13,1920-12-20,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/howe-synge-critical-study/,J. M. Synge: A Critical Study,,"Howe, P. P.",1912,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/c3%2F68%2F10%2Fc36810021f8f4b3698cee423d89e7bcc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-12-13,1920-12-28,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/wells-outline-history/,The Outline of History,,"Wells, H. G.",1920,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/d5%2F83%2F19%2Fd583194615974935b1ec030005291783%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1920-12-14,1920-12-17,https://shakespeareandco.princeton.edu/members/tournier/,Mlle Tournier,"Tournier, Mlle",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/kipling-wee-willie-winkie/,Wee Willie Winkie and Other Child Stories,,"Kipling, Rudyard",1888,,Lending Library Card,"Sylvia Beach, Mlle Tournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3fad2988-1d91-42e9-a8de-e375c07f6b64/manifest,https://iiif.princeton.edu/loris/figgy_prod/bd%2F8c%2Fe0%2Fbd8ce0340bf4461583c5b4e466a59bb4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-12-14,1920-12-24,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/lodge-survival-man-study/,The Survival of Man: A Study in Unrecognized Human Faculty,,"Lodge, Oliver",1909,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1920-12-17,1920-12-18,https://shakespeareandco.princeton.edu/members/tournier/,Mlle Tournier,"Tournier, Mlle",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/kipling-stories-poems-every/,Stories and Poems Every Child Should Know,,"Kipling, Rudyard",1909,,Lending Library Card,"Sylvia Beach, Mlle Tournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3fad2988-1d91-42e9-a8de-e375c07f6b64/manifest,https://iiif.princeton.edu/loris/figgy_prod/bd%2F8c%2Fe0%2Fbd8ce0340bf4461583c5b4e466a59bb4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1920-12-17,1921-03-17,https://shakespeareandco.princeton.edu/members/reid-marjorie/,Marjorie Reid,"Reid, Marjorie",20.00,,3 months,90,1,,1920-12-17,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Marjorie Reid Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/a16726ca-d1df-4cd0-a18c-844db25f32c3/manifest,;https://iiif.princeton.edu/loris/figgy_prod/3d%2F04%2F92%2F3d0492fd60464cccbf65d0b721ca1ded%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-12-17,,https://shakespeareandco.princeton.edu/members/reid-marjorie/,Marjorie Reid,"Reid, Marjorie",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/shaw-heartbreak-house-fantasia/,Heartbreak House: A Fantasia in the Russian Manner on English Themes,,"Shaw, George Bernard",1919,,Lending Library Card,"Sylvia Beach, Marjorie Reid Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a16726ca-d1df-4cd0-a18c-844db25f32c3/manifest,https://iiif.princeton.edu/loris/figgy_prod/3d%2F04%2F92%2F3d0492fd60464cccbf65d0b721ca1ded%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-12-18,1920-12-31,https://shakespeareandco.princeton.edu/members/oerthel/,Maurice Oerthel,"Oerthel, Maurice",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/percy-bysshe-shelley/,Percy Bysshe Shelley,,,,"Unidentified. By or about Shelley. John Rodker borrowed an unspecifed Oxford edition. On March 19, 1932, Fernand Colens borrowed volume 2 of an unspecified edition.",Lending Library Card,"Sylvia Beach, Maurice Oerthel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f1c13c8-7dbf-4473-99cb-77f8d586b0b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/08%2Fd9%2F1f%2F08d91f3ddfe8436897304e488810bec0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-12-18,1920-12-21,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/wilson-martin-schuler/,Martin SchΓΌler,,"Wilson, Romer",1919,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/d5%2F83%2F19%2Fd583194615974935b1ec030005291783%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1920-12-18,,https://shakespeareandco.princeton.edu/members/tournier/,Mlle Tournier,"Tournier, Mlle",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/bennett-matador-five-towns/,The Matador of the Five Towns and Other Stories,,"Bennett, Arnold",1912,,Lending Library Card,"Sylvia Beach, Mlle Tournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3fad2988-1d91-42e9-a8de-e375c07f6b64/manifest,https://iiif.princeton.edu/loris/figgy_prod/bd%2F8c%2Fe0%2Fbd8ce0340bf4461583c5b4e466a59bb4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-12-18,1921-01-03,https://shakespeareandco.princeton.edu/members/zimmer/,Isabelle Zimmer,"Zimmer, Isabelle",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/tagore-gardener/,The Gardener,,"Tagore, Rabindranath",1913,,Lending Library Card,"Sylvia Beach, Isabelle Zimmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fd5a7d89-809b-4930-adc6-ac5066cd5858/manifest,https://iiif.princeton.edu/loris/figgy_prod/ad%2F11%2Fd2%2Fad11d25067a8498aa765033e79012b32%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1920-12-20,1920-12-20,https://shakespeareandco.princeton.edu/members/carpentier/,Mlle Carpentier,"Carpentier, Mlle",,,,,,,,7.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1920-12-20,1920-12-24,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/synge-tinkers-wedding/,The Tinker's Wedding,,"Synge, John Millington",1904,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/c3%2F68%2F10%2Fc36810021f8f4b3698cee423d89e7bcc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-12-20,1921-01-08,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/butler-way-flesh/,The Way of All Flesh,,"Butler, Samuel",1903,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/89%2F8b%2F8d%2F898b8d1f0e0f4accaef691dc7f9316ab%2Fintermediate_file/full/full/0/default.jpg
+Request,1920-12-20,,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/belloc-path-rome/,The Path to Rome,,"Belloc, Hilaire",1902,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/89%2F8b%2F8d%2F898b8d1f0e0f4accaef691dc7f9316ab%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1920-12-21,1920-12,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/macaulay-potterism/,Potterism,,"Macaulay, Rose",1920,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/d5%2F83%2F19%2Fd583194615974935b1ec030005291783%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1920-12-23,1921-01-05,https://shakespeareandco.princeton.edu/members/stein-gertrude/,Gertrude Stein,"Stein, Gertrude",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/sedgwick-third-window/,The Third Window,,"Sedgwick, Anne Douglas",1920,,Lending Library Card,"Sylvia Beach, Gertrude Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f6f307d-2eb7-4960-8dc1-9dec4ea53022/manifest,https://iiif.princeton.edu/loris/figgy_prod/4e%2F51%2F33%2F4e5133fc38ac495ba74a000ffc979d4f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-12-23,1921-01-05,https://shakespeareandco.princeton.edu/members/stein-gertrude/,Gertrude Stein,"Stein, Gertrude",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/wassermann-worlds-illusion/,The World's Illusion,,"Wassermann, Jakob",1920,,Lending Library Card,"Sylvia Beach, Gertrude Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f6f307d-2eb7-4960-8dc1-9dec4ea53022/manifest,https://iiif.princeton.edu/loris/figgy_prod/4e%2F51%2F33%2F4e5133fc38ac495ba74a000ffc979d4f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-12-24,1921-01-03,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/howe-bernard-shaw-critical/,Bernard Shaw: A Critical Study,,"Howe, P. P.",1914,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/c3%2F68%2F10%2Fc36810021f8f4b3698cee423d89e7bcc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1920-12-24,1921-12-24,https://shakespeareandco.princeton.edu/members/boussinisq/,Mlle Boussinisq,"Boussinisq, Mlle",48.00,,1 year,365,1,,1920-12-23,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1920-12-24,1920-12-30,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/bradby-psycho-analysis-place/,Psycho-Analysis and Its Place in Life,,"Bradby, M. K.",1919,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1920-12-24,,https://shakespeareandco.princeton.edu/members/linossier-raymonde/,Raymonde Linossier,"Linossier, Raymonde",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/synge-riders-sea/,Riders to the Sea,,"Synge, John Millington",1911,,Lending Library Card,"Sylvia Beach, Raymonde Linossier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/53ede5bf-939d-44f5-9ddb-4dd39363bd20/manifest,https://iiif.princeton.edu/loris/figgy_prod/00%2F34%2F2f%2F00342f6fa20c49eb905cc64a929bc405%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1920-12-27,1921-01-27,https://shakespeareandco.princeton.edu/members/martin-maud/,Maud Martin,"Martin, Maud",8.00,7.00,1 month,31,1,,1920-12-27,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Maud Martin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/934c6444-6b2c-4d42-acea-282118c23e5a/manifest,;https://iiif.princeton.edu/loris/figgy_prod/22%2Fd7%2F88%2F22d788d96ad2431daad2ca14c494adf3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1920-12-27,1921-01-03,https://shakespeareandco.princeton.edu/members/martin-maud/,Maud Martin,"Martin, Maud",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/meredith-tragic-comedians-study/,The Tragic Comedians: A Study in a Well-Known Story,,"Meredith, George",1898,,Lending Library Card,"Sylvia Beach, Maud Martin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/934c6444-6b2c-4d42-acea-282118c23e5a/manifest,https://iiif.princeton.edu/loris/figgy_prod/22%2Fd7%2F88%2F22d788d96ad2431daad2ca14c494adf3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1920-12-27,1921-02-27,https://shakespeareandco.princeton.edu/members/macartney/,Mr. Macartney,"Macartney, Mr.",24.00,,2 months,62,2,,1920-12-27,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1920-12-27,1921-01-10,https://shakespeareandco.princeton.edu/members/meras/,Mr. MΓ©ras,"MΓ©ras, Mr.",4.00,14.00,2 weeks,14,2,,1920-12-27,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1920-12-28,1921-01-28,https://shakespeareandco.princeton.edu/members/felshin-simon/,Simon Felshin,"Felshin, Simon",8.00,7.00,1 month,31,1,,1920-12-28,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1920-12-28,1920-12-28,https://shakespeareandco.princeton.edu/members/hankins/,Mr. Hankins,"Hankins, Mr.",,,,,,,,14.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1920-12-29,1921-01-05,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/dunsany-fifty-one-tales/,Fifty-One Tales,,"Dunsany, Lord",1915,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/d5%2F83%2F19%2Fd583194615974935b1ec030005291783%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1920-12-30,,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/chekhov-chorus-girl-stories/,The Chorus Girl and Other Stories,,"Chekhov, Anton",1920,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Purchase,1920-12-31,1920-12-31,https://shakespeareandco.princeton.edu/members/oerthel/,Maurice Oerthel,"Oerthel, Maurice",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/darwin-origin-species/,On the Origin of Species,,"Darwin, Charles",1859,,Lending Library Card,"Sylvia Beach, Maurice Oerthel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f1c13c8-7dbf-4473-99cb-77f8d586b0b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/08%2Fd9%2F1f%2F08d91f3ddfe8436897304e488810bec0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1920-12-31,1920-12-31,https://shakespeareandco.princeton.edu/members/meras/,Mr. MΓ©ras,"MΓ©ras, Mr.",,,,,,,,14.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1920-12-31,1920-12-31,https://shakespeareandco.princeton.edu/members/racloz/,Mlle Racloz,"Racloz, Mlle",,,,,,,,7.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1921-01-03,1921-01-06,https://shakespeareandco.princeton.edu/members/martin-maud/,Maud Martin,"Martin, Maud",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/macaulay-potterism/,Potterism,,"Macaulay, Rose",1920,,Lending Library Card,"Sylvia Beach, Maud Martin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/934c6444-6b2c-4d42-acea-282118c23e5a/manifest,https://iiif.princeton.edu/loris/figgy_prod/22%2Fd7%2F88%2F22d788d96ad2431daad2ca14c494adf3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-01-03,1921-01-25,https://shakespeareandco.princeton.edu/members/zimmer/,Isabelle Zimmer,"Zimmer, Isabelle",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/london-road/,The Road,,"London, Jack",1907,,Lending Library Card,"Sylvia Beach, Isabelle Zimmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fd5a7d89-809b-4930-adc6-ac5066cd5858/manifest,https://iiif.princeton.edu/loris/figgy_prod/ad%2F11%2Fd2%2Fad11d25067a8498aa765033e79012b32%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-01-03,1921-01-15,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/shaw-plays-pleasant-unpleasant/,Plays: Pleasant and Unpleasant,Vol. 2 Pleasant Plays,"Shaw, George Bernard",1898,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/c3%2F68%2F10%2Fc36810021f8f4b3698cee423d89e7bcc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1921-01-04,1921-02-04,https://shakespeareandco.princeton.edu/members/Cahn-1/,M. Cahn,"Cahn, M.",6.40,,1 month,31,1,,1921-01-11,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1921-01-05,,https://shakespeareandco.princeton.edu/members/stein-gertrude/,Gertrude Stein,"Stein, Gertrude",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/fitzgerald-side-paradise/,This Side of Paradise,,"Fitzgerald, F. Scott",1920,,Lending Library Card,"Sylvia Beach, Gertrude Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f6f307d-2eb7-4960-8dc1-9dec4ea53022/manifest,https://iiif.princeton.edu/loris/figgy_prod/4e%2F51%2F33%2F4e5133fc38ac495ba74a000ffc979d4f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-01-05,1921-01-08,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/bennett-pretty-lady/,The Pretty Lady,,"Bennett, Arnold",1918,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/d5%2F83%2F19%2Fd583194615974935b1ec030005291783%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-01-06,1921-01-12,https://shakespeareandco.princeton.edu/members/martin-maud/,Maud Martin,"Martin, Maud",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/dreiser-jennie-gerhardt/,Jennie Gerhardt,,"Dreiser, Theodore",1911,,Lending Library Card,"Sylvia Beach, Maud Martin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/934c6444-6b2c-4d42-acea-282118c23e5a/manifest,https://iiif.princeton.edu/loris/figgy_prod/22%2Fd7%2F88%2F22d788d96ad2431daad2ca14c494adf3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-01-07,1921-01-13,https://shakespeareandco.princeton.edu/members/pottier/,Mlle Pottier,"Pottier, Mlle",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/clouston-lunatic-large-novel/,The Lunatic at Large: A Novel,,"Clouston, J. Storer",1899,,Lending Library Card,"Sylvia Beach, Mlle Pottier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d08fdc25-a68c-4488-ade4-587774580c6c/manifest,https://iiif.princeton.edu/loris/figgy_prod/d4%2Fb4%2F02%2Fd4b402b19e3b4d2095ad4cee65159637%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1921-01-07,1921-02-07,https://shakespeareandco.princeton.edu/members/gibb-marjory/;https://shakespeareandco.princeton.edu/members/gibb/,"Marjory Gibb / Mrs. Phelan Gibb;Phelan Gibb / William Phelan ""Harry"" Gibb","Gibb, Marjory;Gibb, Phelan",8.00,,1 month,31,1,,1921-01-07,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1921-01-08,1921-01-20,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/eastman-enjoyment-poetry/,Enjoyment of Poetry,,"Eastman, Max",1921,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/89%2F8b%2F8d%2F898b8d1f0e0f4accaef691dc7f9316ab%2Fintermediate_file/full/full/0/default.jpg
+Supplement,1921-01-08,1921-03-17,https://shakespeareandco.princeton.edu/members/fernandez/,Mr. Fernandez,"Fernandez, Mr.",10.00,,"2 months, 9 days",68,2,,1921-01-08,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1921-01-08,1921-01-12,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/stevenson-vailima-letters-correspondence/,Vailima Letters: Correspondence Addressed by Robert Louis Stevenson to Sidney Colvin,,"Stevenson, Robert Louis",1895,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/d5%2F83%2F19%2Fd583194615974935b1ec030005291783%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1921-01-09,1921-04-09,https://shakespeareandco.princeton.edu/members/worthing/,Mrs. Worthing,"Worthing, Mrs.",9.60,,3 months,90,1,,1920-12-28,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1921-01-10,1921-01-22,https://shakespeareandco.princeton.edu/members/oerthel/,Maurice Oerthel,"Oerthel, Maurice",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/wells-ann-veronica/,Ann Veronica,,"Wells, H. G.",1909,,Lending Library Card,"Sylvia Beach, Maurice Oerthel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f1c13c8-7dbf-4473-99cb-77f8d586b0b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/08%2Fd9%2F1f%2F08d91f3ddfe8436897304e488810bec0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-01-12,1921-01-20,https://shakespeareandco.princeton.edu/members/martin-maud/,Maud Martin,"Martin, Maud",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/conrad-western-eyes/,Under Western Eyes,,"Conrad, Joseph",1911,,Lending Library Card,"Sylvia Beach, Maud Martin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/934c6444-6b2c-4d42-acea-282118c23e5a/manifest,https://iiif.princeton.edu/loris/figgy_prod/22%2Fd7%2F88%2F22d788d96ad2431daad2ca14c494adf3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-01-12,1921-01-14,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/wells-russia-shadows/,Russia in the Shadows,,"Wells, H. G.",1921,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/d5%2F83%2F19%2Fd583194615974935b1ec030005291783%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-01-13,1921-01-31,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/johnston-mrs-warrens-daughter/,Mrs. Warren's Daughter,,"Johnston, Harry Hamilton",1920,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/e2%2F35%2F9d%2Fe2359da0c4fc4152ba222f6e2c27e8ec%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-01-13,1921-01-31,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/gilman-man-made-world/,"The Man-Made World; Or, Our Androcentric Culture",,"Gilman, Charlotte Perkins",1911,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/e2%2F35%2F9d%2Fe2359da0c4fc4152ba222f6e2c27e8ec%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1921-01-14,1921-04-14,https://shakespeareandco.princeton.edu/members/racloz/,Mlle Racloz,"Racloz, Mlle",16.00,,3 months,90,1,,1920-12-31,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1921-01-14,1922-01-14,https://shakespeareandco.princeton.edu/members/adams/,Mr. Adams,"Adams, Mr.",48.00,,1 year,365,1,,1921-01-12,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1921-01-14,,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/wells-boon/,Boon,,"Wells, H. G.",1915,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/d5%2F83%2F19%2Fd583194615974935b1ec030005291783%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-01-15,1921-01-27,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/shaw-man-superman/,Man and Superman,,"Shaw, George Bernard",1903,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/c3%2F68%2F10%2Fc36810021f8f4b3698cee423d89e7bcc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Supplement,1921-01-17,1921-03-17,https://shakespeareandco.princeton.edu/members/fernandez/,Mr. Fernandez,"Fernandez, Mr.",10.00,,2 months,59,3,,1921-01-17,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1921-01-20,1921-01-31,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/bennett-women-chapters-sex/,Our Women: Chapters on the Sex-Discord,,"Bennett, Arnold",1920,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/89%2F8b%2F8d%2F898b8d1f0e0f4accaef691dc7f9316ab%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-01-20,1921-01-28,https://shakespeareandco.princeton.edu/members/martin-maud/,Maud Martin,"Martin, Maud",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/wharton-age-innocence/,The Age of Innocence,,"Wharton, Edith",1920,,Lending Library Card,"Sylvia Beach, Maud Martin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/934c6444-6b2c-4d42-acea-282118c23e5a/manifest,https://iiif.princeton.edu/loris/figgy_prod/22%2Fd7%2F88%2F22d788d96ad2431daad2ca14c494adf3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1921-01-22,1921-02-22,https://shakespeareandco.princeton.edu/members/bourbon/,Comtesse Charles de Bourbon,"Bourbon, Comtesse Charles de",12.00,7.00,1 month,31,2,,1921-01-22,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1921-01-22,1921-01-29,https://shakespeareandco.princeton.edu/members/oerthel/,Maurice Oerthel,"Oerthel, Maurice",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/wells-soul-bishop/,The Soul of a Bishop,,"Wells, H. G.",1917,,Lending Library Card,"Sylvia Beach, Maurice Oerthel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f1c13c8-7dbf-4473-99cb-77f8d586b0b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/08%2Fd9%2F1f%2F08d91f3ddfe8436897304e488810bec0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-01-25,1921-01-28,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/tagore-reminiscences/,My Reminiscences,,"Tagore, Rabindranath",1916,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/c6%2Fce%2F05%2Fc6ce05bd7e84464182eab837a191d953%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-01-25,1921-02-12,https://shakespeareandco.princeton.edu/members/zimmer/,Isabelle Zimmer,"Zimmer, Isabelle",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/poe-tales-mystery-imagination/,Tales of Mystery and Imagination,,"Poe, Edgar Allan",,,Lending Library Card,"Sylvia Beach, Isabelle Zimmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fd5a7d89-809b-4930-adc6-ac5066cd5858/manifest,https://iiif.princeton.edu/loris/figgy_prod/ad%2F11%2Fd2%2Fad11d25067a8498aa765033e79012b32%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1921-01-27,1921-02-27,https://shakespeareandco.princeton.edu/members/martin-maud/,Maud Martin,"Martin, Maud",8.00,,1 month,31,1,,1921-02-16,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Maud Martin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/934c6444-6b2c-4d42-acea-282118c23e5a/manifest,;https://iiif.princeton.edu/loris/figgy_prod/22%2Fd7%2F88%2F22d788d96ad2431daad2ca14c494adf3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-01-27,1921-02-01,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/shaw-doctors-dilemma/,The Doctor's Dilemma,,"Shaw, George Bernard",1911,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/c3%2F68%2F10%2Fc36810021f8f4b3698cee423d89e7bcc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1921-01-27,1921-07-27,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",28.00,,6 months,181,1,,1921-02-05,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,;https://iiif-cloud.princeton.edu/iiif/2/89%2F8b%2F8d%2F898b8d1f0e0f4accaef691dc7f9316ab%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-01-28,1921-01-31,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/hudson-crystal-age/,A Crystal Age,,"Hudson, W. H.",1887,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/c6%2Fce%2F05%2Fc6ce05bd7e84464182eab837a191d953%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1921-01-28,1921-02-28,https://shakespeareandco.princeton.edu/members/montesquieu/,M. de Montesquieu,"Montesquieu, M. de",12.00,14.00,1 month,31,2,,1921-01-28,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1921-01-28,1921-01-31,https://shakespeareandco.princeton.edu/members/martin-maud/,Maud Martin,"Martin, Maud",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/chesterton-appreciations-criticisms-works/,Appreciations and Criticisms of the Works of Charles Dickens,,"Chesterton, G. K.",1911,,Lending Library Card,"Sylvia Beach, Maud Martin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/934c6444-6b2c-4d42-acea-282118c23e5a/manifest,https://iiif.princeton.edu/loris/figgy_prod/22%2Fd7%2F88%2F22d788d96ad2431daad2ca14c494adf3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-01-29,1921-02-11,https://shakespeareandco.princeton.edu/members/oerthel/,Maurice Oerthel,"Oerthel, Maurice",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/jerome-three-men-bummel/,Three Men on the Bummel,,"Jerome, Jerome K.",1900,,Lending Library Card,"Sylvia Beach, Maurice Oerthel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f1c13c8-7dbf-4473-99cb-77f8d586b0b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/08%2Fd9%2F1f%2F08d91f3ddfe8436897304e488810bec0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1921-01-30,1921-07-30,https://shakespeareandco.princeton.edu/members/zimmer/,Isabelle Zimmer,"Zimmer, Isabelle",30.40,,6 months,181,1,,1921-07-27,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Isabelle Zimmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/fd5a7d89-809b-4930-adc6-ac5066cd5858/manifest,;https://iiif.princeton.edu/loris/figgy_prod/ad%2F11%2Fd2%2Fad11d25067a8498aa765033e79012b32%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1921-01-31,1921-02-28,https://shakespeareandco.princeton.edu/members/barkers/,Mrs. M. Abbott Barker,"Barker, Mrs. M. Abbott",12.00,7.00,1 month,28,2,,1921-01-31,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1921-01-31,1921-02-04,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/chesterton-magic-fantastic-comedy/,Magic: A Fantastic Comedy,,"Chesterton, G. K.",1913,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/e2%2F35%2F9d%2Fe2359da0c4fc4152ba222f6e2c27e8ec%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-01-31,1921-02-04,https://shakespeareandco.princeton.edu/members/martin-maud/,Maud Martin,"Martin, Maud",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/wharton-age-innocence/,The Age of Innocence,,"Wharton, Edith",1920,,Lending Library Card,"Sylvia Beach, Maud Martin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/934c6444-6b2c-4d42-acea-282118c23e5a/manifest,https://iiif.princeton.edu/loris/figgy_prod/22%2Fd7%2F88%2F22d788d96ad2431daad2ca14c494adf3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Crossed out,1921-01-31,,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/spiritualism/,Spiritualism,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/89%2F8b%2F8d%2F898b8d1f0e0f4accaef691dc7f9316ab%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-01-31,1921-02-03,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/okakura-book-tea/,The Book of Tea,,"KakuzΕ, Okakura",1906,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/c6%2Fce%2F05%2Fc6ce05bd7e84464182eab837a191d953%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-01-31,1921-02-01,https://shakespeareandco.princeton.edu/members/tournier/,Mlle Tournier,"Tournier, Mlle",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/bradley-oxford-lectures-poetry/,Oxford Lectures on Poetry,,"Bradley, A. C.",1909,,Lending Library Card,"Sylvia Beach, Mlle Tournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3fad2988-1d91-42e9-a8de-e375c07f6b64/manifest,https://iiif.princeton.edu/loris/figgy_prod/bd%2F8c%2Fe0%2Fbd8ce0340bf4461583c5b4e466a59bb4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-01-31,1921-02-05,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/wells-tono-bungay/,Tono-Bungay,,"Wells, H. G.",1909,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/89%2F8b%2F8d%2F898b8d1f0e0f4accaef691dc7f9316ab%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-02-01,1921-02-03,https://shakespeareandco.princeton.edu/members/tournier/,Mlle Tournier,"Tournier, Mlle",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/squire-london-mercury/,The London Mercury,"Vol. 1, no. 6, Apr 1920",,,,Lending Library Card,"Sylvia Beach, Mlle Tournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3fad2988-1d91-42e9-a8de-e375c07f6b64/manifest,https://iiif.princeton.edu/loris/figgy_prod/bd%2F8c%2Fe0%2Fbd8ce0340bf4461583c5b4e466a59bb4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-02-01,1921-02-07,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/squire-london-mercury/,The London Mercury,"Vol. 3, no. 14, Dec 1920",,,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/c3%2F68%2F10%2Fc36810021f8f4b3698cee423d89e7bcc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1921-02-01,1921-03-01,https://shakespeareandco.princeton.edu/members/rowe/,Mrs. Rowe,"Rowe, Mrs.",8.00,7.00,1 month,28,1,,1921-02-01,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1921-02-01,1921-02-03,https://shakespeareandco.princeton.edu/members/tournier/,Mlle Tournier,"Tournier, Mlle",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/squire-london-mercury/,The London Mercury,,,,,Lending Library Card,"Sylvia Beach, Mlle Tournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3fad2988-1d91-42e9-a8de-e375c07f6b64/manifest,https://iiif.princeton.edu/loris/figgy_prod/bd%2F8c%2Fe0%2Fbd8ce0340bf4461583c5b4e466a59bb4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1921-02-01,1921-03-01,https://shakespeareandco.princeton.edu/members/alajouanine-maud/,Maud (Jennings) Alajouanine,"Alajouanine, Maud",12.00,14.00,1 month,28,2,,1921-02-01,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1921-02-03,1921-02,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/du-bois-darkwater/,Darkwater: Voices from within the Veil,,"Du Bois, W. E. B.",1920,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/c6%2Fce%2F05%2Fc6ce05bd7e84464182eab837a191d953%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-02-03,1921-02-14,https://shakespeareandco.princeton.edu/members/tournier/,Mlle Tournier,"Tournier, Mlle",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/thackeray-four-georges-english/,The Four Georges: The English Humourists of the Eighteenth Century,,"Thackeray, William Makepeace",1869,,Lending Library Card,"Sylvia Beach, Mlle Tournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3fad2988-1d91-42e9-a8de-e375c07f6b64/manifest,https://iiif.princeton.edu/loris/figgy_prod/bd%2F8c%2Fe0%2Fbd8ce0340bf4461583c5b4e466a59bb4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-02-04,1921-02-16,https://shakespeareandco.princeton.edu/members/martin-maud/,Maud Martin,"Martin, Maud",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/cannan-mummery-tale-three/,Mummery: A Tale of Three Idealists,,"Cannan, Gilbert",1919,,Lending Library Card,"Sylvia Beach, Maud Martin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/934c6444-6b2c-4d42-acea-282118c23e5a/manifest,https://iiif.princeton.edu/loris/figgy_prod/22%2Fd7%2F88%2F22d788d96ad2431daad2ca14c494adf3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1921-02-04,1921-03-04,https://shakespeareandco.princeton.edu/members/mr-wright/,Mr. Wright,"Wright, Mr.",8.00,,1 month,28,1,,1921-02-04,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1921-02-04,1921-02-17,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/shaw-cashel-byrons-profession/,Cashel Byron's Profession,,"Shaw, George Bernard",1886,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/e2%2F35%2F9d%2Fe2359da0c4fc4152ba222f6e2c27e8ec%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-02-05,1921-02-12,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/wilde-salome/,SalomΓ©,,"Wilde, Oscar",1891,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/89%2F8b%2F8d%2F898b8d1f0e0f4accaef691dc7f9316ab%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1921-02-06,1921-05-06,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",16.00,,3 months,89,1,,1921-02-06,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,;https://iiif-cloud.princeton.edu/iiif/2/c6%2Fce%2F05%2Fc6ce05bd7e84464182eab837a191d953%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-02-06,1921-02-09,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/wassermann-worlds-illusion/,The World's Illusion,,"Wassermann, Jakob",1920,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/c6%2Fce%2F05%2Fc6ce05bd7e84464182eab837a191d953%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-02-07,1921-02-15,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/shaw-misalliance/,Misalliance,,"Shaw, George Bernard",1919,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/c3%2F68%2F10%2Fc36810021f8f4b3698cee423d89e7bcc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Supplement,1921-02-07,1921-04-14,https://shakespeareandco.princeton.edu/members/racloz/,Mlle Racloz,"Racloz, Mlle",6.00,,"2 months, 7 days",66,2,,1921-02-07,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1921-02-09,1921-02-11,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/margaret-fuller/,Margaret Fuller,,,,Unidentified. By or about Fuller.,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/c6%2Fce%2F05%2Fc6ce05bd7e84464182eab837a191d953%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1921-02-11,1921-02-11,https://shakespeareandco.princeton.edu/members/bazin/,Mlle Bazin,"Bazin, Mlle",,,,,,,,7.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1921-02-11,1921-03-19,https://shakespeareandco.princeton.edu/members/oerthel/,Maurice Oerthel,"Oerthel, Maurice",,,,,,,,,Returned,36,,,https://shakespeareandco.princeton.edu/books/waugh-loom-youth/,The Loom of Youth,,"Waugh, Alec",1917,,Lending Library Card,"Sylvia Beach, Maurice Oerthel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f1c13c8-7dbf-4473-99cb-77f8d586b0b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/08%2Fd9%2F1f%2F08d91f3ddfe8436897304e488810bec0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Crossed out,1921-02-11,,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/a-e-candle-vision/,The Candle of Vision,,Γ,1918,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/c6%2Fce%2F05%2Fc6ce05bd7e84464182eab837a191d953%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-02-11,1921-02-14,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/anderson-poor-white/,Poor White,,"Anderson, Sherwood",1920,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/c6%2Fce%2F05%2Fc6ce05bd7e84464182eab837a191d953%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-02-12,1921-02-25,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/bosanquet-religion/,What Religion Is,,"Bosanquet, Bernard",1920,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/89%2F8b%2F8d%2F898b8d1f0e0f4accaef691dc7f9316ab%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-02-12,1921-03-01,https://shakespeareandco.princeton.edu/members/zimmer/,Isabelle Zimmer,"Zimmer, Isabelle",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/galsworthy-justice/,Justice,,"Galsworthy, John",1910,,Lending Library Card,"Sylvia Beach, Isabelle Zimmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fd5a7d89-809b-4930-adc6-ac5066cd5858/manifest,https://iiif.princeton.edu/loris/figgy_prod/ad%2F11%2Fd2%2Fad11d25067a8498aa765033e79012b32%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-02-14,1921-02-21,https://shakespeareandco.princeton.edu/members/tournier/,Mlle Tournier,"Tournier, Mlle",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/jerome-diary-pilgrimage/,Diary of a Pilgrimage,,"Jerome, Jerome K.",1891,,Lending Library Card,"Sylvia Beach, Mlle Tournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3fad2988-1d91-42e9-a8de-e375c07f6b64/manifest,https://iiif.princeton.edu/loris/figgy_prod/bd%2F8c%2Fe0%2Fbd8ce0340bf4461583c5b4e466a59bb4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1921-02-14,1921-03-14,https://shakespeareandco.princeton.edu/members/kane/,Captain Kane,"Kane, Captain",8.00,7.00,1 month,28,1,,1921-02-14,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1921-02-14,1921-03-11,https://shakespeareandco.princeton.edu/members/stein-gertrude/,Gertrude Stein,"Stein, Gertrude",,,,,,,,,Returned,25,,,https://shakespeareandco.princeton.edu/books/henry-villa-elsa/,Villa Elsa,,"Henry, Stuart Oliver",1920,,Lending Library Card,"Sylvia Beach, Gertrude Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f6f307d-2eb7-4960-8dc1-9dec4ea53022/manifest,https://iiif.princeton.edu/loris/figgy_prod/4e%2F51%2F33%2F4e5133fc38ac495ba74a000ffc979d4f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-02-15,1921-02-28,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/shaw-androcles-lion/,Androcles and the Lion,,"Shaw, George Bernard",1916,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/c3%2F68%2F10%2Fc36810021f8f4b3698cee423d89e7bcc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1921-02-16,1921-02-16,https://shakespeareandco.princeton.edu/members/martin-maud/,Maud Martin,"Martin, Maud",,,,,,,,7.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1921-02-16,,https://shakespeareandco.princeton.edu/members/martin-maud/,Maud Martin,"Martin, Maud",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/george-strangers-wedding-comedy/,"The Strangers' Wedding; or, The Comedy of a Romantic",,"George, Walter Lionel",1916,,Lending Library Card,"Sylvia Beach, Maud Martin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/934c6444-6b2c-4d42-acea-282118c23e5a/manifest,https://iiif.princeton.edu/loris/figgy_prod/22%2Fd7%2F88%2F22d788d96ad2431daad2ca14c494adf3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-02-16,,https://shakespeareandco.princeton.edu/members/martin-maud/,Maud Martin,"Martin, Maud",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/walpole-captives-novel-four/,The Captives: A Novel in Four Parts,,"Walpole, Hugh",1920,,Lending Library Card,"Sylvia Beach, Maud Martin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/934c6444-6b2c-4d42-acea-282118c23e5a/manifest,https://iiif.princeton.edu/loris/figgy_prod/22%2Fd7%2F88%2F22d788d96ad2431daad2ca14c494adf3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-02-17,,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/gilman-women-economics/,Women and Economics,,"Gilman, Charlotte Perkins",1898,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/e2%2F35%2F9d%2Fe2359da0c4fc4152ba222f6e2c27e8ec%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1921-02-17,1921-03-17,https://shakespeareandco.princeton.edu/members/raousset/,Comtesse de Raousset,"de Raousset, Comtesse",12.00,14.00,1 month,28,2,,1921-02-17,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Comtesse de Raoussel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/f5895905-d630-441e-9299-4d6015cf2c48/manifest,;https://iiif.princeton.edu/loris/figgy_prod/ce%2F7d%2Fa7%2Fce7da7e317fe4a4ba4691dec9ef19980%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-02-17,1921-02-21,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/asquith-autobiography-margot-asquith/,The Autobiography of Margot Asquith,,"Asquith, Margot",1920,"Margot Asquith's autobiography was published as *An Autobiography* in 1920, and then retitled *The Autobiography of Margot Asquith* in 1921. Both versions likely circulated in the library.",Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/c6%2Fce%2F05%2Fc6ce05bd7e84464182eab837a191d953%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1921-02-17,1921-03-17,https://shakespeareandco.princeton.edu/members/jacovitz/,M. Jacovitz,"Jacovitz, M.",8.00,7.00,1 month,28,1,,1921-02-17,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1921-02-17,1921-02-28,https://shakespeareandco.princeton.edu/members/raousset/,Comtesse de Raousset,"de Raousset, Comtesse",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/conrad-victory-island-tale/,Victory: An Island Tale,,"Conrad, Joseph",1915,,Lending Library Card,"Sylvia Beach, Comtesse de Raoussel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5895905-d630-441e-9299-4d6015cf2c48/manifest,https://iiif.princeton.edu/loris/figgy_prod/ce%2F7d%2Fa7%2Fce7da7e317fe4a4ba4691dec9ef19980%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-02-17,1921-02-21,https://shakespeareandco.princeton.edu/members/raousset/,Comtesse de Raousset,"de Raousset, Comtesse",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/tagore-king-dark-chamber/,The King of the Dark Chamber,,"Tagore, Rabindranath",1910,,Lending Library Card,"Sylvia Beach, Comtesse de Raoussel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5895905-d630-441e-9299-4d6015cf2c48/manifest,https://iiif.princeton.edu/loris/figgy_prod/ce%2F7d%2Fa7%2Fce7da7e317fe4a4ba4691dec9ef19980%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1921-02-18,1921-03-18,https://shakespeareandco.princeton.edu/members/nutting/,Mr. Nutting,"Nutting, Mr.",8.00,,1 month,28,1,,1921-02-18,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1921-02-19,1921-02-19,https://shakespeareandco.princeton.edu/members/macartney/,Mr. Macartney,"Macartney, Mr.",,,,,,,,14.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1921-02-19,1921-04-09,https://shakespeareandco.princeton.edu/members/rice-matilda/,Matilda Rice,"Rice, Matilda",,,,,,,,,Returned,49,,,https://shakespeareandco.princeton.edu/books/james-letters-henry-james/,The Letters of Henry James,Vol. 1,"James, Henry",1920,,Lending Library Card,"Sylvia Beach, Matilda Rice Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ad8eeb53-ecdd-4d4d-99be-0651f54c7214/manifest,https://iiif.princeton.edu/loris/figgy_prod/c7%2F0c%2F29%2Fc70c2915a9ff4a4e888bdbb8f376becf%2Fintermediate_file.jp2/full/full/0/default.jpg
+Supplement,1921-02-19,1921-03-18,https://shakespeareandco.princeton.edu/members/oconor-1/,Mr. O'Conor,"O'Conor, Mr.",4.00,7.00,27 days,27,1,,1921-02-19,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1921-02-19,1921-05-19,https://shakespeareandco.princeton.edu/members/rice-matilda/,Matilda Rice,"Rice, Matilda",20.00,7.00,3 months,89,1,,1921-02-19,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Matilda Rice Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/ad8eeb53-ecdd-4d4d-99be-0651f54c7214/manifest,;https://iiif.princeton.edu/loris/figgy_prod/c7%2F0c%2F29%2Fc70c2915a9ff4a4e888bdbb8f376becf%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-02-21,1921-02-25,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/kaye-smith-green-apple-harvest/,Green Apple Harvest,,"Kaye-Smith, Sheila",1920,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/c6%2Fce%2F05%2Fc6ce05bd7e84464182eab837a191d953%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-02-21,1921-03-12,https://shakespeareandco.princeton.edu/members/milhaud/,Madeleine Milhaud,"Milhaud, Madeleine",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/note-books/,The Note Books,,,,"Unidentified. Samuel Butler's *The Note-Books of Samuel Butler* (1912) or Anton Chekhov's *The Note-books of Anton Tchekhov* (1921), etc.",Lending Library Card,"Sylvia Beach, Madeleine Milhaud Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/30bac701-0f7f-4f16-b790-8c7876940713/manifest,https://iiif.princeton.edu/loris/figgy_prod/7a%2F7b%2Fd1%2F7a7bd1a81c4a4f558978f622836aabf7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-02-21,1921-03-02,https://shakespeareandco.princeton.edu/members/tournier/,Mlle Tournier,"Tournier, Mlle",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/green-short-history-english/,A Short History of the English People,,"Green, John Richard",1874,,Lending Library Card,"Sylvia Beach, Mlle Tournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3fad2988-1d91-42e9-a8de-e375c07f6b64/manifest,https://iiif.princeton.edu/loris/figgy_prod/bd%2F8c%2Fe0%2Fbd8ce0340bf4461583c5b4e466a59bb4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-02-21,1921-02-28,https://shakespeareandco.princeton.edu/members/raousset/,Comtesse de Raousset,"de Raousset, Comtesse",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/asquith-autobiography-margot-asquith/,The Autobiography of Margot Asquith,,"Asquith, Margot",1920,"Margot Asquith's autobiography was published as *An Autobiography* in 1920, and then retitled *The Autobiography of Margot Asquith* in 1921. Both versions likely circulated in the library.",Lending Library Card,"Sylvia Beach, Comtesse de Raoussel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5895905-d630-441e-9299-4d6015cf2c48/manifest,https://iiif.princeton.edu/loris/figgy_prod/ce%2F7d%2Fa7%2Fce7da7e317fe4a4ba4691dec9ef19980%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1921-02-22,1921-03-22,https://shakespeareandco.princeton.edu/members/delorne/,Mlle Delorne,"Delorne, Mlle",8.00,,1 month,28,1,,1921-02-14,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1921-02-25,1921-03-04,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/lewis-main-street-story/,Main Street: The Story of Carol Kennicott,,"Lewis, Sinclair",1920,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/c6%2Fce%2F05%2Fc6ce05bd7e84464182eab837a191d953%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-02-25,1921-03-05,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/okakura-book-tea/,The Book of Tea,,"KakuzΕ, Okakura",1906,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/89%2F8b%2F8d%2F898b8d1f0e0f4accaef691dc7f9316ab%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-02-28,1921-03-17,https://shakespeareandco.princeton.edu/members/raousset/,Comtesse de Raousset,"de Raousset, Comtesse",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/conrad-western-eyes/,Under Western Eyes,,"Conrad, Joseph",1911,,Lending Library Card,"Sylvia Beach, Comtesse de Raoussel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5895905-d630-441e-9299-4d6015cf2c48/manifest,https://iiif.princeton.edu/loris/figgy_prod/ce%2F7d%2Fa7%2Fce7da7e317fe4a4ba4691dec9ef19980%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-02-28,1921-03-07,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/shaw-plays-pleasant-unpleasant/,Plays: Pleasant and Unpleasant,Vol. 1 Unpleasant Plays,"Shaw, George Bernard",1898,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2F57%2Fa7%2F2357a71e936745469bffd98fcfdfd3ac%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1921-02-28,1921-03-28,https://shakespeareandco.princeton.edu/members/bouvret/,Mlle Bouvret,"Bouvret, Mlle",12.00,14.00,1 month,28,2,,1921-02-28,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1921-02-28,1921-03-17,https://shakespeareandco.princeton.edu/members/raousset/,Comtesse de Raousset,"de Raousset, Comtesse",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/stevenson-new-arabian-nights/,New Arabian Nights,,"Stevenson, Robert Louis",1882,,Lending Library Card,"Sylvia Beach, Comtesse de Raoussel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5895905-d630-441e-9299-4d6015cf2c48/manifest,https://iiif.princeton.edu/loris/figgy_prod/ce%2F7d%2Fa7%2Fce7da7e317fe4a4ba4691dec9ef19980%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1921-03-01,1921-04-01,https://shakespeareandco.princeton.edu/members/alajouanine-maud/,Maud (Jennings) Alajouanine,"Alajouanine, Maud",12.00,,1 month,31,2,,1921-03-01,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1921-03-01,1921-03-10,https://shakespeareandco.princeton.edu/members/zimmer/,Isabelle Zimmer,"Zimmer, Isabelle",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/shakespeare-shakespeare/,Shakespeare,Vol. 2,"Shakespeare, William",,"Likely the nine-volume Cambridge Shakespeare, edited by William George Clark and William Aldis Wright. Rose Maire Parrain's lending library card mentions Wright. Isabelle Zimmer borrows volume 2, G. Violette borrows volumes 2β4, Parrain borrows volume 4, and Fernand Colens borrows volume 6.",Lending Library Card,"Sylvia Beach, Isabelle Zimmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fd5a7d89-809b-4930-adc6-ac5066cd5858/manifest,https://iiif.princeton.edu/loris/figgy_prod/ad%2F11%2Fd2%2Fad11d25067a8498aa765033e79012b32%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1921-03-01,1921-04-01,https://shakespeareandco.princeton.edu/members/rowe/,Mrs. Rowe,"Rowe, Mrs.",8.00,,1 month,31,1,,1921-03-01,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1921-03-02,1921-03-10,https://shakespeareandco.princeton.edu/members/tournier/,Mlle Tournier,"Tournier, Mlle",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/gosse-diversions-man-letters/,Some Diversions of a Man of Letters,,"Gosse, Edmund",1919,,Lending Library Card,"Sylvia Beach, Mlle Tournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3fad2988-1d91-42e9-a8de-e375c07f6b64/manifest,https://iiif.princeton.edu/loris/figgy_prod/bd%2F8c%2Fe0%2Fbd8ce0340bf4461583c5b4e466a59bb4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1921-03-04,1921-06-04,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",24.00,,3 months,92,1,,1921-03-04,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,;https://iiif-cloud.princeton.edu/iiif/2/e2%2F35%2F9d%2Fe2359da0c4fc4152ba222f6e2c27e8ec%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1921-03-04,1921-04-04,https://shakespeareandco.princeton.edu/members/mr-wright/,Mr. Wright,"Wright, Mr.",6.40,,1 month,31,1,AdL,1921-02-14,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1921-03-04,1922-03-04,https://shakespeareandco.princeton.edu/members/dutihl/,Mme Dutilh,"Dutilh, Mme",48.00,,1 year,365,1,AdL,1921-03-01,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1921-03-04,1921-04-04,https://shakespeareandco.princeton.edu/members/geary/,Mr. Geary,"Geary, Mr.",8.00,,1 month,31,1,,1921-03-04,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1921-03-04,1921-03-11,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/lodge-raymond-life-death/,Raymond or Life and Death,,"Lodge, Oliver",1916,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/c6%2Fce%2F05%2Fc6ce05bd7e84464182eab837a191d953%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-03-05,1921-03-14,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/wells-boon/,Boon,,"Wells, H. G.",1915,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/89%2F8b%2F8d%2F898b8d1f0e0f4accaef691dc7f9316ab%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-03-07,1921-03-19,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/shaw-cashel-byrons-profession/,Cashel Byron's Profession,,"Shaw, George Bernard",1886,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2F57%2Fa7%2F2357a71e936745469bffd98fcfdfd3ac%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1921-03-08,1921-04-08,https://shakespeareandco.princeton.edu/members/allison/,Mrs. Allison,"Allison, Mrs.",8.00,7.00,1 month,31,1,,1921-03-08,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1921-03-10,1921-03-15,https://shakespeareandco.princeton.edu/members/tournier/,Mlle Tournier,"Tournier, Mlle",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/beerbohm-zuleika-dobson/,Zuleika Dobson,,"Beerbohm, Max",1911,,Lending Library Card,"Sylvia Beach, Mlle Tournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3fad2988-1d91-42e9-a8de-e375c07f6b64/manifest,https://iiif.princeton.edu/loris/figgy_prod/bd%2F8c%2Fe0%2Fbd8ce0340bf4461583c5b4e466a59bb4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-03-10,1921-04-04,https://shakespeareandco.princeton.edu/members/zimmer/,Isabelle Zimmer,"Zimmer, Isabelle",,,,,,,,,Returned,25,,,https://shakespeareandco.princeton.edu/books/conrad-typhoon/,Typhoon,,"Conrad, Joseph",1902,,Lending Library Card,"Sylvia Beach, Isabelle Zimmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fd5a7d89-809b-4930-adc6-ac5066cd5858/manifest,https://iiif.princeton.edu/loris/figgy_prod/ad%2F11%2Fd2%2Fad11d25067a8498aa765033e79012b32%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-03-11,1921-03-14,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/dell-moon-calf/,Moon-Calf,,"Dell, Floyd",1920,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/c6%2Fce%2F05%2Fc6ce05bd7e84464182eab837a191d953%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-03-11,1921-03-22,https://shakespeareandco.princeton.edu/members/stein-gertrude/,Gertrude Stein,"Stein, Gertrude",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/grey-rainbow-trail-romance/,The Rainbow Trail: A Romance,,"Grey, Zane",1915,,Lending Library Card,"Sylvia Beach, Gertrude Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f6f307d-2eb7-4960-8dc1-9dec4ea53022/manifest,https://iiif.princeton.edu/loris/figgy_prod/4e%2F51%2F33%2F4e5133fc38ac495ba74a000ffc979d4f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1921-03-11,1921-04-11,https://shakespeareandco.princeton.edu/members/briens/,M. Briens,"Briens, M.",8.00,7.00,1 month,31,1,,1921-03-11,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1921-03-11,1921-05-27,https://shakespeareandco.princeton.edu/members/stein-gertrude/,Gertrude Stein,"Stein, Gertrude",,,,,,,,,Returned,77,,,https://shakespeareandco.princeton.edu/books/dell-hundredth-chance/,The Hundredth Chance,,"Dell, Ethel M.",1917,,Lending Library Card,"Sylvia Beach, Gertrude Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f6f307d-2eb7-4960-8dc1-9dec4ea53022/manifest,https://iiif.princeton.edu/loris/figgy_prod/4e%2F51%2F33%2F4e5133fc38ac495ba74a000ffc979d4f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1921-03-12,1922-03-12,https://shakespeareandco.princeton.edu/members/le-verrier-2/,M. Le Verrier,"Le Verrier, M.",48.00,,1 year,365,1,,1921-03-12,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1921-03-12,1921-03-31,https://shakespeareandco.princeton.edu/members/milhaud/,Madeleine Milhaud,"Milhaud, Madeleine",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/hardy-trumpet-major/,The Trumpet-Major,,"Hardy, Thomas",1880,,Lending Library Card,"Sylvia Beach, Madeleine Milhaud Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/30bac701-0f7f-4f16-b790-8c7876940713/manifest,https://iiif.princeton.edu/loris/figgy_prod/7a%2F7b%2Fd1%2F7a7bd1a81c4a4f558978f622836aabf7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-03-14,1921-03-22,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/hardy-lifes-little-ironies/,"Life's Little Ironies: A Set of Tales, with Some Colloquial Sketches, Entitled, A Few Crusted Characters",,"Hardy, Thomas",1894,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/89%2F8b%2F8d%2F898b8d1f0e0f4accaef691dc7f9316ab%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-03-14,1921-03,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/anderson-winesburg-ohio-group/,Winesburg Ohio: A Group of Tales of Ohio Small Town Life,,"Anderson, Sherwood",1919,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/c6%2Fce%2F05%2Fc6ce05bd7e84464182eab837a191d953%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-03-15,1921-04-11,https://shakespeareandco.princeton.edu/members/tournier/,Mlle Tournier,"Tournier, Mlle",,,,,,,,,Returned,27,,,https://shakespeareandco.princeton.edu/books/london-strength-strong/,The Strength of the Strong,,"London, Jack",1911,,Lending Library Card,"Sylvia Beach, Mlle Tournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3fad2988-1d91-42e9-a8de-e375c07f6b64/manifest,https://iiif.princeton.edu/loris/figgy_prod/47%2Feb%2Fdf%2F47ebdf229917468c9a578b520539d59f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1921-03-15,1921-04-15,https://shakespeareandco.princeton.edu/members/unnamed-member-3/,[unnamed member],[unnamed member],8.00,,1 month,31,1,,1921-03-15,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1921-03-17,1921-04-17,https://shakespeareandco.princeton.edu/members/raousset/,Comtesse de Raousset,"de Raousset, Comtesse",8.00,,1 month,31,1,,1921-03-17,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Comtesse de Raoussel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/f5895905-d630-441e-9299-4d6015cf2c48/manifest,;https://iiif.princeton.edu/loris/figgy_prod/ce%2F7d%2Fa7%2Fce7da7e317fe4a4ba4691dec9ef19980%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-03-17,1921-03-21,https://shakespeareandco.princeton.edu/members/raousset/,Comtesse de Raousset,"de Raousset, Comtesse",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/galsworthy-saints-progress/,Saint's Progress,,"Galsworthy, John",1919,,Lending Library Card,"Sylvia Beach, Comtesse de Raoussel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5895905-d630-441e-9299-4d6015cf2c48/manifest,https://iiif.princeton.edu/loris/figgy_prod/ce%2F7d%2Fa7%2Fce7da7e317fe4a4ba4691dec9ef19980%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-03-19,1921-04-02,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/butler-way-flesh/,The Way of All Flesh,,"Butler, Samuel",1903,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2F57%2Fa7%2F2357a71e936745469bffd98fcfdfd3ac%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-03-19,1921-05-03,https://shakespeareandco.princeton.edu/members/milhaud/,Madeleine Milhaud,"Milhaud, Madeleine",,,,,,,,,Returned,45,,,https://shakespeareandco.princeton.edu/books/conrad-nigger-narcissus/,The Nigger of the Narcissus,,"Conrad, Joseph",1897,,Lending Library Card,"Sylvia Beach, Madeleine Milhaud Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/30bac701-0f7f-4f16-b790-8c7876940713/manifest,https://iiif.princeton.edu/loris/figgy_prod/7a%2F7b%2Fd1%2F7a7bd1a81c4a4f558978f622836aabf7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-03-19,1921-04-25,https://shakespeareandco.princeton.edu/members/oerthel/,Maurice Oerthel,"Oerthel, Maurice",,,,,,,,,Returned,37,,,https://shakespeareandco.princeton.edu/books/lodge-raymond-life-death/,Raymond or Life and Death,,"Lodge, Oliver",1916,,Lending Library Card,"Sylvia Beach, Maurice Oerthel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f1c13c8-7dbf-4473-99cb-77f8d586b0b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/08%2Fd9%2F1f%2F08d91f3ddfe8436897304e488810bec0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-03-19,1921-03,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/hergesheimer-gold-iron/,Gold and Iron,,"Hergesheimer, Joseph",1918,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/75%2F5c%2F43%2F755c43399f914580beaeba71ebbbe454%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1921-03-21,1921-06-21,https://shakespeareandco.princeton.edu/members/milhaud/,Madeleine Milhaud,"Milhaud, Madeleine",16.00,,3 months,92,1,,1921-05-20,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Madeleine Milhaud Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/30bac701-0f7f-4f16-b790-8c7876940713/manifest,;https://iiif.princeton.edu/loris/figgy_prod/7a%2F7b%2Fd1%2F7a7bd1a81c4a4f558978f622836aabf7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1921-03-22,1921-04-22,https://shakespeareandco.princeton.edu/members/delorne/,Mlle Delorne,"Delorne, Mlle",8.00,,1 month,31,1,,1921-03-08,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1921-03-22,1921-03-31,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/frankau-one-us-novel/,One of Us: A Novel in Verse,,"Frankau, Gilbert",1912,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/89%2F8b%2F8d%2F898b8d1f0e0f4accaef691dc7f9316ab%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-03-23,,https://shakespeareandco.princeton.edu/members/schereck/,Mildred Schereck,"Schereck, Mildred",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/shaw-plays-pleasant-unpleasant/,Plays: Pleasant and Unpleasant,Vol. 1 Unpleasant Plays,"Shaw, George Bernard",1898,,Lending Library Card,"Sylvia Beach, Mildred Schereck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3b15ea0c-ed8d-4b41-80f3-33485620b12c/manifest,https://iiif-cloud.princeton.edu/iiif/2/99%2F38%2Fff%2F9938ff01ec0842f2b00c74f04db2e46f%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1921-03-23,1921-06-23,https://shakespeareandco.princeton.edu/members/flecker/,Mrs. Flecker,"Flecker, Mrs.",16.00,,3 months,92,1,,1921-03-18,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1921-03-23,1921-09-23,https://shakespeareandco.princeton.edu/members/schereck/,Mildred Schereck,"Schereck, Mildred",28.00,,6 months,184,1,,1921-03-23,,,,,FRF,,,,,,,Lending Library Card;Logbook,"Sylvia Beach, Mildred Schereck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",https://figgy.princeton.edu/concern/scanned_resources/3b15ea0c-ed8d-4b41-80f3-33485620b12c/manifest;,https://iiif-cloud.princeton.edu/iiif/2/99%2F38%2Fff%2F9938ff01ec0842f2b00c74f04db2e46f%2Fintermediate_file/full/full/0/default.jpg;
+Subscription,1921-03-24,1921-06-24,https://shakespeareandco.princeton.edu/members/ciolkowska/,Muriel Ciolkowska,"Ciolkowska, Muriel",30.00,,3 months,92,,,1921-03-24,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1921-03-24,1921-03-24,https://shakespeareandco.princeton.edu/members/bouvret/,Mlle Bouvret,"Bouvret, Mlle",,,,,,,,14.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1921-03-24,1921-03-24,https://shakespeareandco.princeton.edu/members/frantz/,M. Frantz,"Frantz, M.",,,,,,,,7.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1921-03-24,1921-04-24,https://shakespeareandco.princeton.edu/members/collette/,M. Collette,"Collette, M.",8.00,7.00,1 month,31,1,,1921-03-24,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1921-03-26,1921-03-31,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/stevenson-familiar-studies-men/,Familiar Studies of Men and Books,,"Stevenson, Robert Louis",1882,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/75%2F5c%2F43%2F755c43399f914580beaeba71ebbbe454%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1921-03-26,1921-04-26,https://shakespeareandco.princeton.edu/members/ameuille/,Pierre Ameuille,"Ameuille, Pierre",8.00,7.00,1 month,31,1,,1921-03-26,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1921-03-26,1921-03-31,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/dane-regiment-women/,Regiment of Women,,"Dane, Clemence",1917,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/75%2F5c%2F43%2F755c43399f914580beaeba71ebbbe454%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1921-03-29,1921-06-29,https://shakespeareandco.princeton.edu/members/benet-stephen-vincent/,Stephen Vincent BenΓ©t,"BenΓ©t, Stephen Vincent",30.00,,3 months,92,2,,1921-03-21,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1921-03-31,1921-04-30,https://shakespeareandco.princeton.edu/members/marsland/,Harriet Marsland,"Marsland, Harriet",8.00,,1 month,30,1,,1921-03-31,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Harriet Marsland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/34833978-1579-4eb9-a196-73e566a04a2c/manifest,;https://iiif.princeton.edu/loris/figgy_prod/32%2Fcb%2F39%2F32cb39c19f4f48e09c6db222776952e1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-03-31,1921-04-18,https://shakespeareandco.princeton.edu/members/raousset/,Comtesse de Raousset,"de Raousset, Comtesse",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/hearn-japan-attempt-interpretation/,Japan: An Attempt at Interpretation,,"Hearn, Lafcadio",1904,,Lending Library Card,"Sylvia Beach, Comtesse de Raoussel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5895905-d630-441e-9299-4d6015cf2c48/manifest,https://iiif.princeton.edu/loris/figgy_prod/ce%2F7d%2Fa7%2Fce7da7e317fe4a4ba4691dec9ef19980%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1921-03-31,1921-03-31,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/stevenson-vailima-letters-correspondence/,Vailima Letters: Correspondence Addressed by Robert Louis Stevenson to Sidney Colvin,,"Stevenson, Robert Louis",1895,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/75%2F5c%2F43%2F755c43399f914580beaeba71ebbbe454%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-03-31,1921-04-07,https://shakespeareandco.princeton.edu/members/marsland/,Harriet Marsland,"Marsland, Harriet",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/frank-america/,Our America,,"Frank, Waldo",1919,,Lending Library Card,"Sylvia Beach, Harriet Marsland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/34833978-1579-4eb9-a196-73e566a04a2c/manifest,https://iiif.princeton.edu/loris/figgy_prod/32%2Fcb%2F39%2F32cb39c19f4f48e09c6db222776952e1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-03-31,1921-04-16,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/gosse-french-profiles/,French Profiles,,"Gosse, Edmund",1905,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/89%2F8b%2F8d%2F898b8d1f0e0f4accaef691dc7f9316ab%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1921-04-01,1921-07-01,https://shakespeareandco.princeton.edu/members/linossier-raymonde/,Raymonde Linossier,"Linossier, Raymonde",16.00,,3 months,91,1,,1921-04-04,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Raymonde Linossier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/53ede5bf-939d-44f5-9ddb-4dd39363bd20/manifest,;https://iiif.princeton.edu/loris/figgy_prod/00%2F34%2F2f%2F00342f6fa20c49eb905cc64a929bc405%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1921-04-01,1921-05-01,https://shakespeareandco.princeton.edu/members/rowe/,Mrs. Rowe,"Rowe, Mrs.",8.00,,1 month,30,1,,1921-04-01,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1921-04-02,1921-10-02,https://shakespeareandco.princeton.edu/members/boylan/,Miss Boylan,"Boylan, Miss",35.00,7.00,6 months,183,1,,1921-04-02,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1921-04-02,1921-04-12,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/note-books/,The Note Books,,,,"Unidentified. Samuel Butler's *The Note-Books of Samuel Butler* (1912) or Anton Chekhov's *The Note-books of Anton Tchekhov* (1921), etc.",Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2F57%2Fa7%2F2357a71e936745469bffd98fcfdfd3ac%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1921-04-02,1921-05-02,https://shakespeareandco.princeton.edu/members/fabre-luce/,Mlle Fabre-Luce,"Fabre-Luce, Mlle",12.00,,1 month,30,2,,1921-03-24,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1921-04-04,1921-04-07,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/stevenson-across-plains/,Across the Plains,,"Stevenson, Robert Louis",1892,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/75%2F5c%2F43%2F755c43399f914580beaeba71ebbbe454%2Fintermediate_file/full/full/0/default.jpg
+Supplement,1921-04-04,1921-07-10,https://shakespeareandco.princeton.edu/members/edwards/,Miss Edwards,"Edwards, Miss",5.00,,"3 months, 6 days",97,1,,1921-04-04,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1921-04-04,,https://shakespeareandco.princeton.edu/members/linossier-raymonde/,Raymonde Linossier,"Linossier, Raymonde",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/oppenheim-hillman/,The Hillman,,"Oppenheim, E. Phillips",1917,,Lending Library Card,"Sylvia Beach, Raymonde Linossier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/53ede5bf-939d-44f5-9ddb-4dd39363bd20/manifest,https://iiif.princeton.edu/loris/figgy_prod/00%2F34%2F2f%2F00342f6fa20c49eb905cc64a929bc405%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-04-04,1921-04-18,https://shakespeareandco.princeton.edu/members/zimmer/,Isabelle Zimmer,"Zimmer, Isabelle",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/barrie-admirable-crichton/,The Admirable Crichton,,"Barrie, J. M.",1902,,Lending Library Card,"Sylvia Beach, Isabelle Zimmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fd5a7d89-809b-4930-adc6-ac5066cd5858/manifest,https://iiif.princeton.edu/loris/figgy_prod/ad%2F11%2Fd2%2Fad11d25067a8498aa765033e79012b32%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1921-04-06,1921-07-06,https://shakespeareandco.princeton.edu/members/gilliam/,Miss Gilliam,"Gilliam, Miss",20.00,7.00,3 months,91,1,,1921-04-06,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1921-04-07,1921-04-08,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/abercrombie-thomas-hardy-critical/,Thomas Hardy: A Critical Study,,"Abercrombie, Lascelles",1912,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/75%2F5c%2F43%2F755c43399f914580beaeba71ebbbe454%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1921-04-07,1921-07-07,https://shakespeareandco.princeton.edu/members/cavadia/,Mme Cavadia,"Cavadia, Mme",30.00,14.00,3 months,91,2,,1921-04-07,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1921-04-07,1921-05-07,https://shakespeareandco.princeton.edu/members/m-guillemin/;https://shakespeareandco.princeton.edu/members/guillemin-2/,Guillemin;M. Guillemin,"Guillemin;Guillemin, M.",12.00,14.00,1 month,30,2,,1921-04-07,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1921-04-07,1921-05-07,https://shakespeareandco.princeton.edu/members/allary/,M. Allary,"Allary, M.",12.00,14.00,1 month,30,2,,1921-04-07,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1921-04-07,1921-04-15,https://shakespeareandco.princeton.edu/members/marsland/,Harriet Marsland,"Marsland, Harriet",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/lawrence-lost-girl/,The Lost Girl,,"Lawrence, D. H.",1920,,Lending Library Card,"Sylvia Beach, Harriet Marsland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/34833978-1579-4eb9-a196-73e566a04a2c/manifest,https://iiif.princeton.edu/loris/figgy_prod/32%2Fcb%2F39%2F32cb39c19f4f48e09c6db222776952e1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-04-07,1921-04-08,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/child-thomas-hardy/,Thomas Hardy,,"Child, Harold",1916,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/75%2F5c%2F43%2F755c43399f914580beaeba71ebbbe454%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1921-04-08,1921-06-08,https://shakespeareandco.princeton.edu/members/leblond/,Mme Leblond,"Leblond, Mme",16.00,,2 months,61,1,,1921-04-08,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Crossed out,1921-04-08,,https://shakespeareandco.princeton.edu/members/linossier-raymonde/,Raymonde Linossier,"Linossier, Raymonde",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/kipling-kim/,Kim,,"Kipling, Rudyard",1901,,Lending Library Card,"Sylvia Beach, Raymonde Linossier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/53ede5bf-939d-44f5-9ddb-4dd39363bd20/manifest,https://iiif.princeton.edu/loris/figgy_prod/00%2F34%2F2f%2F00342f6fa20c49eb905cc64a929bc405%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-04-08,1921-04-13,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/cannan-time-eternity-tale/,Time and Eternity: A Tale Of Three Exiles,,"Cannan, Gilbert",1919,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/75%2F5c%2F43%2F755c43399f914580beaeba71ebbbe454%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-04-09,1921-04-28,https://shakespeareandco.princeton.edu/members/rice-matilda/,Matilda Rice,"Rice, Matilda",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/james-princess-casamassima/,The Princess Casamassima,,"James, Henry",1886,,Lending Library Card,"Sylvia Beach, Matilda Rice Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ad8eeb53-ecdd-4d4d-99be-0651f54c7214/manifest,https://iiif.princeton.edu/loris/figgy_prod/c7%2F0c%2F29%2Fc70c2915a9ff4a4e888bdbb8f376becf%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-04-11,1921-04-15,https://shakespeareandco.princeton.edu/members/tournier/,Mlle Tournier,"Tournier, Mlle",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/jerome-tommy-co/,Tommy and Co.,,"Jerome, Jerome K.",1904,,Lending Library Card,"Sylvia Beach, Mlle Tournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3fad2988-1d91-42e9-a8de-e375c07f6b64/manifest,https://iiif.princeton.edu/loris/figgy_prod/47%2Feb%2Fdf%2F47ebdf229917468c9a578b520539d59f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-04-12,1921-04-28,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/butler-erewhon/,Erewhon,,"Butler, Samuel",1872,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2F57%2Fa7%2F2357a71e936745469bffd98fcfdfd3ac%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-04-13,1921-04-18,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/stevenson-virginibus-puerisque-papers/,Virginibus Puerisque and Other Papers,,"Stevenson, Robert Louis",1881,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/75%2F5c%2F43%2F755c43399f914580beaeba71ebbbe454%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-04-13,1921-04-18,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/richardson-pointed-roofs/,Pointed Roofs (Pilgrimage 1),,"Richardson, Dorothy M.",1915,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/75%2F5c%2F43%2F755c43399f914580beaeba71ebbbe454%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-04-13,1921-05-03,https://shakespeareandco.princeton.edu/members/tournier/,Mlle Tournier,"Tournier, Mlle",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/essays-lectures/,Essays and Lectures,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Mlle Tournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3fad2988-1d91-42e9-a8de-e375c07f6b64/manifest,https://iiif.princeton.edu/loris/figgy_prod/47%2Feb%2Fdf%2F47ebdf229917468c9a578b520539d59f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-04-15,1921-04-23,https://shakespeareandco.princeton.edu/members/marsland/,Harriet Marsland,"Marsland, Harriet",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/thayer-dial/,The Dial,,,,,Lending Library Card,"Sylvia Beach, Harriet Marsland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/34833978-1579-4eb9-a196-73e566a04a2c/manifest,https://iiif.princeton.edu/loris/figgy_prod/32%2Fcb%2F39%2F32cb39c19f4f48e09c6db222776952e1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-04-15,1921-04-23,https://shakespeareandco.princeton.edu/members/marsland/,Harriet Marsland,"Marsland, Harriet",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/pater-greek-studies-series/,Greek Studies: A Series of Essays,,"Pater, Walter",1895,,Lending Library Card,"Sylvia Beach, Harriet Marsland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/34833978-1579-4eb9-a196-73e566a04a2c/manifest,https://iiif.princeton.edu/loris/figgy_prod/32%2Fcb%2F39%2F32cb39c19f4f48e09c6db222776952e1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1921-04-15,1922-04-15,https://shakespeareandco.princeton.edu/members/lorach/,Mme Lorach,"Lorach, Mme",60.00,7.00,1 year,365,1,,1921-04-15,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1921-04-16,1921-04-18,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/ade-fables-slang/,Fables in Slang,,"Ade, George",1899,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/89%2F8b%2F8d%2F898b8d1f0e0f4accaef691dc7f9316ab%2Fintermediate_file/full/full/0/default.jpg
+Supplement,1921-04-16,1921-05-07,https://shakespeareandco.princeton.edu/members/milward-2/,Mr. Milward,"Milward, Mr.",4.00,,3 weeks,21,3,,1921-04-16,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1921-04-16,1921-07-16,https://shakespeareandco.princeton.edu/members/fernandez/,Mr. Fernandez,"Fernandez, Mr.",20.00,,3 months,91,1,,1921-04-16,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Supplement,1921-04-18,1921-04-22,https://shakespeareandco.princeton.edu/members/ramoz/,Blas Ramoz,"Ramoz, Blas",1.80,,4 days,4,1,,1921-04-18,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1921-04-18,1921-04-20,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/richardson-honeycomb-pilgrimage-3/,Honeycomb (Pilgrimage 3),,"Richardson, Dorothy M.",1917,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/75%2F5c%2F43%2F755c43399f914580beaeba71ebbbe454%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-04-18,1921-04-30,https://shakespeareandco.princeton.edu/members/zimmer/,Isabelle Zimmer,"Zimmer, Isabelle",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/crescent-moon/,The Crescent Moon,,,,"Unidentified. Henry Mather Warren's *The Crescent Moon and Other Poems* (1911), Rabindranath Tagore's *The Crescent Moon: Child-Poems* (1914), or Francis Brett Young's *The Crescent Moon* (1919), etc.",Lending Library Card,"Sylvia Beach, Isabelle Zimmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fd5a7d89-809b-4930-adc6-ac5066cd5858/manifest,https://iiif.princeton.edu/loris/figgy_prod/ad%2F11%2Fd2%2Fad11d25067a8498aa765033e79012b32%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-04-18,1921-04-21,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/joyce-dubliners/,Dubliners,,"Joyce, James",1914,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/ee%2F0d%2F97%2Fee0d979bfbd14ec5a3b5b6eb397cd5de%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1921-04-19,1921-07-19,https://shakespeareandco.princeton.edu/members/amouroux/,Mlle Amouroux / Lamouroux,"Amouroux, Mlle",16.00,,3 months,91,1,,1921-04-19,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1921-04-20,1921-04-29,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/thayer-dial/,The Dial,,,,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2F57%2Fa7%2F2357a71e936745469bffd98fcfdfd3ac%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-04-20,1921-04-23,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/hudson-green-mansions-romance/,Green Mansions: A Romance of the Tropical Forest,,"Hudson, W. H.",1904,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/75%2F5c%2F43%2F755c43399f914580beaeba71ebbbe454%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1921-04-21,1921-05-21,https://shakespeareandco.princeton.edu/members/oconor-1/,Mr. O'Conor,"O'Conor, Mr.",12.00,,1 month,30,2,,1921-04-19,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1921-04-21,1921-04-28,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/whistler-gentle-art-making/,The Gentle Art of Making Enemies,,"Whistler, James McNeill",1890,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/ee%2F0d%2F97%2Fee0d979bfbd14ec5a3b5b6eb397cd5de%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-04-22,1921-05-10,https://shakespeareandco.princeton.edu/members/schereck/,Mildred Schereck,"Schereck, Mildred",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/shaw-doctors-dilemma/,The Doctor's Dilemma,,"Shaw, George Bernard",1911,,Lending Library Card,"Sylvia Beach, Mildred Schereck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3b15ea0c-ed8d-4b41-80f3-33485620b12c/manifest,https://iiif-cloud.princeton.edu/iiif/2/99%2F38%2Fff%2F9938ff01ec0842f2b00c74f04db2e46f%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1921-04-22,1921-05-22,https://shakespeareandco.princeton.edu/members/delorne/,Mlle Delorne,"Delorne, Mlle",8.00,,1 month,30,1,,1921-04-18,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Supplement,1921-04-22,1921-07-16,https://shakespeareandco.princeton.edu/members/fernandez/,Mr. Fernandez,"Fernandez, Mr.",10.00,,"2 months, 24 days",85,2,,1921-04-22,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1921-04-23,1921-04-28,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/richardson-deadlock-pilgrimage-6/,Deadlock (Pilgrimage 6),,"Richardson, Dorothy M.",1921,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/75%2F5c%2F43%2F755c43399f914580beaeba71ebbbe454%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-04-23,1921-05-13,https://shakespeareandco.princeton.edu/members/marsland/,Harriet Marsland,"Marsland, Harriet",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/hudson-crystal-age/,A Crystal Age,,"Hudson, W. H.",1887,,Lending Library Card,"Sylvia Beach, Harriet Marsland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/34833978-1579-4eb9-a196-73e566a04a2c/manifest,https://iiif.princeton.edu/loris/figgy_prod/32%2Fcb%2F39%2F32cb39c19f4f48e09c6db222776952e1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1921-04-23,1921-05-23,https://shakespeareandco.princeton.edu/members/berton/,Eugene Berton,"Berton, Eugene",12.00,14.00,1 month,30,2,,1921-04-23,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1921-04-23,1921-10-23,https://shakespeareandco.princeton.edu/members/kershaw/,Mr. Kershaw,"Kershaw, Mr.",35.00,7.00,6 months,183,1,,1921-04-23,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1921-04-24,1921-07-24,https://shakespeareandco.princeton.edu/members/collette/,M. Collette,"Collette, M.",20.00,,3 months,91,1,,1921-04-21,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1921-04-25,1921-05-25,https://shakespeareandco.princeton.edu/members/byrne/,Miss Byrne,"Byrne, Miss",8.00,7.00,1 month,30,1,,1921-04-25,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1921-04-28,1921-06-28,https://shakespeareandco.princeton.edu/members/weyl/,Mr. Weyl,"Weyl, Mr.",16.00,,2 months,61,1,,1921-04-25,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1921-04-28,1921-04-30,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/bennett-public-wants/,What the Public Wants,,"Bennett, Arnold",1911,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/ee%2F0d%2F97%2Fee0d979bfbd14ec5a3b5b6eb397cd5de%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-04-28,1921-05-14,https://shakespeareandco.princeton.edu/members/rice-matilda/,Matilda Rice,"Rice, Matilda",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/joyce-dubliners/,Dubliners,,"Joyce, James",1914,,Lending Library Card,"Sylvia Beach, Matilda Rice Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ad8eeb53-ecdd-4d4d-99be-0651f54c7214/manifest,https://iiif.princeton.edu/loris/figgy_prod/c7%2F0c%2F29%2Fc70c2915a9ff4a4e888bdbb8f376becf%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-04-28,1921-04-30,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/a-e-imaginations-reveries/,Imaginations and Reveries,,Γ,1915,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/75%2F5c%2F43%2F755c43399f914580beaeba71ebbbe454%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1921-04-28,1921-04-28,https://shakespeareandco.princeton.edu/members/m-guillemin/;https://shakespeareandco.princeton.edu/members/guillemin-2/,Guillemin;M. Guillemin,"Guillemin;Guillemin, M.",,,,,,,,14.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1921-04-28,1921-05-28,https://shakespeareandco.princeton.edu/members/attwater/,Winifred Atwater,"Atwater, Winifred",8.00,,1 month,30,1,,1921-04-28,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1921-04-29,1921-05-11,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/joyce-dubliners/,Dubliners,,"Joyce, James",1914,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2F57%2Fa7%2F2357a71e936745469bffd98fcfdfd3ac%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-04-30,1921-05-02,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/hergesheimer-gold-iron/,Gold and Iron,,"Hergesheimer, Joseph",1918,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/ee%2F0d%2F97%2Fee0d979bfbd14ec5a3b5b6eb397cd5de%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-04-30,,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/nogami-japanese-noh-plays/,Japanese Noh Plays: How to See Them,,"Nogami, ToyoichiroΜ",,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/75%2F5c%2F43%2F755c43399f914580beaeba71ebbbe454%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1921-04-30,1921-05-30,https://shakespeareandco.princeton.edu/members/kertonne/,M. KertonnΓ©,"KertonnΓ©, M.",8.00,7.00,1 month,30,1,,1921-04-30,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1921-04-30,1921-05-30,https://shakespeareandco.princeton.edu/members/marsland/,Harriet Marsland,"Marsland, Harriet",8.00,,1 month,30,1,,1921-05-13,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Harriet Marsland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/34833978-1579-4eb9-a196-73e566a04a2c/manifest,;https://iiif.princeton.edu/loris/figgy_prod/32%2Fcb%2F39%2F32cb39c19f4f48e09c6db222776952e1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-04-30,1921-06-10,https://shakespeareandco.princeton.edu/members/zimmer/,Isabelle Zimmer,"Zimmer, Isabelle",,,,,,,,,Returned,41,,,https://shakespeareandco.princeton.edu/books/kipling-kim/,Kim,,"Kipling, Rudyard",1901,,Lending Library Card,"Sylvia Beach, Isabelle Zimmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fd5a7d89-809b-4930-adc6-ac5066cd5858/manifest,https://iiif.princeton.edu/loris/figgy_prod/ad%2F11%2Fd2%2Fad11d25067a8498aa765033e79012b32%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1921-05-02,1921-06-02,https://shakespeareandco.princeton.edu/members/geary/,Mr. Geary,"Geary, Mr.",8.00,,1 month,31,1,,1921-05-02,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1921-05-02,,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/unclear-2/,In [unclear],,,,Unidentified. Handwriting unclear.,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/ee%2F0d%2F97%2Fee0d979bfbd14ec5a3b5b6eb397cd5de%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-05-03,1921-07-29,https://shakespeareandco.princeton.edu/members/milhaud/,Madeleine Milhaud,"Milhaud, Madeleine",,,,,,,,,Returned,87,,,https://shakespeareandco.princeton.edu/books/london-burning-daylight/,Burning Daylight,,"London, Jack",1913,,Lending Library Card,"Sylvia Beach, Madeleine Milhaud Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/30bac701-0f7f-4f16-b790-8c7876940713/manifest,https://iiif.princeton.edu/loris/figgy_prod/7a%2F7b%2Fd1%2F7a7bd1a81c4a4f558978f622836aabf7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-05-03,1921-07-29,https://shakespeareandco.princeton.edu/members/milhaud/,Madeleine Milhaud,"Milhaud, Madeleine",,,,,,,,,Returned,87,,,https://shakespeareandco.princeton.edu/books/hardy-jude-obscure/,Jude the Obscure,,"Hardy, Thomas",1895,,Lending Library Card,"Sylvia Beach, Madeleine Milhaud Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/30bac701-0f7f-4f16-b790-8c7876940713/manifest,https://iiif.princeton.edu/loris/figgy_prod/7a%2F7b%2Fd1%2F7a7bd1a81c4a4f558978f622836aabf7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-05-03,1921-05-19,https://shakespeareandco.princeton.edu/members/tournier/,Mlle Tournier,"Tournier, Mlle",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/wilde-critic-pall-mall/,A Critic in Pall Mall,,"Wilde, Oscar",1919,,Lending Library Card,"Sylvia Beach, Mlle Tournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3fad2988-1d91-42e9-a8de-e375c07f6b64/manifest,https://iiif.princeton.edu/loris/figgy_prod/47%2Feb%2Fdf%2F47ebdf229917468c9a578b520539d59f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1921-05-04,1921-06-04,https://shakespeareandco.princeton.edu/members/fabre-luce/,Mlle Fabre-Luce,"Fabre-Luce, Mlle",12.00,,1 month,31,2,,1921-04-12,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1921-05-06,1921-05-06,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,7.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1921-05-06,1921-05-28,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/dreiser-sister-carrie/,Sister Carrie,,"Dreiser, Theodore",1900,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/a3%2F06%2F38%2Fa30638d93f964372ac35745c0f99c8f3%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1921-05-09,1921-06-09,https://shakespeareandco.princeton.edu/members/bauer/,Miss Bauer,"Bauer, Miss",8.00,7.00,1 month,31,1,,1921-05-09,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1921-05-10,1921-05-14,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/eliot-sacred-wood-essays/,The Sacred Wood: Essays on Poetry and Criticism,,"Eliot, T. S.",1920,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/94%2F45%2F1b%2F94451bbd9c1046daab6b51d85a4ca313%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-05-10,1921-05-19,https://shakespeareandco.princeton.edu/members/schereck/,Mildred Schereck,"Schereck, Mildred",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/wyllarde-unofficial-honeymoon/,The Unofficial Honeymoon,,"Wyllarde, Dolf",1911,,Lending Library Card,"Sylvia Beach, Mildred Schereck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3b15ea0c-ed8d-4b41-80f3-33485620b12c/manifest,https://iiif-cloud.princeton.edu/iiif/2/99%2F38%2Fff%2F9938ff01ec0842f2b00c74f04db2e46f%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1921-05-10,1921-07-10,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",16.00,,2 months,61,1,,1921-05-10,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,;https://iiif.princeton.edu/loris/figgy_prod/94%2F45%2F1b%2F94451bbd9c1046daab6b51d85a4ca313%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-05-10,1921-05-14,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/de-lanux-young-france-new/,Young France and New America,,"de Lanux, Pierre",1917,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/94%2F45%2F1b%2F94451bbd9c1046daab6b51d85a4ca313%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-05-11,1921-05,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/joyce-portrait-artist-young/,A Portrait of the Artist as a Young Man,,"Joyce, James",1916,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2F57%2Fa7%2F2357a71e936745469bffd98fcfdfd3ac%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1921-05-12,1921-05-12,https://shakespeareandco.princeton.edu/members/mora/,Mlle de Mora,"Mora, Mlle de",,,,,,,,7.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1921-05-13,1921-06-13,https://shakespeareandco.princeton.edu/members/atkinson/,Mary Atkinson,"Atkinson, Mary",12.00,14.00,1 month,31,2,,1921-05-13,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1921-05-14,1921-06-02,https://shakespeareandco.princeton.edu/members/rice-matilda/,Matilda Rice,"Rice, Matilda",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/hudson-crystal-age/,A Crystal Age,,"Hudson, W. H.",1887,,Lending Library Card,"Sylvia Beach, Matilda Rice Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ad8eeb53-ecdd-4d4d-99be-0651f54c7214/manifest,https://iiif.princeton.edu/loris/figgy_prod/c7%2F0c%2F29%2Fc70c2915a9ff4a4e888bdbb8f376becf%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-05-14,1921-05-16,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/bennett-married-life/,Married Life,,"Bennett, Arnold",1919,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/7b%2F6e%2Ff2%2F7b6ef2acc8ca4328b1721c5be9e7e435%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-05-16,1921-05,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/asquith-autobiography-margot-asquith/,The Autobiography of Margot Asquith,,"Asquith, Margot",1920,"Margot Asquith's autobiography was published as *An Autobiography* in 1920, and then retitled *The Autobiography of Margot Asquith* in 1921. Both versions likely circulated in the library.",Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/7b%2F6e%2Ff2%2F7b6ef2acc8ca4328b1721c5be9e7e435%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-05-17,,https://shakespeareandco.princeton.edu/members/linossier-raymonde/,Raymonde Linossier,"Linossier, Raymonde",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/synge-well-saints-play/,The Well of the Saints: A Play in Three Acts,,"Synge, John Millington",1905,,Lending Library Card,"Sylvia Beach, Raymonde Linossier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/53ede5bf-939d-44f5-9ddb-4dd39363bd20/manifest,https://iiif.princeton.edu/loris/figgy_prod/00%2F34%2F2f%2F00342f6fa20c49eb905cc64a929bc405%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1921-05-18,1922-05-18,https://shakespeareandco.princeton.edu/members/lang-netter-3/,Mme Lang-Netter,"Lang-Netter, Mme",48.00,,1 year,365,,,1921-05-09,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1921-05-19,1921-05-30,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/abercrombie-speculative-dialogues/,Speculative Dialogues,,"Abercrombie, Lascelles",1913,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/ee%2F0d%2F97%2Fee0d979bfbd14ec5a3b5b6eb397cd5de%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-05-19,1921-05-27,https://shakespeareandco.princeton.edu/members/tournier/,Mlle Tournier,"Tournier, Mlle",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/wilde-intentions/,Intentions,,"Wilde, Oscar",1891,,Lending Library Card,"Sylvia Beach, Mlle Tournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3fad2988-1d91-42e9-a8de-e375c07f6b64/manifest,https://iiif.princeton.edu/loris/figgy_prod/47%2Feb%2Fdf%2F47ebdf229917468c9a578b520539d59f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1921-05-19,1921-08-19,https://shakespeareandco.princeton.edu/members/demarquette/,M. Demarquette,"Demarquette, M.",16.00,,3 months,92,1,AdL,1921-05-19,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,,1921-05-19,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/lindsay-daniel-jazz-poems/,The Daniel Jazz and Other Poems,,"Lindsay, Vachel",1920,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/ee%2F0d%2F97%2Fee0d979bfbd14ec5a3b5b6eb397cd5de%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1921-05-19,1921-08-19,https://shakespeareandco.princeton.edu/members/rice-matilda/,Matilda Rice,"Rice, Matilda",20.00,,3 months,92,1,,1921-06-02,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Matilda Rice Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/ad8eeb53-ecdd-4d4d-99be-0651f54c7214/manifest,;https://iiif.princeton.edu/loris/figgy_prod/c7%2F0c%2F29%2Fc70c2915a9ff4a4e888bdbb8f376becf%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-05-20,1921-07-29,https://shakespeareandco.princeton.edu/members/milhaud/,Madeleine Milhaud,"Milhaud, Madeleine",,,,,,,,,Returned,70,,,https://shakespeareandco.princeton.edu/books/coventry-patmore/,Coventry Patmore,,,,Unidentified. By or about Patmore.,Lending Library Card,"Sylvia Beach, Madeleine Milhaud Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/30bac701-0f7f-4f16-b790-8c7876940713/manifest,https://iiif.princeton.edu/loris/figgy_prod/7a%2F7b%2Fd1%2F7a7bd1a81c4a4f558978f622836aabf7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-05-20,1921-06-06,https://shakespeareandco.princeton.edu/members/schereck/,Mildred Schereck,"Schereck, Mildred",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/tagore-gardener/,The Gardener,,"Tagore, Rabindranath",1913,,Lending Library Card,"Sylvia Beach, Mildred Schereck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3b15ea0c-ed8d-4b41-80f3-33485620b12c/manifest,https://iiif-cloud.princeton.edu/iiif/2/99%2F38%2Fff%2F9938ff01ec0842f2b00c74f04db2e46f%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1921-05-21,1921-06-21,https://shakespeareandco.princeton.edu/members/combal/,Mlle Combal,"Combal, Mlle",12.00,14.00,1 month,31,2,,1921-05-21,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1921-05-22,1921-06-22,https://shakespeareandco.princeton.edu/members/delorne/,Mlle Delorne,"Delorne, Mlle",8.00,,1 month,31,1,,1921-05-10,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1921-05-23,1921-11-23,https://shakespeareandco.princeton.edu/members/prorok/,Byron Khun de Prorok / Byron Kuhn,"Prorok, Byron Khun de",50.00,,6 months,184,2,,1921-05-23,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1921-05-24,1921-06-06,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/squire-london-mercury/,The London Mercury,"Vol. 3, no. 18, Apr 1921",,,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2F57%2Fa7%2F2357a71e936745469bffd98fcfdfd3ac%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-05-26,1921-05-30,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/dickinson-meaning-good-dialogue/,The Meaning of Good: A Dialogue,,"Dickinson, G. Lowes",1901,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/7b%2F6e%2Ff2%2F7b6ef2acc8ca4328b1721c5be9e7e435%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-05-27,,https://shakespeareandco.princeton.edu/members/stein-gertrude/,Gertrude Stein,"Stein, Gertrude",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/maxwell-better-worse/,"For Better, for Worse",,"Maxwell, W. B.",1920,,Lending Library Card,"Sylvia Beach, Gertrude Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f6f307d-2eb7-4960-8dc1-9dec4ea53022/manifest,https://iiif.princeton.edu/loris/figgy_prod/4e%2F51%2F33%2F4e5133fc38ac495ba74a000ffc979d4f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-05-27,1921-06-16,https://shakespeareandco.princeton.edu/members/stein-gertrude/,Gertrude Stein,"Stein, Gertrude",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/mansfield-love-woman/,Love and a Woman,,"Mansfield, Charlotte",1909,,Lending Library Card,"Sylvia Beach, Gertrude Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f6f307d-2eb7-4960-8dc1-9dec4ea53022/manifest,https://iiif.princeton.edu/loris/figgy_prod/4e%2F51%2F33%2F4e5133fc38ac495ba74a000ffc979d4f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1921-05-27,1922-05-27,https://shakespeareandco.princeton.edu/members/stein-gertrude/,Gertrude Stein,"Stein, Gertrude",80.00,,1 year,365,2,,1921-05-27,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Gertrude Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/9f6f307d-2eb7-4960-8dc1-9dec4ea53022/manifest,;https://iiif.princeton.edu/loris/figgy_prod/4e%2F51%2F33%2F4e5133fc38ac495ba74a000ffc979d4f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-05-27,1921-06-02,https://shakespeareandco.princeton.edu/members/tournier/,Mlle Tournier,"Tournier, Mlle",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/saintsbury-history-elizabethan-literature/,A History of Elizabethan Literature (History of English Literature 1),,"Saintsbury, George",1887,,Lending Library Card,"Sylvia Beach, Mlle Tournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3fad2988-1d91-42e9-a8de-e375c07f6b64/manifest,https://iiif.princeton.edu/loris/figgy_prod/47%2Feb%2Fdf%2F47ebdf229917468c9a578b520539d59f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1921-05-28,1921-06-28,https://shakespeareandco.princeton.edu/members/attwater/,Winifred Atwater,"Atwater, Winifred",8.00,,1 month,31,1,,1921-05-28,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1921-05-28,1921-06-04,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/shaw-irrational-knot/,The Irrational Knot,,"Shaw, George Bernard",1905,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/a3%2F06%2F38%2Fa30638d93f964372ac35745c0f99c8f3%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-05-28,,https://shakespeareandco.princeton.edu/members/rodker/,John Rodker,"Rodker, John",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/percy-bysshe-shelley/,Percy Bysshe Shelley,,,,"Unidentified. By or about Shelley. John Rodker borrowed an unspecifed Oxford edition. On March 19, 1932, Fernand Colens borrowed volume 2 of an unspecified edition.",Lending Library Card,"Sylvia Beach, John Rodker Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/56a3d3f5-5234-42c0-8457-e72e3cdb2541/manifest,https://iiif.princeton.edu/loris/figgy_prod/84%2F95%2Fe7%2F8495e7c0d8444fb9b4c40280ca2cc0fc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-05-28,,https://shakespeareandco.princeton.edu/members/rodker/,John Rodker,"Rodker, John",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/blake-blakes-works/,Willam Blake's Works,,"Blake, William",,"At least three editions of Blake's collected works circulated in the lending library. Monique de Vigan borrowed The Poetical Works of William Blake, edited by William Michael Rossetti (Bell, 1874). Jean PrΓ©vost, John Rodker, Guy de Pourtales, Catherine Yarrow, Ella Cassigne, FranΓ§oise Bernheim, and Francoise de Marcilly (in 1939) borrowed The Poetical Works of William Blake, edited by John Sampson (Oxford, 1905). Armand Petitjean, Antoinette Bernheim, and Francoise de Marcilly (in 1938) borrowed Poetry and Prose of William Blake, edited by Geoffrey Keynes (Nonesuch, 1927).",Lending Library Card,"Sylvia Beach, John Rodker Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/56a3d3f5-5234-42c0-8457-e72e3cdb2541/manifest,https://iiif.princeton.edu/loris/figgy_prod/84%2F95%2Fe7%2F8495e7c0d8444fb9b4c40280ca2cc0fc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-05-30,1921-06-02,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/dowson-dilemmas-stories-studies/,Dilemmas: Stories and Studies in Sentiment,,"Dowson, Ernest Christopher",1895,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/ee%2F0d%2F97%2Fee0d979bfbd14ec5a3b5b6eb397cd5de%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-05-30,1921-06-03,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/aldrich-hilltop-marne/,A Hilltop on the Marne,,"Aldrich, Mildred",1915,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/7b%2F6e%2Ff2%2F7b6ef2acc8ca4328b1721c5be9e7e435%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-05-30,1921-06-03,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/freud/,Freud,,,,Unidentified. By or about Freud.,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/7b%2F6e%2Ff2%2F7b6ef2acc8ca4328b1721c5be9e7e435%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1921-05-31,1921-05-31,https://shakespeareandco.princeton.edu/members/kertonne/,M. KertonnΓ©,"KertonnΓ©, M.",,,,,,,,7.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1921-05-31,1921-05-31,https://shakespeareandco.princeton.edu/members/allary/,M. Allary,"Allary, M.",,,,,,,,7.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1921-06-02,1921-06-06,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/smith-trivia/,Trivia,,"Smith, Logan Pearsall",1917,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/ee%2F0d%2F97%2Fee0d979bfbd14ec5a3b5b6eb397cd5de%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-06-02,1921-06-06,https://shakespeareandco.princeton.edu/members/tournier/,Mlle Tournier,"Tournier, Mlle",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/palmer-rudyard-kipling/,Rudyard Kipling,,"Palmer, John",1918,,Lending Library Card,"Sylvia Beach, Mlle Tournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3fad2988-1d91-42e9-a8de-e375c07f6b64/manifest,https://iiif.princeton.edu/loris/figgy_prod/47%2Feb%2Fdf%2F47ebdf229917468c9a578b520539d59f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1921-06-02,1921-07-02,https://shakespeareandco.princeton.edu/members/geary/,Mr. Geary,"Geary, Mr.",8.00,,1 month,30,1,,1921-05-10,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1921-06-02,1921-06-20,https://shakespeareandco.princeton.edu/members/rice-matilda/,Matilda Rice,"Rice, Matilda",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/gissing-private-papers-henry/,The Private Papers of Henry Ryecroft,,"Gissing, George Robert",1903,,Lending Library Card,"Sylvia Beach, Matilda Rice Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ad8eeb53-ecdd-4d4d-99be-0651f54c7214/manifest,https://iiif.princeton.edu/loris/figgy_prod/c7%2F0c%2F29%2Fc70c2915a9ff4a4e888bdbb8f376becf%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-06-03,1921-06-08,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/shaw-heartbreak-house-fantasia/,Heartbreak House: A Fantasia in the Russian Manner on English Themes,,"Shaw, George Bernard",1919,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/7b%2F6e%2Ff2%2F7b6ef2acc8ca4328b1721c5be9e7e435%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-06-03,1921-06-08,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/santayana-character-opinion-united/,Character and Opinion in the United States,,"Santayana, George",1920,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/7b%2F6e%2Ff2%2F7b6ef2acc8ca4328b1721c5be9e7e435%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-06-04,1921-06-10,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/shaw-unsocial-socialist/,An Unsocial Socialist,,"Shaw, George Bernard",1917,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/a3%2F06%2F38%2Fa30638d93f964372ac35745c0f99c8f3%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1921-06-04,1921-09-04,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",20.00,,3 months,92,1,,1921-06-04,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,;https://iiif-cloud.princeton.edu/iiif/2/a3%2F06%2F38%2Fa30638d93f964372ac35745c0f99c8f3%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1921-06-04,1921-09-04,https://shakespeareandco.princeton.edu/members/floran/,Mme Dispan de Floran,"Dispan de Floran, Mme",20.00,,3 months,92,,,1921-04-29,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1921-06-06,1921-06-08,https://shakespeareandco.princeton.edu/members/tournier/,Mlle Tournier,"Tournier, Mlle",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/chesterton-victorian-age-literature/,The Victorian Age in Literature,,"Chesterton, G. K.",1913,,Lending Library Card,"Sylvia Beach, Mlle Tournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3fad2988-1d91-42e9-a8de-e375c07f6b64/manifest,https://iiif.princeton.edu/loris/figgy_prod/47%2Feb%2Fdf%2F47ebdf229917468c9a578b520539d59f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-06-06,1921-06-10,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/beresford-h-g-wells/,H. G. Wells,,"Beresford, J. D.",1915,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/ee%2F0d%2F97%2Fee0d979bfbd14ec5a3b5b6eb397cd5de%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-06-06,1921-06-15,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/moore-lake-2/,The Lake,,"Moore, George",1905,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2F57%2Fa7%2F2357a71e936745469bffd98fcfdfd3ac%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-06-08,1921-06-09,https://shakespeareandco.princeton.edu/members/tournier/,Mlle Tournier,"Tournier, Mlle",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/monro-contemporary-poets/,Some Contemporary Poets (1920),,"Monro, Harold",1920,,Lending Library Card,"Sylvia Beach, Mlle Tournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3fad2988-1d91-42e9-a8de-e375c07f6b64/manifest,https://iiif.princeton.edu/loris/figgy_prod/47%2Feb%2Fdf%2F47ebdf229917468c9a578b520539d59f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-06-08,1921-06-17,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/wharton-french-ways-meaning/,French Ways and Their Meaning,,"Wharton, Edith",1919,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/7b%2F6e%2Ff2%2F7b6ef2acc8ca4328b1721c5be9e7e435%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1921-06-09,1921-07-09,https://shakespeareandco.princeton.edu/members/wang/,M. Wang / Li,"Wang, M.",8.00,7.00,1 month,30,1,,1921-06-09,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Wang Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/9db18632-9e6f-4acf-8372-4b3d5ac78395/manifest,;https://iiif.princeton.edu/loris/figgy_prod/73%2F5e%2F03%2F735e03512c324e6f80401a647bbccdb5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1921-06-09,1921-07-09,https://shakespeareandco.princeton.edu/members/tournier/,Mlle Tournier,"Tournier, Mlle",8.00,,1 month,30,1,,1921-06-08,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Mlle Tournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/3fad2988-1d91-42e9-a8de-e375c07f6b64/manifest,;https://iiif.princeton.edu/loris/figgy_prod/47%2Feb%2Fdf%2F47ebdf229917468c9a578b520539d59f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-06-09,1921-06-14,https://shakespeareandco.princeton.edu/members/tournier/,Mlle Tournier,"Tournier, Mlle",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/murry-evolution-intellectual/,The Evolution of an Intellectual,,"Murry, John Middleton",1920,,Lending Library Card,"Sylvia Beach, Mlle Tournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3fad2988-1d91-42e9-a8de-e375c07f6b64/manifest,https://iiif.princeton.edu/loris/figgy_prod/47%2Feb%2Fdf%2F47ebdf229917468c9a578b520539d59f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-06-09,1921-06-13,https://shakespeareandco.princeton.edu/members/wang/,M. Wang / Li,"Wang, M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/soviet-russia/,Soviet Russia,,,,Unidentified. Likely Albert Rhys Williams's *Soviet Russia and Siberia* (1919).,Lending Library Card,"Sylvia Beach, Wang Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9db18632-9e6f-4acf-8372-4b3d5ac78395/manifest,https://iiif.princeton.edu/loris/figgy_prod/73%2F5e%2F03%2F735e03512c324e6f80401a647bbccdb5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-06-09,1921-06-13,https://shakespeareandco.princeton.edu/members/wang/,M. Wang / Li,"Wang, M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/wells-russia-shadows/,Russia in the Shadows,,"Wells, H. G.",1921,,Lending Library Card,"Sylvia Beach, Wang Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9db18632-9e6f-4acf-8372-4b3d5ac78395/manifest,https://iiif.princeton.edu/loris/figgy_prod/73%2F5e%2F03%2F735e03512c324e6f80401a647bbccdb5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-06-10,1921-06-23,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/joyce-dubliners/,Dubliners,,"Joyce, James",1914,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/a3%2F06%2F38%2Fa30638d93f964372ac35745c0f99c8f3%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-06-10,1921-06-14,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/wells-soul-bishop/,The Soul of a Bishop,,"Wells, H. G.",1917,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/ee%2F0d%2F97%2Fee0d979bfbd14ec5a3b5b6eb397cd5de%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-06-10,1921-07-27,https://shakespeareandco.princeton.edu/members/zimmer/,Isabelle Zimmer,"Zimmer, Isabelle",,,,,,,,,Returned,47,,,https://shakespeareandco.princeton.edu/books/goldsmith-vicar-wakefield/,The Vicar of Wakefield,,"Goldsmith, Oliver",1766,,Lending Library Card,"Sylvia Beach, Isabelle Zimmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fd5a7d89-809b-4930-adc6-ac5066cd5858/manifest,https://iiif.princeton.edu/loris/figgy_prod/ad%2F11%2Fd2%2Fad11d25067a8498aa765033e79012b32%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1921-06-11,1922-06-11,https://shakespeareandco.princeton.edu/members/burt-maud/,Maud Burt,"Burt, Maud",64.00,,1 year,365,2,,1921-06-29,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1921-06-11,1921-09-11,https://shakespeareandco.princeton.edu/members/pasmanik/,Mlle Passmanik / Mlle Pasmanik,"Pasmanik, Mlle",24.00,,3 months,92,2,,1921-06-10,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1921-06-14,1921-07-14,https://shakespeareandco.princeton.edu/members/sokoloff/;https://shakespeareandco.princeton.edu/members/sokoloff-2/,M. Sokoloff;Mlle Sokoloff,"Sokoloff, M.;Sokoloff, Mlle",8.00,,1 month,30,1,,1921-06-14,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1921-06-14,1921-06-23,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/chesterton-tremendous-trifles/,Tremendous Trifles,,"Chesterton, G. K.",1909,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/ee%2F0d%2F97%2Fee0d979bfbd14ec5a3b5b6eb397cd5de%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-06-14,1921-07-12,https://shakespeareandco.princeton.edu/members/tournier/,Mlle Tournier,"Tournier, Mlle",,,,,,,,,Returned,28,,,https://shakespeareandco.princeton.edu/books/james-roderick-hudson/,Roderick Hudson,,"James, Henry",1875,,Lending Library Card,"Sylvia Beach, Mlle Tournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3fad2988-1d91-42e9-a8de-e375c07f6b64/manifest,https://iiif.princeton.edu/loris/figgy_prod/47%2Feb%2Fdf%2F47ebdf229917468c9a578b520539d59f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-06-15,1921-06-27,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/moore-evelyn-inness/,Evelyn Innes,,"Moore, George",1898,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2F57%2Fa7%2F2357a71e936745469bffd98fcfdfd3ac%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-06-16,1921-08-05,https://shakespeareandco.princeton.edu/members/stein-gertrude/,Gertrude Stein,"Stein, Gertrude",,,,,,,,,Returned,50,,,https://shakespeareandco.princeton.edu/books/richardson-backwater-pilgrimage-2/,Backwater (Pilgrimage 2),,"Richardson, Dorothy M.",1916,,Lending Library Card,"Sylvia Beach, Gertrude Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f6f307d-2eb7-4960-8dc1-9dec4ea53022/manifest,https://iiif.princeton.edu/loris/figgy_prod/4e%2F51%2F33%2F4e5133fc38ac495ba74a000ffc979d4f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-06-16,1921-08-05,https://shakespeareandco.princeton.edu/members/stein-gertrude/,Gertrude Stein,"Stein, Gertrude",,,,,,,,,Returned,50,,,https://shakespeareandco.princeton.edu/books/dell-second-country-france/,My Second Country (France),,"Dell, Robert",1920,,Lending Library Card,"Sylvia Beach, Gertrude Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f6f307d-2eb7-4960-8dc1-9dec4ea53022/manifest,https://iiif.princeton.edu/loris/figgy_prod/4e%2F51%2F33%2F4e5133fc38ac495ba74a000ffc979d4f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-06-17,1921-06-27,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/thayer-dial/,The Dial,"Vol. 70, no. 6, Jun 1921",,,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/7b%2F6e%2Ff2%2F7b6ef2acc8ca4328b1721c5be9e7e435%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1921-06-17,1921-07-17,https://shakespeareandco.princeton.edu/members/bourbon/,Comtesse Charles de Bourbon,"Bourbon, Comtesse Charles de",12.00,,1 month,30,2,,1921-05-26,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1921-06-17,,https://shakespeareandco.princeton.edu/members/schereck/,Mildred Schereck,"Schereck, Mildred",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/houghton-younger-generation/,The Younger Generation,,"Houghton, Stanley",1910,,Lending Library Card,"Sylvia Beach, Mildred Schereck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3b15ea0c-ed8d-4b41-80f3-33485620b12c/manifest,https://iiif-cloud.princeton.edu/iiif/2/99%2F38%2Fff%2F9938ff01ec0842f2b00c74f04db2e46f%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1921-06-17,1921-07-17,https://shakespeareandco.princeton.edu/members/elsmie/,Mrs. G. Elsmie,"Elsmie, Mrs. G.",8.00,7.00,1 month,30,1,,1921-06-17,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1921-06-20,1921-08-02,https://shakespeareandco.princeton.edu/members/rice-matilda/,Matilda Rice,"Rice, Matilda",,,,,,,,,Returned,43,,,https://shakespeareandco.princeton.edu/books/conrad-rescue-romance-shallows/,The Rescue: A Romance of the Shallows,,"Conrad, Joseph",1920,,Lending Library Card,"Sylvia Beach, Matilda Rice Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ad8eeb53-ecdd-4d4d-99be-0651f54c7214/manifest,https://iiif.princeton.edu/loris/figgy_prod/c7%2F0c%2F29%2Fc70c2915a9ff4a4e888bdbb8f376becf%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1921-06-20,1921-07-20,https://shakespeareandco.princeton.edu/members/milward-2/,Mr. Milward,"Milward, Mr.",12.00,,1 month,30,2,,1921-06-18,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1921-06-21,1921-06-25,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/bradby-psycho-analysis-place/,Psycho-Analysis and Its Place in Life,,"Bradby, M. K.",1919,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/7b%2F6e%2Ff2%2F7b6ef2acc8ca4328b1721c5be9e7e435%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-06-21,1921-07-09,https://shakespeareandco.princeton.edu/members/wang/,M. Wang / Li,"Wang, M.",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/reed-ten-days-shook/,Ten Days That Shook the World,,"Reed, John",1919,,Lending Library Card,"Sylvia Beach, Wang Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9db18632-9e6f-4acf-8372-4b3d5ac78395/manifest,https://iiif.princeton.edu/loris/figgy_prod/73%2F5e%2F03%2F735e03512c324e6f80401a647bbccdb5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1921-06-21,1921-09-21,https://shakespeareandco.princeton.edu/members/milhaud/,Madeleine Milhaud,"Milhaud, Madeleine",16.00,,3 months,92,1,,1921-07-29,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Madeleine Milhaud Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/30bac701-0f7f-4f16-b790-8c7876940713/manifest,;https://iiif.princeton.edu/loris/figgy_prod/7a%2F7b%2Fd1%2F7a7bd1a81c4a4f558978f622836aabf7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1921-06-23,1921-07-23,https://shakespeareandco.princeton.edu/members/mcculloch-margaret/,Margaret McCulloch / McCullough,"McCulloch, Margaret",8.00,,1 month,30,1,,1921-06-23,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1921-06-23,1921-07-09,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/lindsay-daniel-jazz-poems/,The Daniel Jazz and Other Poems,,"Lindsay, Vachel",1920,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/ee%2F0d%2F97%2Fee0d979bfbd14ec5a3b5b6eb397cd5de%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-06-23,1921-07-29,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,36,,,https://shakespeareandco.princeton.edu/books/shaw-love-among-artists/,Love among the Artists,,"Shaw, George Bernard",1900,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/a3%2F06%2F38%2Fa30638d93f964372ac35745c0f99c8f3%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1921-06-24,1921-07-24,https://shakespeareandco.princeton.edu/members/wilder-thornton/,Thornton Wilder,"Wilder, Thornton",8.00,7.00,1 month,30,1,,1921-06-24,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1921-06-24,1922-06-24,https://shakespeareandco.princeton.edu/members/oconor-1/,Mr. O'Conor,"O'Conor, Mr.",64.00,,1 year,365,2,,1921-06-23,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1921-06-24,1921-06-25,https://shakespeareandco.princeton.edu/members/wilder-thornton/,Thornton Wilder,"Wilder, Thornton",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/barrie-kiss-cinderella/,A Kiss for Cinderella: A Comedy,,"Barrie, J. M.",1920,,Lending Library Card,"Sylvia Beach, Miss Charlotte Wilder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e8c51d96-d580-4ad9-b209-2c98fa786cf1/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F17%2Fd7%2F6317d7799e004665b15b52ebb0a9f892%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-06-25,1921-06-30,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/tagore-cycle-spring/,The Cycle of Spring,,"Tagore, Rabindranath",1919,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/7b%2F6e%2Ff2%2F7b6ef2acc8ca4328b1721c5be9e7e435%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-06-25,1921-06-27,https://shakespeareandco.princeton.edu/members/wilder-thornton/,Thornton Wilder,"Wilder, Thornton",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/dane-legend/,Legend,,"Dane, Clemence",1919,,Lending Library Card,"Sylvia Beach, Miss Charlotte Wilder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e8c51d96-d580-4ad9-b209-2c98fa786cf1/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F17%2Fd7%2F6317d7799e004665b15b52ebb0a9f892%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-06-27,1921-07-02,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/asquith-autobiography-margot-asquith/,The Autobiography of Margot Asquith,,"Asquith, Margot",1920,"Margot Asquith's autobiography was published as *An Autobiography* in 1920, and then retitled *The Autobiography of Margot Asquith* in 1921. Both versions likely circulated in the library.",Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2F57%2Fa7%2F2357a71e936745469bffd98fcfdfd3ac%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-06-27,1921-06-29,https://shakespeareandco.princeton.edu/members/wilder-thornton/,Thornton Wilder,"Wilder, Thornton",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/santayana-little-essays-drawn/,Little Essays Drawn from the Writings of George Santayana,,"Santayana, George;Smith, Logan Pearsall",1920,,Lending Library Card,"Sylvia Beach, Miss Charlotte Wilder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e8c51d96-d580-4ad9-b209-2c98fa786cf1/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F17%2Fd7%2F6317d7799e004665b15b52ebb0a9f892%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1921-06-28,1921-07-28,https://shakespeareandco.princeton.edu/members/hart/,Miss Hart,"Hart, Miss",8.00,,1 month,30,1,,1921-06-28,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1921-06-29,,https://shakespeareandco.princeton.edu/members/wilder-thornton/,Thornton Wilder,"Wilder, Thornton",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/flecker-collected-poems-james/,Collected Poems of James Elroy Flecker,,"Flecker, James Elroy",1916,,Lending Library Card,"Sylvia Beach, Miss Charlotte Wilder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e8c51d96-d580-4ad9-b209-2c98fa786cf1/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F17%2Fd7%2F6317d7799e004665b15b52ebb0a9f892%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-06-29,,https://shakespeareandco.princeton.edu/members/rodker/,John Rodker,"Rodker, John",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/monro-contemporary-poets/,Some Contemporary Poets (1920),,"Monro, Harold",1920,,Lending Library Card,"Sylvia Beach, John Rodker Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/56a3d3f5-5234-42c0-8457-e72e3cdb2541/manifest,https://iiif.princeton.edu/loris/figgy_prod/84%2F95%2Fe7%2F8495e7c0d8444fb9b4c40280ca2cc0fc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1921-06-29,1921-08-29,https://shakespeareandco.princeton.edu/members/rodker/,John Rodker,"Rodker, John",19.20,,2 months,61,2,,1921-06-29,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, John Rodker Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/56a3d3f5-5234-42c0-8457-e72e3cdb2541/manifest,;https://iiif.princeton.edu/loris/figgy_prod/84%2F95%2Fe7%2F8495e7c0d8444fb9b4c40280ca2cc0fc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1921-07-01,1922-07-01,https://shakespeareandco.princeton.edu/members/cerjat/,Mme de Cerjat,"de Cerjat, Mme",48.00,,1 year,365,1,AdL,1921-07-01,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1921-07-02,1921-07-08,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/thayer-dial/,The Dial,"Vol. 70, no. 5, May 1921",,,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2F57%2Fa7%2F2357a71e936745469bffd98fcfdfd3ac%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1921-07-05,1922-07-05,https://shakespeareandco.princeton.edu/members/bonamy/,Mlle Bonamy,"Bonamy, Mlle",64.00,,1 year,365,2,,1921-06-25,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Crossed out,1921-07-05,,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/lionel-johnson/,Lionel Johnson,,,,Unidentified. By or about Lionel Johnson.,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/05%2Fd1%2F20%2F05d120f890cb4152b7f64e0179929987%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-07-05,1921-07-07,https://shakespeareandco.princeton.edu/members/wilder-thornton/,Thornton Wilder,"Wilder, Thornton",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/strachey-queen-victoria/,Queen Victoria,,"Strachey, Giles Lytton",1921,,Lending Library Card,"Sylvia Beach, Miss Charlotte Wilder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e8c51d96-d580-4ad9-b209-2c98fa786cf1/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F17%2Fd7%2F6317d7799e004665b15b52ebb0a9f892%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1921-07-06,1921-10-06,https://shakespeareandco.princeton.edu/members/montbrial-jeanne/,Jeanne Montbrial,"Montbrial, Jeanne",16.00,,3 months,92,1,,1921-07-06,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1921-07-07,1921-07-09,https://shakespeareandco.princeton.edu/members/wilder-thornton/,Thornton Wilder,"Wilder, Thornton",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/smith-treasury-english-prose/,A Treasury of English Prose,,,1920,,Lending Library Card,"Sylvia Beach, Miss Charlotte Wilder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e8c51d96-d580-4ad9-b209-2c98fa786cf1/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F17%2Fd7%2F6317d7799e004665b15b52ebb0a9f892%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1921-07-07,1922-01-07,https://shakespeareandco.princeton.edu/members/hervey-mrs/,Mrs. Hervey,"Hervey, Mrs.",50.00,14.00,6 months,184,2,,1921-07-07,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1921-07-09,1921-07-16,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/mackenzie-carnival/,Carnival,,"Mackenzie, Compton",1912,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/ee%2F0d%2F97%2Fee0d979bfbd14ec5a3b5b6eb397cd5de%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-07-09,1921-07-11,https://shakespeareandco.princeton.edu/members/wilder-thornton/,Thornton Wilder,"Wilder, Thornton",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/eagle-books-general-first/,Books in General: First Series,,"Squire, J. C.",1917,,Lending Library Card,"Sylvia Beach, Miss Charlotte Wilder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e8c51d96-d580-4ad9-b209-2c98fa786cf1/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F17%2Fd7%2F6317d7799e004665b15b52ebb0a9f892%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1921-07-09,1921-07-09,https://shakespeareandco.princeton.edu/members/fabre-luce/,Mlle Fabre-Luce,"Fabre-Luce, Mlle",,,,,,,,14.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1921-07-10,1921-08-10,https://shakespeareandco.princeton.edu/members/edwards/,Miss Edwards,"Edwards, Miss",9.60,,1 month,31,2,,1921-07-04,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1921-07-11,1921-07-12,https://shakespeareandco.princeton.edu/members/wilder-thornton/,Thornton Wilder,"Wilder, Thornton",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/bridges-poetical-works/,Poetical Works,,"Bridges, Robert",,Mlle Valerio and Tamara van den Bergh borrowed an unspecified edition of Robert Bridges's *Poems.* The other lending library members borrowed an unspecified edition of Robert Bridges's *Poetical Works.*,Lending Library Card,"Sylvia Beach, Miss Charlotte Wilder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e8c51d96-d580-4ad9-b209-2c98fa786cf1/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F17%2Fd7%2F6317d7799e004665b15b52ebb0a9f892%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-07-12,1921-07-29,https://shakespeareandco.princeton.edu/members/wilder-thornton/,Thornton Wilder,"Wilder, Thornton",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/james-american/,The American,,"James, Henry",1877,,Lending Library Card,"Sylvia Beach, Miss Charlotte Wilder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e8c51d96-d580-4ad9-b209-2c98fa786cf1/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F17%2Fd7%2F6317d7799e004665b15b52ebb0a9f892%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1921-07-13,1921-07-13,https://shakespeareandco.princeton.edu/members/cremieu/,M. CrΓ©mieu,"CrΓ©mieu, M.",,,,,,,,14.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1921-07-13,1921-10-13,https://shakespeareandco.princeton.edu/members/pottecher-therese/,TherΓ¨se Pottecher,"Pottecher, TherΓ¨se",20.00,7.00,3 months,92,1,,1921-07-13,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, TherΓ¨se Pottecher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/69b82696-3801-41ff-b1fd-c792179c5b98/manifest,;https://iiif-cloud.princeton.edu/iiif/2/9a%2F4e%2F1e%2F9a4e1e31e98242929518656ca46cda2e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-07-13,1921-08-09,https://shakespeareandco.princeton.edu/members/pottecher-therese/,Therèse Pottecher,"Pottecher, Therèse",,,,,,,,,Returned,27,,,https://shakespeareandco.princeton.edu/books/anderson-winesburg-ohio-group/,Winesburg Ohio: A Group of Tales of Ohio Small Town Life,,"Anderson, Sherwood",1919,,Lending Library Card,"Sylvia Beach, Therèse Pottecher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/69b82696-3801-41ff-b1fd-c792179c5b98/manifest,https://iiif-cloud.princeton.edu/iiif/2/9a%2F4e%2F1e%2F9a4e1e31e98242929518656ca46cda2e%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1921-07-14,1921-07-14,https://shakespeareandco.princeton.edu/members/tournier/,Mlle Tournier,"Tournier, Mlle",,,,,,,,7.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1921-07-15,1921-10-15,https://shakespeareandco.princeton.edu/members/lecaisne-mme/,Mme Maurice Lecaisne,"Lecaisne, Mme Maurice",16.00,,3 months,92,1,,1921-07-15,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1921-07-15,1921-10-15,https://shakespeareandco.princeton.edu/members/guebhard/,Comtesse Guebhard/Gebhard,"Guebhard, Comtesse",20.00,,3 months,92,1,,1921-07-15,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1921-07-16,1921-08-16,https://shakespeareandco.princeton.edu/members/carman-mildred/,Mildred Carman,"Carman, Mildred",8.00,7.00,1 month,31,1,,1921-07-16,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1921-07-16,1921-08-15,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,30,,,https://shakespeareandco.princeton.edu/books/macy-spirit-american-literature/,The Spirit of American Literature,,"Macy, John Albert",1913,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/ee%2F0d%2F97%2Fee0d979bfbd14ec5a3b5b6eb397cd5de%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1921-07-16,1921-10-16,https://shakespeareandco.princeton.edu/members/hall/,Mrs. Chandler Hall,"Hall, Mrs. Chandler",20.00,7.00,3 months,92,1,,1921-07-16,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1921-07-16,1921-08-15,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,30,,,https://shakespeareandco.princeton.edu/books/squire-selections-modern-poets/,Selections from Modern Poets,,"Squire, J. C.",1921,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/ee%2F0d%2F97%2Fee0d979bfbd14ec5a3b5b6eb397cd5de%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-07-16,1921-08-15,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,30,,,https://shakespeareandco.princeton.edu/books/cannan-stucco-house/,The Stucco House,,"Cannan, Gilbert",1917,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/ee%2F0d%2F97%2Fee0d979bfbd14ec5a3b5b6eb397cd5de%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1921-07-19,1921-08-19,https://shakespeareandco.princeton.edu/members/amouroux/,Mlle Amouroux / Lamouroux,"Amouroux, Mlle",6.40,,1 month,31,1,,1921-07-01,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1921-07-20,1921-08-20,https://shakespeareandco.princeton.edu/members/fabre-luce/,Mlle Fabre-Luce,"Fabre-Luce, Mlle",12.00,,1 month,31,2,,1921-07-09,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1921-07-24,1921-08-07,https://shakespeareandco.princeton.edu/members/wilder-thornton/,Thornton Wilder,"Wilder, Thornton",4.00,,2 weeks,14,1,,1921-07-29,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1921-07-27,1922-01-27,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",28.00,,6 months,184,1,,1921-08-14,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,;https://iiif-cloud.princeton.edu/iiif/2/3b%2Ff2%2Fbb%2F3bf2bb50ba8d4372bc67b3f78487aa2c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-07-27,1921-08-17,https://shakespeareandco.princeton.edu/members/zimmer/,Isabelle Zimmer,"Zimmer, Isabelle",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/tagore-mashi-stories/,Mashi and Other Stories,,"Tagore, Rabindranath",1918,,Lending Library Card,"Sylvia Beach, Isabelle Zimmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fd5a7d89-809b-4930-adc6-ac5066cd5858/manifest,https://iiif.princeton.edu/loris/figgy_prod/ad%2F11%2Fd2%2Fad11d25067a8498aa765033e79012b32%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-07-27,1921-08-17,https://shakespeareandco.princeton.edu/members/zimmer/,Isabelle Zimmer,"Zimmer, Isabelle",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/ashford-young-visiters-mister/,"The Young Visiters, or Mister Salteena's Plan",,"Ashford, Daisy",1919,,Lending Library Card,"Sylvia Beach, Isabelle Zimmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fd5a7d89-809b-4930-adc6-ac5066cd5858/manifest,https://iiif.princeton.edu/loris/figgy_prod/ad%2F11%2Fd2%2Fad11d25067a8498aa765033e79012b32%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-07-29,1921-07-30,https://shakespeareandco.princeton.edu/members/wilder-charlotte/,Charlotte Wilder,"Wilder, Charlotte",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/strachey-eminent-victorians/,Eminent Victorians,,"Strachey, Giles Lytton",1918,,Lending Library Card,"Sylvia Beach, Miss Charlotte Wilder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e8c51d96-d580-4ad9-b209-2c98fa786cf1/manifest,https://iiif.princeton.edu/loris/figgy_prod/e3%2F27%2F1f%2Fe3271f58a06642ae9dfd4c68b31e3087%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-07-29,1921-07-30,https://shakespeareandco.princeton.edu/members/wilder-thornton/,Thornton Wilder,"Wilder, Thornton",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/beerbohm-even-now/,And Even Now,,"Beerbohm, Max",1920,,Lending Library Card,"Sylvia Beach, Miss Charlotte Wilder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e8c51d96-d580-4ad9-b209-2c98fa786cf1/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F17%2Fd7%2F6317d7799e004665b15b52ebb0a9f892%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1921-07-29,1922-07-29,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",20.00,7.00,1 year,365,1,,1921-07-29,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/e9%2F30%2F98%2Fe93098b0dad84c25a10ad281283ba11d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-07-29,,https://shakespeareandco.princeton.edu/members/milhaud/,Madeleine Milhaud,"Milhaud, Madeleine",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/rossettis-poetical-works/,Rossetti's Poetical Works,,,,Unidentified. By or about one of the Rossettis.,Lending Library Card,"Sylvia Beach, Madeleine Milhaud Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/30bac701-0f7f-4f16-b790-8c7876940713/manifest,https://iiif.princeton.edu/loris/figgy_prod/7a%2F7b%2Fd1%2F7a7bd1a81c4a4f558978f622836aabf7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1921-07-29,1921-08-12,https://shakespeareandco.princeton.edu/members/wilder-charlotte/,Charlotte Wilder,"Wilder, Charlotte",4.00,,2 weeks,14,,,1921-07-29,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Miss Charlotte Wilder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/e8c51d96-d580-4ad9-b209-2c98fa786cf1/manifest,;https://iiif.princeton.edu/loris/figgy_prod/e3%2F27%2F1f%2Fe3271f58a06642ae9dfd4c68b31e3087%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-07-29,1921-10-16,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,79,,,https://shakespeareandco.princeton.edu/books/stevenson-strange-case-dr/,Strange Case of Dr. Jekyll and Mr. Hyde,,"Stevenson, Robert Louis",1886,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/e9%2F30%2F98%2Fe93098b0dad84c25a10ad281283ba11d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-07-29,1921-10-19,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,82,,,https://shakespeareandco.princeton.edu/books/hardy-tess-durbervilles/,Tess of the d'Urbervilles,,"Hardy, Thomas",1891,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/e9%2F30%2F98%2Fe93098b0dad84c25a10ad281283ba11d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-07-29,1921-08-08,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/gibbs-street-adventure/,The Street of Adventure,,"Gibbs, Philip",1909,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/a3%2F06%2F38%2Fa30638d93f964372ac35745c0f99c8f3%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-07-29,1921-10-16,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,79,,,https://shakespeareandco.princeton.edu/books/wells-passionate-friends/,The Passionate Friends,,"Wells, H. G.",1913,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/e9%2F30%2F98%2Fe93098b0dad84c25a10ad281283ba11d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-07-29,1921-10-16,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,79,,,https://shakespeareandco.princeton.edu/books/shaw-cashel-byrons-profession/,Cashel Byron's Profession,,"Shaw, George Bernard",1886,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/e9%2F30%2F98%2Fe93098b0dad84c25a10ad281283ba11d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-07-29,1921-10-16,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,79,,,https://shakespeareandco.princeton.edu/books/hearn-glimpses-unfamiliar-japan/,Glimpses of Unfamiliar Japan,Vol. 1,"Hearn, Lafcadio",1894,The original Houghton Mifflin edition of *Glimpses of Unfamiliar Japan* was published in two volumes. The Tauchnitz edition was published in a first and second series.,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/e9%2F30%2F98%2Fe93098b0dad84c25a10ad281283ba11d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-07-30,1921-08-01,https://shakespeareandco.princeton.edu/members/wilder-charlotte/,Charlotte Wilder,"Wilder, Charlotte",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/lawrence-trespasser/,The Trespasser,,"Lawrence, D. H.",1912,,Lending Library Card,"Sylvia Beach, Miss Charlotte Wilder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e8c51d96-d580-4ad9-b209-2c98fa786cf1/manifest,https://iiif.princeton.edu/loris/figgy_prod/e3%2F27%2F1f%2Fe3271f58a06642ae9dfd4c68b31e3087%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1921-07-30,1922-07-30,https://shakespeareandco.princeton.edu/members/guerin/,Mlle GuΓ©rin,"GuΓ©rin, Mlle",60.00,,1 year,365,1,,1921-07-16,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1921-07-30,1921-08-02,https://shakespeareandco.princeton.edu/members/wilder-thornton/,Thornton Wilder,"Wilder, Thornton",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/de-la-mare-poems-1901-1908/,"Poems, 1901 β 1908",Vol. 1,"De la Mare, Walter",1920,,Lending Library Card,"Sylvia Beach, Miss Charlotte Wilder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e8c51d96-d580-4ad9-b209-2c98fa786cf1/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F17%2Fd7%2F6317d7799e004665b15b52ebb0a9f892%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1921-07-30,1921-08-30,https://shakespeareandco.princeton.edu/members/johnson-bradford/,Bradford Johnson,"Johnson, Bradford",8.00,7.00,1 month,31,1,,1921-07-30,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1921-08-01,1921-08-02,https://shakespeareandco.princeton.edu/members/wilder-charlotte/,Charlotte Wilder,"Wilder, Charlotte",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/shay-fifty-contemporary-one/,Fifty Contemporary One-Act Plays,,,1920,,Lending Library Card,"Sylvia Beach, Miss Charlotte Wilder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e8c51d96-d580-4ad9-b209-2c98fa786cf1/manifest,https://iiif.princeton.edu/loris/figgy_prod/e3%2F27%2F1f%2Fe3271f58a06642ae9dfd4c68b31e3087%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-08-02,1921-08,https://shakespeareandco.princeton.edu/members/wilder-thornton/,Thornton Wilder,"Wilder, Thornton",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/butler-erewhon/,Erewhon,,"Butler, Samuel",1872,,Lending Library Card,"Sylvia Beach, Miss Charlotte Wilder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e8c51d96-d580-4ad9-b209-2c98fa786cf1/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F17%2Fd7%2F6317d7799e004665b15b52ebb0a9f892%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1921-08-02,1921-11-02,https://shakespeareandco.princeton.edu/members/kruger/,Mlle Kruger,"Kruger, Mlle",20.00,7.00,3 months,92,1,,1921-08-02,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1921-08-02,,https://shakespeareandco.princeton.edu/members/wilder-charlotte/,Charlotte Wilder,"Wilder, Charlotte",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/lowell-tendencies-modern-american/,Tendencies in Modern American Poetry,,"Lowell, Amy",1917,,Lending Library Card,"Sylvia Beach, Miss Charlotte Wilder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e8c51d96-d580-4ad9-b209-2c98fa786cf1/manifest,https://iiif.princeton.edu/loris/figgy_prod/e3%2F27%2F1f%2Fe3271f58a06642ae9dfd4c68b31e3087%2Fintermediate_file.jp2/full/full/0/default.jpg
+Supplement,1921-08-02,1921-08-27,https://shakespeareandco.princeton.edu/members/compton-w/,W. Compton,"Compton, W.",4.00,14.00,25 days,25,2,,1921-08-02,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1921-08-05,1921-08-27,https://shakespeareandco.princeton.edu/members/stein-gertrude/,Gertrude Stein,"Stein, Gertrude",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/witter-bynner/,Witter Bynner,,,,Unidentified. By or about Witter Bynner.,Lending Library Card,"Sylvia Beach, Gertrude Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f6f307d-2eb7-4960-8dc1-9dec4ea53022/manifest,https://iiif.princeton.edu/loris/figgy_prod/4e%2F51%2F33%2F4e5133fc38ac495ba74a000ffc979d4f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-08-05,1921-08-27,https://shakespeareandco.princeton.edu/members/stein-gertrude/,Gertrude Stein,"Stein, Gertrude",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/richardson-pointed-roofs/,Pointed Roofs (Pilgrimage 1),,"Richardson, Dorothy M.",1915,,Lending Library Card,"Sylvia Beach, Gertrude Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f6f307d-2eb7-4960-8dc1-9dec4ea53022/manifest,https://iiif.princeton.edu/loris/figgy_prod/4e%2F51%2F33%2F4e5133fc38ac495ba74a000ffc979d4f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-08-05,1921-08-06,https://shakespeareandco.princeton.edu/members/wilder-charlotte/,Charlotte Wilder,"Wilder, Charlotte",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/mais-books-writers/,Books and Their Writers,,"Mais, S. P. B.",1920,,Lending Library Card,"Sylvia Beach, Miss Charlotte Wilder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e8c51d96-d580-4ad9-b209-2c98fa786cf1/manifest,https://iiif.princeton.edu/loris/figgy_prod/e3%2F27%2F1f%2Fe3271f58a06642ae9dfd4c68b31e3087%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-08-05,1921-08-27,https://shakespeareandco.princeton.edu/members/stein-gertrude/,Gertrude Stein,"Stein, Gertrude",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/lawrence-trespasser/,The Trespasser,,"Lawrence, D. H.",1912,,Lending Library Card,"Sylvia Beach, Gertrude Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f6f307d-2eb7-4960-8dc1-9dec4ea53022/manifest,https://iiif.princeton.edu/loris/figgy_prod/4e%2F51%2F33%2F4e5133fc38ac495ba74a000ffc979d4f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-08-06,1921-08-09,https://shakespeareandco.princeton.edu/members/wilder-charlotte/,Charlotte Wilder,"Wilder, Charlotte",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/eagle-books-general-second/,Books in General: Second Series,,"Squire, J. C.",1920,,Lending Library Card,"Sylvia Beach, Miss Charlotte Wilder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e8c51d96-d580-4ad9-b209-2c98fa786cf1/manifest,https://iiif.princeton.edu/loris/figgy_prod/e3%2F27%2F1f%2Fe3271f58a06642ae9dfd4c68b31e3087%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1921-08-07,1921-08-21,https://shakespeareandco.princeton.edu/members/wilder-thornton/,Thornton Wilder,"Wilder, Thornton",4.00,,2 weeks,14,1,,1921-08-07,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Miss Charlotte Wilder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e8c51d96-d580-4ad9-b209-2c98fa786cf1/manifest,
+Borrow,1921-08-08,1921-08-13,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/dreiser-jennie-gerhardt/,Jennie Gerhardt,,"Dreiser, Theodore",1911,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/a3%2F06%2F38%2Fa30638d93f964372ac35745c0f99c8f3%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-08-08,1921-08-22,https://shakespeareandco.princeton.edu/members/varney/,John Varney,"Varney, John",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/santayana-little-essays-drawn/,Little Essays Drawn from the Writings of George Santayana,,"Santayana, George;Smith, Logan Pearsall",1920,,Lending Library Card,"Sylvia Beach, John Varney Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bbf0a1f9-fa76-478d-8db2-86d29b1a9688/manifest,https://iiif.princeton.edu/loris/figgy_prod/e8%2F1a%2F16%2Fe81a165447e44cde9998e44a6e256a1e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-08-08,1921-08-22,https://shakespeareandco.princeton.edu/members/varney/,John Varney,"Varney, John",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/aiken-turns-movies-tales/,Turns and Movies and Other Tales in Verse,,"Aiken, Conrad",1916,,Lending Library Card,"Sylvia Beach, John Varney Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bbf0a1f9-fa76-478d-8db2-86d29b1a9688/manifest,https://iiif.princeton.edu/loris/figgy_prod/e8%2F1a%2F16%2Fe81a165447e44cde9998e44a6e256a1e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1921-08-08,1921-09-08,https://shakespeareandco.princeton.edu/members/varney/,John Varney,"Varney, John",12.00,14.00,1 month,31,2,,1921-08-08,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, John Varney Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/bbf0a1f9-fa76-478d-8db2-86d29b1a9688/manifest,;https://iiif.princeton.edu/loris/figgy_prod/e8%2F1a%2F16%2Fe81a165447e44cde9998e44a6e256a1e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1921-08-11,1921-08-11,https://shakespeareandco.princeton.edu/members/barkers/,Mrs. M. Abbott Barker,"Barker, Mrs. M. Abbott",,,,,,,,7.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1921-08-13,1921-08-25,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/dreiser-titan/,The Titan,,"Dreiser, Theodore",1914,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/a3%2F06%2F38%2Fa30638d93f964372ac35745c0f99c8f3%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-08-16,1921-08-22,https://shakespeareandco.princeton.edu/members/wilder-thornton/,Thornton Wilder,"Wilder, Thornton",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/conrad-rescue-romance-shallows/,The Rescue: A Romance of the Shallows,,"Conrad, Joseph",1920,,Lending Library Card,"Sylvia Beach, Miss Charlotte Wilder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e8c51d96-d580-4ad9-b209-2c98fa786cf1/manifest,https://iiif.princeton.edu/loris/figgy_prod/84%2F0c%2Fd3%2F840cd335b38745c3b6e997c6f1ea3975%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-08-17,1921-09-30,https://shakespeareandco.princeton.edu/members/schereck/,Mildred Schereck,"Schereck, Mildred",,,,,,,,,Returned,44,,,https://shakespeareandco.princeton.edu/books/wells-new-worlds-old/,New Worlds for Old,,"Wells, H. G.",1908,,Lending Library Card,"Sylvia Beach, Mildred Schereck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3b15ea0c-ed8d-4b41-80f3-33485620b12c/manifest,https://iiif-cloud.princeton.edu/iiif/2/99%2F38%2Fff%2F9938ff01ec0842f2b00c74f04db2e46f%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-08-17,1921-09-20,https://shakespeareandco.princeton.edu/members/schereck/,Mildred Schereck,"Schereck, Mildred",,,,,,,,,Returned,34,,,https://shakespeareandco.princeton.edu/books/chesterton-manalive/,Manalive,,"Chesterton, G. K.",1912,,Lending Library Card,"Sylvia Beach, Mildred Schereck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3b15ea0c-ed8d-4b41-80f3-33485620b12c/manifest,https://iiif-cloud.princeton.edu/iiif/2/99%2F38%2Fff%2F9938ff01ec0842f2b00c74f04db2e46f%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-08-17,1921-09-20,https://shakespeareandco.princeton.edu/members/schereck/,Mildred Schereck,"Schereck, Mildred",,,,,,,,,Returned,34,,,https://shakespeareandco.princeton.edu/books/wells-history-mr-polly/,The History of Mr. Polly,,"Wells, H. G.",1910,,Lending Library Card,"Sylvia Beach, Mildred Schereck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3b15ea0c-ed8d-4b41-80f3-33485620b12c/manifest,https://iiif-cloud.princeton.edu/iiif/2/99%2F38%2Fff%2F9938ff01ec0842f2b00c74f04db2e46f%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-08-17,1921-09-20,https://shakespeareandco.princeton.edu/members/schereck/,Mildred Schereck,"Schereck, Mildred",,,,,,,,,Returned,34,,,https://shakespeareandco.princeton.edu/books/key-love-marriage/,Love and Marriage,,"Key, Ellen Karolina Sofia",1911,,Lending Library Card,"Sylvia Beach, Mildred Schereck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3b15ea0c-ed8d-4b41-80f3-33485620b12c/manifest,https://iiif-cloud.princeton.edu/iiif/2/99%2F38%2Fff%2F9938ff01ec0842f2b00c74f04db2e46f%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-08-17,1921-09-20,https://shakespeareandco.princeton.edu/members/schereck/,Mildred Schereck,"Schereck, Mildred",,,,,,,,,Returned,34,,,https://shakespeareandco.princeton.edu/books/kipling-diversity-creatures/,A Diversity of Creatures,,"Kipling, Rudyard",1917,,Lending Library Card,"Sylvia Beach, Mildred Schereck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3b15ea0c-ed8d-4b41-80f3-33485620b12c/manifest,https://iiif-cloud.princeton.edu/iiif/2/99%2F38%2Fff%2F9938ff01ec0842f2b00c74f04db2e46f%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-08-19,1921-08-29,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/gosse-books-table/,Books on the Table,,"Gosse, Edmund",1921,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/3b%2Ff2%2Fbb%2F3bf2bb50ba8d4372bc67b3f78487aa2c%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1921-08-19,1921-11-19,https://shakespeareandco.princeton.edu/members/rice-matilda/,Matilda Rice,"Rice, Matilda",20.00,,3 months,92,1,,1921-10-06,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Matilda Rice Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/ad8eeb53-ecdd-4d4d-99be-0651f54c7214/manifest,;https://iiif.princeton.edu/loris/figgy_prod/c7%2F0c%2F29%2Fc70c2915a9ff4a4e888bdbb8f376becf%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-08-21,1921-09-03,https://shakespeareandco.princeton.edu/members/rice-matilda/,Matilda Rice,"Rice, Matilda",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/strachey-queen-victoria/,Queen Victoria,,"Strachey, Giles Lytton",1921,,Lending Library Card,"Sylvia Beach, Matilda Rice Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ad8eeb53-ecdd-4d4d-99be-0651f54c7214/manifest,https://iiif.princeton.edu/loris/figgy_prod/c7%2F0c%2F29%2Fc70c2915a9ff4a4e888bdbb8f376becf%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-08-22,1921-08-30,https://shakespeareandco.princeton.edu/members/varney/,John Varney,"Varney, John",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/joyce-portrait-artist-young/,A Portrait of the Artist as a Young Man,,"Joyce, James",1916,,Lending Library Card,"Sylvia Beach, John Varney Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bbf0a1f9-fa76-478d-8db2-86d29b1a9688/manifest,https://iiif.princeton.edu/loris/figgy_prod/e8%2F1a%2F16%2Fe81a165447e44cde9998e44a6e256a1e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-08-22,1921-08-26,https://shakespeareandco.princeton.edu/members/varney/,John Varney,"Varney, John",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/stopes-married-love-love/,"Married Love; or, Love in Marriage",,"Stopes, Marie",1918,,Lending Library Card,"Sylvia Beach, John Varney Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bbf0a1f9-fa76-478d-8db2-86d29b1a9688/manifest,https://iiif.princeton.edu/loris/figgy_prod/e8%2F1a%2F16%2Fe81a165447e44cde9998e44a6e256a1e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1921-08-23,1921-09-23,https://shakespeareandco.princeton.edu/members/mcfell-henry-lee/,Henry Lee McFell,"McFell, Henry Lee",12.00,14.00,1 month,31,2,,1921-08-23,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1921-08-23,1921-09-06,https://shakespeareandco.princeton.edu/members/wilder-thornton/,Thornton Wilder,"Wilder, Thornton",4.00,,2 weeks,14,1,,1921-08-23,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1921-08-25,1921-09-17,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/johnston-gay-dombeys/,The Gay-Dombeys,,"Johnston, Harry Hamilton",1919,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/a3%2F06%2F38%2Fa30638d93f964372ac35745c0f99c8f3%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1921-08-25,1921-09-08,https://shakespeareandco.princeton.edu/members/boyd/,Mrs. P. B. Boyd,"Boyd, Mrs. P. B.",6.00,14.00,2 weeks,14,2,,1921-08-25,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1921-08-26,1921-08-30,https://shakespeareandco.princeton.edu/members/varney/,John Varney,"Varney, John",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/brooke-1914-poems/,1914 and Other Poems,,"Brooke, Rupert",1915,,Lending Library Card,"Sylvia Beach, John Varney Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bbf0a1f9-fa76-478d-8db2-86d29b1a9688/manifest,https://iiif.princeton.edu/loris/figgy_prod/e8%2F1a%2F16%2Fe81a165447e44cde9998e44a6e256a1e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-08-27,1921-09-16,https://shakespeareandco.princeton.edu/members/stein-gertrude/,Gertrude Stein,"Stein, Gertrude",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/gilmore-air/,Out of the Air,,"Gilmore, Inez Haynes",1921,,Lending Library Card,"Sylvia Beach, Gertrude Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f6f307d-2eb7-4960-8dc1-9dec4ea53022/manifest,https://iiif.princeton.edu/loris/figgy_prod/4e%2F51%2F33%2F4e5133fc38ac495ba74a000ffc979d4f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1921-08-27,1921-09-27,https://shakespeareandco.princeton.edu/members/lezay/;https://shakespeareandco.princeton.edu/members/lezay-2/,M. Lezay;Mme Lezay,"Lezay, M.;Lezay, Mme",8.00,,1 month,31,1,,1921-08-27,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1921-08-27,1921-09-16,https://shakespeareandco.princeton.edu/members/stein-gertrude/,Gertrude Stein,"Stein, Gertrude",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/holding-invincible-minnie/,Invincible Minnie,,"Holding, Elisabeth Sanxay",1920,,Lending Library Card,"Sylvia Beach, Gertrude Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f6f307d-2eb7-4960-8dc1-9dec4ea53022/manifest,https://iiif.princeton.edu/loris/figgy_prod/4e%2F51%2F33%2F4e5133fc38ac495ba74a000ffc979d4f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-08-29,1921-09-02,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/stopes-married-love-love/,"Married Love; or, Love in Marriage",,"Stopes, Marie",1918,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/3b%2Ff2%2Fbb%2F3bf2bb50ba8d4372bc67b3f78487aa2c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-08-30,1921-09-08,https://shakespeareandco.princeton.edu/members/varney/,John Varney,"Varney, John",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/hergesheimer-java-head/,Java Head,,"Hergesheimer, Joseph",1918,,Lending Library Card,"Sylvia Beach, John Varney Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bbf0a1f9-fa76-478d-8db2-86d29b1a9688/manifest,https://iiif.princeton.edu/loris/figgy_prod/e8%2F1a%2F16%2Fe81a165447e44cde9998e44a6e256a1e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-08-30,1921-09-08,https://shakespeareandco.princeton.edu/members/varney/,John Varney,"Varney, John",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/dunsany-five-plays/,Five Plays,,"Dunsany, Lord",1914,,Lending Library Card,"Sylvia Beach, John Varney Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bbf0a1f9-fa76-478d-8db2-86d29b1a9688/manifest,https://iiif.princeton.edu/loris/figgy_prod/e8%2F1a%2F16%2Fe81a165447e44cde9998e44a6e256a1e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1921-09-01,1921-10-01,https://shakespeareandco.princeton.edu/members/lipscombe/,Mrs. Lipscombe,"Lipscombe, Mrs.",8.00,7.00,1 month,30,1,,1921-09-01,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1921-09-02,1921-09-05,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/young-iron-age/,The Iron Age,,"Young, Francis Brett",1916,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/3b%2Ff2%2Fbb%2F3bf2bb50ba8d4372bc67b3f78487aa2c%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1921-09-02,1921-10-02,https://shakespeareandco.princeton.edu/members/unnamed-member-18/,[unnamed member],[unnamed member],8.00,7.00,1 month,30,1,,1921-09-02,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1921-09-03,1921-09-17,https://shakespeareandco.princeton.edu/members/unnamed-member-19/,Mlle [unnamed member],"[unnamed member], Mlle",6.00,14.00,2 weeks,14,2,,1921-09-03,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1921-09-04,1921-12-04,https://shakespeareandco.princeton.edu/members/floran/,Mme Dispan de Floran,"Dispan de Floran, Mme",20.00,,3 months,91,,,1921-07-16,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1921-09-04,1921-12-04,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",20.00,,3 months,91,1,,1921-09-17,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,;https://iiif-cloud.princeton.edu/iiif/2/a3%2F06%2F38%2Fa30638d93f964372ac35745c0f99c8f3%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1921-09-05,1921-12-05,https://shakespeareandco.princeton.edu/members/decourtis/,M. Descourtis,"Descourtis, M.",30.00,14.00,3 months,91,2,,1921-09-05,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1921-09-05,1921-09-12,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/gibbs-street-adventure/,The Street of Adventure,,"Gibbs, Philip",1909,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/3b%2Ff2%2Fbb%2F3bf2bb50ba8d4372bc67b3f78487aa2c%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1921-09-05,1921-12-05,https://shakespeareandco.princeton.edu/members/hervey-leslie/,Leslie Hervey,"Hervey, Leslie",20.00,7.00,3 months,91,1,,1921-09-05,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1921-09-06,1921-10-06,https://shakespeareandco.princeton.edu/members/melera/,Marie-ThΓ©rΓ¨se Melera,"Melera, Marie-ThΓ©rΓ¨se",12.00,14.00,1 month,30,2,,1921-09-06,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1921-09-07,1921-10-07,https://shakespeareandco.princeton.edu/members/wright-5/,Mr. Wright,"Wright, Mr.",8.00,7.00,1 month,30,1,,1921-09-07,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1921-09-08,1921-09-14,https://shakespeareandco.princeton.edu/members/varney/,John Varney,"Varney, John",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/miscellany-american-unclear/,Miscellany of American [unclear],,,,Unidentified. Handwriting unclear.,Lending Library Card,"Sylvia Beach, John Varney Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bbf0a1f9-fa76-478d-8db2-86d29b1a9688/manifest,https://iiif.princeton.edu/loris/figgy_prod/e8%2F1a%2F16%2Fe81a165447e44cde9998e44a6e256a1e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-09-08,1921-09-22,https://shakespeareandco.princeton.edu/members/varney/,John Varney,"Varney, John",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/gogh-letters-post-impressionist/,The Letters of a Post-Impressionist: Being the Familiar Correspondence of Vincent van Gogh,,"Gogh, Vincent van",1913,,Lending Library Card,"Sylvia Beach, John Varney Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bbf0a1f9-fa76-478d-8db2-86d29b1a9688/manifest,https://iiif.princeton.edu/loris/figgy_prod/e8%2F1a%2F16%2Fe81a165447e44cde9998e44a6e256a1e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1921-09-08,1921-10-08,https://shakespeareandco.princeton.edu/members/varney/,John Varney,"Varney, John",12.00,,1 month,30,2,,1921-09-14,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, John Varney Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/bbf0a1f9-fa76-478d-8db2-86d29b1a9688/manifest,;https://iiif.princeton.edu/loris/figgy_prod/e8%2F1a%2F16%2Fe81a165447e44cde9998e44a6e256a1e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-09-09,,https://shakespeareandco.princeton.edu/members/rodker/,John Rodker,"Rodker, John",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/joyce-portrait-artist-young/,A Portrait of the Artist as a Young Man,,"Joyce, James",1916,,Lending Library Card,"Sylvia Beach, John Rodker Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/56a3d3f5-5234-42c0-8457-e72e3cdb2541/manifest,https://iiif.princeton.edu/loris/figgy_prod/84%2F95%2Fe7%2F8495e7c0d8444fb9b4c40280ca2cc0fc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-09-10,1921-09-26,https://shakespeareandco.princeton.edu/members/pottecher-therese/,Therèse Pottecher,"Pottecher, Therèse",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/wharton-age-innocence/,The Age of Innocence,,"Wharton, Edith",1920,,Lending Library Card,"Sylvia Beach, Therèse Pottecher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/69b82696-3801-41ff-b1fd-c792179c5b98/manifest,https://iiif-cloud.princeton.edu/iiif/2/9a%2F4e%2F1e%2F9a4e1e31e98242929518656ca46cda2e%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1921-09-11,1921-12-11,https://shakespeareandco.princeton.edu/members/louriau-camille/,Camille Louriau,"Louriau, Camille",20.00,,3 months,91,,,1921-09-10,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1921-09-12,1921-09-16,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/gissing-new-grub-street/,New Grub Street,,"Gissing, George Robert",1891,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/3b%2Ff2%2Fbb%2F3bf2bb50ba8d4372bc67b3f78487aa2c%2Fintermediate_file/full/full/0/default.jpg
+Crossed out,1921-09-14,,https://shakespeareandco.princeton.edu/members/varney/,John Varney,"Varney, John",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/dunsany-five-plays/,Five Plays,,"Dunsany, Lord",1914,,Lending Library Card,"Sylvia Beach, John Varney Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bbf0a1f9-fa76-478d-8db2-86d29b1a9688/manifest,https://iiif.princeton.edu/loris/figgy_prod/e8%2F1a%2F16%2Fe81a165447e44cde9998e44a6e256a1e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-09-14,1921-09-26,https://shakespeareandco.princeton.edu/members/varney/,John Varney,"Varney, John",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/dreiser-twelve-men/,Twelve Men,,"Dreiser, Theodore",1919,,Lending Library Card,"Sylvia Beach, John Varney Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bbf0a1f9-fa76-478d-8db2-86d29b1a9688/manifest,https://iiif.princeton.edu/loris/figgy_prod/e8%2F1a%2F16%2Fe81a165447e44cde9998e44a6e256a1e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Supplement,1921-09-15,1921-12-05,https://shakespeareandco.princeton.edu/members/hervey-leslie/,Leslie Hervey,"Hervey, Leslie",10.00,7.00,"2 months, 20 days",81,1,,1921-09-15,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1921-09-15,1922-03-15,https://shakespeareandco.princeton.edu/members/berteux/,Comtesse de Berteux,"de Berteux, Comtesse",40.00,,6 months,181,2,,1921-09-15,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1921-09-16,1921-09-23,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/gissing-house-cobwebs/,The House of Cobwebs,,"Gissing, George Robert",1906,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/3b%2Ff2%2Fbb%2F3bf2bb50ba8d4372bc67b3f78487aa2c%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1921-09-16,1921-10-16,https://shakespeareandco.princeton.edu/members/delorne/,Mlle Delorne,"Delorne, Mlle",8.00,,1 month,30,1,,1921-08-03,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1921-09-16,1921-09-27,https://shakespeareandco.princeton.edu/members/stein-gertrude/,Gertrude Stein,"Stein, Gertrude",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/hull-sheik/,The Sheik,,"Hull, E. M.",1921,,Lending Library Card,"Sylvia Beach, Gertrude Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f6f307d-2eb7-4960-8dc1-9dec4ea53022/manifest,https://iiif.princeton.edu/loris/figgy_prod/4e%2F51%2F33%2F4e5133fc38ac495ba74a000ffc979d4f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-09-17,1921-09-27,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/hearn-gleanings-buddha-fields/,Gleanings in Buddha-Fields: Studies of the Hand and Soul in the Far East,,"Hearn, Lafcadio",1897,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/a3%2F06%2F38%2Fa30638d93f964372ac35745c0f99c8f3%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1921-09-19,1922-03-19,https://shakespeareandco.princeton.edu/members/brooks-alden/,Alden Brooks,"Brooks, Alden",50.00,14.00,6 months,181,2,,1921-09-19,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1921-09-19,1921-10-19,https://shakespeareandco.princeton.edu/members/cadell/,Mrs. Cadell,"Cadell, Mrs.",8.00,7.00,1 month,30,1,,1921-09-19,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Crossed out,1921-09-22,,https://shakespeareandco.princeton.edu/members/varney/,John Varney,"Varney, John",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/jones-samuel-butler/,Samuel Butler,Vol. 2 From 1885 β 1916,"Jones, Henry Festing",1920,,Lending Library Card,"Sylvia Beach, John Varney Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bbf0a1f9-fa76-478d-8db2-86d29b1a9688/manifest,https://iiif.princeton.edu/loris/figgy_prod/e8%2F1a%2F16%2Fe81a165447e44cde9998e44a6e256a1e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-09-22,1921-10-06,https://shakespeareandco.princeton.edu/members/varney/,John Varney,"Varney, John",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/lawrence-women-love/,Women in Love,,"Lawrence, D. H.",1920,,Lending Library Card,"Sylvia Beach, John Varney Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bbf0a1f9-fa76-478d-8db2-86d29b1a9688/manifest,https://iiif.princeton.edu/loris/figgy_prod/e8%2F1a%2F16%2Fe81a165447e44cde9998e44a6e256a1e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1921-09-22,1921-10-22,https://shakespeareandco.princeton.edu/members/comstock-mary/,Mary Comstock,"Comstock, Mary",12.00,14.00,1 month,30,2,,1921-09-22,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1921-09-23,1921-09-30,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/gissing-private-papers-henry/,The Private Papers of Henry Ryecroft,,"Gissing, George Robert",1903,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/3b%2Ff2%2Fbb%2F3bf2bb50ba8d4372bc67b3f78487aa2c%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1921-09-23,1921-10-23,https://shakespeareandco.princeton.edu/members/marsland/,Harriet Marsland,"Marsland, Harriet",8.00,,1 month,30,1,,1921-09-23,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Harriet Marsland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/34833978-1579-4eb9-a196-73e566a04a2c/manifest,;https://iiif.princeton.edu/loris/figgy_prod/1e%2Ffe%2F3f%2F1efe3fe6988c468bb2bcccb1de59d5ed%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1921-09-23,1922-03-23,https://shakespeareandco.princeton.edu/members/schereck/,Mildred Schereck,"Schereck, Mildred",28.00,,6 months,181,1,,1921-09-30,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Mildred Schereck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/3b15ea0c-ed8d-4b41-80f3-33485620b12c/manifest,;https://iiif-cloud.princeton.edu/iiif/2/99%2F38%2Fff%2F9938ff01ec0842f2b00c74f04db2e46f%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-09-23,1921-09-26,https://shakespeareandco.princeton.edu/members/marsland/,Harriet Marsland,"Marsland, Harriet",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/sayler-russian-theatre/,The Russian Theatre under the Revolution,,"Sayler, Oliver",1920,,Lending Library Card,"Sylvia Beach, Harriet Marsland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/34833978-1579-4eb9-a196-73e566a04a2c/manifest,https://iiif.princeton.edu/loris/figgy_prod/1e%2Ffe%2F3f%2F1efe3fe6988c468bb2bcccb1de59d5ed%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-09-26,1921-09-29,https://shakespeareandco.princeton.edu/members/marsland/,Harriet Marsland,"Marsland, Harriet",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/shay-fifty-contemporary-one/,Fifty Contemporary One-Act Plays,,,1920,,Lending Library Card,"Sylvia Beach, Harriet Marsland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/34833978-1579-4eb9-a196-73e566a04a2c/manifest,https://iiif.princeton.edu/loris/figgy_prod/1e%2Ffe%2F3f%2F1efe3fe6988c468bb2bcccb1de59d5ed%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-09-26,1921-10-06,https://shakespeareandco.princeton.edu/members/varney/,John Varney,"Varney, John",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/sandburg-cornhuskers/,Cornhuskers,,"Sandburg, Carl",1918,,Lending Library Card,"Sylvia Beach, John Varney Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bbf0a1f9-fa76-478d-8db2-86d29b1a9688/manifest,https://iiif.princeton.edu/loris/figgy_prod/e8%2F1a%2F16%2Fe81a165447e44cde9998e44a6e256a1e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1921-09-26,1921-10-26,https://shakespeareandco.princeton.edu/members/jiacometti/,Mme Jiacometti,"Jiacometti, Mme",8.00,7.00,1 month,30,1,,1921-09-26,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1921-09-27,,https://shakespeareandco.princeton.edu/members/stein-gertrude/,Gertrude Stein,"Stein, Gertrude",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/kaye-smith-green-apple-harvest/,Green Apple Harvest,,"Kaye-Smith, Sheila",1920,,Lending Library Card,"Sylvia Beach, Gertrude Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f6f307d-2eb7-4960-8dc1-9dec4ea53022/manifest,https://iiif.princeton.edu/loris/figgy_prod/4e%2F51%2F33%2F4e5133fc38ac495ba74a000ffc979d4f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-09-27,1921-10-03,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/wells-history-mr-polly/,The History of Mr. Polly,,"Wells, H. G.",1910,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/a3%2F06%2F38%2Fa30638d93f964372ac35745c0f99c8f3%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-09-27,,https://shakespeareandco.princeton.edu/members/stein-gertrude/,Gertrude Stein,"Stein, Gertrude",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/mackenzie-passionate-elopement/,The Passionate Elopement,,"Mackenzie, Compton",1911,,Lending Library Card,"Sylvia Beach, Gertrude Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f6f307d-2eb7-4960-8dc1-9dec4ea53022/manifest,https://iiif.princeton.edu/loris/figgy_prod/4e%2F51%2F33%2F4e5133fc38ac495ba74a000ffc979d4f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1921-09-28,1921-10-28,https://shakespeareandco.princeton.edu/members/mcfee/,Mrs. McFee,"McFee, Mrs.",12.00,,1 month,30,2,,1921-09-28,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1921-09-28,1921-10-28,https://shakespeareandco.princeton.edu/members/delano-agnes/,Agnes DeLano,"DeLano, Agnes",8.00,7.00,1 month,30,1,,1921-09-28,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1921-09-29,1921-10-10,https://shakespeareandco.princeton.edu/members/marsland/,Harriet Marsland,"Marsland, Harriet",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/man-king/,The Man Who Was King,,,,"Unidentified. Rudyard Kipling's *The Man Who Would Be King* (1888, 1899) or T. S. Eliot's ""The Man Who Was King"" (1905).",Lending Library Card,"Sylvia Beach, Harriet Marsland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/34833978-1579-4eb9-a196-73e566a04a2c/manifest,https://iiif.princeton.edu/loris/figgy_prod/1e%2Ffe%2F3f%2F1efe3fe6988c468bb2bcccb1de59d5ed%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1921-09-30,1921-12-30,https://shakespeareandco.princeton.edu/members/latrasse/,Mlle Latrasse,"Latrasse, Mlle",16.00,,3 months,91,1,,1921-09-30,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1921-09-30,1921-10-01,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/asquith-autobiography-margot-asquith/,The Autobiography of Margot Asquith,,"Asquith, Margot",1920,"Margot Asquith's autobiography was published as *An Autobiography* in 1920, and then retitled *The Autobiography of Margot Asquith* in 1921. Both versions likely circulated in the library.",Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/3b%2Ff2%2Fbb%2F3bf2bb50ba8d4372bc67b3f78487aa2c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-10-01,1921-10-18,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/swinnerton-george-gissing-critical/,George Gissing: A Critical Study,,"Swinnerton, Frank",1912,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/3b%2Ff2%2Fbb%2F3bf2bb50ba8d4372bc67b3f78487aa2c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-10-03,1921-10-10,https://shakespeareandco.princeton.edu/members/wyck/,William van Wyck,"van Wyck, William",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/dreiser-titan/,The Titan,,"Dreiser, Theodore",1914,,Lending Library Card,"Sylvia Beach, William van Wyck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f6b2d812-ade2-4fc6-912e-aab71c67a4a0/manifest,https://iiif.princeton.edu/loris/figgy_prod/a0%2F6f%2F45%2Fa06f452bb28b4e55be9ebfe9a000c2d6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1921-10-03,1922-01-03,https://shakespeareandco.princeton.edu/members/wyck/,William van Wyck,"van Wyck, William",30.00,14.00,3 months,92,2,,1921-10-03,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, William van Wyck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/f6b2d812-ade2-4fc6-912e-aab71c67a4a0/manifest,;https://iiif.princeton.edu/loris/figgy_prod/a0%2F6f%2F45%2Fa06f452bb28b4e55be9ebfe9a000c2d6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-10-04,1921-10-27,https://shakespeareandco.princeton.edu/members/schereck/,Mildred Schereck,"Schereck, Mildred",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/tagore-gitanjali/,Gitanjali,,"Tagore, Rabindranath",1912,,Lending Library Card,"Sylvia Beach, Mildred Schereck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3b15ea0c-ed8d-4b41-80f3-33485620b12c/manifest,https://iiif-cloud.princeton.edu/iiif/2/99%2F38%2Fff%2F9938ff01ec0842f2b00c74f04db2e46f%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-10-04,1921-10-27,https://shakespeareandco.princeton.edu/members/schereck/,Mildred Schereck,"Schereck, Mildred",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/wells-love-mr-lewisham/,Love and Mr. Lewisham,,"Wells, H. G.",1900,,Lending Library Card,"Sylvia Beach, Mildred Schereck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3b15ea0c-ed8d-4b41-80f3-33485620b12c/manifest,https://iiif-cloud.princeton.edu/iiif/2/99%2F38%2Fff%2F9938ff01ec0842f2b00c74f04db2e46f%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-10-04,1921-12-09,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,66,,,https://shakespeareandco.princeton.edu/books/shaw-back-methuselah-metabiological/,Back to Methuselah (A Metabiological Pentateuch),,"Shaw, George Bernard",1921,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/a3%2F06%2F38%2Fa30638d93f964372ac35745c0f99c8f3%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1921-10-05,1922-01-05,https://shakespeareandco.princeton.edu/members/slack-1/,Miss Slack,"Slack, Miss",20.00,7.00,3 months,92,1,,1921-10-05,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1921-10-06,1921-10-13,https://shakespeareandco.princeton.edu/members/rice-matilda/,Matilda Rice,"Rice, Matilda",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/douglas-went/,They Went,,"Douglas, Norman",1920,,Lending Library Card,"Sylvia Beach, Matilda Rice Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ad8eeb53-ecdd-4d4d-99be-0651f54c7214/manifest,https://iiif.princeton.edu/loris/figgy_prod/c7%2F0c%2F29%2Fc70c2915a9ff4a4e888bdbb8f376becf%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-10-06,1921-10-28,https://shakespeareandco.princeton.edu/members/varney/,John Varney,"Varney, John",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/wells-outline-history/,The Outline of History,,"Wells, H. G.",1920,,Lending Library Card,"Sylvia Beach, John Varney Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bbf0a1f9-fa76-478d-8db2-86d29b1a9688/manifest,https://iiif.princeton.edu/loris/figgy_prod/e8%2F1a%2F16%2Fe81a165447e44cde9998e44a6e256a1e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1921-10-06,1921-11-06,https://shakespeareandco.princeton.edu/members/denys-odet/,Odet Denys,"Denys, Odet",8.00,7.00,1 month,31,1,,1921-10-06,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1921-10-06,1921-10-18,https://shakespeareandco.princeton.edu/members/varney/,John Varney,"Varney, John",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/jones-samuel-butler/,Samuel Butler,Vol. 2 From 1885 β 1916,"Jones, Henry Festing",1920,,Lending Library Card,"Sylvia Beach, John Varney Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bbf0a1f9-fa76-478d-8db2-86d29b1a9688/manifest,https://iiif.princeton.edu/loris/figgy_prod/e8%2F1a%2F16%2Fe81a165447e44cde9998e44a6e256a1e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1921-10-08,1922-04-08,https://shakespeareandco.princeton.edu/members/melera/,Marie-ThΓ©rΓ¨se Melera,"Melera, Marie-ThΓ©rΓ¨se",50.00,,6 months,182,2,,1921-10-08,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1921-10-08,1922-04-08,https://shakespeareandco.princeton.edu/members/maniere/,Mlle ManiΓ¨re,"ManiΓ¨re, Mlle",35.00,,6 months,182,1,,1921-10-08,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1921-10-08,1921-10-10,https://shakespeareandco.princeton.edu/members/wyck/,William van Wyck,"van Wyck, William",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/lewis-main-street-story/,Main Street: The Story of Carol Kennicott,,"Lewis, Sinclair",1920,,Lending Library Card,"Sylvia Beach, William van Wyck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f6b2d812-ade2-4fc6-912e-aab71c67a4a0/manifest,https://iiif.princeton.edu/loris/figgy_prod/a0%2F6f%2F45%2Fa06f452bb28b4e55be9ebfe9a000c2d6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1921-10-08,1921-11-08,https://shakespeareandco.princeton.edu/members/varney/,John Varney,"Varney, John",12.00,,1 month,31,2,,1921-10-18,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, John Varney Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/bbf0a1f9-fa76-478d-8db2-86d29b1a9688/manifest,;https://iiif.princeton.edu/loris/figgy_prod/e8%2F1a%2F16%2Fe81a165447e44cde9998e44a6e256a1e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-10-10,,https://shakespeareandco.princeton.edu/members/marsland/,Harriet Marsland,"Marsland, Harriet",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/lawrence-trespasser/,The Trespasser,,"Lawrence, D. H.",1912,,Lending Library Card,"Sylvia Beach, Harriet Marsland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/34833978-1579-4eb9-a196-73e566a04a2c/manifest,https://iiif.princeton.edu/loris/figgy_prod/1e%2Ffe%2F3f%2F1efe3fe6988c468bb2bcccb1de59d5ed%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-10-10,1921-10-11,https://shakespeareandco.princeton.edu/members/wyck/,William van Wyck,"van Wyck, William",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/wilkinson-new-voices-introduction/,New Voices: An Introduction to Contemporary Poetry,,"Wilkinson, Marguerite",1919,,Lending Library Card,"Sylvia Beach, William van Wyck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f6b2d812-ade2-4fc6-912e-aab71c67a4a0/manifest,https://iiif.princeton.edu/loris/figgy_prod/a0%2F6f%2F45%2Fa06f452bb28b4e55be9ebfe9a000c2d6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1921-10-10,1921-10-17,https://shakespeareandco.princeton.edu/members/wilson-natalie/,Natalie Wilson,"Wilson, Natalie",2.00,,1 week,7,1,,1921-10-10,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Miss Natalie Wilson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/3b770bae-bddc-4878-863a-d7f29f4eceda/manifest,;https://iiif.princeton.edu/loris/figgy_prod/a7%2F67%2F46%2Fa7674622f68844f7ad89b2673c573e69%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-10-11,1921-10-29,https://shakespeareandco.princeton.edu/members/wyck/,William van Wyck,"van Wyck, William",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/lewis-main-street-story/,Main Street: The Story of Carol Kennicott,,"Lewis, Sinclair",1920,,Lending Library Card,"Sylvia Beach, William van Wyck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f6b2d812-ade2-4fc6-912e-aab71c67a4a0/manifest,https://iiif.princeton.edu/loris/figgy_prod/a0%2F6f%2F45%2Fa06f452bb28b4e55be9ebfe9a000c2d6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-10-11,1921-10-20,https://shakespeareandco.princeton.edu/members/pottecher-therese/,Therèse Pottecher,"Pottecher, Therèse",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/dell-moon-calf/,Moon-Calf,,"Dell, Floyd",1920,,Lending Library Card,"Sylvia Beach, Therèse Pottecher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/69b82696-3801-41ff-b1fd-c792179c5b98/manifest,https://iiif-cloud.princeton.edu/iiif/2/9a%2F4e%2F1e%2F9a4e1e31e98242929518656ca46cda2e%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1921-10-11,1922-10-11,https://shakespeareandco.princeton.edu/members/barney-natalie-clifford/,Natalie Clifford Barney,"Barney, Natalie Clifford",60.00,,1 year,365,1,,1921-10-05,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1921-10-12,1921-10-12,https://shakespeareandco.princeton.edu/members/lezay/;https://shakespeareandco.princeton.edu/members/lezay-2/,M. Lezay;Mme Lezay,"Lezay, M.;Lezay, Mme",,,,,,,,7.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1921-10-13,1921-12-05,https://shakespeareandco.princeton.edu/members/stein-gertrude/,Gertrude Stein,"Stein, Gertrude",,,,,,,,,Returned,53,,,https://shakespeareandco.princeton.edu/books/lincoln-galusha-magnificent/,Galusha the Magnificent,,"Lincoln, Joseph Crosby",1921,,Lending Library Card,"Sylvia Beach, Gertrude Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f6f307d-2eb7-4960-8dc1-9dec4ea53022/manifest,https://iiif.princeton.edu/loris/figgy_prod/07%2Fb7%2F83%2F07b7834be68d4584bb89d8ef97efcf11%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-10-13,1921-10-31,https://shakespeareandco.princeton.edu/members/lucas-mrs/,Mrs. Lucas,"Lucas, Mrs.",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/kaye-smith-green-apple-harvest/,Green Apple Harvest,,"Kaye-Smith, Sheila",1920,,Lending Library Card,"Sylvia Beach, Mrs Lucas Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/81c95a45-23ac-475e-be13-3f432d57d744/manifest,https://iiif.princeton.edu/loris/figgy_prod/3b%2Fbb%2F67%2F3bbb670424ec400bb462d387de9162dc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-10-13,1921-12-05,https://shakespeareandco.princeton.edu/members/stein-gertrude/,Gertrude Stein,"Stein, Gertrude",,,,,,,,,Returned,53,,,https://shakespeareandco.princeton.edu/books/couperus-twilight-souls/,The Twilight of the Souls,,"Couperus, Louis",1917,,Lending Library Card,"Sylvia Beach, Gertrude Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f6f307d-2eb7-4960-8dc1-9dec4ea53022/manifest,https://iiif.princeton.edu/loris/figgy_prod/07%2Fb7%2F83%2F07b7834be68d4584bb89d8ef97efcf11%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1921-10-13,1922-04-13,https://shakespeareandco.princeton.edu/members/pottecher-therese/,TherΓ¨se Pottecher,"Pottecher, TherΓ¨se",35.00,,6 months,182,1,,1921-10-11,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, TherΓ¨se Pottecher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/69b82696-3801-41ff-b1fd-c792179c5b98/manifest,;https://iiif-cloud.princeton.edu/iiif/2/9a%2F4e%2F1e%2F9a4e1e31e98242929518656ca46cda2e%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1921-10-13,1921-11-13,https://shakespeareandco.princeton.edu/members/lucas-mrs/,Mrs. Lucas,"Lucas, Mrs.",8.00,7.00,1 month,31,1,,1921-10-13,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Mrs Lucas Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/81c95a45-23ac-475e-be13-3f432d57d744/manifest,;https://iiif.princeton.edu/loris/figgy_prod/3b%2Fbb%2F67%2F3bbb670424ec400bb462d387de9162dc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-10-13,1921-10-22,https://shakespeareandco.princeton.edu/members/rice-matilda/,Matilda Rice,"Rice, Matilda",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/hardy-jude-obscure/,Jude the Obscure,,"Hardy, Thomas",1895,,Lending Library Card,"Sylvia Beach, Matilda Rice Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ad8eeb53-ecdd-4d4d-99be-0651f54c7214/manifest,https://iiif.princeton.edu/loris/figgy_prod/c7%2F0c%2F29%2Fc70c2915a9ff4a4e888bdbb8f376becf%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1921-10-14,1922-10-14,https://shakespeareandco.princeton.edu/members/du-bos/,Charles Du Bos,"Du Bos, Charles",60.00,,1 year,365,2,,1921-10-14,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1921-10-14,1921-10-14,https://shakespeareandco.princeton.edu/members/sokoloff/;https://shakespeareandco.princeton.edu/members/sokoloff-2/,M. Sokoloff;Mlle Sokoloff,"Sokoloff, M.;Sokoloff, Mlle",,,,,,,,7.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1921-10-15,1922-04-15,https://shakespeareandco.princeton.edu/members/fernandez-yva/,Yva Fernandez,"Fernandez, Yva",50.00,,6 months,182,2,,1921-10-15,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1921-10-18,1921-10-28,https://shakespeareandco.princeton.edu/members/varney/,John Varney,"Varney, John",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/wright-life-walter-pater/,The Life of Walter Pater,,"Wright, Thomas",1907,,Lending Library Card,"Sylvia Beach, John Varney Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bbf0a1f9-fa76-478d-8db2-86d29b1a9688/manifest,https://iiif.princeton.edu/loris/figgy_prod/e8%2F1a%2F16%2Fe81a165447e44cde9998e44a6e256a1e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-10-18,1921-10-26,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/sabatini-scaramouche/,Scaramouche,,"Sabatini, Rafael",1921,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/3b%2Ff2%2Fbb%2F3bf2bb50ba8d4372bc67b3f78487aa2c%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1921-10-18,1922-04-18,https://shakespeareandco.princeton.edu/members/laurent-mlle/,Mlle Laurent,"Laurent, Mlle",35.00,7.00,6 months,182,1,,1921-10-18,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1921-10-20,1921-10-20,https://shakespeareandco.princeton.edu/members/midner-frances/,Frances Midner,"Midner, Frances",,,,,,,,7.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1921-10-20,1921-10-24,https://shakespeareandco.princeton.edu/members/pottecher-therese/,Therèse Pottecher,"Pottecher, Therèse",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/wells-salvaging-civilization-probable/,The Salvaging of Civilization: The Probable Future of Mankind,,"Wells, H. G.",1921,,Lending Library Card,"Sylvia Beach, Therèse Pottecher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/69b82696-3801-41ff-b1fd-c792179c5b98/manifest,https://iiif-cloud.princeton.edu/iiif/2/9a%2F4e%2F1e%2F9a4e1e31e98242929518656ca46cda2e%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1921-10-20,1922-10-20,https://shakespeareandco.princeton.edu/members/guilde-internationale/,Guilde Internationale / Miss Metford,Guilde Internationale,80.00,,1 year,365,3,,1921-10-20,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1921-10-21,1921-11-21,https://shakespeareandco.princeton.edu/members/shaw-mr/,Mr. Shaw,"Shaw, Mr.",12.00,,1 month,31,2,,1921-10-21,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1921-10-21,1921-11-21,https://shakespeareandco.princeton.edu/members/gibbons-w/,We[unclear] Gibbons,"Gibbons, We[unclear]",8.00,7.00,1 month,31,1,,1921-10-21,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1921-10-22,1921-11-22,https://shakespeareandco.princeton.edu/members/mcculloch-margaret/,Margaret McCulloch / McCullough,"McCulloch, Margaret",8.00,,1 month,31,1,,1921-09-27,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1921-10-22,1921-10-29,https://shakespeareandco.princeton.edu/members/rice-matilda/,Matilda Rice,"Rice, Matilda",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/dickinson-greek-view-life/,The Greek View of Life,,"Dickinson, G. Lowes",1920,,Lending Library Card,"Sylvia Beach, Matilda Rice Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ad8eeb53-ecdd-4d4d-99be-0651f54c7214/manifest,https://iiif.princeton.edu/loris/figgy_prod/c7%2F0c%2F29%2Fc70c2915a9ff4a4e888bdbb8f376becf%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-10-24,1921-11-17,https://shakespeareandco.princeton.edu/members/pottecher-therese/,Therèse Pottecher,"Pottecher, Therèse",,,,,,,,,Returned,24,,,https://shakespeareandco.princeton.edu/books/sandburg-smoke-steel/,Smoke and Steel,,"Sandburg, Carl",1921,,Lending Library Card,"Sylvia Beach, Therèse Pottecher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/69b82696-3801-41ff-b1fd-c792179c5b98/manifest,https://iiif-cloud.princeton.edu/iiif/2/9a%2F4e%2F1e%2F9a4e1e31e98242929518656ca46cda2e%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1921-10-26,1921-11-26,https://shakespeareandco.princeton.edu/members/jiacometti/,Mme Jiacometti,"Jiacometti, Mme",8.00,,1 month,31,1,,1921-10-26,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1921-10-26,1921-11-07,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/bennett-authors-craft/,The Author's Craft,,"Bennett, Arnold",1914,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/3b%2Ff2%2Fbb%2F3bf2bb50ba8d4372bc67b3f78487aa2c%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1921-10-26,1921-10-26,https://shakespeareandco.princeton.edu/members/frost-george/,George Frost,"Frost, George",,,,,,,,7.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1921-10-26,1921-11-26,https://shakespeareandco.princeton.edu/members/calife-victor/,Victor Calife,"Calife, Victor",8.00,7.00,1 month,31,1,,1921-10-26,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1921-10-26,1921-10-26,https://shakespeareandco.princeton.edu/members/wright-5/,Mr. Wright,"Wright, Mr.",,,,,,,,7.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1921-10-28,1921-11-11,https://shakespeareandco.princeton.edu/members/varney/,John Varney,"Varney, John",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/hammerton-george-meredith-life/,George Meredith: His Life and Art in Anecdote and Criticism,,"Hammerton, John Alexander",1909,,Lending Library Card,"Sylvia Beach, John Varney Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bbf0a1f9-fa76-478d-8db2-86d29b1a9688/manifest,https://iiif.princeton.edu/loris/figgy_prod/e8%2F1a%2F16%2Fe81a165447e44cde9998e44a6e256a1e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1921-10-28,1921-11-28,https://shakespeareandco.princeton.edu/members/milliken/,Mrs. Milliken,"Milliken, Mrs.",8.00,7.00,1 month,31,1,,1921-10-28,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1921-10-28,1921-11-11,https://shakespeareandco.princeton.edu/members/mcfee/,Mrs. McFee,"McFee, Mrs.",6.00,,2 weeks,14,2,,1921-10-27,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1921-10-29,1921-11-12,https://shakespeareandco.princeton.edu/members/rice-matilda/,Matilda Rice,"Rice, Matilda",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/hardy-mayor-casterbridge/,The Mayor of Casterbridge,,"Hardy, Thomas",1886,,Lending Library Card,"Sylvia Beach, Matilda Rice Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ad8eeb53-ecdd-4d4d-99be-0651f54c7214/manifest,https://iiif.princeton.edu/loris/figgy_prod/c7%2F0c%2F29%2Fc70c2915a9ff4a4e888bdbb8f376becf%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1921-10-30,1922-01-30,https://shakespeareandco.princeton.edu/members/flecker/,Mrs. Flecker,"Flecker, Mrs.",16.00,,3 months,92,1,,1921-10-13,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1921-10-31,1922-04-30,https://shakespeareandco.princeton.edu/members/copland-aaron/,Aaron Copland,"Copland, Aaron",50.00,14.00,6 months,181,2,,1921-10-31,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1921-10-31,1921-11-17,https://shakespeareandco.princeton.edu/members/lucas-mrs/,Mrs. Lucas,"Lucas, Mrs.",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/foster-coquette-history-eliza/,"The Coquette; Or, the History of Eliza Wharton",,"Foster, Hannah Webster",1797,,Lending Library Card,"Sylvia Beach, Mrs Lucas Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/81c95a45-23ac-475e-be13-3f432d57d744/manifest,https://iiif.princeton.edu/loris/figgy_prod/3b%2Fbb%2F67%2F3bbb670424ec400bb462d387de9162dc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1921-11-02,1921-12-02,https://shakespeareandco.princeton.edu/members/delano-agnes/,Agnes DeLano,"DeLano, Agnes",12.00,7.00,1 month,30,2,,1921-11-02,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Supplement,1921-11-02,1921-11-13,https://shakespeareandco.princeton.edu/members/farwell/,Mrs. Farwell / Miss Farewell,"Farwell, Mrs.",2.00,7.00,11 days,11,2,,1921-11-02,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1921-11-03,1921-11-04,https://shakespeareandco.princeton.edu/members/wyck/,William van Wyck,"van Wyck, William",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/flexner-prostitution-europe/,Prostitution in Europe,,"Flexner, Abraham",1919,,Lending Library Card,"Sylvia Beach, William van Wyck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f6b2d812-ade2-4fc6-912e-aab71c67a4a0/manifest,https://iiif.princeton.edu/loris/figgy_prod/a0%2F6f%2F45%2Fa06f452bb28b4e55be9ebfe9a000c2d6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Supplement,1921-11-03,1921-11-28,https://shakespeareandco.princeton.edu/members/milliken/,Mrs. Milliken,"Milliken, Mrs.",4.00,7.00,25 days,25,2,,1921-11-03,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1921-11-04,1921-11-04,https://shakespeareandco.princeton.edu/members/kruger/,Mlle Kruger,"Kruger, Mlle",,,,,,,,7.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1921-11-06,1922-02-06,https://shakespeareandco.princeton.edu/members/bridgman/,Miss Bridgman / Bridgeman,"Bridgman, Miss",20.00,7.00,3 months,92,1,,1921-11-06,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1921-11-07,1921-11-11,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/bennett-self-self-management/,Self and Self Management,,"Bennett, Arnold",1918,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/3b%2Ff2%2Fbb%2F3bf2bb50ba8d4372bc67b3f78487aa2c%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1921-11-07,1922-02-07,https://shakespeareandco.princeton.edu/members/azarian/,Miss Azarian,"Azarian, Miss",16.00,,3 months,92,1,AdL,1921-11-07,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1921-11-08,1921-12-08,https://shakespeareandco.princeton.edu/members/varney/,John Varney,"Varney, John",12.00,,1 month,30,2,,1921-11-11,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, John Varney Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/bbf0a1f9-fa76-478d-8db2-86d29b1a9688/manifest,;https://iiif.princeton.edu/loris/figgy_prod/e8%2F1a%2F16%2Fe81a165447e44cde9998e44a6e256a1e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-11-09,1921-12-15,https://shakespeareandco.princeton.edu/members/schereck/,Mildred Schereck,"Schereck, Mildred",,,,,,,,,Returned,36,,,https://shakespeareandco.princeton.edu/books/wells-boon/,Boon,,"Wells, H. G.",1915,,Lending Library Card,"Sylvia Beach, Mildred Schereck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3b15ea0c-ed8d-4b41-80f3-33485620b12c/manifest,https://iiif-cloud.princeton.edu/iiif/2/65%2F5f%2F8a%2F655f8aeadadb48bfa319309d0b2dab6b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-11-09,1921-11-15,https://shakespeareandco.princeton.edu/members/wyck/,William van Wyck,"van Wyck, William",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/norris-brass-novel-marriage/,Brass: A Novel of a Marriage,,"Norris, Charles Gilman",1921,,Lending Library Card,"Sylvia Beach, William van Wyck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f6b2d812-ade2-4fc6-912e-aab71c67a4a0/manifest,https://iiif.princeton.edu/loris/figgy_prod/a0%2F6f%2F45%2Fa06f452bb28b4e55be9ebfe9a000c2d6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-11-09,1921-12-15,https://shakespeareandco.princeton.edu/members/schereck/,Mildred Schereck,"Schereck, Mildred",,,,,,,,,Returned,36,,,https://shakespeareandco.princeton.edu/books/tagore-nationalism/,Nationalism,,"Tagore, Rabindranath",1917,,Lending Library Card,"Sylvia Beach, Mildred Schereck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3b15ea0c-ed8d-4b41-80f3-33485620b12c/manifest,https://iiif-cloud.princeton.edu/iiif/2/65%2F5f%2F8a%2F655f8aeadadb48bfa319309d0b2dab6b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-11-09,1921-12-15,https://shakespeareandco.princeton.edu/members/schereck/,Mildred Schereck,"Schereck, Mildred",,,,,,,,,Returned,36,,,https://shakespeareandco.princeton.edu/books/sanger-woman-new-race/,Woman and the New Race,,"Sanger, Margaret",1920,,Lending Library Card,"Sylvia Beach, Mildred Schereck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3b15ea0c-ed8d-4b41-80f3-33485620b12c/manifest,https://iiif-cloud.princeton.edu/iiif/2/65%2F5f%2F8a%2F655f8aeadadb48bfa319309d0b2dab6b%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1921-11-10,1921-12-10,https://shakespeareandco.princeton.edu/members/bloch-2/,Mlle Bloch,"Bloch, Mlle",8.00,7.00,1 month,30,1,,1921-11-10,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1921-11-11,1921-11-18,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/swinnerton-george-gissing-critical/,George Gissing: A Critical Study,,"Swinnerton, Frank",1912,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/3b%2Ff2%2Fbb%2F3bf2bb50ba8d4372bc67b3f78487aa2c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-11-11,1921-11-25,https://shakespeareandco.princeton.edu/members/varney/,John Varney,"Varney, John",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/rosenfeld-musical-portraits/,Musical Portraits: Interpretations of Twenty Modern Composers,,"Rosenfeld, Paul",1920,,Lending Library Card,"Sylvia Beach, John Varney Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bbf0a1f9-fa76-478d-8db2-86d29b1a9688/manifest,https://iiif.princeton.edu/loris/figgy_prod/e8%2F1a%2F16%2Fe81a165447e44cde9998e44a6e256a1e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-11-11,1921-11-25,https://shakespeareandco.princeton.edu/members/varney/,John Varney,"Varney, John",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/frank-america/,Our America,,"Frank, Waldo",1919,,Lending Library Card,"Sylvia Beach, John Varney Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bbf0a1f9-fa76-478d-8db2-86d29b1a9688/manifest,https://iiif.princeton.edu/loris/figgy_prod/e8%2F1a%2F16%2Fe81a165447e44cde9998e44a6e256a1e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1921-11-12,1921-12-03,https://shakespeareandco.princeton.edu/members/mcfee/,Mrs. McFee,"McFee, Mrs.",9.00,,3 weeks,21,2,,1921-11-12,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1921-11-12,,https://shakespeareandco.princeton.edu/members/rice-matilda/,Matilda Rice,"Rice, Matilda",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/richardson-pointed-roofs/,Pointed Roofs (Pilgrimage 1),,"Richardson, Dorothy M.",1915,,Lending Library Card,"Sylvia Beach, Matilda Rice Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ad8eeb53-ecdd-4d4d-99be-0651f54c7214/manifest,https://iiif.princeton.edu/loris/figgy_prod/c7%2F0c%2F29%2Fc70c2915a9ff4a4e888bdbb8f376becf%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-11-12,1921-11-20,https://shakespeareandco.princeton.edu/members/summerell/,Bessie Summerell,"Summerell, Bessie",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/shakespeare-songs-sonnets/,Shakespeare's Sonnets Reconsidered,,"Shakespeare, William",1899,,Lending Library Card,"Sylvia Beach, Bessie Summerell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/14f987ee-ba89-4e64-96e1-8b949f51a921/manifest,https://iiif.princeton.edu/loris/figgy_prod/ee%2F31%2F78%2Fee3178e4c09e48a4826d56a66148cffa%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1921-11-12,1922-01-12,https://shakespeareandco.princeton.edu/members/slack/,Miss Slack-x,"Slack, Miss",16.00,7.00,2 months,61,1,,1921-11-12,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1921-11-12,1921-12-12,https://shakespeareandco.princeton.edu/members/summerell/,Bessie Summerell,"Summerell, Bessie",8.00,7.00,1 month,30,1,,1921-11-12,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Bessie Summerell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/14f987ee-ba89-4e64-96e1-8b949f51a921/manifest,;https://iiif.princeton.edu/loris/figgy_prod/ee%2F31%2F78%2Fee3178e4c09e48a4826d56a66148cffa%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-11-12,1921-12-17,https://shakespeareandco.princeton.edu/members/rice-matilda/,Matilda Rice,"Rice, Matilda",,,,,,,,,Returned,35,,,https://shakespeareandco.princeton.edu/books/conrad-nigger-narcissus/,The Nigger of the Narcissus,,"Conrad, Joseph",1897,,Lending Library Card,"Sylvia Beach, Matilda Rice Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ad8eeb53-ecdd-4d4d-99be-0651f54c7214/manifest,https://iiif.princeton.edu/loris/figgy_prod/c7%2F0c%2F29%2Fc70c2915a9ff4a4e888bdbb8f376becf%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1921-11-14,1921-11-14,https://shakespeareandco.princeton.edu/members/lichtenberger/,Mlle Lichtenberger,"Lichtenberger, Mlle",,,,,,,,7.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1921-11-15,1921-11-17,https://shakespeareandco.princeton.edu/members/wyck/,William van Wyck,"van Wyck, William",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/shaw-john-bulls-island/,John Bull's Other Island,,"Shaw, George Bernard",1907,,Lending Library Card,"Sylvia Beach, William van Wyck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f6b2d812-ade2-4fc6-912e-aab71c67a4a0/manifest,https://iiif.princeton.edu/loris/figgy_prod/a0%2F6f%2F45%2Fa06f452bb28b4e55be9ebfe9a000c2d6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1921-11-17,1922-05-17,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",28.00,,6 months,181,1,,1921-11-02,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1921-11-17,1922-02-17,https://shakespeareandco.princeton.edu/members/kemp-1/,Miss Kemp,"Kemp, Miss",20.00,7.00,3 months,92,1,,1921-11-17,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1921-11-17,1921-11-21,https://shakespeareandco.princeton.edu/members/pottecher-therese/,Therèse Pottecher,"Pottecher, Therèse",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/kirchwey-nation/,The Nation,,,,,Lending Library Card,"Sylvia Beach, Therèse Pottecher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/69b82696-3801-41ff-b1fd-c792179c5b98/manifest,https://iiif-cloud.princeton.edu/iiif/2/9a%2F4e%2F1e%2F9a4e1e31e98242929518656ca46cda2e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-11-17,,https://shakespeareandco.princeton.edu/members/wyck/,William van Wyck,"van Wyck, William",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/merrick-chair-boulevard/,A Chair on the Boulevard,,"Merrick, Leonard",1917,,Lending Library Card,"Sylvia Beach, William van Wyck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f6b2d812-ade2-4fc6-912e-aab71c67a4a0/manifest,https://iiif.princeton.edu/loris/figgy_prod/a0%2F6f%2F45%2Fa06f452bb28b4e55be9ebfe9a000c2d6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1921-11-17,1922-02-17,https://shakespeareandco.princeton.edu/members/harrison-a/,A. Harrison,"Harrison, A.",20.00,7.00,3 months,92,1,,1921-11-17,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1921-11-17,,https://shakespeareandco.princeton.edu/members/pottecher-therese/,Therèse Pottecher,"Pottecher, Therèse",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/herford-childs-primer-natural/,A Child's Primer of Natural History,,"Herford, Oliver",1899,,Lending Library Card,"Sylvia Beach, Therèse Pottecher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/69b82696-3801-41ff-b1fd-c792179c5b98/manifest,https://iiif-cloud.princeton.edu/iiif/2/9a%2F4e%2F1e%2F9a4e1e31e98242929518656ca46cda2e%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1921-11-18,1921-12-18,https://shakespeareandco.princeton.edu/members/hoesen-grace-van/,Grace van Hoesen,"Hoesen, Grace van",8.00,7.00,1 month,30,1,,1921-11-18,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1921-11-18,1921-11-22,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/stevenson-childs-garden-verses/,A Child's Garden of Verses,,"Stevenson, Robert Louis",1885,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/3b%2Ff2%2Fbb%2F3bf2bb50ba8d4372bc67b3f78487aa2c%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1921-11-19,1922-02-19,https://shakespeareandco.princeton.edu/members/rice-matilda/,Matilda Rice,"Rice, Matilda",20.00,,3 months,92,1,,1921-12-17,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Matilda Rice Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ad8eeb53-ecdd-4d4d-99be-0651f54c7214/manifest,https://iiif.princeton.edu/loris/figgy_prod/c7%2F0c%2F29%2Fc70c2915a9ff4a4e888bdbb8f376becf%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-11-20,1921-12-12,https://shakespeareandco.princeton.edu/members/orbison-douglas/,Douglas Orbison,"Orbison, Douglas",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/calderon-tahiti-tihoti/,Tahiti,,"Calderon, George",1921,,Lending Library Card,"Sylvia Beach, Douglas Orbison Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/caa52078-ff03-45a7-8e9f-91526fb744a8/manifest,https://iiif.princeton.edu/loris/figgy_prod/00%2F47%2Fc0%2F0047c075474946c88162606a7c2d5c74%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1921-11-20,1921-11-20,https://shakespeareandco.princeton.edu/members/hervey-leslie/,Leslie Hervey,"Hervey, Leslie",,,,,,,,14.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1921-11-20,1921-12-20,https://shakespeareandco.princeton.edu/members/ancker/,Miss Ancker,"Ancker, Miss",12.00,14.00,1 month,30,2,,1921-11-20,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1921-11-20,1921-12-20,https://shakespeareandco.princeton.edu/members/orbison-douglas/,Douglas Orbison,"Orbison, Douglas",6.40,,1 month,30,1,,1921-11-20,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Douglas Orbison Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/caa52078-ff03-45a7-8e9f-91526fb744a8/manifest,;https://iiif.princeton.edu/loris/figgy_prod/00%2F47%2Fc0%2F0047c075474946c88162606a7c2d5c74%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-11-20,1921-11-29,https://shakespeareandco.princeton.edu/members/summerell/,Bessie Summerell,"Summerell, Bessie",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/butler-way-flesh/,The Way of All Flesh,,"Butler, Samuel",1903,,Lending Library Card,"Sylvia Beach, Bessie Summerell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/14f987ee-ba89-4e64-96e1-8b949f51a921/manifest,https://iiif.princeton.edu/loris/figgy_prod/ee%2F31%2F78%2Fee3178e4c09e48a4826d56a66148cffa%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-11-20,,https://shakespeareandco.princeton.edu/members/orbison-douglas/,Douglas Orbison,"Orbison, Douglas",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/conway-relativity/,Relativity,,"Conway, Arthur William",1915,,Lending Library Card,"Sylvia Beach, Douglas Orbison Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/caa52078-ff03-45a7-8e9f-91526fb744a8/manifest,https://iiif.princeton.edu/loris/figgy_prod/00%2F47%2Fc0%2F0047c075474946c88162606a7c2d5c74%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1921-11-21,1921-12-21,https://shakespeareandco.princeton.edu/members/gilis/,Emma Gilis,"Gilis, Emma",8.00,,1 month,30,1,,1921-11-21,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1921-11-21,1922-11-21,https://shakespeareandco.princeton.edu/members/gibbons-w/,We[unclear] Gibbons,"Gibbons, We[unclear]",64.00,,1 year,365,2,,1921-11-08,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1921-11-21,1921-11-30,https://shakespeareandco.princeton.edu/members/wyck/,William van Wyck,"van Wyck, William",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/merrick-conrad-quest-youth/,Conrad in Quest of His Youth,,"Merrick, Leonard",1903,,Lending Library Card,"Sylvia Beach, William van Wyck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f6b2d812-ade2-4fc6-912e-aab71c67a4a0/manifest,https://iiif.princeton.edu/loris/figgy_prod/a0%2F6f%2F45%2Fa06f452bb28b4e55be9ebfe9a000c2d6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-11-21,1921-11-30,https://shakespeareandco.princeton.edu/members/wyck/,William van Wyck,"van Wyck, William",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/merrick-paris-laughed-pranks/,While Paris Laughed: Being Pranks and Passions of the Poet Tricotrin,,"Merrick, Leonard",1918,,Lending Library Card,"Sylvia Beach, William van Wyck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f6b2d812-ade2-4fc6-912e-aab71c67a4a0/manifest,https://iiif.princeton.edu/loris/figgy_prod/a0%2F6f%2F45%2Fa06f452bb28b4e55be9ebfe9a000c2d6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-11-22,1921-11-25,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/eagle-books-general-first/,Books in General: First Series,,"Squire, J. C.",1917,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/3b%2Ff2%2Fbb%2F3bf2bb50ba8d4372bc67b3f78487aa2c%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1921-11-23,1921-12-23,https://shakespeareandco.princeton.edu/members/carrington-s/,S. Carrington,"Carrington, S.",8.00,7.00,1 month,30,1,,1921-11-23,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1921-11-25,1921-12-21,https://shakespeareandco.princeton.edu/members/varney/,John Varney,"Varney, John",,,,,,,,,Returned,26,,,https://shakespeareandco.princeton.edu/books/santayana-character-opinion-united/,Character and Opinion in the United States,,"Santayana, George",1920,,Lending Library Card,"Sylvia Beach, John Varney Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bbf0a1f9-fa76-478d-8db2-86d29b1a9688/manifest,https://iiif.princeton.edu/loris/figgy_prod/33%2F08%2F40%2F33084074ebfa4e03a319513ab18c35a3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-11-25,1921-12-01,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/eagle-books-general-second/,Books in General: Second Series,,"Squire, J. C.",1920,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/3b%2Ff2%2Fbb%2F3bf2bb50ba8d4372bc67b3f78487aa2c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-11-25,1921-12-21,https://shakespeareandco.princeton.edu/members/varney/,John Varney,"Varney, John",,,,,,,,,Returned,26,,,https://shakespeareandco.princeton.edu/books/whitman-autobiographia/,Autobiographia,,"Whitman, Walt",1892,,Lending Library Card,"Sylvia Beach, John Varney Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bbf0a1f9-fa76-478d-8db2-86d29b1a9688/manifest,https://iiif.princeton.edu/loris/figgy_prod/33%2F08%2F40%2F33084074ebfa4e03a319513ab18c35a3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1921-11-25,1921-12-25,https://shakespeareandco.princeton.edu/members/julian-2/,Mr. Julian,"Julian, Mr.",6.40,,1 month,30,1,,1921-11-24,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1921-11-26,,https://shakespeareandco.princeton.edu/members/wyck/,William van Wyck,"van Wyck, William",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/ibsen-hedda-gabler/,Hedda Gabler,,"Ibsen, Henrik",1891,,Lending Library Card,"Sylvia Beach, William van Wyck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f6b2d812-ade2-4fc6-912e-aab71c67a4a0/manifest,https://iiif.princeton.edu/loris/figgy_prod/a0%2F6f%2F45%2Fa06f452bb28b4e55be9ebfe9a000c2d6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-11-27,1921-11-29,https://shakespeareandco.princeton.edu/members/rhys/,Mr. Rhys,"Rhys, Mr.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/joyce-exiles/,Exiles,,"Joyce, James",1918,,Lending Library Card,"Sylvia Beach, Rhys Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0fcf5eb6-f872-481c-a304-e45a0c9fe472/manifest,https://iiif.princeton.edu/loris/figgy_prod/67%2F3d%2F21%2F673d211972284e099df1c89a348719ce%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1921-11-27,,https://shakespeareandco.princeton.edu/members/rhys/,Mr. Rhys,"Rhys, Mr.",,5.00,,,,,1921-11-27,,,,,FRF,,,,,,,Lending Library Card;Lending Library Card,"Sylvia Beach, Rhys Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Rhys Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0fcf5eb6-f872-481c-a304-e45a0c9fe472/manifest;https://figgy.princeton.edu/concern/scanned_resources/0fcf5eb6-f872-481c-a304-e45a0c9fe472/manifest,;https://iiif.princeton.edu/loris/figgy_prod/67%2F3d%2F21%2F673d211972284e099df1c89a348719ce%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1921-11-28,1922-02-28,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",16.00,,3 months,92,1,,1921-11-28,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,;https://iiif-cloud.princeton.edu/iiif/2/d2%2F47%2F71%2Fd247713ff02e4d05964ed3de9f98c6b6%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-11-28,1921-12-06,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/oriordan-adam-caroline/,Adam and Caroline,,"O'Riordan, Conal",1921,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/d2%2F47%2F71%2Fd247713ff02e4d05964ed3de9f98c6b6%2Fintermediate_file/full/full/0/default.jpg
+Supplement,1921-11-28,1922-02-25,https://shakespeareandco.princeton.edu/members/loge/,Mme LogΓ©,"LogΓ©, Mme",10.00,7.00,"2 months, 28 days",89,2,,1921-11-28,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1921-11-28,1921-11-28,https://shakespeareandco.princeton.edu/members/jiacometti/,Mme Jiacometti,"Jiacometti, Mme",,,,,,,,7.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1921-11-29,1921-12-02,https://shakespeareandco.princeton.edu/members/summerell/,Bessie Summerell,"Summerell, Bessie",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/ibsen-dolls-house/,A Doll's House,,"Ibsen, Henrik",1889,,Lending Library Card,"Sylvia Beach, Bessie Summerell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/14f987ee-ba89-4e64-96e1-8b949f51a921/manifest,https://iiif.princeton.edu/loris/figgy_prod/ee%2F31%2F78%2Fee3178e4c09e48a4826d56a66148cffa%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-11-29,1922-01-03,https://shakespeareandco.princeton.edu/members/wyck/,William van Wyck,"van Wyck, William",,,,,,,,,Returned,35,,,https://shakespeareandco.princeton.edu/books/sayler-russian-theatre/,The Russian Theatre under the Revolution,,"Sayler, Oliver",1920,,Lending Library Card,"Sylvia Beach, William van Wyck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f6b2d812-ade2-4fc6-912e-aab71c67a4a0/manifest,https://iiif.princeton.edu/loris/figgy_prod/a0%2F6f%2F45%2Fa06f452bb28b4e55be9ebfe9a000c2d6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1921-11-29,1921-11-29,https://shakespeareandco.princeton.edu/members/mcfee/,Mrs. McFee,"McFee, Mrs.",,,,,,,,7.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1921-11-30,1922-02-23,https://shakespeareandco.princeton.edu/members/treirse/,Mme de Treirse,"de Treirse, Mme",,,,,,,,,Returned,85,,,https://shakespeareandco.princeton.edu/books/freud-interpretation-dreams/,The Interpretation of Dreams,,"Freud, Sigmund",1913,,Lending Library Card,"Sylvia Beach, Madame de Treirse Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2ccf4854-206d-43f7-b8cd-787b14ed6d9e/manifest,https://iiif.princeton.edu/loris/figgy_prod/46%2Fce%2Fd9%2F46ced90fffe44dacbba0467df8268100%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1921-11-30,1922-02-28,https://shakespeareandco.princeton.edu/members/treirse/,Mme de Treirse,"de Treirse, Mme",20.00,7.00,3 months,90,1,,1921-11-30,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Madame de Treirse Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/2ccf4854-206d-43f7-b8cd-787b14ed6d9e/manifest,;https://iiif.princeton.edu/loris/figgy_prod/46%2Fce%2Fd9%2F46ced90fffe44dacbba0467df8268100%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1921-11-30,1921-12-30,https://shakespeareandco.princeton.edu/members/arnold/,Mrs. Arnold,"Arnold, Mrs.",8.00,7.00,1 month,30,1,,1921-11-30,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1921-12-01,1921-12-08,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/eagle-books-general-third/,Books in General: Third Series,,"Squire, J. C.",1921,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/3b%2Ff2%2Fbb%2F3bf2bb50ba8d4372bc67b3f78487aa2c%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1921-12-01,1922-03-01,https://shakespeareandco.princeton.edu/members/martin-simone/,Simone Martin,"Martin, Simone",20.00,7.00,3 months,90,1,,1921-12-01,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Simone Martin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/72becadf-0964-4c88-a208-bfe860d6a19e/manifest,;https://iiif.princeton.edu/loris/figgy_prod/63%2F51%2F3e%2F63513e379c164896a37c3fbad7e65f48%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-12-01,1921-12-13,https://shakespeareandco.princeton.edu/members/martin-simone/,Simone Martin,"Martin, Simone",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/burney-evelina-history-young/,"Evelina: Or, the History of a Young Lady's Entrance into the World",,"Burney, Fanny",1778,,Lending Library Card,"Sylvia Beach, Simone Martin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72becadf-0964-4c88-a208-bfe860d6a19e/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F51%2F3e%2F63513e379c164896a37c3fbad7e65f48%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-12-02,1921-12-06,https://shakespeareandco.princeton.edu/members/summerell/,Bessie Summerell,"Summerell, Bessie",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/emerson-poems/,Poems,,"Emerson, Ralph Waldo",,Bessie Summerell borrowed *Poems* and FranΓ§ois ValΓ©ry borrowed *Collected Poem,Lending Library Card,"Sylvia Beach, Bessie Summerell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/14f987ee-ba89-4e64-96e1-8b949f51a921/manifest,https://iiif.princeton.edu/loris/figgy_prod/ee%2F31%2F78%2Fee3178e4c09e48a4826d56a66148cffa%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1921-12-02,1922-03-02,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",20.00,,3 months,90,1,,1921-12-02,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,;https://iiif.princeton.edu/loris/figgy_prod/4d%2F3b%2Fff%2F4d3bff71461f45579405294959660eff%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1921-12-02,1922-03-02,https://shakespeareandco.princeton.edu/members/train/,Miss Train,"Train, Miss",20.00,,3 months,90,1,,1921-12-02,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1921-12-02,1921-12-06,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/monro-contemporary-poets/,Some Contemporary Poets (1920),,"Monro, Harold",1920,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/4d%2F3b%2Fff%2F4d3bff71461f45579405294959660eff%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1921-12-03,1921-12-03,https://shakespeareandco.princeton.edu/members/delano-agnes/,Agnes DeLano,"DeLano, Agnes",,,,,,,,7.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1921-12-03,1921-12-17,https://shakespeareandco.princeton.edu/members/mcfee/,Mrs. McFee,"McFee, Mrs.",12.00,,2 weeks,14,1,,1921-11-29,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1921-12-04,1922-03-04,https://shakespeareandco.princeton.edu/members/floran/,Mme Dispan de Floran,"Dispan de Floran, Mme",20.00,,3 months,90,1,,1921-11-08,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1921-12-04,1922-03-04,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",20.00,,3 months,90,,,1921-12-19,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/a3%2F06%2F38%2Fa30638d93f964372ac35745c0f99c8f3%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-12-05,,https://shakespeareandco.princeton.edu/members/wyck/,William van Wyck,"van Wyck, William",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/ellis-studies-psychology-sex/,Studies in the Psychology of Sex,,"Ellis, Havelock",,Unidentified volume in Havelock Ellis's *Studies in the Psychology of Sex* (1897Β βΒ 1928).,Lending Library Card,"Sylvia Beach, William van Wyck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f6b2d812-ade2-4fc6-912e-aab71c67a4a0/manifest,https://iiif.princeton.edu/loris/figgy_prod/a0%2F6f%2F45%2Fa06f452bb28b4e55be9ebfe9a000c2d6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-12-05,1921-12-13,https://shakespeareandco.princeton.edu/members/stein-gertrude/,Gertrude Stein,"Stein, Gertrude",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/carswell-open-door/,Open the Door,,"Carswell, Catherine",1920,,Lending Library Card,"Sylvia Beach, Gertrude Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f6f307d-2eb7-4960-8dc1-9dec4ea53022/manifest,https://iiif.princeton.edu/loris/figgy_prod/07%2Fb7%2F83%2F07b7834be68d4584bb89d8ef97efcf11%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-12-05,1921-12-13,https://shakespeareandco.princeton.edu/members/stein-gertrude/,Gertrude Stein,"Stein, Gertrude",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/tarkington-alice-adams/,Alice Adams,,"Tarkington, Booth",1921,,Lending Library Card,"Sylvia Beach, Gertrude Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f6f307d-2eb7-4960-8dc1-9dec4ea53022/manifest,https://iiif.princeton.edu/loris/figgy_prod/07%2Fb7%2F83%2F07b7834be68d4584bb89d8ef97efcf11%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1921-12-06,1922-01-06,https://shakespeareandco.princeton.edu/members/griffith/,Mrs. Griffith,"Griffith, Mrs.",12.00,14.00,1 month,31,2,,1921-12-06,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1921-12-06,1921-12-10,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/mordell-erotic-motive-literature/,The Erotic Motive In Literature,,"Mordell, Albert",1919,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/4d%2F3b%2Fff%2F4d3bff71461f45579405294959660eff%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-12-06,1921-12-10,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/squire-london-mercury/,The London Mercury,,,,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/4d%2F3b%2Fff%2F4d3bff71461f45579405294959660eff%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-12-06,1921-12-15,https://shakespeareandco.princeton.edu/members/summerell/,Bessie Summerell,"Summerell, Bessie",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/yeats-plays/,Plays,,"Yeats, William Butler",,Unidentified edition or editions.,Lending Library Card,"Sylvia Beach, Bessie Summerell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/14f987ee-ba89-4e64-96e1-8b949f51a921/manifest,https://iiif.princeton.edu/loris/figgy_prod/ee%2F31%2F78%2Fee3178e4c09e48a4826d56a66148cffa%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-12-06,1921-12-13,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/anderson-marching-men/,Marching Men,,"Anderson, Sherwood",1917,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/d2%2F47%2F71%2Fd247713ff02e4d05964ed3de9f98c6b6%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-12-07,,https://shakespeareandco.princeton.edu/members/linossier-raymonde/,Raymonde Linossier,"Linossier, Raymonde",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/clouston-lunatic-large-novel/,The Lunatic at Large: A Novel,,"Clouston, J. Storer",1899,,Lending Library Card,"Sylvia Beach, Raymonde Linossier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/53ede5bf-939d-44f5-9ddb-4dd39363bd20/manifest,https://iiif.princeton.edu/loris/figgy_prod/00%2F34%2F2f%2F00342f6fa20c49eb905cc64a929bc405%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-12-08,1921-12-13,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/morley-tales-rolltop-desk/,Tales from a Rolltop Desk,,"Morley, Christopher",1921,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/3b%2Ff2%2Fbb%2F3bf2bb50ba8d4372bc67b3f78487aa2c%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1921-12-09,1922-06-09,https://shakespeareandco.princeton.edu/members/davis/,Mrs. Davis,"Davis, Mrs.",8.00,,6 months,182,1,,1921-12-09,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1921-12-09,1921-12-19,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/austin-26-jayne-street/,No. 26 Jayne Street,,"Austin, Mary Hunter",1920,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/a3%2F06%2F38%2Fa30638d93f964372ac35745c0f99c8f3%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-12-10,1921-12-15,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/child-love-unlove/,Love and Unlove,,"Child, Harold",1921,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/4d%2F3b%2Fff%2F4d3bff71461f45579405294959660eff%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1921-12-12,1922-01-12,https://shakespeareandco.princeton.edu/members/kuntz-1/,Mrs. Charles Kuntz,"Kuntz, Mrs. Charles",12.00,14.00,1 month,31,2,,1921-12-12,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1921-12-12,1922-01-12,https://shakespeareandco.princeton.edu/members/macirone/,Miss Macirone,"Macirone, Miss",8.00,7.00,1 month,31,1,,1921-12-12,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1921-12-12,,https://shakespeareandco.princeton.edu/members/wyck/,William van Wyck,"van Wyck, William",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/thackeray-newcomes/,The Newcomes: Memoirs of a Most Respectable Family,,"Thackeray, William Makepeace",1855,,Lending Library Card,"Sylvia Beach, William van Wyck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f6b2d812-ade2-4fc6-912e-aab71c67a4a0/manifest,https://iiif.princeton.edu/loris/figgy_prod/a0%2F6f%2F45%2Fa06f452bb28b4e55be9ebfe9a000c2d6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-12-12,1921-12-28,https://shakespeareandco.princeton.edu/members/orbison-douglas/,Douglas Orbison,"Orbison, Douglas",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/strindberg-plays-august-strindberg-second/,Plays by August Strindberg: Second Series,,"Strindberg, August",1913,,Lending Library Card,"Sylvia Beach, Douglas Orbison Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/caa52078-ff03-45a7-8e9f-91526fb744a8/manifest,https://iiif.princeton.edu/loris/figgy_prod/00%2F47%2Fc0%2F0047c075474946c88162606a7c2d5c74%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-12-12,,https://shakespeareandco.princeton.edu/members/wyck/,William van Wyck,"van Wyck, William",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/craig-theatre-advancing/,The Theatre Advancing,,"Craig, Edward Gordon",1919,,Lending Library Card,"Sylvia Beach, William van Wyck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f6b2d812-ade2-4fc6-912e-aab71c67a4a0/manifest,https://iiif.princeton.edu/loris/figgy_prod/a0%2F6f%2F45%2Fa06f452bb28b4e55be9ebfe9a000c2d6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-12-13,,https://shakespeareandco.princeton.edu/members/pottecher-therese/,Therèse Pottecher,"Pottecher, Therèse",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/de-la-mare-peacock-pie-book/,Peacock Pie: A Book of Rhymes,,"De la Mare, Walter",1920,,Lending Library Card,"Sylvia Beach, Therèse Pottecher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/69b82696-3801-41ff-b1fd-c792179c5b98/manifest,https://iiif-cloud.princeton.edu/iiif/2/9a%2F4e%2F1e%2F9a4e1e31e98242929518656ca46cda2e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-12-13,1921-12-16,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/undergrowth/,Undergrowth,,,,Unidentified. George Bragdon's *Undergrowth* (1895) or F. and E. Young's *Undergrowth* (1920).,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/3b%2Ff2%2Fbb%2F3bf2bb50ba8d4372bc67b3f78487aa2c%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1921-12-13,1922-03-13,https://shakespeareandco.princeton.edu/members/bloch-2/,Mlle Bloch,"Bloch, Mlle",20.00,,3 months,90,1,,1921-12-13,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1921-12-13,1922-01-13,https://shakespeareandco.princeton.edu/members/nunn/,Miss Nunn,"Nunn, Miss",8.00,7.00,1 month,31,1,,1921-12-13,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1921-12-13,1921-12-15,https://shakespeareandco.princeton.edu/members/martin-simone/,Simone Martin,"Martin, Simone",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/dowden-shakspere-critical-study/,Shakespeare: A Critical Study of His Mind and Art,,"Dowden, Edward",1875,,Lending Library Card,"Sylvia Beach, Simone Martin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72becadf-0964-4c88-a208-bfe860d6a19e/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F51%2F3e%2F63513e379c164896a37c3fbad7e65f48%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-12-13,1922-01-04,https://shakespeareandco.princeton.edu/members/stein-gertrude/,Gertrude Stein,"Stein, Gertrude",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/walpole-young-enchanted/,The Young Enchanted,,"Walpole, Hugh",1921,,Lending Library Card,"Sylvia Beach, Gertrude Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f6f307d-2eb7-4960-8dc1-9dec4ea53022/manifest,https://iiif.princeton.edu/loris/figgy_prod/07%2Fb7%2F83%2F07b7834be68d4584bb89d8ef97efcf11%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-12-13,1921-12-19,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/mackenzie-rich-relatives/,Rich Relatives,,"Mackenzie, Compton",1921,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/d2%2F47%2F71%2Fd247713ff02e4d05964ed3de9f98c6b6%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1921-12-13,1922-03-13,https://shakespeareandco.princeton.edu/members/holden-m-l/,M. L. Holden,"Holden, M. L.",20.00,7.00,3 months,90,1,,1921-12-13,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1921-12-13,1922-01,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/stevenson-new-arabian-nights/,New Arabian Nights,,"Stevenson, Robert Louis",1882,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/e9%2F30%2F98%2Fe93098b0dad84c25a10ad281283ba11d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-12-13,1922-01-04,https://shakespeareandco.princeton.edu/members/stein-gertrude/,Gertrude Stein,"Stein, Gertrude",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/armstrong-groper/,The Groper,,"Aikman, Henry G.",1919,,Lending Library Card,"Sylvia Beach, Gertrude Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f6f307d-2eb7-4960-8dc1-9dec4ea53022/manifest,https://iiif.princeton.edu/loris/figgy_prod/07%2Fb7%2F83%2F07b7834be68d4584bb89d8ef97efcf11%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1921-12-14,1922-01-14,https://shakespeareandco.princeton.edu/members/cole/,Mrs. L. A. Cole,"Cole, Mrs. L. A.",8.00,7.00,1 month,31,1,,1921-12-14,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1921-12-14,1921-12-14,https://shakespeareandco.princeton.edu/members/mcfee/,Mrs. McFee,"McFee, Mrs.",,,,,,,,14.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1921-12-14,1922-01-14,https://shakespeareandco.princeton.edu/members/lichtenberger/,Mlle Lichtenberger,"Lichtenberger, Mlle",8.00,,1 month,31,1,,1921-12-13,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1921-12-15,1922-01-24,https://shakespeareandco.princeton.edu/members/schereck/,Mildred Schereck,"Schereck, Mildred",,,,,,,,,Returned,40,,,https://shakespeareandco.princeton.edu/books/tagore-king-dark-chamber/,The King of the Dark Chamber,,"Tagore, Rabindranath",1910,,Lending Library Card,"Sylvia Beach, Mildred Schereck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3b15ea0c-ed8d-4b41-80f3-33485620b12c/manifest,https://iiif-cloud.princeton.edu/iiif/2/65%2F5f%2F8a%2F655f8aeadadb48bfa319309d0b2dab6b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-12-15,1922-01-24,https://shakespeareandco.princeton.edu/members/schereck/,Mildred Schereck,"Schereck, Mildred",,,,,,,,,Returned,40,,,https://shakespeareandco.princeton.edu/books/austen-sense-sensibility/,Sense and Sensibility,,"Austen, Jane",1811,,Lending Library Card,"Sylvia Beach, Mildred Schereck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3b15ea0c-ed8d-4b41-80f3-33485620b12c/manifest,https://iiif-cloud.princeton.edu/iiif/2/65%2F5f%2F8a%2F655f8aeadadb48bfa319309d0b2dab6b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-12-15,1922-01-13,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,29,,,https://shakespeareandco.princeton.edu/books/pound-umbra-early-poems/,Umbra: The Early Poems of Ezra Pound,,"Pound, Ezra",1920,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/4d%2F3b%2Fff%2F4d3bff71461f45579405294959660eff%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-12-15,1921-12-31,https://shakespeareandco.princeton.edu/members/summerell/,Bessie Summerell,"Summerell, Bessie",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/barrie-half-hours/,Half Hours,,"Barrie, J. M.",1914,,Lending Library Card,"Sylvia Beach, Bessie Summerell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/14f987ee-ba89-4e64-96e1-8b949f51a921/manifest,https://iiif.princeton.edu/loris/figgy_prod/ee%2F31%2F78%2Fee3178e4c09e48a4826d56a66148cffa%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-12-15,,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/a-e-candle-vision/,The Candle of Vision,,Γ,1918,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/4d%2F3b%2Fff%2F4d3bff71461f45579405294959660eff%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-12-16,1921-12-24,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/pleasures-innocence/,The Pleasures of Innocence,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/3b%2Ff2%2Fbb%2F3bf2bb50ba8d4372bc67b3f78487aa2c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-12-17,1922-01-14,https://shakespeareandco.princeton.edu/members/pottecher-therese/,Therèse Pottecher,"Pottecher, Therèse",,,,,,,,,Returned,28,,,https://shakespeareandco.princeton.edu/books/macaulay-potterism/,Potterism,,"Macaulay, Rose",1920,,Lending Library Card,"Sylvia Beach, Therèse Pottecher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/69b82696-3801-41ff-b1fd-c792179c5b98/manifest,https://iiif-cloud.princeton.edu/iiif/2/9a%2F4e%2F1e%2F9a4e1e31e98242929518656ca46cda2e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-12-18,1921-12-23,https://shakespeareandco.princeton.edu/members/martin-simone/,Simone Martin,"Martin, Simone",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/burney-evelina-history-young/,"Evelina: Or, the History of a Young Lady's Entrance into the World",,"Burney, Fanny",1778,,Lending Library Card,"Sylvia Beach, Simone Martin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72becadf-0964-4c88-a208-bfe860d6a19e/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F51%2F3e%2F63513e379c164896a37c3fbad7e65f48%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-12-19,1921-12-24,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/shaw-back-methuselah-metabiological/,Back to Methuselah (A Metabiological Pentateuch),,"Shaw, George Bernard",1921,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/d2%2F47%2F71%2Fd247713ff02e4d05964ed3de9f98c6b6%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1921-12-19,1921-12-19,https://shakespeareandco.princeton.edu/members/hoesen-grace-van/,Grace van Hoesen,"Hoesen, Grace van",,,,,,,,7.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1921-12-19,1921-12-23,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/davies-autobiography-super-tramp/,The Autobiography of a Super-Tramp,,"Davies, W. H.",1908,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/a3%2F06%2F38%2Fa30638d93f964372ac35745c0f99c8f3%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1921-12-20,1921-12-20,https://shakespeareandco.princeton.edu/members/ancker/,Miss Ancker,"Ancker, Miss",,,,,,,,14.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1921-12-20,1921-12-20,https://shakespeareandco.princeton.edu/members/carrington-s/,S. Carrington,"Carrington, S.",,,,,,,,7.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1921-12-22,1922-03-22,https://shakespeareandco.princeton.edu/members/de-laguna/,Theodore de Laguna,"de Laguna, Theodore",20.00,7.00,3 months,90,1,,1921-12-22,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1921-12-22,1921-12-22,https://shakespeareandco.princeton.edu/members/gilis/,Emma Gilis,"Gilis, Emma",,,,,,,,7.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1921-12-23,1922-01-23,https://shakespeareandco.princeton.edu/members/fox-r-w/,R. W. Fox,"Fox, R. W.",8.00,7.00,1 month,31,1,,1921-12-23,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1921-12-23,1922-01-03,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/diary-american-girl/,The Diary of an American Girl,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/a3%2F06%2F38%2Fa30638d93f964372ac35745c0f99c8f3%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-12-23,1922-01-03,https://shakespeareandco.princeton.edu/members/martin-simone/,Simone Martin,"Martin, Simone",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/dowden-shakespeare/,Shakespeare,,"Dowden, Edward",1877,"From the literature primers series, edited by John Richard Green.",Lending Library Card,"Sylvia Beach, Simone Martin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72becadf-0964-4c88-a208-bfe860d6a19e/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F51%2F3e%2F63513e379c164896a37c3fbad7e65f48%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-12-24,1921-12-27,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/september/,September,,,,Unidentified. Likely Frank Swinnerton's *September* (1919).,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/3b%2Ff2%2Fbb%2F3bf2bb50ba8d4372bc67b3f78487aa2c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-12-24,1921-12-26,https://shakespeareandco.princeton.edu/members/wyck/,William van Wyck,"van Wyck, William",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/london-strength-strong/,The Strength of the Strong,,"London, Jack",1911,,Lending Library Card,"Sylvia Beach, William van Wyck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f6b2d812-ade2-4fc6-912e-aab71c67a4a0/manifest,https://iiif.princeton.edu/loris/figgy_prod/a0%2F6f%2F45%2Fa06f452bb28b4e55be9ebfe9a000c2d6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-12-24,1921-12-31,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/lawrence-prussian-officer-stories/,The Prussian Officer and Other Stories,,"Lawrence, D. H.",1914,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/93%2F38%2Fde%2F9338deb2d88c414e97c485170ee7520f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-12-24,1921-12-27,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/scott-narrow-house/,The Narrow House,,"Scott, Evelyn",1921,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/d2%2F47%2F71%2Fd247713ff02e4d05964ed3de9f98c6b6%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-12-24,1921-12-31,https://shakespeareandco.princeton.edu/members/wyck/,William van Wyck,"van Wyck, William",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/london-night-born/,The Night-Born,,"London, Jack",1913,,Lending Library Card,"Sylvia Beach, William van Wyck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f6b2d812-ade2-4fc6-912e-aab71c67a4a0/manifest,https://iiif.princeton.edu/loris/figgy_prod/a0%2F6f%2F45%2Fa06f452bb28b4e55be9ebfe9a000c2d6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-12-24,1921-12-27,https://shakespeareandco.princeton.edu/members/wyck/,William van Wyck,"van Wyck, William",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/wood-tell-birds-flowers/,How to Tell the Birds from the Flowers: A Manual of Flornithology for Beginners,,"Wood, Robert Williams",1907,,Lending Library Card,"Sylvia Beach, William van Wyck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f6b2d812-ade2-4fc6-912e-aab71c67a4a0/manifest,https://iiif.princeton.edu/loris/figgy_prod/a0%2F6f%2F45%2Fa06f452bb28b4e55be9ebfe9a000c2d6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1921-12-26,1922-12-26,https://shakespeareandco.princeton.edu/members/boudreuax/,Jacqueline Boudreaux,"Boudreaux, Jacqueline",60.00,7.00,1 year,365,1,,1921-12-26,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1921-12-26,1922-12-26,https://shakespeareandco.princeton.edu/members/gundrey/,Mlle Gindrey,"Gindrey, Mlle",60.00,7.00,1 year,365,1,,1921-12-26,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1921-12-27,1922-03-30,https://shakespeareandco.princeton.edu/members/milhaud/,Madeleine Milhaud,"Milhaud, Madeleine",,,,,,,,,Returned,93,,,https://shakespeareandco.princeton.edu/books/wells-new-machiavelli/,The New Machiavelli,,"Wells, H. G.",1910,,Lending Library Card,"Sylvia Beach, Madeleine Milhaud Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/30bac701-0f7f-4f16-b790-8c7876940713/manifest,https://iiif.princeton.edu/loris/figgy_prod/7a%2F7b%2Fd1%2F7a7bd1a81c4a4f558978f622836aabf7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-12-27,1922-01-02,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/kaye-smith-joanna-godden/,Joanna Godden,,"Kaye-Smith, Sheila",1921,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/d2%2F47%2F71%2Fd247713ff02e4d05964ed3de9f98c6b6%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1921-12-27,1922-12-27,https://shakespeareandco.princeton.edu/members/pfeiffer-mme/,Mme Pfeiffer,"Pfeiffer, Mme",48.00,,1 year,365,1,,1921-12-27,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1921-12-27,1922-01-10,https://shakespeareandco.princeton.edu/members/fothergill/,Mrs. J. R. Fothergill,"Fothergill, Mrs. J. R.",4.00,7.00,2 weeks,14,1,,1921-12-27,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1921-12-27,1921-12-31,https://shakespeareandco.princeton.edu/members/wyck/,William van Wyck,"van Wyck, William",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/london-road/,The Road,,"London, Jack",1907,,Lending Library Card,"Sylvia Beach, William van Wyck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f6b2d812-ade2-4fc6-912e-aab71c67a4a0/manifest,https://iiif.princeton.edu/loris/figgy_prod/a0%2F6f%2F45%2Fa06f452bb28b4e55be9ebfe9a000c2d6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-12-27,1922-01-07,https://shakespeareandco.princeton.edu/members/rice-matilda/,Matilda Rice,"Rice, Matilda",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/hergesheimer-linda-condon/,Linda Condon,,"Hergesheimer, Joseph",1919,,Lending Library Card,"Sylvia Beach, Matilda Rice Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ad8eeb53-ecdd-4d4d-99be-0651f54c7214/manifest,https://iiif.princeton.edu/loris/figgy_prod/c7%2F0c%2F29%2Fc70c2915a9ff4a4e888bdbb8f376becf%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1921-12-27,1922-12-27,https://shakespeareandco.princeton.edu/members/milhaud/,Madeleine Milhaud,"Milhaud, Madeleine",16.00,,1 year,365,2,,1922-02-11,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Madeleine Milhaud Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/30bac701-0f7f-4f16-b790-8c7876940713/manifest,;https://iiif.princeton.edu/loris/figgy_prod/7a%2F7b%2Fd1%2F7a7bd1a81c4a4f558978f622836aabf7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-12-27,1921-12-31,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/foster-coquette-history-eliza/,"The Coquette; Or, the History of Eliza Wharton",,"Foster, Hannah Webster",1797,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/3b%2Ff2%2Fbb%2F3bf2bb50ba8d4372bc67b3f78487aa2c%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1921-12-28,1922-01-28,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",12.00,,1 month,31,2,,1921-12-28,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Purchase,1921-12-28,1921-12-28,https://shakespeareandco.princeton.edu/members/orbison-douglas/,Douglas Orbison,"Orbison, Douglas",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/andreyev-king-loses-head/,When the King Loses His Head and Other Stories,,"Andreyev, Leonid",1920,,Lending Library Card,"Sylvia Beach, Douglas Orbison Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/caa52078-ff03-45a7-8e9f-91526fb744a8/manifest,https://iiif.princeton.edu/loris/figgy_prod/00%2F47%2Fc0%2F0047c075474946c88162606a7c2d5c74%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-12-29,,https://shakespeareandco.princeton.edu/members/rice-matilda/,Matilda Rice,"Rice, Matilda",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/powys-rabelais-life/,"Rabelais, His Life",,"Powys, John Cowper",1913,,Lending Library Card,"Sylvia Beach, Matilda Rice Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ad8eeb53-ecdd-4d4d-99be-0651f54c7214/manifest,https://iiif.princeton.edu/loris/figgy_prod/c7%2F0c%2F29%2Fc70c2915a9ff4a4e888bdbb8f376becf%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1921-12-30,1922-01-13,https://shakespeareandco.princeton.edu/members/tipple/,Mr. Tipple,"Tipple, Mr.",8.00,14.00,2 weeks,14,2,,1921-12-30,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1921-12-30,1922-03-30,https://shakespeareandco.princeton.edu/members/latrasse/,Mlle Latrasse,"Latrasse, Mlle",16.00,,3 months,90,1,,1921-12-09,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1921-12-31,1922-01-31,https://shakespeareandco.princeton.edu/members/ashworth/,Roscoe Ashworth,"Ashworth, Roscoe",8.00,7.00,1 month,31,1,,1921-12-31,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1921-12-31,1922-01-07,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/mcalmon-hasty-bunch/,A Hasty Bunch,,"McAlmon, Robert",1921,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/93%2F38%2Fde%2F9338deb2d88c414e97c485170ee7520f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1921-12-31,1922-01-04,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/swinnerton-nocturne/,Nocturne,,"Swinnerton, Frank",1917,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/3b%2Ff2%2Fbb%2F3bf2bb50ba8d4372bc67b3f78487aa2c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1921-12-31,1922-01-03,https://shakespeareandco.princeton.edu/members/wyck/,William van Wyck,"van Wyck, William",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/dehan-hath-wings-novel/,That Which Hath Wings: A Novel of the Day,,"Dehan, Richard",1918,,Lending Library Card,"Sylvia Beach, William van Wyck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f6b2d812-ade2-4fc6-912e-aab71c67a4a0/manifest,https://iiif.princeton.edu/loris/figgy_prod/a0%2F6f%2F45%2Fa06f452bb28b4e55be9ebfe9a000c2d6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1922-01-01,1922-02-01,https://shakespeareandco.princeton.edu/members/davies/,Captain Davies,"Davies, Captain",12.00,,1 month,31,2,,1921-12-31,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-01-02,1922-01-06,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/young-young-physician/,The Young Physician,,"Young, Francis Brett",1920,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/d2%2F47%2F71%2Fd247713ff02e4d05964ed3de9f98c6b6%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1922-01-02,1922-02-02,https://shakespeareandco.princeton.edu/members/hanscom-j-f/,J. F. Hanscom,"Hanscom, J. F.",8.00,7.00,1 month,31,1,,1922-01-02,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1922-01-03,1922-02-03,https://shakespeareandco.princeton.edu/members/auge/,Lucy AugΓ©,"AugΓ©, Lucy",8.00,7.00,1 month,31,1,,1922-01-03,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-01-03,1922-01-04,https://shakespeareandco.princeton.edu/members/wyck/,William van Wyck,"van Wyck, William",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/norris-shanghaied/,Shanghaied,,"Norris, Frank",1920,,Lending Library Card,"Sylvia Beach, William van Wyck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f6b2d812-ade2-4fc6-912e-aab71c67a4a0/manifest,https://iiif.princeton.edu/loris/figgy_prod/a0%2F6f%2F45%2Fa06f452bb28b4e55be9ebfe9a000c2d6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-01-03,1922-01-19,https://shakespeareandco.princeton.edu/members/martin-simone/,Simone Martin,"Martin, Simone",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/burney-evelina-history-young/,"Evelina: Or, the History of a Young Lady's Entrance into the World",,"Burney, Fanny",1778,,Lending Library Card,"Sylvia Beach, Simone Martin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72becadf-0964-4c88-a208-bfe860d6a19e/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F51%2F3e%2F63513e379c164896a37c3fbad7e65f48%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1922-01-03,1922-02-03,https://shakespeareandco.princeton.edu/members/mcdonald/,Mr. McDonald,"McDonald, Mr.",8.00,,1 month,31,1,,1922-01-03,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1922-01-03,1922-02-03,https://shakespeareandco.princeton.edu/members/clark-b-h/,B. H. Clark,"Clark, B. H.",8.00,7.00,1 month,31,1,,1922-01-03,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1922-01-03,1922-04-03,https://shakespeareandco.princeton.edu/members/wyck/,William van Wyck,"van Wyck, William",16.00,,3 months,90,1,,1922-01-03,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, William van Wyck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/f6b2d812-ade2-4fc6-912e-aab71c67a4a0/manifest,;https://iiif.princeton.edu/loris/figgy_prod/a0%2F6f%2F45%2Fa06f452bb28b4e55be9ebfe9a000c2d6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1922-01-03,1922-02-03,https://shakespeareandco.princeton.edu/members/cahn-sylvain/,Sylvain Cahn,"Cahn, Sylvain",8.00,7.00,1 month,31,1,,1922-01-03,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-01-03,1922-05-16,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,133,,,https://shakespeareandco.princeton.edu/books/anderson-poor-white/,Poor White,,"Anderson, Sherwood",1920,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/a3%2F06%2F38%2Fa30638d93f964372ac35745c0f99c8f3%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-01-04,,https://shakespeareandco.princeton.edu/members/wyck/,William van Wyck,"van Wyck, William",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/davis-van-bibber-others/,Van Bibber and Others,,"Davis, Richard Harding",1892,,Lending Library Card,"Sylvia Beach, William van Wyck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f6b2d812-ade2-4fc6-912e-aab71c67a4a0/manifest,https://iiif.princeton.edu/loris/figgy_prod/a0%2F6f%2F45%2Fa06f452bb28b4e55be9ebfe9a000c2d6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-01-04,1922-01-13,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/richardson-honeycomb-pilgrimage-3/,Honeycomb (Pilgrimage 3),,"Richardson, Dorothy M.",1917,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/3b%2Ff2%2Fbb%2F3bf2bb50ba8d4372bc67b3f78487aa2c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-01-04,1922-01-23,https://shakespeareandco.princeton.edu/members/stein-gertrude/,Gertrude Stein,"Stein, Gertrude",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/cather-antonia/,My Antonia,,"Cather, Willa",1918,,Lending Library Card,"Sylvia Beach, Gertrude Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f6f307d-2eb7-4960-8dc1-9dec4ea53022/manifest,https://iiif.princeton.edu/loris/figgy_prod/07%2Fb7%2F83%2F07b7834be68d4584bb89d8ef97efcf11%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-01-04,1922-01-23,https://shakespeareandco.princeton.edu/members/stein-gertrude/,Gertrude Stein,"Stein, Gertrude",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/picked-company/,A Picked Company,,,,"Unidentified. Mary Hallock Foote's *A Picked Company: A Novel* (1912) or Hilaire Belloc's *A Picked Company: Being a Selection from the Writings of H. Belloc,* edited by E. V. Lucas (1915).",Lending Library Card,"Sylvia Beach, Gertrude Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f6f307d-2eb7-4960-8dc1-9dec4ea53022/manifest,https://iiif.princeton.edu/loris/figgy_prod/07%2Fb7%2F83%2F07b7834be68d4584bb89d8ef97efcf11%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-01-04,1922-01-06,https://shakespeareandco.princeton.edu/members/pottier/,Mlle Pottier,"Pottier, Mlle",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/dell-hundredth-chance/,The Hundredth Chance,,"Dell, Ethel M.",1917,,Lending Library Card,"Sylvia Beach, Mlle Pottier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d08fdc25-a68c-4488-ade4-587774580c6c/manifest,https://iiif.princeton.edu/loris/figgy_prod/d4%2Fb4%2F02%2Fd4b402b19e3b4d2095ad4cee65159637%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1922-01-04,1922-02-04,https://shakespeareandco.princeton.edu/members/pottier/,Mlle Pottier,"Pottier, Mlle",8.00,7.00,1 month,31,1,,1922-01-04,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Mlle Pottier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/d08fdc25-a68c-4488-ade4-587774580c6c/manifest,;https://iiif.princeton.edu/loris/figgy_prod/d4%2Fb4%2F02%2Fd4b402b19e3b4d2095ad4cee65159637%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1922-01-04,1922-02-04,https://shakespeareandco.princeton.edu/members/beck/,Dorothy Beck,"Beck, Dorothy",12.00,14.00,1 month,31,2,,1922-01-04,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1922-01-05,1922-02-05,https://shakespeareandco.princeton.edu/members/unnamed-member-4/,[unnamed member],[unnamed member],12.00,14.00,1 month,31,2,,1922-01-05,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-01-06,1922-01-16,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/foster-coquette-history-eliza/,"The Coquette; Or, the History of Eliza Wharton",,"Foster, Hannah Webster",1797,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/d2%2F47%2F71%2Fd247713ff02e4d05964ed3de9f98c6b6%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-01-06,1922-01-06,https://shakespeareandco.princeton.edu/members/pottier/,Mlle Pottier,"Pottier, Mlle",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/jerome-three-men-boat/,Three Men in a Boat (To Say Nothing of the Dog),,"Jerome, Jerome K.",1889,,Lending Library Card,"Sylvia Beach, Mlle Pottier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d08fdc25-a68c-4488-ade4-587774580c6c/manifest,https://iiif.princeton.edu/loris/figgy_prod/d4%2Fb4%2F02%2Fd4b402b19e3b4d2095ad4cee65159637%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1922-01-07,1922-01-21,https://shakespeareandco.princeton.edu/members/gombrich/,Mme Gombrich,"Gombrich, Mme",8.00,7.00,2 weeks,14,1,,1922-01-07,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1922-01-07,1922-02-07,https://shakespeareandco.princeton.edu/members/martin-maud/,Maud Martin,"Martin, Maud",8.00,7.00,1 month,31,1,,1922-01-07,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Maud Martin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/934c6444-6b2c-4d42-acea-282118c23e5a/manifest,;https://iiif.princeton.edu/loris/figgy_prod/20%2F2e%2F91%2F202e91695dcb418e9d6b53721827e013%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-01-07,1922-01-21,https://shakespeareandco.princeton.edu/members/rice-matilda/,Matilda Rice,"Rice, Matilda",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/sinnett-growth-soul/,The Growth of the Soul,,"Sinnett, A. P.",1918,,Lending Library Card,"Sylvia Beach, Matilda Rice Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ad8eeb53-ecdd-4d4d-99be-0651f54c7214/manifest,https://iiif.princeton.edu/loris/figgy_prod/c7%2F0c%2F29%2Fc70c2915a9ff4a4e888bdbb8f376becf%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1922-01-07,1922-01-07,https://shakespeareandco.princeton.edu/members/orbison-douglas/,Douglas Orbison,"Orbison, Douglas",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/wilde-profundis/,De Profundis,,"Wilde, Oscar",1905,,Lending Library Card,"Sylvia Beach, Douglas Orbison Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/caa52078-ff03-45a7-8e9f-91526fb744a8/manifest,https://iiif.princeton.edu/loris/figgy_prod/00%2F47%2Fc0%2F0047c075474946c88162606a7c2d5c74%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-01-07,1922-01-11,https://shakespeareandco.princeton.edu/members/martin-maud/,Maud Martin,"Martin, Maud",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/wassermann-worlds-illusion/,The World's Illusion,2 vols.,"Wassermann, Jakob",1920,,Lending Library Card,"Sylvia Beach, Maud Martin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/934c6444-6b2c-4d42-acea-282118c23e5a/manifest,https://iiif.princeton.edu/loris/figgy_prod/20%2F2e%2F91%2F202e91695dcb418e9d6b53721827e013%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-01-07,1922-01-17,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/white-peacock/,The White Peacock,,"Lawrence, D. H.",1911,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/93%2F38%2Fde%2F9338deb2d88c414e97c485170ee7520f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1922-01-09,1922-04-09,https://shakespeareandco.princeton.edu/members/lowenfeld/,Mme Lowenfeld,"Lowenfeld, Mme",30.00,14.00,3 months,90,2,,1922-01-09,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1922-01-09,1923-01-09,https://shakespeareandco.princeton.edu/members/richardson-hadley/,Hadley Richardson / Mrs. Hemingway,"Richardson, Hadley",30.00,,1 year,365,2,,1922-01-09,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1922-01-09,1922-04-09,https://shakespeareandco.princeton.edu/members/lowenfeld-mlle/,Mlle Lowenfeld,"Lowenfeld, Mlle",30.00,14.00,3 months,90,2,,1922-01-09,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-01-09,,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/galsworthy-let-forsyte-saga/,To Let (The Forsyte Saga),,"Galsworthy, John",1921,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/93%2F38%2Fde%2F9338deb2d88c414e97c485170ee7520f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1922-01-09,1922-02-09,https://shakespeareandco.princeton.edu/members/bourget/,Mme Bourget,"Bourget, Mme",12.00,14.00,1 month,31,2,,1922-01-09,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1922-01-09,1922-02-09,https://shakespeareandco.princeton.edu/members/coates-robert/,Robert Coates,"Coates, Robert",8.00,7.00,1 month,31,1,,1922-01-09,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1922-01-09,1922-01-09,https://shakespeareandco.princeton.edu/members/tipple/,Mr. Tipple,"Tipple, Mr.",,,,,,,,14.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1922-01-10,1922-03-10,https://shakespeareandco.princeton.edu/members/milliken/,Mrs. Milliken,"Milliken, Mrs.",24.00,,2 months,59,2,,1922-01-03,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-01-10,1922-02-22,https://shakespeareandco.princeton.edu/members/wyck/,William van Wyck,"van Wyck, William",,,,,,,,,Returned,43,,,https://shakespeareandco.princeton.edu/books/powys-rabelais-life/,"Rabelais, His Life",,"Powys, John Cowper",1913,,Lending Library Card,"Sylvia Beach, William van Wyck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f6b2d812-ade2-4fc6-912e-aab71c67a4a0/manifest,https://iiif.princeton.edu/loris/figgy_prod/f8%2Ffa%2Fc6%2Ff8fac60312814e4aaa2355fd72972c21%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1922-01-11,1922-02-11,https://shakespeareandco.princeton.edu/members/unnamed-member-5/,[unnamed member],[unnamed member],8.00,,1 month,31,1,,1922-01-11,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-01-11,1922-01-14,https://shakespeareandco.princeton.edu/members/martin-maud/,Maud Martin,"Martin, Maud",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/sinnett-growth-soul/,The Growth of the Soul,,"Sinnett, A. P.",1918,,Lending Library Card,"Sylvia Beach, Maud Martin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/934c6444-6b2c-4d42-acea-282118c23e5a/manifest,https://iiif.princeton.edu/loris/figgy_prod/20%2F2e%2F91%2F202e91695dcb418e9d6b53721827e013%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1922-01-12,1922-07-12,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",35.00,,6 months,181,1,,1922-01-12,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,;https://iiif.princeton.edu/loris/figgy_prod/8f%2F26%2F37%2F8f26370e03244c58a377ef9d09237eef%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-01-12,1922-01-18,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/galsworthy-six-short-plays/,Six Short Plays,,"Galsworthy, John",1921,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/8f%2F26%2F37%2F8f26370e03244c58a377ef9d09237eef%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-01-13,1922-01-17,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/dunsany-fifty-one-tales/,Fifty-One Tales,,"Dunsany, Lord",1915,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/3b%2Ff2%2Fbb%2F3bf2bb50ba8d4372bc67b3f78487aa2c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-01-13,1922-01-19,https://shakespeareandco.princeton.edu/members/pottier/,Mlle Pottier,"Pottier, Mlle",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/bennett-ghost/,The Ghost: A Modern Fantasy,,"Bennett, Arnold",1907,,Lending Library Card,"Sylvia Beach, Mlle Pottier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d08fdc25-a68c-4488-ade4-587774580c6c/manifest,https://iiif.princeton.edu/loris/figgy_prod/d4%2Fb4%2F02%2Fd4b402b19e3b4d2095ad4cee65159637%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-01-13,1922-01-18,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/thayer-dial/,The Dial,"Vol. 71, no. 6, Dec 1921",,,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/4d%2F3b%2Fff%2F4d3bff71461f45579405294959660eff%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-01-13,1922-01-18,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/macy-spirit-american-literature/,The Spirit of American Literature,,"Macy, John Albert",1913,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/4d%2F3b%2Fff%2F4d3bff71461f45579405294959660eff%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-01-13,1922-01-18,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/fugitive/,The Fugitive,,,,"Unidentified. John Galsworthy's *The Fugitive: A Play in Four Acts* (1913), Rabindranath Tagore's *The Fugitive* (1921), or an issue of the periodical, *The Fugitive* (1922β1925).",Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/4d%2F3b%2Fff%2F4d3bff71461f45579405294959660eff%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1922-01-13,1922-02-13,https://shakespeareandco.princeton.edu/members/nunn/,Miss Nunn,"Nunn, Miss",8.00,,1 month,31,1,,1922-01-12,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-01-14,1922-02-07,https://shakespeareandco.princeton.edu/members/pottecher-therese/,Therèse Pottecher,"Pottecher, Therèse",,,,,,,,,Returned,24,,,https://shakespeareandco.princeton.edu/books/oneill-beyond-horizon/,Beyond the Horizon,,"O'Neill, Eugene",1920,,Lending Library Card,"Sylvia Beach, Therèse Pottecher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/69b82696-3801-41ff-b1fd-c792179c5b98/manifest,https://iiif-cloud.princeton.edu/iiif/2/9a%2F4e%2F1e%2F9a4e1e31e98242929518656ca46cda2e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-01-14,1922-01-16,https://shakespeareandco.princeton.edu/members/martin-maud/,Maud Martin,"Martin, Maud",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/cannan-stucco-house/,The Stucco House,,"Cannan, Gilbert",1917,,Lending Library Card,"Sylvia Beach, Maud Martin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/934c6444-6b2c-4d42-acea-282118c23e5a/manifest,https://iiif.princeton.edu/loris/figgy_prod/20%2F2e%2F91%2F202e91695dcb418e9d6b53721827e013%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1922-01-14,1923-01-14,https://shakespeareandco.princeton.edu/members/maitre/,M. Maitre,"Maitre, M.",80.00,14.00,1 year,365,2,,1922-01-14,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-01-16,1922-01-18,https://shakespeareandco.princeton.edu/members/martin-maud/,Maud Martin,"Martin, Maud",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/dane-regiment-women/,Regiment of Women,,"Dane, Clemence",1917,,Lending Library Card,"Sylvia Beach, Maud Martin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/934c6444-6b2c-4d42-acea-282118c23e5a/manifest,https://iiif.princeton.edu/loris/figgy_prod/20%2F2e%2F91%2F202e91695dcb418e9d6b53721827e013%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-01-16,1922-01-19,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/beresford-gods-counterpoint/,God's Counterpoint,,"Beresford, J. D.",1918,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/d2%2F47%2F71%2Fd247713ff02e4d05964ed3de9f98c6b6%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1922-01-17,1922-02-17,https://shakespeareandco.princeton.edu/members/cole/,Mrs. L. A. Cole,"Cole, Mrs. L. A.",8.00,,1 month,31,1,,1922-01-17,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-01-17,1922-01-23,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/oriordan-adam-caroline/,Adam and Caroline,,"O'Riordan, Conal",1921,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/93%2F38%2Fde%2F9338deb2d88c414e97c485170ee7520f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1922-01-17,1922-04-17,https://shakespeareandco.princeton.edu/members/jolas-maria/,Maria McDonald Jolas / Miss Maria McDonald / Mrs. Eugene Jolas,"Jolas, Maria",20.00,7.00,3 months,90,1,,1922-01-17,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-01-17,1922-01-24,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/carpenter-intermediate-sex/,The Intermediate Sex,,"Carpenter, Edward",1908,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/51%2Fed%2F4c%2F51ed4ce0e0ee48c681c19b7c872dd103%2Fintermediate_file/full/full/0/default.jpg
+Crossed out,1922-01-18,,https://shakespeareandco.princeton.edu/members/martin-simone/,Simone Martin,"Martin, Simone",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/dane-regiment-women/,Regiment of Women,,"Dane, Clemence",1917,,Lending Library Card,"Sylvia Beach, Simone Martin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72becadf-0964-4c88-a208-bfe860d6a19e/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F51%2F3e%2F63513e379c164896a37c3fbad7e65f48%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-01-18,1922-01-21,https://shakespeareandco.princeton.edu/members/martin-maud/,Maud Martin,"Martin, Maud",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/conrad-western-eyes/,Under Western Eyes,,"Conrad, Joseph",1911,,Lending Library Card,"Sylvia Beach, Maud Martin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/934c6444-6b2c-4d42-acea-282118c23e5a/manifest,https://iiif.princeton.edu/loris/figgy_prod/20%2F2e%2F91%2F202e91695dcb418e9d6b53721827e013%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-01-18,1922-01-23,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/galsworthy-country-house/,The Country House,,"Galsworthy, John",1907,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/8f%2F26%2F37%2F8f26370e03244c58a377ef9d09237eef%2Fintermediate_file.jp2/full/full/0/default.jpg
+Crossed out,1922-01-18,,https://shakespeareandco.princeton.edu/members/martin-simone/,Simone Martin,"Martin, Simone",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/conrad-western-eyes/,Under Western Eyes,,"Conrad, Joseph",1911,,Lending Library Card,"Sylvia Beach, Simone Martin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72becadf-0964-4c88-a208-bfe860d6a19e/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F51%2F3e%2F63513e379c164896a37c3fbad7e65f48%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1922-01-18,1922-02-18,https://shakespeareandco.princeton.edu/members/bissell/,Kenneth Bissell,"Bissell, Kenneth",8.00,7.00,1 month,31,1,,1922-01-18,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1922-01-18,1922-02-18,https://shakespeareandco.princeton.edu/members/hepburn-james/,James Hepburn,"Hepburn, James",12.00,,1 month,31,2,,1922-01-18,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-01-18,1922-02-13,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,26,,,https://shakespeareandco.princeton.edu/books/whitman-autobiographia/,Autobiographia,,"Whitman, Walt",1892,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/4d%2F3b%2Fff%2F4d3bff71461f45579405294959660eff%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-01-19,1922-02-02,https://shakespeareandco.princeton.edu/members/martin-simone/,Simone Martin,"Martin, Simone",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/morris-specimens-early-english/,Specimens of Early English,,,1867,,Lending Library Card,"Sylvia Beach, Simone Martin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72becadf-0964-4c88-a208-bfe860d6a19e/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F51%2F3e%2F63513e379c164896a37c3fbad7e65f48%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-01-19,1922-02-03,https://shakespeareandco.princeton.edu/members/pottier/,Mlle Pottier,"Pottier, Mlle",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/mckenna-sonia-two-worlds/,Sonia: Between Two Worlds,,"McKenna, Stephen",1917,,Lending Library Card,"Sylvia Beach, Mlle Pottier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d08fdc25-a68c-4488-ade4-587774580c6c/manifest,https://iiif.princeton.edu/loris/figgy_prod/d4%2Fb4%2F02%2Fd4b402b19e3b4d2095ad4cee65159637%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-01-19,1922-01-20,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/galsworthy-let-forsyte-saga/,To Let (The Forsyte Saga),,"Galsworthy, John",1921,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/d2%2F47%2F71%2Fd247713ff02e4d05964ed3de9f98c6b6%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-01-20,1922-01-22,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/fisher-brimming-cup/,The Brimming Cup,,"Fisher, Dorothy Canfield",1921,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/d2%2F47%2F71%2Fd247713ff02e4d05964ed3de9f98c6b6%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-01-21,1922-01-28,https://shakespeareandco.princeton.edu/members/rice-matilda/,Matilda Rice,"Rice, Matilda",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/woolf-voyage/,The Voyage Out,,"Woolf, Virginia",1915,,Lending Library Card,"Sylvia Beach, Matilda Rice Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ad8eeb53-ecdd-4d4d-99be-0651f54c7214/manifest,https://iiif.princeton.edu/loris/figgy_prod/bb%2F70%2Fcc%2Fbb70ccfcf56b4157852126045e9d0bd2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-01-21,1922-01-28,https://shakespeareandco.princeton.edu/members/martin-maud/,Maud Martin,"Martin, Maud",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/butler-erewhon/,Erewhon,,"Butler, Samuel",1872,,Lending Library Card,"Sylvia Beach, Maud Martin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/934c6444-6b2c-4d42-acea-282118c23e5a/manifest,https://iiif.princeton.edu/loris/figgy_prod/20%2F2e%2F91%2F202e91695dcb418e9d6b53721827e013%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-01-22,1922-01-24,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/bojer-kingdom/,Our Kingdom,,"Bojer, Johan",1920,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/d2%2F47%2F71%2Fd247713ff02e4d05964ed3de9f98c6b6%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-01-23,1922-01-25,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/squire-london-mercury/,The London Mercury,"Vol. 5, no. 27, Jan 1922",,,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/8f%2F26%2F37%2F8f26370e03244c58a377ef9d09237eef%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1922-01-23,1922-01-23,https://shakespeareandco.princeton.edu/members/gombrich/,Mme Gombrich,"Gombrich, Mme",,,,,,,,6.30,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1922-01-23,1922-01-23,https://shakespeareandco.princeton.edu/members/varney/,John Varney,"Varney, John",,,,,,,,14.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-01-23,1922-02-11,https://shakespeareandco.princeton.edu/members/stein-gertrude/,Gertrude Stein,"Stein, Gertrude",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/pleasure/,Pleasure,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Gertrude Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f6f307d-2eb7-4960-8dc1-9dec4ea53022/manifest,https://iiif.princeton.edu/loris/figgy_prod/07%2Fb7%2F83%2F07b7834be68d4584bb89d8ef97efcf11%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-01-23,1922-01-30,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/hergesheimer-mountain-blood-novel/,Mountain Blood: A Novel,,"Hergesheimer, Joseph",1915,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/93%2F38%2Fde%2F9338deb2d88c414e97c485170ee7520f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-01-23,1922-02-11,https://shakespeareandco.princeton.edu/members/stein-gertrude/,Gertrude Stein,"Stein, Gertrude",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/norris-brass-novel-marriage/,Brass: A Novel of a Marriage,,"Norris, Charles Gilman",1921,,Lending Library Card,"Sylvia Beach, Gertrude Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f6f307d-2eb7-4960-8dc1-9dec4ea53022/manifest,https://iiif.princeton.edu/loris/figgy_prod/07%2Fb7%2F83%2F07b7834be68d4584bb89d8ef97efcf11%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-01-23,1922-01-25,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/galsworthy-mob/,The Mob,,"Galsworthy, John",1914,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/8f%2F26%2F37%2F8f26370e03244c58a377ef9d09237eef%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1922-01-24,1922-02-24,https://shakespeareandco.princeton.edu/members/king-dorothy/,Dorothy King,"King, Dorothy",8.00,7.00,1 month,31,1,,1922-01-24,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-01-24,1922-02-22,https://shakespeareandco.princeton.edu/members/wyck/,William van Wyck,"van Wyck, William",,,,,,,,,Returned,29,,,https://shakespeareandco.princeton.edu/books/london-iron-heel/,The Iron Heel,,"London, Jack",1907,,Lending Library Card,"Sylvia Beach, William van Wyck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f6b2d812-ade2-4fc6-912e-aab71c67a4a0/manifest,https://iiif.princeton.edu/loris/figgy_prod/f8%2Ffa%2Fc6%2Ff8fac60312814e4aaa2355fd72972c21%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-01-24,1922-02-22,https://shakespeareandco.princeton.edu/members/wyck/,William van Wyck,"van Wyck, William",,,,,,,,,Returned,29,,,https://shakespeareandco.princeton.edu/books/london-jacket/,The Jacket,,"London, Jack",1915,,Lending Library Card,"Sylvia Beach, William van Wyck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f6b2d812-ade2-4fc6-912e-aab71c67a4a0/manifest,https://iiif.princeton.edu/loris/figgy_prod/f8%2Ffa%2Fc6%2Ff8fac60312814e4aaa2355fd72972c21%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-01-24,1922-02-28,https://shakespeareandco.princeton.edu/members/schereck/,Mildred Schereck,"Schereck, Mildred",,,,,,,,,Returned,35,,,https://shakespeareandco.princeton.edu/books/ford-ladies-whose-bright/,Ladies Whose Bright Eyes: A Romance,,"Ford, Ford Madox",1911,,Lending Library Card,"Sylvia Beach, Mildred Schereck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3b15ea0c-ed8d-4b41-80f3-33485620b12c/manifest,https://iiif-cloud.princeton.edu/iiif/2/65%2F5f%2F8a%2F655f8aeadadb48bfa319309d0b2dab6b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-01-24,1922-02-28,https://shakespeareandco.princeton.edu/members/schereck/,Mildred Schereck,"Schereck, Mildred",,,,,,,,,Returned,35,,,https://shakespeareandco.princeton.edu/books/london-daughter-snows/,A Daughter of the Snows,,"London, Jack",1902,,Lending Library Card,"Sylvia Beach, Mildred Schereck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3b15ea0c-ed8d-4b41-80f3-33485620b12c/manifest,https://iiif-cloud.princeton.edu/iiif/2/65%2F5f%2F8a%2F655f8aeadadb48bfa319309d0b2dab6b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-01-24,1922-02-02,https://shakespeareandco.princeton.edu/members/wyck/,William van Wyck,"van Wyck, William",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/ferber-cheerful-request/,Cheerful by Request,,"Ferber, Edna",1918,,Lending Library Card,"Sylvia Beach, William van Wyck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f6b2d812-ade2-4fc6-912e-aab71c67a4a0/manifest,https://iiif.princeton.edu/loris/figgy_prod/f8%2Ffa%2Fc6%2Ff8fac60312814e4aaa2355fd72972c21%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-01-24,,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/lawrence-lost-girl/,The Lost Girl,,"Lawrence, D. H.",1920,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/d2%2F47%2F71%2Fd247713ff02e4d05964ed3de9f98c6b6%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1922-01-24,1922-04-24,https://shakespeareandco.princeton.edu/members/worthing/,Mrs. Worthing,"Worthing, Mrs.",16.00,,3 months,90,1,,1921-12-15,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-01-24,,https://shakespeareandco.princeton.edu/members/pound/,Ezra Pound,"Pound, Ezra",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/whistler-gentle-art-making/,The Gentle Art of Making Enemies,,"Whistler, James McNeill",1890,,Lending Library Card,"Sylvia Beach, Ezra Pound Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0a0f1f43-8f5d-4a18-abcd-9ed5c382af39/manifest,https://iiif.princeton.edu/loris/figgy_prod/ca%2F9d%2F7b%2Fca9d7b8f83cf43638cdc1011cbae61a7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-01-24,1922-02-07,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/weininger-sex-character/,Sex and Character,,"Weininger, Otto",1903,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/51%2Fed%2F4c%2F51ed4ce0e0ee48c681c19b7c872dd103%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-01-25,1922-02-02,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/samuel-taylor-coleridge/,Samuel Taylor Coleridge,,,,Unidentified. By or about Coleridge.,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/8f%2F26%2F37%2F8f26370e03244c58a377ef9d09237eef%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-01-25,,https://shakespeareandco.princeton.edu/members/rhys/,Mr. Rhys,"Rhys, Mr.",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/ch-unclear/,Ch[unclear],,,,Unidentified. Handwriting unclear.,Lending Library Card,"Sylvia Beach, Rhys Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0fcf5eb6-f872-481c-a304-e45a0c9fe472/manifest,https://iiif.princeton.edu/loris/figgy_prod/67%2F3d%2F21%2F673d211972284e099df1c89a348719ce%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-01-25,,https://shakespeareandco.princeton.edu/members/rhys/,Mr. Rhys,"Rhys, Mr.",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/stein-tender-buttons/,Tender Buttons,,"Stein, Gertrude",1914,,Lending Library Card,"Sylvia Beach, Rhys Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0fcf5eb6-f872-481c-a304-e45a0c9fe472/manifest,https://iiif.princeton.edu/loris/figgy_prod/67%2F3d%2F21%2F673d211972284e099df1c89a348719ce%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-01-26,1922-02-21,https://shakespeareandco.princeton.edu/members/summerell/,Bessie Summerell,"Summerell, Bessie",,,,,,,,,Returned,26,,,https://shakespeareandco.princeton.edu/books/barrie-half-hours/,Half Hours,,"Barrie, J. M.",1914,,Lending Library Card,"Sylvia Beach, Bessie Summerell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/14f987ee-ba89-4e64-96e1-8b949f51a921/manifest,https://iiif.princeton.edu/loris/figgy_prod/ee%2F31%2F78%2Fee3178e4c09e48a4826d56a66148cffa%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1922-01-26,1922-03-26,https://shakespeareandco.princeton.edu/members/summerell/,Bessie Summerell,"Summerell, Bessie",16.00,,2 months,59,1,,1922-01-26,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Bessie Summerell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/14f987ee-ba89-4e64-96e1-8b949f51a921/manifest,;https://iiif.princeton.edu/loris/figgy_prod/ee%2F31%2F78%2Fee3178e4c09e48a4826d56a66148cffa%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1922-01-27,1922-07-27,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",28.00,,6 months,181,1,,1922-02-07,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,;https://iiif-cloud.princeton.edu/iiif/2/51%2Fed%2F4c%2F51ed4ce0e0ee48c681c19b7c872dd103%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-01-28,1922-02-13,https://shakespeareandco.princeton.edu/members/rice-matilda/,Matilda Rice,"Rice, Matilda",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/smith-trivia/,Trivia,,"Smith, Logan Pearsall",1917,,Lending Library Card,"Sylvia Beach, Matilda Rice Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ad8eeb53-ecdd-4d4d-99be-0651f54c7214/manifest,https://iiif.princeton.edu/loris/figgy_prod/bb%2F70%2Fcc%2Fbb70ccfcf56b4157852126045e9d0bd2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-01-28,1922-02-13,https://shakespeareandco.princeton.edu/members/rice-matilda/,Matilda Rice,"Rice, Matilda",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/james-american/,The American,,"James, Henry",1877,,Lending Library Card,"Sylvia Beach, Matilda Rice Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ad8eeb53-ecdd-4d4d-99be-0651f54c7214/manifest,https://iiif.princeton.edu/loris/figgy_prod/bb%2F70%2Fcc%2Fbb70ccfcf56b4157852126045e9d0bd2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-01-28,1922-02-02,https://shakespeareandco.princeton.edu/members/martin-maud/,Maud Martin,"Martin, Maud",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/joyce-dubliners/,Dubliners,,"Joyce, James",1914,,Lending Library Card,"Sylvia Beach, Maud Martin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/934c6444-6b2c-4d42-acea-282118c23e5a/manifest,https://iiif.princeton.edu/loris/figgy_prod/20%2F2e%2F91%2F202e91695dcb418e9d6b53721827e013%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1922-01-28,1922-04-28,https://shakespeareandco.princeton.edu/members/mcjannett/,Mr. McJannett,"McJannett, Mr.",20.00,7.00,3 months,90,1,,1922-01-28,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1922-01-28,1922-07-28,https://shakespeareandco.princeton.edu/members/vansittart/,Miss Vansittart,"Vansittart, Miss",50.00,,6 months,181,2,,1922-01-16,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1922-01-30,1922-04-30,https://shakespeareandco.princeton.edu/members/dewson/,Mary Dewson,"Dewson, Mary",20.00,7.00,3 months,90,1,,1922-01-30,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-01-30,1922-02-07,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/macaulay-valley-captives/,The Valley Captives,,"Macaulay, Rose",1911,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/93%2F38%2Fde%2F9338deb2d88c414e97c485170ee7520f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1922-01-30,1922-04-30,https://shakespeareandco.princeton.edu/members/flecker/,Mrs. Flecker,"Flecker, Mrs.",16.00,,3 months,90,1,,1921-12-23,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-01-30,1922-02-04,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/woolf-voyage/,The Voyage Out,,"Woolf, Virginia",1915,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/d2%2F47%2F71%2Fd247713ff02e4d05964ed3de9f98c6b6%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1922-01-30,1922-02-28,https://shakespeareandco.princeton.edu/members/hein/,Mr. Hein,"Hein, Mr.",8.00,7.00,1 month,29,1,,1922-01-30,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1922-01-30,1922-02-28,https://shakespeareandco.princeton.edu/members/slack/,Miss Slack-x,"Slack, Miss",8.00,,1 month,29,1,,1922-01-30,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1922-01-30,1922-02-28,https://shakespeareandco.princeton.edu/members/lord-elizabeth/,Elizabeth Lord,"Lord, Elizabeth",8.00,7.00,1 month,29,1,,1922-01-30,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-01-31,1922-02-08,https://shakespeareandco.princeton.edu/members/pourtales-guy-de/,Guy de Pourtales,"de Pourtales, Guy",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/hardy-collected-poems-thomas/,Collected Poems of Thomas Hardy,,"Hardy, Thomas",1919,,Lending Library Card,"Sylvia Beach, Guy de Pourtales Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7bc6eb6e-75c8-4482-bd7d-99d4a5605ec1/manifest,https://iiif.princeton.edu/loris/figgy_prod/ec%2F4e%2F2f%2Fec4e2fe372ff4061acaca64ca57f742d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-01-31,1922-02-08,https://shakespeareandco.princeton.edu/members/pourtales-guy-de/,Guy de Pourtales,"de Pourtales, Guy",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/keats-keats-poems/,Keats's Poems,,"Keats, John",,Catherine Yarrow borrowed the Oxford Standard Authors edition.,Lending Library Card,"Sylvia Beach, Guy de Pourtales Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7bc6eb6e-75c8-4482-bd7d-99d4a5605ec1/manifest,https://iiif.princeton.edu/loris/figgy_prod/ec%2F4e%2F2f%2Fec4e2fe372ff4061acaca64ca57f742d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1922-01-31,1922-04-30,https://shakespeareandco.princeton.edu/members/pourtales-guy-de/,Guy de Pourtales,"de Pourtales, Guy",30.00,14.00,3 months,89,2,,1922-01-31,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Guy de Pourtales Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/7bc6eb6e-75c8-4482-bd7d-99d4a5605ec1/manifest,;https://iiif.princeton.edu/loris/figgy_prod/ec%2F4e%2F2f%2Fec4e2fe372ff4061acaca64ca57f742d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-02-02,1922-02-09,https://shakespeareandco.princeton.edu/members/martin-maud/,Maud Martin,"Martin, Maud",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/wells-outline-history/,The Outline of History,,"Wells, H. G.",1920,,Lending Library Card,"Sylvia Beach, Maud Martin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/934c6444-6b2c-4d42-acea-282118c23e5a/manifest,https://iiif.princeton.edu/loris/figgy_prod/20%2F2e%2F91%2F202e91695dcb418e9d6b53721827e013%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1922-02-02,1922-03-02,https://shakespeareandco.princeton.edu/members/roujoux-de/;https://shakespeareandco.princeton.edu/members/roujoux/,M. de Roujoux;Mme de Roujoux,"Roujoux, M. de;Roujoux, Mme de",8.00,,1 month,28,1,,1922-01-30,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1922-02-02,1922-02-02,https://shakespeareandco.princeton.edu/members/earp/,Mr. Earp,"Earp, Mr.",,,,,,,,7.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-02-02,1922-02-13,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/couperus-dr-adriaan/,Dr. Adriaan,,"Couperus, Louis",1918,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/8f%2F26%2F37%2F8f26370e03244c58a377ef9d09237eef%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1922-02-02,1922-03-02,https://shakespeareandco.princeton.edu/members/hanscom-j-f/,J. F. Hanscom,"Hanscom, J. F.",8.00,,1 month,28,1,,1922-02-02,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-02-02,1922-02-17,https://shakespeareandco.princeton.edu/members/martin-simone/,Simone Martin,"Martin, Simone",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/burney-evelina-history-young/,"Evelina: Or, the History of a Young Lady's Entrance into the World",,"Burney, Fanny",1778,,Lending Library Card,"Sylvia Beach, Simone Martin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72becadf-0964-4c88-a208-bfe860d6a19e/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F51%2F3e%2F63513e379c164896a37c3fbad7e65f48%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1922-02-03,1922-03-03,https://shakespeareandco.princeton.edu/members/cahn-sylvain/,Sylvain Cahn,"Cahn, Sylvain",8.00,,1 month,28,1,,1922-02-02,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-02-04,1922-02-11,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/george-second-blooming/,The Second Blooming,,"George, Walter Lionel",1914,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/d2%2F47%2F71%2Fd247713ff02e4d05964ed3de9f98c6b6%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-02-04,1922-11-27,https://shakespeareandco.princeton.edu/members/linossier-raymonde/,Raymonde Linossier,"Linossier, Raymonde",,,,,,,,,Returned,296,,,https://shakespeareandco.princeton.edu/books/fielding-history-tom-jones/,"The History of Tom Jones, a Foundling",,"Fielding, Henry",1749,,Lending Library Card,"Sylvia Beach, Raymonde Linossier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/53ede5bf-939d-44f5-9ddb-4dd39363bd20/manifest,https://iiif.princeton.edu/loris/figgy_prod/00%2F34%2F2f%2F00342f6fa20c49eb905cc64a929bc405%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-02-06,1922-02-14,https://shakespeareandco.princeton.edu/members/wood-thelma/,Thelma Wood,"Wood, Thelma",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/joyce-exiles/,Exiles,,"Joyce, James",1918,,Lending Library Card,"Sylvia Beach, Miss Thelma Wood Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4fa2ffb1-eb40-4e4a-9f21-a6459eee9457/manifest,https://iiif.princeton.edu/loris/figgy_prod/d5%2F32%2Fc6%2Fd532c602de97450e814516fd79b86ad2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1922-02-06,1922-08-06,https://shakespeareandco.princeton.edu/members/linossier-raymonde/,Raymonde Linossier,"Linossier, Raymonde",28.00,,6 months,181,1,AdL,1922-02-06,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Raymonde Linossier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/53ede5bf-939d-44f5-9ddb-4dd39363bd20/manifest,https://iiif.princeton.edu/loris/figgy_prod/00%2F34%2F2f%2F00342f6fa20c49eb905cc64a929bc405%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1922-02-06,1922-03-06,https://shakespeareandco.princeton.edu/members/wood-thelma/,Thelma Wood,"Wood, Thelma",8.00,,1 month,28,1,,1922-02-06,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Miss Thelma Wood Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/4fa2ffb1-eb40-4e4a-9f21-a6459eee9457/manifest,;https://iiif.princeton.edu/loris/figgy_prod/d5%2F32%2Fc6%2Fd532c602de97450e814516fd79b86ad2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-02-07,1922-02-14,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/young-young-physician/,The Young Physician,,"Young, Francis Brett",1920,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/51%2Fed%2F4c%2F51ed4ce0e0ee48c681c19b7c872dd103%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1922-02-07,1922-03-07,https://shakespeareandco.princeton.edu/members/lewisohn/,Ludwig Lewisohn,"Lewisohn, Ludwig",8.00,7.00,1 month,28,1,,1922-02-07,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1922-02-07,1922-03-07,https://shakespeareandco.princeton.edu/members/martin-maud/,Maud Martin,"Martin, Maud",8.00,7.00,1 month,28,1,,1922-02-09,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Maud Martin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/934c6444-6b2c-4d42-acea-282118c23e5a/manifest,;https://iiif.princeton.edu/loris/figgy_prod/20%2F2e%2F91%2F202e91695dcb418e9d6b53721827e013%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1922-02-07,1922-03-07,https://shakespeareandco.princeton.edu/members/bordeaux/,Mlle Bordeaux,"Bordeaux, Mlle",8.00,7.00,1 month,28,1,,1922-02-07,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1922-02-07,1922-05-07,https://shakespeareandco.princeton.edu/members/azarian/,Miss Azarian,"Azarian, Miss",16.00,,3 months,89,1,AdL,1922-02-07,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-02-07,1922-02-09,https://shakespeareandco.princeton.edu/members/pottecher-therese/,Therèse Pottecher,"Pottecher, Therèse",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/nock-freeman/,The Freeman,,,,,Lending Library Card,"Sylvia Beach, Therèse Pottecher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/69b82696-3801-41ff-b1fd-c792179c5b98/manifest,https://iiif-cloud.princeton.edu/iiif/2/9a%2F4e%2F1e%2F9a4e1e31e98242929518656ca46cda2e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-02-07,1922-03-20,https://shakespeareandco.princeton.edu/members/pottecher-therese/,Therèse Pottecher,"Pottecher, Therèse",,,,,,,,,Returned,41,,,https://shakespeareandco.princeton.edu/books/shaw-back-methuselah-metabiological/,Back to Methuselah (A Metabiological Pentateuch),,"Shaw, George Bernard",1921,,Lending Library Card,"Sylvia Beach, Therèse Pottecher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/69b82696-3801-41ff-b1fd-c792179c5b98/manifest,https://iiif-cloud.princeton.edu/iiif/2/9a%2F4e%2F1e%2F9a4e1e31e98242929518656ca46cda2e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-02-07,1922-02-09,https://shakespeareandco.princeton.edu/members/pottecher-therese/,Therèse Pottecher,"Pottecher, Therèse",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/nock-freeman/,The Freeman,,,,,Lending Library Card,"Sylvia Beach, Therèse Pottecher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/69b82696-3801-41ff-b1fd-c792179c5b98/manifest,https://iiif-cloud.princeton.edu/iiif/2/9a%2F4e%2F1e%2F9a4e1e31e98242929518656ca46cda2e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-02-07,1922-02-23,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/maugham-trembling-leaf-little/,The Trembling of a Leaf: Little Stories of the South Sea Islands,,"Maugham, W. Somerset",1921,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/93%2F38%2Fde%2F9338deb2d88c414e97c485170ee7520f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1922-02-08,1922-02-08,https://shakespeareandco.princeton.edu/members/ably/,Mr. Ably,"Ably, Mr.",,,,,,,,14.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-02-08,1922-02-15,https://shakespeareandco.princeton.edu/members/pourtales-guy-de/,Guy de Pourtales,"de Pourtales, Guy",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/lewis-main-street-story/,Main Street: The Story of Carol Kennicott,,"Lewis, Sinclair",1920,,Lending Library Card,"Sylvia Beach, Guy de Pourtales Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7bc6eb6e-75c8-4482-bd7d-99d4a5605ec1/manifest,https://iiif.princeton.edu/loris/figgy_prod/ec%2F4e%2F2f%2Fec4e2fe372ff4061acaca64ca57f742d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-02-08,1922-02-15,https://shakespeareandco.princeton.edu/members/pourtales-guy-de/,Guy de Pourtales,"de Pourtales, Guy",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/joyce-exiles/,Exiles,,"Joyce, James",1918,,Lending Library Card,"Sylvia Beach, Guy de Pourtales Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7bc6eb6e-75c8-4482-bd7d-99d4a5605ec1/manifest,https://iiif.princeton.edu/loris/figgy_prod/ec%2F4e%2F2f%2Fec4e2fe372ff4061acaca64ca57f742d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1922-02-08,1923-02-08,https://shakespeareandco.princeton.edu/members/becourt/,Mlle BΓ©court,"BΓ©court, Mlle",64.00,,1 year,365,2,,1922-02-08,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-02-09,1922-02-13,https://shakespeareandco.princeton.edu/members/martin-maud/,Maud Martin,"Martin, Maud",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/andersen-nexo-ditte-daughter-man/,"Ditte, Daughter of Man",,"Andersen-NexΓΈ, Martin",1921,,Lending Library Card,"Sylvia Beach, Maud Martin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/934c6444-6b2c-4d42-acea-282118c23e5a/manifest,https://iiif.princeton.edu/loris/figgy_prod/20%2F2e%2F91%2F202e91695dcb418e9d6b53721827e013%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1922-02-10,1922-03-10,https://shakespeareandco.princeton.edu/members/barr/,Gladys Baldwin Barr / Mrs. G. B. Barr,"Barr, Gladys Baldwin",8.00,7.00,1 month,28,1,,1922-02-10,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-02-11,1922-02-13,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/beresford-imperfect-mother/,An Imperfect Mother,,"Beresford, J. D.",1920,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/d2%2F47%2F71%2Fd247713ff02e4d05964ed3de9f98c6b6%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-02-11,1922-04-08,https://shakespeareandco.princeton.edu/members/milhaud/,Madeleine Milhaud,"Milhaud, Madeleine",,,,,,,,,Returned,56,,,https://shakespeareandco.princeton.edu/books/conrad-western-eyes/,Under Western Eyes,,"Conrad, Joseph",1911,,Lending Library Card,"Sylvia Beach, Madeleine Milhaud Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/30bac701-0f7f-4f16-b790-8c7876940713/manifest,https://iiif.princeton.edu/loris/figgy_prod/7a%2F7b%2Fd1%2F7a7bd1a81c4a4f558978f622836aabf7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1922-02-11,1922-03-11,https://shakespeareandco.princeton.edu/members/cogan/,Nina Cogan,"Cogan, Nina",8.00,7.00,1 month,28,1,,1922-02-11,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1922-02-11,1922-05-11,https://shakespeareandco.princeton.edu/members/culmann/,Mme Culmann / Kulmann,"Culmann, Mme",30.00,14.00,3 months,89,2,,1922-02-11,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Purchase,1922-02-11,1922-02-11,https://shakespeareandco.princeton.edu/members/pourtales-guy-de/,Guy de Pourtales,"de Pourtales, Guy",,,,,,,,,,,150.00,FRF,https://shakespeareandco.princeton.edu/books/joyce-ulysses/,Ulysses,,"Joyce, James",1922,,Lending Library Card,"Sylvia Beach, Guy de Pourtales Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7bc6eb6e-75c8-4482-bd7d-99d4a5605ec1/manifest,https://iiif.princeton.edu/loris/figgy_prod/ec%2F4e%2F2f%2Fec4e2fe372ff4061acaca64ca57f742d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-02-13,1922-02-18,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/pleasure/,Pleasure,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/d2%2F47%2F71%2Fd247713ff02e4d05964ed3de9f98c6b6%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-02-13,1922-02-16,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/squire-london-mercury/,The London Mercury,"Vol. 5, no. 28, Feb 1922",,,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/8f%2F26%2F37%2F8f26370e03244c58a377ef9d09237eef%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-02-13,1922-02-15,https://shakespeareandco.princeton.edu/members/martin-maud/,Maud Martin,"Martin, Maud",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/moore-untilled-field/,The Untilled Field,,"Moore, George",1903,,Lending Library Card,"Sylvia Beach, Maud Martin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/934c6444-6b2c-4d42-acea-282118c23e5a/manifest,https://iiif.princeton.edu/loris/figgy_prod/20%2F2e%2F91%2F202e91695dcb418e9d6b53721827e013%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-02-14,1922-04-03,https://shakespeareandco.princeton.edu/members/stein-gertrude/,Gertrude Stein,"Stein, Gertrude",,,,,,,,,Returned,48,,,https://shakespeareandco.princeton.edu/books/coke-pamela/,Pamela Herself,,"Coke, Desmond",1922,,Lending Library Card,"Sylvia Beach, Gertrude Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f6f307d-2eb7-4960-8dc1-9dec4ea53022/manifest,https://iiif.princeton.edu/loris/figgy_prod/07%2Fb7%2F83%2F07b7834be68d4584bb89d8ef97efcf11%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-02-14,1922-02-20,https://shakespeareandco.princeton.edu/members/wood-thelma/,Thelma Wood,"Wood, Thelma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/huxley-leda/,Leda,,"Huxley, Aldous",1920,,Lending Library Card,"Sylvia Beach, Miss Thelma Wood Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4fa2ffb1-eb40-4e4a-9f21-a6459eee9457/manifest,https://iiif.princeton.edu/loris/figgy_prod/d5%2F32%2Fc6%2Fd532c602de97450e814516fd79b86ad2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-02-14,1922-02-18,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/winged-words/,Winged Words,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/51%2Fed%2F4c%2F51ed4ce0e0ee48c681c19b7c872dd103%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-02-14,1922-04-03,https://shakespeareandco.princeton.edu/members/stein-gertrude/,Gertrude Stein,"Stein, Gertrude",,,,,,,,,Returned,48,,,https://shakespeareandco.princeton.edu/books/fitzgerald-side-paradise/,This Side of Paradise,,"Fitzgerald, F. Scott",1920,,Lending Library Card,"Sylvia Beach, Gertrude Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f6f307d-2eb7-4960-8dc1-9dec4ea53022/manifest,https://iiif.princeton.edu/loris/figgy_prod/07%2Fb7%2F83%2F07b7834be68d4584bb89d8ef97efcf11%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-02-15,1922-03-01,https://shakespeareandco.princeton.edu/members/martin-maud/,Maud Martin,"Martin, Maud",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/white-peacock/,The White Peacock,,"Lawrence, D. H.",1911,,Lending Library Card,"Sylvia Beach, Maud Martin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/934c6444-6b2c-4d42-acea-282118c23e5a/manifest,https://iiif.princeton.edu/loris/figgy_prod/20%2F2e%2F91%2F202e91695dcb418e9d6b53721827e013%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1922-02-15,1922-05-15,https://shakespeareandco.princeton.edu/members/helie/,Miss Helie,"Helie, Miss",20.00,,3 months,89,1,,1922-02-14,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-02-15,1922-03-29,https://shakespeareandco.princeton.edu/members/pourtales-guy-de/,Guy de Pourtales,"de Pourtales, Guy",,,,,,,,,Returned,42,,,https://shakespeareandco.princeton.edu/books/murry-evolution-intellectual/,The Evolution of an Intellectual,,"Murry, John Middleton",1920,,Lending Library Card,"Sylvia Beach, Guy de Pourtales Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7bc6eb6e-75c8-4482-bd7d-99d4a5605ec1/manifest,https://iiif.princeton.edu/loris/figgy_prod/ec%2F4e%2F2f%2Fec4e2fe372ff4061acaca64ca57f742d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1922-02-15,1922-03-15,https://shakespeareandco.princeton.edu/members/nunn/,Miss Nunn,"Nunn, Miss",6.40,,1 month,28,1,,1922-02-15,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-02-15,1922-03-01,https://shakespeareandco.princeton.edu/members/martin-maud/,Maud Martin,"Martin, Maud",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/chamberlin-private-character-queen/,The Private Character of Queen Elizabeth,,"Chamberlin, Frederick Carleton",1922,,Lending Library Card,"Sylvia Beach, Maud Martin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/934c6444-6b2c-4d42-acea-282118c23e5a/manifest,https://iiif.princeton.edu/loris/figgy_prod/20%2F2e%2F91%2F202e91695dcb418e9d6b53721827e013%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-02-16,1922-03-11,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/lee-life-william-shakespeare/,A Life of William Shakespeare,,"Lee, Sidney",1898,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/8f%2F26%2F37%2F8f26370e03244c58a377ef9d09237eef%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1922-02-17,1922-03-17,https://shakespeareandco.princeton.edu/members/ller/,M. van Ller,"van Ller, M.",12.00,14.00,1 month,28,2,,1922-02-17,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Mr. van Ller Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/89ecc8dd-fb75-4499-8fd0-b550c01f3b1c/manifest,;https://iiif.princeton.edu/loris/figgy_prod/19%2Fda%2F4a%2F19da4ac9ba1b480a959380e217776828%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1922-02-17,1922-03-17,https://shakespeareandco.princeton.edu/members/lichtenberger/,Mlle Lichtenberger,"Lichtenberger, Mlle",8.00,,1 month,28,1,,1922-02-17,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-02-17,,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/conrad-typhoon/,Typhoon,,"Conrad, Joseph",1902,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/e9%2F30%2F98%2Fe93098b0dad84c25a10ad281283ba11d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-02-17,1922-02-26,https://shakespeareandco.princeton.edu/members/ller/,M. van Ller,"van Ller, M.",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/clouston-lunatic-large-novel/,The Lunatic at Large: A Novel,,"Clouston, J. Storer",1899,,Lending Library Card,"Sylvia Beach, Mr. van Ller Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/89ecc8dd-fb75-4499-8fd0-b550c01f3b1c/manifest,https://iiif.princeton.edu/loris/figgy_prod/19%2Fda%2F4a%2F19da4ac9ba1b480a959380e217776828%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-02-17,1922-03-03,https://shakespeareandco.princeton.edu/members/martin-simone/,Simone Martin,"Martin, Simone",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/raleigh-shakespeare/,Shakespeare,,"Raleigh, Walter Alexander",1907,,Lending Library Card,"Sylvia Beach, Simone Martin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72becadf-0964-4c88-a208-bfe860d6a19e/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F51%2F3e%2F63513e379c164896a37c3fbad7e65f48%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1922-02-17,1922-05-17,https://shakespeareandco.princeton.edu/members/harrison-a/,A. Harrison,"Harrison, A.",20.00,,3 months,89,1,,1922-02-15,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-02-17,1922-04-08,https://shakespeareandco.princeton.edu/members/ller/,M. van Ller,"van Ller, M.",,,,,,,,,Returned,50,,,https://shakespeareandco.princeton.edu/books/strachey-eminent-victorians/,Eminent Victorians,,"Strachey, Giles Lytton",1918,,Lending Library Card,"Sylvia Beach, Mr. van Ller Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/89ecc8dd-fb75-4499-8fd0-b550c01f3b1c/manifest,https://iiif.princeton.edu/loris/figgy_prod/19%2Fda%2F4a%2F19da4ac9ba1b480a959380e217776828%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1922-02-17,1922-05-17,https://shakespeareandco.princeton.edu/members/kemp-1/,Miss Kemp,"Kemp, Miss",20.00,,3 months,89,1,,1922-02-15,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-02-18,1922-03-04,https://shakespeareandco.princeton.edu/members/rice-matilda/,Matilda Rice,"Rice, Matilda",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/george-confession-ursula-trent-2/,The Confession of Ursula Trent,,"George, Walter Lionel",1921,Published in the United States as *Ursula Trent.*,Lending Library Card,"Sylvia Beach, Matilda Rice Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ad8eeb53-ecdd-4d4d-99be-0651f54c7214/manifest,https://iiif.princeton.edu/loris/figgy_prod/bb%2F70%2Fcc%2Fbb70ccfcf56b4157852126045e9d0bd2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-02-18,1922-02-20,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/eddy-cubists-post-impressionism/,Cubists and Post-Impressionism,,"Eddy, Arthur Jerome",1914,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/51%2Fed%2F4c%2F51ed4ce0e0ee48c681c19b7c872dd103%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-02-18,1922-03-01,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/ellis-task-social-hygiene/,The Task of Social Hygiene,,"Ellis, Havelock",1912,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/d2%2F47%2F71%2Fd247713ff02e4d05964ed3de9f98c6b6%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-02-18,1922-03-04,https://shakespeareandco.princeton.edu/members/rice-matilda/,Matilda Rice,"Rice, Matilda",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/lawrence-women-love/,Women in Love,,"Lawrence, D. H.",1920,,Lending Library Card,"Sylvia Beach, Matilda Rice Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ad8eeb53-ecdd-4d4d-99be-0651f54c7214/manifest,https://iiif.princeton.edu/loris/figgy_prod/bb%2F70%2Fcc%2Fbb70ccfcf56b4157852126045e9d0bd2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1922-02-18,1922-03-18,https://shakespeareandco.princeton.edu/members/hepburn-james/,James Hepburn,"Hepburn, James",12.00,,1 month,28,2,,1922-02-14,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1922-02-19,1922-05-19,https://shakespeareandco.princeton.edu/members/rice-matilda/,Matilda Rice,"Rice, Matilda",,,3 months,89,1,,1922-04-29,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Matilda Rice Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ad8eeb53-ecdd-4d4d-99be-0651f54c7214/manifest,https://iiif.princeton.edu/loris/figgy_prod/bb%2F70%2Fcc%2Fbb70ccfcf56b4157852126045e9d0bd2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-02-20,1922-03-17,https://shakespeareandco.princeton.edu/members/wood-thelma/,Thelma Wood,"Wood, Thelma",,,,,,,,,Returned,25,,,https://shakespeareandco.princeton.edu/books/lawrence-lost-girl/,The Lost Girl,,"Lawrence, D. H.",1920,,Lending Library Card,"Sylvia Beach, Miss Thelma Wood Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4fa2ffb1-eb40-4e4a-9f21-a6459eee9457/manifest,https://iiif.princeton.edu/loris/figgy_prod/d5%2F32%2Fc6%2Fd532c602de97450e814516fd79b86ad2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-02-20,1922-03-02,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/scott-narrow-house/,The Narrow House,,"Scott, Evelyn",1921,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/51%2Fed%2F4c%2F51ed4ce0e0ee48c681c19b7c872dd103%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1922-02-21,1922-02-21,https://shakespeareandco.princeton.edu/members/milliken/,Mrs. Milliken,"Milliken, Mrs.",,,,,,,,14.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1922-02-22,1922-02-22,https://shakespeareandco.princeton.edu/members/cahn-sylvain/,Sylvain Cahn,"Cahn, Sylvain",,,,,,,,7.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1922-02-23,1922-03-23,https://shakespeareandco.princeton.edu/members/blandin/,Mlle Blondin / Blandin,"Blandin, Mlle",64.00,,1 month,28,1,AdL,1922-02-23,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-02-23,1923-06-12,https://shakespeareandco.princeton.edu/members/treirse/,Mme de Treirse,"de Treirse, Mme",,,,,,,,,Returned,474,,,https://shakespeareandco.princeton.edu/books/chesterton-manalive/,Manalive,,"Chesterton, G. K.",1912,,Lending Library Card,"Sylvia Beach, Madame de Treirse Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2ccf4854-206d-43f7-b8cd-787b14ed6d9e/manifest,https://iiif.princeton.edu/loris/figgy_prod/46%2Fce%2Fd9%2F46ced90fffe44dacbba0467df8268100%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1922-02-23,1922-02-23,https://shakespeareandco.princeton.edu/members/train/,Miss Train,"Train, Miss",,,,,,,,7.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1922-02-23,1922-03-23,https://shakespeareandco.princeton.edu/members/moderwell-anne/;https://shakespeareandco.princeton.edu/members/moderwell-hiram/,Anne Moderwell;Hiram Moderwell / H. K. Moderwell,"Moderwell, Anne;Moderwell, Hiram",34.00,,1 month,28,2,,1922-02-23,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-02-23,1922-03-23,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,28,,,https://shakespeareandco.princeton.edu/books/dostoyevsky-honest-thief/,An Honest Thief,,"Dostoyevsky, Fyodor",1919,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/93%2F38%2Fde%2F9338deb2d88c414e97c485170ee7520f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Supplement,1922-02-24,1922-08-15,https://shakespeareandco.princeton.edu/members/lavelli/,Miss Lavelli,"Lavelli, Miss",35.00,7.00,"5 months, 22 days",172,1,,1922-02-24,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1922-02-24,1922-03-24,https://shakespeareandco.princeton.edu/members/baldwin-mr/,Mr. Baldwin,"Baldwin, Mr.",12.00,14.00,1 month,28,2,,1922-02-24,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Supplement,1922-02-27,1922-03-27,https://shakespeareandco.princeton.edu/members/cogan/,Nina Cogan,"Cogan, Nina",4.00,7.00,1 month,28,,,1922-02-27,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-02-27,1922-03-05,https://shakespeareandco.princeton.edu/members/wood-thelma/,Thelma Wood,"Wood, Thelma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/huxley-crome-yellow/,Crome Yellow,,"Huxley, Aldous",1921,,Lending Library Card,"Sylvia Beach, Miss Thelma Wood Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4fa2ffb1-eb40-4e4a-9f21-a6459eee9457/manifest,https://iiif.princeton.edu/loris/figgy_prod/d5%2F32%2Fc6%2Fd532c602de97450e814516fd79b86ad2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-02-28,1922-03-15,https://shakespeareandco.princeton.edu/members/martin-maud/,Maud Martin,"Martin, Maud",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/west-henry-james/,Henry James,,"West, Rebecca",1916,,Lending Library Card,"Sylvia Beach, Maud Martin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/934c6444-6b2c-4d42-acea-282118c23e5a/manifest,https://iiif.princeton.edu/loris/figgy_prod/20%2F2e%2F91%2F202e91695dcb418e9d6b53721827e013%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-02-28,1922-03-29,https://shakespeareandco.princeton.edu/members/schereck/,Mildred Schereck,"Schereck, Mildred",,,,,,,,,Returned,29,,,https://shakespeareandco.princeton.edu/books/shaw-cashel-byrons-profession/,Cashel Byron's Profession,,"Shaw, George Bernard",1886,,Lending Library Card,"Sylvia Beach, Mildred Schereck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3b15ea0c-ed8d-4b41-80f3-33485620b12c/manifest,https://iiif-cloud.princeton.edu/iiif/2/65%2F5f%2F8a%2F655f8aeadadb48bfa319309d0b2dab6b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-02-28,1922-03-29,https://shakespeareandco.princeton.edu/members/schereck/,Mildred Schereck,"Schereck, Mildred",,,,,,,,,Returned,29,,,https://shakespeareandco.princeton.edu/books/shaw-irrational-knot/,The Irrational Knot,,"Shaw, George Bernard",1905,,Lending Library Card,"Sylvia Beach, Mildred Schereck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3b15ea0c-ed8d-4b41-80f3-33485620b12c/manifest,https://iiif-cloud.princeton.edu/iiif/2/65%2F5f%2F8a%2F655f8aeadadb48bfa319309d0b2dab6b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-03-01,1922-03-03,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/sinclair-life-death-harriet/,The Life and Death of Harriet Frean,,"Sinclair, May",1922,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/d2%2F47%2F71%2Fd247713ff02e4d05964ed3de9f98c6b6%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1922-03-01,1922-04-01,https://shakespeareandco.princeton.edu/members/bontecou/,Eleanor Bontecou,"Bontecou, Eleanor",8.00,7.00,1 month,31,1,,1922-03-01,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1922-03-01,1922-03-01,https://shakespeareandco.princeton.edu/members/hein/,Mr. Hein,"Hein, Mr.",,,,,,,,7.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1922-03-02,1922-04-02,https://shakespeareandco.princeton.edu/members/roujoux-de/;https://shakespeareandco.princeton.edu/members/roujoux/,M. de Roujoux;Mme de Roujoux,"Roujoux, M. de;Roujoux, Mme de",8.00,,1 month,31,1,,1922-02-27,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-03-02,1922-03-07,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/kaye-smith-joanna-godden/,Joanna Godden,,"Kaye-Smith, Sheila",1921,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/51%2Fed%2F4c%2F51ed4ce0e0ee48c681c19b7c872dd103%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1922-03-02,1922-04-02,https://shakespeareandco.princeton.edu/members/train/,Miss Train,"Train, Miss",8.00,,1 month,31,1,,1922-02-23,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-03-03,1922-03-08,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/emperors-death/,The Emperor's Death,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/d2%2F47%2F71%2Fd247713ff02e4d05964ed3de9f98c6b6%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1922-03-04,1923-03-04,https://shakespeareandco.princeton.edu/members/dutihl/,Mme Dutilh,"Dutilh, Mme",48.00,,1 year,365,1,,1922-02-27,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-03-04,,https://shakespeareandco.princeton.edu/members/rice-matilda/,Matilda Rice,"Rice, Matilda",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/lawrence-sons-lovers/,Sons and Lovers,,"Lawrence, D. H.",1913,,Lending Library Card,"Sylvia Beach, Matilda Rice Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ad8eeb53-ecdd-4d4d-99be-0651f54c7214/manifest,https://iiif.princeton.edu/loris/figgy_prod/bb%2F70%2Fcc%2Fbb70ccfcf56b4157852126045e9d0bd2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-03-04,1922-04-19,https://shakespeareandco.princeton.edu/members/rice-matilda/,Matilda Rice,"Rice, Matilda",,,,,,,,,Returned,46,,,https://shakespeareandco.princeton.edu/books/douglas-south-wind/,South Wind,,"Douglas, Norman",1917,,Lending Library Card,"Sylvia Beach, Matilda Rice Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ad8eeb53-ecdd-4d4d-99be-0651f54c7214/manifest,https://iiif.princeton.edu/loris/figgy_prod/bb%2F70%2Fcc%2Fbb70ccfcf56b4157852126045e9d0bd2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-03-05,1922-08-02,https://shakespeareandco.princeton.edu/members/wood-thelma/,Thelma Wood,"Wood, Thelma",,,,,,,,,Returned,150,,,https://shakespeareandco.princeton.edu/books/bradby-psycho-analysis-place/,Psycho-Analysis and Its Place in Life,,"Bradby, M. K.",1919,,Lending Library Card,"Sylvia Beach, Miss Thelma Wood Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4fa2ffb1-eb40-4e4a-9f21-a6459eee9457/manifest,https://iiif.princeton.edu/loris/figgy_prod/d5%2F32%2Fc6%2Fd532c602de97450e814516fd79b86ad2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-03-06,1922-03-09,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/ford-ladies-whose-bright/,Ladies Whose Bright Eyes: A Romance,,"Ford, Ford Madox",1911,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/93%2F38%2Fde%2F9338deb2d88c414e97c485170ee7520f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1922-03-07,1922-04-07,https://shakespeareandco.princeton.edu/members/bordeaux/,Mlle Bordeaux,"Bordeaux, Mlle",8.00,,1 month,31,1,,1922-03-07,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-03-07,1922-03-13,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/macaulay-valley-captives/,The Valley Captives,,"Macaulay, Rose",1911,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/51%2Fed%2F4c%2F51ed4ce0e0ee48c681c19b7c872dd103%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1922-03-09,1922-04-09,https://shakespeareandco.princeton.edu/members/maclean/,Mr. MacLean,"MacLean, Mr.",8.00,7.00,1 month,31,1,,1922-03-09,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1922-03-09,1922-04-09,https://shakespeareandco.princeton.edu/members/beer-de/,Miss de Beer / Ber / Baer,"de Beer, Miss",8.00,7.00,1 month,31,1,,1922-03-09,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-03-09,1922-03-16,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/norris-brass-novel-marriage/,Brass: A Novel of a Marriage,,"Norris, Charles Gilman",1921,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/93%2F38%2Fde%2F9338deb2d88c414e97c485170ee7520f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Supplement,1922-03-09,1922-03-16,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,2.00,1 week,7,,,1922-03-09,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,;https://iiif-cloud.princeton.edu/iiif/2/d2%2F47%2F71%2Fd247713ff02e4d05964ed3de9f98c6b6%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1922-03-10,1922-04-10,https://shakespeareandco.princeton.edu/members/reed-miss/,Miss Reed,"Reed, Miss",8.00,7.00,1 month,31,1,,1922-03-10,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1922-03-11,1922-06-11,https://shakespeareandco.princeton.edu/members/fel/,Mme Fels,"Fels, Mme",20.00,,3 months,92,1,,1922-03-11,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1922-03-11,1922-04-11,https://shakespeareandco.princeton.edu/members/merlo/,Mme Merlo,"Merlo, Mme",8.00,7.00,1 month,31,1,,1922-03-11,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-03-11,1922-04-03,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/dowden-shakespeare/,Shakespeare,,"Dowden, Edward",1877,"From the literature primers series, edited by John Richard Green.",Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/8f%2F26%2F37%2F8f26370e03244c58a377ef9d09237eef%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1922-03-13,1922-04-13,https://shakespeareandco.princeton.edu/members/stern-mr/,Mr. Stern,"Stern, Mr.",12.00,14.00,1 month,31,2,,1922-03-13,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1922-03-13,1922-04-13,https://shakespeareandco.princeton.edu/members/leland-marine/,Marine Leland,"Leland, Marine",8.00,7.00,1 month,31,1,,1922-03-13,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1922-03-13,1922-04-13,https://shakespeareandco.princeton.edu/members/lord-elizabeth/,Elizabeth Lord,"Lord, Elizabeth",8.00,,1 month,31,1,,1922-03-13,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-03-13,1922-03-21,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/chesterton-defendant/,The Defendant,,"Chesterton, G. K.",1901,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/51%2Fed%2F4c%2F51ed4ce0e0ee48c681c19b7c872dd103%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1922-03-13,1922-04-13,https://shakespeareandco.princeton.edu/members/mestrezat/,Mme Mestrezat,"Mestrezat, Mme",6.40,,1 month,31,1,AdL,1922-03-13,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1922-03-14,1922-04-14,https://shakespeareandco.princeton.edu/members/baldwin-2/,Arthur C. J. Baldwin,"Baldwin, Arthur C. J.",12.00,14.00,1 month,31,2,,1922-03-14,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1922-03-15,1922-04-15,https://shakespeareandco.princeton.edu/members/nunn/,Miss Nunn,"Nunn, Miss",6.40,,1 month,31,1,AdL,1922-03-14,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1922-03-16,1922-06-16,https://shakespeareandco.princeton.edu/members/chaumy/,Mlle Chaumy,"Chaumy, Mlle",20.00,7.00,3 months,92,1,,1922-03-16,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1922-03-16,1922-04-16,https://shakespeareandco.princeton.edu/members/arden/,Mrs. Arden,"Arden, Mrs.",12.00,,1 month,31,2,,1922-03-07,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-03-16,1922-03-20,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/anderson-triumph-egg/,The Triumph of the Egg,,"Anderson, Sherwood",1921,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/93%2F38%2Fde%2F9338deb2d88c414e97c485170ee7520f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-03-20,1922-04-08,https://shakespeareandco.princeton.edu/members/pottecher-therese/,Therèse Pottecher,"Pottecher, Therèse",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/oneill-moon-caribbees-six/,"The Moon of the Caribbees, and Six Other Plays of the Sea",,"O'Neill, Eugene",1919,,Lending Library Card,"Sylvia Beach, Therèse Pottecher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/69b82696-3801-41ff-b1fd-c792179c5b98/manifest,https://iiif-cloud.princeton.edu/iiif/2/9a%2F4e%2F1e%2F9a4e1e31e98242929518656ca46cda2e%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1922-03-20,1922-04-20,https://shakespeareandco.princeton.edu/members/bridge/,Miss Bridge,"Bridge, Miss",8.00,7.00,1 month,31,1,,1922-03-20,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-03-21,1922-03-27,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/bibesco-blame/,I Have Only Myself to Blame,,"Bibesco, Elizabeth",1921,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/51%2Fed%2F4c%2F51ed4ce0e0ee48c681c19b7c872dd103%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1922-03-22,1922-04-22,https://shakespeareandco.princeton.edu/members/de-laguna/,Theodore de Laguna,"de Laguna, Theodore",8.00,,1 month,31,1,,1922-03-22,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1922-03-24,1923-03-24,https://shakespeareandco.princeton.edu/members/le-verrier-2/,M. Le Verrier,"Le Verrier, M.",64.00,,1 year,365,1,,1922-03-24,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1922-03-24,1922-03-24,https://shakespeareandco.princeton.edu/members/fleury/,Mme Fleury,"Fleury, Mme",,,,,,,,7.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1922-03-24,,https://shakespeareandco.princeton.edu/members/merle-daubigne-albert/,Albert Merle d'AubignΓ©,"Merle d'AubignΓ©, Albert",20.00,,,,,,1922-03-24,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1922-03-25,1922-06-25,https://shakespeareandco.princeton.edu/members/schlumberger/,Miss Schlumberger,"Schlumberger, Miss",20.00,7.00,3 months,92,1,,1922-03-25,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Miss Schlumberger Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/2a613025-4f47-475f-9687-1f66fa5c4f12/manifest,;https://iiif.princeton.edu/loris/figgy_prod/36%2F82%2Fed%2F3682ede4173949afb92b802bcbf0be39%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-03-25,1922-04-28,https://shakespeareandco.princeton.edu/members/schlumberger/,Miss Schlumberger,"Schlumberger, Miss",,,,,,,,,Returned,34,,,https://shakespeareandco.princeton.edu/books/bronte-jane-eyre/,Jane Eyre,,"BrontΓ«, Charlotte",1847,,Lending Library Card,"Sylvia Beach, Miss Schlumberger Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2a613025-4f47-475f-9687-1f66fa5c4f12/manifest,https://iiif.princeton.edu/loris/figgy_prod/36%2F82%2Fed%2F3682ede4173949afb92b802bcbf0be39%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-03-26,1922-03-27,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/tarkington-alice-adams/,Alice Adams,,"Tarkington, Booth",1921,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/93%2F38%2Fde%2F9338deb2d88c414e97c485170ee7520f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-03-27,1922-04-04,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/mais-books-writers/,Books and Their Writers,,"Mais, S. P. B.",1920,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/51%2Fed%2F4c%2F51ed4ce0e0ee48c681c19b7c872dd103%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-03-27,1922-04-07,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/mackenzie-early-life-adventures/,The Early Life and Adventures of Sylvia Scarlett,,"Mackenzie, Compton",1918,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/af%2F41%2Fe3%2Faf41e31bbb2942368b752621b338e9c9%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-03-27,1922-04-07,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/oneill-beyond-horizon/,Beyond the Horizon,,"O'Neill, Eugene",1920,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/af%2F41%2Fe3%2Faf41e31bbb2942368b752621b338e9c9%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-03-27,1922-04-03,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/cather-youth-bright-medusa/,Youth and the Bright Medusa,,"Cather, Willa",1920,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/93%2F38%2Fde%2F9338deb2d88c414e97c485170ee7520f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1922-03-27,1922-03-27,https://shakespeareandco.princeton.edu/members/macirone/,Miss Macirone,"Macirone, Miss",,,,,,,,7.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1922-03-27,1922-04-27,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",12.00,14.00,1 month,31,2,,1922-03-27,,,,,FRF,,,,,,,Logbook;Lending Library Card;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Maspero Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/92dca37a-f412-4b18-90a3-d236d2b3fe20/manifest;,
+Reimbursement,1922-03-29,1922-03-29,https://shakespeareandco.princeton.edu/members/wallner/;https://shakespeareandco.princeton.edu/members/wallner-mrs/,Mr. Wallner;Mrs. Wallner,"Wallner, Mr.;Wallner, Mrs.",,,,,,,,7.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Crossed out,1922-03-29,,https://shakespeareandco.princeton.edu/members/pourtales-guy-de/,Guy de Pourtales,"de Pourtales, Guy",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/blake-blakes-works/,Willam Blake's Works,,"Blake, William",,"At least three editions of Blake's collected works circulated in the lending library. Monique de Vigan borrowed The Poetical Works of William Blake, edited by William Michael Rossetti (Bell, 1874). Jean PrΓ©vost, John Rodker, Guy de Pourtales, Catherine Yarrow, Ella Cassigne, FranΓ§oise Bernheim, and Francoise de Marcilly (in 1939) borrowed The Poetical Works of William Blake, edited by John Sampson (Oxford, 1905). Armand Petitjean, Antoinette Bernheim, and Francoise de Marcilly (in 1938) borrowed Poetry and Prose of William Blake, edited by Geoffrey Keynes (Nonesuch, 1927).",Lending Library Card,"Sylvia Beach, Guy de Pourtales Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7bc6eb6e-75c8-4482-bd7d-99d4a5605ec1/manifest,https://iiif.princeton.edu/loris/figgy_prod/ec%2F4e%2F2f%2Fec4e2fe372ff4061acaca64ca57f742d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1922-03-30,1922-04-30,https://shakespeareandco.princeton.edu/members/clerc/,Mme Clerc,"Clerc, Mme",12.00,14.00,1 month,31,2,,1922-03-30,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1922-04-01,1922-05-01,https://shakespeareandco.princeton.edu/members/alston/,Mr. Alston,"Alston, Mr.",8.00,7.00,1 month,30,1,,1922-04-01,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-04-03,1922-06-07,https://shakespeareandco.princeton.edu/members/pourtales-guy-de/,Guy de Pourtales,"de Pourtales, Guy",,,,,,,,,Returned,65,,,https://shakespeareandco.princeton.edu/books/meredith-lord-ormont-aminta/,Lord Ormont and His Aminta,,"Meredith, George",1894,,Lending Library Card,"Sylvia Beach, Guy de Pourtales Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7bc6eb6e-75c8-4482-bd7d-99d4a5605ec1/manifest,https://iiif.princeton.edu/loris/figgy_prod/ec%2F4e%2F2f%2Fec4e2fe372ff4061acaca64ca57f742d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-04-03,1922-04-25,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/shakespeare-loves-labours-lost/,Love's Labour's Lost,,"Shakespeare, William",1598,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/8f%2F26%2F37%2F8f26370e03244c58a377ef9d09237eef%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-04-03,1922-04-13,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/strachey-queen-victoria/,Queen Victoria,,"Strachey, Giles Lytton",1921,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/93%2F38%2Fde%2F9338deb2d88c414e97c485170ee7520f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-04-03,1922-04-13,https://shakespeareandco.princeton.edu/members/stein-gertrude/,Gertrude Stein,"Stein, Gertrude",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/george-confession-ursula-trent-2/,The Confession of Ursula Trent,,"George, Walter Lionel",1921,Published in the United States as *Ursula Trent.*,Lending Library Card,"Sylvia Beach, Gertrude Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f6f307d-2eb7-4960-8dc1-9dec4ea53022/manifest,https://iiif.princeton.edu/loris/figgy_prod/07%2Fb7%2F83%2F07b7834be68d4584bb89d8ef97efcf11%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-04-03,1922-04-13,https://shakespeareandco.princeton.edu/members/stein-gertrude/,Gertrude Stein,"Stein, Gertrude",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/ibanez-four-horsemen-apocalypse/,The Four Horsemen of the Apocalypse,,"Blasco IbÑñez, Vincente",1918,,Lending Library Card,"Sylvia Beach, Gertrude Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f6f307d-2eb7-4960-8dc1-9dec4ea53022/manifest,https://iiif.princeton.edu/loris/figgy_prod/07%2Fb7%2F83%2F07b7834be68d4584bb89d8ef97efcf11%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-04-04,1922-04-18,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/nichols-ardours-endurances/,Ardours and Endurances,,"Nichols, Robert",1918,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/51%2Fed%2F4c%2F51ed4ce0e0ee48c681c19b7c872dd103%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1922-04-04,1922-07-04,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",16.00,,3 months,91,1,AdL,1922-04-04,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,;https://iiif.princeton.edu/loris/figgy_prod/05%2Fd1%2F20%2F05d120f890cb4152b7f64e0179929987%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1922-04-04,1922-05-04,https://shakespeareandco.princeton.edu/members/greer/,Mr. Greer,"Greer, Mr.",12.00,14.00,1 month,30,2,,1922-04-04,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-04-04,1922-04-29,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,25,,,https://shakespeareandco.princeton.edu/books/joyce-portrait-artist-young/,A Portrait of the Artist as a Young Man,,"Joyce, James",1916,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/05%2Fd1%2F20%2F05d120f890cb4152b7f64e0179929987%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-04-06,1922-04-28,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/flecker-poems/,Poems,,"Flecker, James Elroy",,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/e9%2F30%2F98%2Fe93098b0dad84c25a10ad281283ba11d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1922-04-07,1922-05-07,https://shakespeareandco.princeton.edu/members/georget/,Mme Georget,"Georget, Mme",8.00,7.00,1 month,30,1,,1922-04-07,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1922-04-07,1922-07-07,https://shakespeareandco.princeton.edu/members/rhys/,Mr. Rhys,"Rhys, Mr.",16.00,,3 months,91,1,,1922-04-07,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Rhys Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/0fcf5eb6-f872-481c-a304-e45a0c9fe472/manifest,;https://iiif.princeton.edu/loris/figgy_prod/67%2F3d%2F21%2F673d211972284e099df1c89a348719ce%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-04-07,1922-04-18,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/oneill-emperor-jones/,The Emperor Jones,,"O'Neill, Eugene",1921,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/af%2F41%2Fe3%2Faf41e31bbb2942368b752621b338e9c9%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-04-07,1922-04-18,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/mackenzie-sylvia-michael/,Sylvia & Michael,,"Mackenzie, Compton",1919,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/af%2F41%2Fe3%2Faf41e31bbb2942368b752621b338e9c9%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1922-04-07,1922-05-07,https://shakespeareandco.princeton.edu/members/hazant-3/,Mlle Hazant,"Hazant, Mlle",8.00,7.00,1 month,30,1,,1922-04-07,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1922-04-07,1922-05-07,https://shakespeareandco.princeton.edu/members/slivinski/,Mr. Slivinski,"Slivinski, Mr.",12.00,,1 month,30,2,,1922-04-07,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-04-08,1922-04-18,https://shakespeareandco.princeton.edu/members/milhaud/,Madeleine Milhaud,"Milhaud, Madeleine",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/mackenzie-early-life-adventures/,The Early Life and Adventures of Sylvia Scarlett,,"Mackenzie, Compton",1918,,Lending Library Card,"Sylvia Beach, Madeleine Milhaud Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/30bac701-0f7f-4f16-b790-8c7876940713/manifest,https://iiif.princeton.edu/loris/figgy_prod/7a%2F7b%2Fd1%2F7a7bd1a81c4a4f558978f622836aabf7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1922-04-08,1922-05-08,https://shakespeareandco.princeton.edu/members/pottecher-friend-of/,"""Friend of Mlle Pottecher""","""Friend of Mlle Pottecher""",8.00,,1 month,30,1,,1922-04-08,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1922-04-09,1922-07-09,https://shakespeareandco.princeton.edu/members/lowenfeld/,Mme Lowenfeld,"Lowenfeld, Mme",60.00,,3 months,91,4,,1922-04-07,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Supplement,1922-04-09,1922-06-09,https://shakespeareandco.princeton.edu/members/beer-de/,Miss de Beer / Ber / Baer,"de Beer, Miss",12.00,,2 months,61,,,1922-04-03,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1922-04-10,1922-04-10,https://shakespeareandco.princeton.edu/members/baldwin-2/,Arthur C. J. Baldwin,"Baldwin, Arthur C. J.",,,,,,,,14.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1922-04-10,1922-04-10,https://shakespeareandco.princeton.edu/members/melera/,Marie-ThΓ©rΓ¨se Melera,"Melera, Marie-ThΓ©rΓ¨se",,,,,,,,14.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1922-04-10,1922-05-10,https://shakespeareandco.princeton.edu/members/chauvel/,Jean Chauvel,"Chauvel, Jean",12.00,14.00,1 month,30,2,,1922-04-10,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1922-04-12,1922-05-12,https://shakespeareandco.princeton.edu/members/jolly/,Mme Jolly,"Jolly, Mme",8.00,7.00,1 month,30,1,,1922-04-12,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1922-04-13,1922-07-13,https://shakespeareandco.princeton.edu/members/mestrezat/,Mme Mestrezat,"Mestrezat, Mme",16.00,,3 months,91,1,AdL,1922-04-07,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1922-04-13,1922-05-13,https://shakespeareandco.princeton.edu/members/sokoloff/;https://shakespeareandco.princeton.edu/members/sokoloff-2/,M. Sokoloff;Mlle Sokoloff,"Sokoloff, M.;Sokoloff, Mlle",8.00,7.00,1 month,30,1,,1922-04-13,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-04-13,1922-04-18,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/george-confession-ursula-trent-2/,The Confession of Ursula Trent,,"George, Walter Lionel",1921,Published in the United States as *Ursula Trent.*,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/93%2F38%2Fde%2F9338deb2d88c414e97c485170ee7520f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-04-13,1922-04-18,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/hudson-elinor-colhouse/,Elinor Colhouse,,"Hudson, Stephen",1921,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/93%2F38%2Fde%2F9338deb2d88c414e97c485170ee7520f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1922-04-13,1922-05-13,https://shakespeareandco.princeton.edu/members/lord-elizabeth/,Elizabeth Lord,"Lord, Elizabeth",8.00,,1 month,30,1,,1922-03-14,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1922-04-14,1922-05-14,https://shakespeareandco.princeton.edu/members/kenny/,Julia Kenny,"Kenny, Julia",12.00,,1 month,30,2,,1922-04-14,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1922-04-15,1922-05-15,https://shakespeareandco.princeton.edu/members/pougaud/,M. Pougaud,"Pougaud, M.",8.00,,1 month,30,1,,1922-04-13,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-04-18,1922-04-26,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/leslie-oppidan/,The Oppidan,,"Leslie, Shane",1922,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/93%2F38%2Fde%2F9338deb2d88c414e97c485170ee7520f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1922-04-18,1922-10-18,https://shakespeareandco.princeton.edu/members/brooks-alden/,Alden Brooks,"Brooks, Alden",50.00,,6 months,183,2,,1922-04-18,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-04-18,1922-05-11,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/dane-regiment-women/,Regiment of Women,,"Dane, Clemence",1917,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/51%2Fed%2F4c%2F51ed4ce0e0ee48c681c19b7c872dd103%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1922-04-19,1922-05-19,https://shakespeareandco.princeton.edu/members/bennett/,Pamela Bennett,"Bennett, Pamela",8.00,7.00,1 month,30,1,,1922-04-19,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-04-19,1922-05-06,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/galsworthy-man-property-forsyte/,The Man of Property (The Forsyte Saga),,"Galsworthy, John",1906,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/af%2F41%2Fe3%2Faf41e31bbb2942368b752621b338e9c9%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-04-19,1922-05-06,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/second-generation/,The Second Generation,,,,Unidentified. James Weber Linn's *The Second Generation* (1902) or David Graham Phillips's *The Second Generation* (1907).,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/af%2F41%2Fe3%2Faf41e31bbb2942368b752621b338e9c9%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1922-04-21,1922-05-21,https://shakespeareandco.princeton.edu/members/rehm/,Mr. Rehm,"Rehm, Mr.",8.00,,1 month,30,1,,1922-04-04,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-04-23,1922-05-07,https://shakespeareandco.princeton.edu/members/rhys/,Mr. Rhys,"Rhys, Mr.",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/barrie-half-hours/,Half Hours,,"Barrie, J. M.",1914,,Lending Library Card,"Sylvia Beach, Rhys Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0fcf5eb6-f872-481c-a304-e45a0c9fe472/manifest,https://iiif.princeton.edu/loris/figgy_prod/67%2F3d%2F21%2F673d211972284e099df1c89a348719ce%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-04-23,1922-05-07,https://shakespeareandco.princeton.edu/members/rhys/,Mr. Rhys,"Rhys, Mr.",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/moore-esther-waters/,Esther Waters,,"Moore, George",1894,,Lending Library Card,"Sylvia Beach, Rhys Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0fcf5eb6-f872-481c-a304-e45a0c9fe472/manifest,https://iiif.princeton.edu/loris/figgy_prod/67%2F3d%2F21%2F673d211972284e099df1c89a348719ce%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1922-04-24,1922-07-24,https://shakespeareandco.princeton.edu/members/janin/,Mlle Janin,"Janin, Mlle",20.00,,3 months,91,1,,1922-04-24,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1922-04-25,1923-04-25,https://shakespeareandco.princeton.edu/members/heisch/,Mrs. Heisch,"Heisch, Mrs.",80.00,,1 year,365,2,,1922-04-25,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-04-25,1922-04-29,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/mansfield-garden-party-stories/,The Garden Party and Other Stories,,"Mansfield, Katherine",1922,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/93%2F38%2Fde%2F9338deb2d88c414e97c485170ee7520f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-04-25,1922-05-02,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/shakespeare-shakespeare/,Shakespeare,Vol. 3,"Shakespeare, William",,"Likely the nine-volume Cambridge Shakespeare, edited by William George Clark and William Aldis Wright. Rose Maire Parrain's lending library card mentions Wright. Isabelle Zimmer borrows volume 2, G. Violette borrows volumes 2β4, Parrain borrows volume 4, and Fernand Colens borrows volume 6.",Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/8f%2F26%2F37%2F8f26370e03244c58a377ef9d09237eef%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1922-04-26,1922-07-26,https://shakespeareandco.princeton.edu/members/lucas-e-v/,Mrs. E. V. Lucas,"Lucas, Mrs. E. V.",30.00,,3 months,91,2,,1922-04-26,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1922-04-27,1922-05-27,https://shakespeareandco.princeton.edu/members/hagen-louise/,Louise Hagen,"Hagen, Louise",8.00,7.00,1 month,30,1,,1922-04-27,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1922-04-27,1922-07-27,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",30.00,,3 months,91,2,,1922-04-19,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Maspero Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/92dca37a-f412-4b18-90a3-d236d2b3fe20/manifest,;https://iiif-cloud.princeton.edu/iiif/2/af%2F41%2Fe3%2Faf41e31bbb2942368b752621b338e9c9%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1922-04-28,1922-05-28,https://shakespeareandco.princeton.edu/members/burdick/,Mr. Burdick,"Burdick, Mr.",12.00,,1 month,30,2,,1922-04-28,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-04-28,1922-05,https://shakespeareandco.princeton.edu/members/schereck/,Mildred Schereck,"Schereck, Mildred",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/conrad-western-eyes/,Under Western Eyes,,"Conrad, Joseph",1911,,Lending Library Card,"Sylvia Beach, Mildred Schereck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3b15ea0c-ed8d-4b41-80f3-33485620b12c/manifest,https://iiif-cloud.princeton.edu/iiif/2/65%2F5f%2F8a%2F655f8aeadadb48bfa319309d0b2dab6b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-04-28,1922-05-12,https://shakespeareandco.princeton.edu/members/schlumberger/,Miss Schlumberger,"Schlumberger, Miss",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/galsworthy-saints-progress/,Saint's Progress,,"Galsworthy, John",1919,,Lending Library Card,"Sylvia Beach, Miss Schlumberger Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2a613025-4f47-475f-9687-1f66fa5c4f12/manifest,https://iiif.princeton.edu/loris/figgy_prod/36%2F82%2Fed%2F3682ede4173949afb92b802bcbf0be39%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-04-28,1922-05-10,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/wilde-lord-arthur-saviles/,Lord Arthur Savile's Crime and Other Stories,,"Wilde, Oscar",1891,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/e9%2F30%2F98%2Fe93098b0dad84c25a10ad281283ba11d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-04-29,1922-05-10,https://shakespeareandco.princeton.edu/members/rice-matilda/,Matilda Rice,"Rice, Matilda",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/arnim-vera/,Vera,,"Arnim, Elizabeth von",1921,,Lending Library Card,"Sylvia Beach, Matilda Rice Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ad8eeb53-ecdd-4d4d-99be-0651f54c7214/manifest,https://iiif.princeton.edu/loris/figgy_prod/bb%2F70%2Fcc%2Fbb70ccfcf56b4157852126045e9d0bd2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-04-29,1922-05-03,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/moore-untilled-field/,The Untilled Field,,"Moore, George",1903,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/93%2F38%2Fde%2F9338deb2d88c414e97c485170ee7520f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-04-29,1922-05-23,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,24,,,https://shakespeareandco.princeton.edu/books/murry-evolution-intellectual/,The Evolution of an Intellectual,,"Murry, John Middleton",1920,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/05%2Fd1%2F20%2F05d120f890cb4152b7f64e0179929987%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-04-29,1922-05-10,https://shakespeareandco.princeton.edu/members/rice-matilda/,Matilda Rice,"Rice, Matilda",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/hudson-elinor-colhouse/,Elinor Colhouse,,"Hudson, Stephen",1921,,Lending Library Card,"Sylvia Beach, Matilda Rice Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ad8eeb53-ecdd-4d4d-99be-0651f54c7214/manifest,https://iiif.princeton.edu/loris/figgy_prod/bb%2F70%2Fcc%2Fbb70ccfcf56b4157852126045e9d0bd2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1922-04-30,1922-07-30,https://shakespeareandco.princeton.edu/members/flecker/,Mrs. Flecker,"Flecker, Mrs.",16.00,,3 months,91,1,,1922-03-24,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1922-04-30,1923-04-30,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",48.00,,1 year,365,1,AdL,1922-05-15,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,;https://iiif.princeton.edu/loris/figgy_prod/93%2F38%2Fde%2F9338deb2d88c414e97c485170ee7520f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1922-05-01,1922-11-01,https://shakespeareandco.princeton.edu/members/schereck/,Mildred Schereck,"Schereck, Mildred",35.00,,6 months,184,1,,1922-05-19,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Mildred Schereck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/3b15ea0c-ed8d-4b41-80f3-33485620b12c/manifest,;https://iiif-cloud.princeton.edu/iiif/2/65%2F5f%2F8a%2F655f8aeadadb48bfa319309d0b2dab6b%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1922-05-02,1922-06-02,https://shakespeareandco.princeton.edu/members/stern-mr/,Mr. Stern,"Stern, Mr.",8.00,,1 month,31,1,,1922-05-02,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1922-05-02,1922-05-02,https://shakespeareandco.princeton.edu/members/stern-mr/,Mr. Stern,"Stern, Mr.",,,,,,,,7.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-05-02,1922-05-15,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/shakespeare-shakespeare/,Shakespeare,Vol. 2,"Shakespeare, William",,"Likely the nine-volume Cambridge Shakespeare, edited by William George Clark and William Aldis Wright. Rose Maire Parrain's lending library card mentions Wright. Isabelle Zimmer borrows volume 2, G. Violette borrows volumes 2β4, Parrain borrows volume 4, and Fernand Colens borrows volume 6.",Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/8f%2F26%2F37%2F8f26370e03244c58a377ef9d09237eef%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1922-05-03,1922-06-03,https://shakespeareandco.princeton.edu/members/dewson-renault/,Miss Dewson-Renault,"Dewson-Renault, Miss",9.60,,1 month,31,2,AdL,1922-05-03,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-05-03,1922-05-15,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/coke-pamela/,Pamela Herself,,"Coke, Desmond",1922,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/93%2F38%2Fde%2F9338deb2d88c414e97c485170ee7520f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-05-03,1922-06-10,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,38,,,https://shakespeareandco.princeton.edu/books/strindberg-miss-julie-plays/,Miss Julie and Other Plays,,"Strindberg, August",1918,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/e9%2F30%2F98%2Fe93098b0dad84c25a10ad281283ba11d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-05-03,1922-07-16,https://shakespeareandco.princeton.edu/members/rhys/,Mr. Rhys,"Rhys, Mr.",,,,,,,,,Returned,74,,,https://shakespeareandco.princeton.edu/books/moore-mummers-wife/,A Mummer's Wife,,"Moore, George",1885,,Lending Library Card,"Sylvia Beach, Rhys Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0fcf5eb6-f872-481c-a304-e45a0c9fe472/manifest,https://iiif.princeton.edu/loris/figgy_prod/67%2F3d%2F21%2F673d211972284e099df1c89a348719ce%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1922-05-04,1922-08-04,https://shakespeareandco.princeton.edu/members/donard/,M. Donard,"Donard, M.",20.00,7.00,3 months,92,1,,1922-05-04,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1922-05-04,1922-05-04,https://shakespeareandco.princeton.edu/members/decourtis/,M. Descourtis,"Descourtis, M.",,,,,,,,7.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1922-05-04,1922-08-04,https://shakespeareandco.princeton.edu/members/butler/,Miss Butler,"Butler, Miss",30.00,14.00,3 months,92,2,,1922-05-04,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-05-05,1922-05-23,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/joyce-portrait-artist-young/,A Portrait of the Artist as a Young Man,,"Joyce, James",1916,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/05%2Fd1%2F20%2F05d120f890cb4152b7f64e0179929987%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-05-05,1922-05-23,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/joyce-exiles/,Exiles,,"Joyce, James",1918,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/05%2Fd1%2F20%2F05d120f890cb4152b7f64e0179929987%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1922-05-05,1922-06-05,https://shakespeareandco.princeton.edu/members/mason-harriet/,Harriet Mason,"Mason, Harriet",8.00,7.00,1 month,31,1,,1922-05-05,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-05-05,1922-05-23,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/joyce-chamber-music/,Chamber Music,,"Joyce, James",1907,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/05%2Fd1%2F20%2F05d120f890cb4152b7f64e0179929987%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-05-06,1922-06-29,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,54,,,https://shakespeareandco.princeton.edu/books/oneill-moon-caribbees-six/,"The Moon of the Caribbees, and Six Other Plays of the Sea",,"O'Neill, Eugene",1919,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/af%2F41%2Fe3%2Faf41e31bbb2942368b752621b338e9c9%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1922-05-06,1922-05-06,https://shakespeareandco.princeton.edu/members/hazant-3/,Mlle Hazant,"Hazant, Mlle",,,,,,,,7.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1922-05-06,1922-05-06,https://shakespeareandco.princeton.edu/members/marglous-myra/,Myra Marglous,"Marglous, Myra",,,,,,,,7.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-05-06,1922-05-26,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/moore-mummers-wife/,A Mummer's Wife,,"Moore, George",1885,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/af%2F41%2Fe3%2Faf41e31bbb2942368b752621b338e9c9%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-05-06,1922-05-13,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/stephens-crock-gold/,The Crock of Gold,,"Stephens, James",1912,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/af%2F41%2Fe3%2Faf41e31bbb2942368b752621b338e9c9%2Fintermediate_file/full/full/0/default.jpg
+Crossed out,1922-05-07,,https://shakespeareandco.princeton.edu/members/rhys/,Mr. Rhys,"Rhys, Mr.",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/moore-esther-waters/,Esther Waters,,"Moore, George",1894,,Lending Library Card,"Sylvia Beach, Rhys Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0fcf5eb6-f872-481c-a304-e45a0c9fe472/manifest,https://iiif.princeton.edu/loris/figgy_prod/67%2F3d%2F21%2F673d211972284e099df1c89a348719ce%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1922-05-08,1922-06-08,https://shakespeareandco.princeton.edu/members/doerr/,Mme Doerr / Mme Duer,"Doerr, Mme",8.00,7.00,1 month,31,1,,1922-05-08,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1922-05-09,1922-06-09,https://shakespeareandco.princeton.edu/members/gage-j-w/,J. W. Gage,"Gage, J. W.",8.00,7.00,1 month,31,1,,1922-05-09,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1922-05-09,1922-07-09,https://shakespeareandco.princeton.edu/members/mcdonald/,Mr. McDonald,"McDonald, Mr.",16.00,,2 months,61,1,,1922-05-05,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1922-05-10,1922-06-10,https://shakespeareandco.princeton.edu/members/atwood/,C. Atwood,"Atwood, C.",12.00,14.00,1 month,31,2,,1922-05-10,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1922-05-10,1922-08-10,https://shakespeareandco.princeton.edu/members/chauvel/,Jean Chauvel,"Chauvel, Jean",30.00,,3 months,92,2,,1922-05-10,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-05-10,1922-05-18,https://shakespeareandco.princeton.edu/members/rice-matilda/,Matilda Rice,"Rice, Matilda",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/mansfield-bliss-short-stories/,Bliss and Other Stories,,"Mansfield, Katherine",1920,,Lending Library Card,"Sylvia Beach, Matilda Rice Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ad8eeb53-ecdd-4d4d-99be-0651f54c7214/manifest,https://iiif.princeton.edu/loris/figgy_prod/bb%2F70%2Fcc%2Fbb70ccfcf56b4157852126045e9d0bd2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1922-05-11,1922-06-11,https://shakespeareandco.princeton.edu/members/culmann/,Mme Culmann / Kulmann,"Culmann, Mme",12.00,,1 month,31,2,,1922-05-10,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-05-11,1922-05-16,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/harris-yellow-ticket-stories/,The Yellow Ticket and Other Stories,,"Harris, Frank",1914,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/51%2Fed%2F4c%2F51ed4ce0e0ee48c681c19b7c872dd103%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-05-12,1922-05-17,https://shakespeareandco.princeton.edu/members/schlumberger/,Miss Schlumberger,"Schlumberger, Miss",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/galsworthy-plays/,Plays,,"Galsworthy, John",,Unidentified. Series unknown.,Lending Library Card,"Sylvia Beach, Miss Schlumberger Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2a613025-4f47-475f-9687-1f66fa5c4f12/manifest,https://iiif.princeton.edu/loris/figgy_prod/36%2F82%2Fed%2F3682ede4173949afb92b802bcbf0be39%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-05-13,1922-05-26,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/merrick-actor-manager/,The Actor Manager,,"Merrick, Leonard",1898,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/af%2F41%2Fe3%2Faf41e31bbb2942368b752621b338e9c9%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1922-05-13,1922-08-13,https://shakespeareandco.princeton.edu/members/lemierre-m-j/,M. J. Lemierre,"Lemierre, Mr. M. J.",20.00,7.00,3 months,92,1,,1922-05-13,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-05-15,1922-05-30,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/huxley-mortal-coils/,Mortal Coils,,"Huxley, Aldous",1922,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/93%2F38%2Fde%2F9338deb2d88c414e97c485170ee7520f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-05-15,1922-05-26,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/shakespeare-shakespeare/,Shakespeare,Vol. 4,"Shakespeare, William",,"Likely the nine-volume Cambridge Shakespeare, edited by William George Clark and William Aldis Wright. Rose Maire Parrain's lending library card mentions Wright. Isabelle Zimmer borrows volume 2, G. Violette borrows volumes 2β4, Parrain borrows volume 4, and Fernand Colens borrows volume 6.",Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/8f%2F26%2F37%2F8f26370e03244c58a377ef9d09237eef%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-05-16,1922-05-22,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/walpole-wooden-horse/,The Wooden Horse,,"Walpole, Hugh",1909,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/51%2Fed%2F4c%2F51ed4ce0e0ee48c681c19b7c872dd103%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-05-16,1922-06-08,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/wells-washington-hope-peace/,Washington and the Hope of Peace,,"Wells, H. G.",1922,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/a3%2F06%2F38%2Fa30638d93f964372ac35745c0f99c8f3%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1922-05-16,1922-06-16,https://shakespeareandco.princeton.edu/members/neufville-de-2/,M. de Neufville,"de Neufville, M.",8.00,,1 month,31,1,,1922-05-15,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1922-05-16,1922-08-16,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",20.00,,3 months,92,1,,1922-05-16,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,;https://iiif-cloud.princeton.edu/iiif/2/a3%2F06%2F38%2Fa30638d93f964372ac35745c0f99c8f3%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1922-05-17,1922-07-17,https://shakespeareandco.princeton.edu/members/harrison-a/,A. Harrison,"Harrison, A.",16.00,,2 months,61,1,,1922-05-15,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1922-05-17,1922-06-17,https://shakespeareandco.princeton.edu/members/hollingsworth/,Mr. Hollingsworth,"Hollingsworth, Mr.",8.00,7.00,1 month,31,1,,1922-05-17,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-05-17,1922-06-26,https://shakespeareandco.princeton.edu/members/schlumberger/,Miss Schlumberger,"Schlumberger, Miss",,,,,,,,,Returned,40,,,https://shakespeareandco.princeton.edu/books/galsworthy-let-forsyte-saga/,To Let (The Forsyte Saga),,"Galsworthy, John",1921,,Lending Library Card,"Sylvia Beach, Miss Schlumberger Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2a613025-4f47-475f-9687-1f66fa5c4f12/manifest,https://iiif.princeton.edu/loris/figgy_prod/36%2F82%2Fed%2F3682ede4173949afb92b802bcbf0be39%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1922-05-17,1923-05-17,https://shakespeareandco.princeton.edu/members/manuel/,Mme Manuel,"Manuel, Mme",60.00,7.00,1 year,365,1,,1922-05-17,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-05-17,,https://shakespeareandco.princeton.edu/members/schlumberger/,Miss Schlumberger,"Schlumberger, Miss",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/galsworthy-beyond/,Beyond,,"Galsworthy, John",1917,,Lending Library Card,"Sylvia Beach, Miss Schlumberger Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2a613025-4f47-475f-9687-1f66fa5c4f12/manifest,https://iiif.princeton.edu/loris/figgy_prod/36%2F82%2Fed%2F3682ede4173949afb92b802bcbf0be39%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1922-05-18,1922-06-18,https://shakespeareandco.princeton.edu/members/merlo/,Mme Merlo,"Merlo, Mme",8.00,,1 month,31,1,,1922-05-15,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1922-05-18,1922-08-18,https://shakespeareandco.princeton.edu/members/mccown-eugene/,Eugene McCown,"McCown, Eugene",30.00,14.00,3 months,92,2,,1922-05-18,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-05-18,1922-06-02,https://shakespeareandco.princeton.edu/members/rice-matilda/,Matilda Rice,"Rice, Matilda",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/beerbohm-more/,More,,"Beerbohm, Max",1899,,Lending Library Card,"Sylvia Beach, Matilda Rice Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ad8eeb53-ecdd-4d4d-99be-0651f54c7214/manifest,https://iiif.princeton.edu/loris/figgy_prod/bb%2F70%2Fcc%2Fbb70ccfcf56b4157852126045e9d0bd2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1922-05-18,1922-06-18,https://shakespeareandco.princeton.edu/members/clerin/,Mlle Clerin,"Clerin, Mlle",12.00,,1 month,31,2,,1922-05-15,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-05-19,1922-06-08,https://shakespeareandco.princeton.edu/members/schereck/,Mildred Schereck,"Schereck, Mildred",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/ford-heart-country/,The Heart of the Country,,"Ford, Ford Madox",1906,,Lending Library Card,"Sylvia Beach, Mildred Schereck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3b15ea0c-ed8d-4b41-80f3-33485620b12c/manifest,https://iiif-cloud.princeton.edu/iiif/2/65%2F5f%2F8a%2F655f8aeadadb48bfa319309d0b2dab6b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-05-22,1922-06-02,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/walpole-prelude-adventure/,The Prelude to Adventure,,"Walpole, Hugh",1912,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/51%2Fed%2F4c%2F51ed4ce0e0ee48c681c19b7c872dd103%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1922-05-23,1922-06-23,https://shakespeareandco.princeton.edu/members/fairweather-una/,Una Fairweather,"Fairweather, Una",8.00,7.00,1 month,31,1,,1922-05-23,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-05-23,1922-05-30,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/sinclair-mr-waddington-wyck/,Mr. Waddington of Wyck,,"Sinclair, May",1921,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/93%2F38%2Fde%2F9338deb2d88c414e97c485170ee7520f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-05-23,1922-06-08,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/dane-bill-divorcement/,A Bill of Divorcement,,"Dane, Clemence",1921,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/93%2F38%2Fde%2F9338deb2d88c414e97c485170ee7520f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-05-23,1922-06-07,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/dickinson-appearances-notes-travel/,Appearances: Being Notes of Travel,,"Dickinson, G. Lowes",1914,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/05%2Fd1%2F20%2F05d120f890cb4152b7f64e0179929987%2Fintermediate_file.jp2/full/full/0/default.jpg
+Supplement,1922-05-24,1923-05-17,https://shakespeareandco.princeton.edu/members/manuel/,Mme Manuel,"Manuel, Mme",20.00,,"11 months, 23 days",358,2,,1922-05-24,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1922-05-26,1922-08-26,https://shakespeareandco.princeton.edu/members/clerc/,Mme Clerc,"Clerc, Mme",20.00,,3 months,92,1,,1922-05-26,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-05-26,1922-06-09,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/conrad-almayers-folly/,Almayer's Folly,,"Conrad, Joseph",1895,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/8f%2F26%2F37%2F8f26370e03244c58a377ef9d09237eef%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-05-26,1922-06-13,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/walpole-young-enchanted/,The Young Enchanted,,"Walpole, Hugh",1921,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/af%2F41%2Fe3%2Faf41e31bbb2942368b752621b338e9c9%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1922-05-26,1922-06-26,https://shakespeareandco.princeton.edu/members/fosca-francois/,FranΓ§ois Fosca,"Fosca, FranΓ§ois",8.00,7.00,1 month,31,1,,1922-05-26,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-05-26,1922-06-13,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/rhys-rabindranath-tagore-biographical/,Rabindranath Tagore: A Biographical Study,,"Rhys, Ernest",1915,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/af%2F41%2Fe3%2Faf41e31bbb2942368b752621b338e9c9%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1922-05-26,1922-06-26,https://shakespeareandco.princeton.edu/members/cerenville/,Mme de Cerenville,"de Cerenville, Mme",8.00,7.00,1 month,31,1,,1922-05-26,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-05-30,1922-06-08,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/mansfield-bliss-short-stories/,Bliss and Other Stories,,"Mansfield, Katherine",1920,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/93%2F38%2Fde%2F9338deb2d88c414e97c485170ee7520f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-06-02,1922-06-10,https://shakespeareandco.princeton.edu/members/rice-matilda/,Matilda Rice,"Rice, Matilda",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/moore-esther-waters/,Esther Waters,,"Moore, George",1894,,Lending Library Card,"Sylvia Beach, Matilda Rice Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ad8eeb53-ecdd-4d4d-99be-0651f54c7214/manifest,https://iiif.princeton.edu/loris/figgy_prod/bb%2F70%2Fcc%2Fbb70ccfcf56b4157852126045e9d0bd2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-06-02,1922-06-16,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/stevenson-memories-portraits/,Memories and Portraits,,"Stevenson, Robert Louis",1887,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/51%2Fed%2F4c%2F51ed4ce0e0ee48c681c19b7c872dd103%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1922-06-04,1922-07-04,https://shakespeareandco.princeton.edu/members/lomax/,Mr. Lomax,"Lomax, Mr.",8.00,,1 month,30,1,,1922-06-03,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1922-06-06,1922-09-06,https://shakespeareandco.princeton.edu/members/brizard-2/,Mlle Brizard / Brigard,"Brizard, Mlle",16.00,,3 months,92,1,AdL,1922-06-06,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-06-07,1922-06-26,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/lubbock-george-calderon-sketch/,George Calderon: A Sketch from Memory,,"Lubbock, Percy",1921,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/05%2Fd1%2F20%2F05d120f890cb4152b7f64e0179929987%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-06-08,1922-06-17,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/strachey-eminent-victorians/,Eminent Victorians,,"Strachey, Giles Lytton",1918,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/93%2F38%2Fde%2F9338deb2d88c414e97c485170ee7520f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-06-08,1922-06-27,https://shakespeareandco.princeton.edu/members/schereck/,Mildred Schereck,"Schereck, Mildred",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/galsworthy-man-property-forsyte/,The Man of Property (The Forsyte Saga),,"Galsworthy, John",1906,,Lending Library Card,"Sylvia Beach, Mildred Schereck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3b15ea0c-ed8d-4b41-80f3-33485620b12c/manifest,https://iiif-cloud.princeton.edu/iiif/2/65%2F5f%2F8a%2F655f8aeadadb48bfa319309d0b2dab6b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-06-09,1922-06-16,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/joyce-portrait-artist-young/,A Portrait of the Artist as a Young Man,,"Joyce, James",1916,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/a3%2F06%2F38%2Fa30638d93f964372ac35745c0f99c8f3%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-06-09,1922-06-15,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/stevenson-treasure-island/,Treasure Island,,"Stevenson, Robert Louis",1883,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/8f%2F26%2F37%2F8f26370e03244c58a377ef9d09237eef%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-06-10,1922-06-16,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/jung-psychology-unconscious/,The Psychology of the Unconscious,,"Jung, Carl Gustav",1916,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/4d%2F3b%2Fff%2F4d3bff71461f45579405294959660eff%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1922-06-10,1922-07-10,https://shakespeareandco.princeton.edu/members/isaac/,Mrs. C. P. Isaac,"Isaac, Mrs. C. P.",12.00,14.00,1 month,30,2,,1922-06-10,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-06-10,,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/hearn-kokoro/,Kokoro,,"Hearn, Lafcadio",1896,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/e9%2F30%2F98%2Fe93098b0dad84c25a10ad281283ba11d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1922-06-10,1922-07-10,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",8.00,,1 month,30,1,,1922-06-10,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,;https://iiif.princeton.edu/loris/figgy_prod/4d%2F3b%2Fff%2F4d3bff71461f45579405294959660eff%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-06-10,1922-07-18,https://shakespeareandco.princeton.edu/members/rice-matilda/,Matilda Rice,"Rice, Matilda",,,,,,,,,Returned,38,,,https://shakespeareandco.princeton.edu/books/james-awkward-age/,The Awkward Age,,"James, Henry",1899,,Lending Library Card,"Sylvia Beach, Matilda Rice Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ad8eeb53-ecdd-4d4d-99be-0651f54c7214/manifest,https://iiif.princeton.edu/loris/figgy_prod/bb%2F70%2Fcc%2Fbb70ccfcf56b4157852126045e9d0bd2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-06-10,1922-06-14,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/mencken-american-language/,The American Language,,"Mencken, H. L.",1919,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/4d%2F3b%2Fff%2F4d3bff71461f45579405294959660eff%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1922-06-12,1922-09-12,https://shakespeareandco.princeton.edu/members/bachwitz/,Mme Bachwitz,"Bachwitz, Mme",16.00,,3 months,92,1,AdL,1922-06-12,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1922-06-12,1922-07-12,https://shakespeareandco.princeton.edu/members/brett/,Miss Brett,"Brett, Miss",8.00,,1 month,30,1,,1922-06-12,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,,1922-06-13,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/ervine-john-ferguson-play/,John Ferguson: A Play in Four Acts,,"Ervine, St. John G.",1915,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/18%2F8a%2F2d%2F188a2d5b46c44e5e96b6cdaf585e9dd1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-06-13,1922-06-24,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/walpole-captives-novel-four/,The Captives: A Novel in Four Parts,,"Walpole, Hugh",1920,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/af%2F41%2Fe3%2Faf41e31bbb2942368b752621b338e9c9%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-06-13,1922-07-06,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/chekhov-cooks-wedding-stories/,"The Cook's Wedding, and Other Stories",,"Chekhov, Anton",1922,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/18%2F8a%2F2d%2F188a2d5b46c44e5e96b6cdaf585e9dd1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-06-13,1922-06-24,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/huxley-crome-yellow/,Crome Yellow,,"Huxley, Aldous",1921,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/af%2F41%2Fe3%2Faf41e31bbb2942368b752621b338e9c9%2Fintermediate_file/full/full/0/default.jpg
+Crossed out,1922-06-14,,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/mencken-american-language/,The American Language,,"Mencken, H. L.",1919,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/4d%2F3b%2Fff%2F4d3bff71461f45579405294959660eff%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-06-15,1922-06-21,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/stevenson-new-arabian-nights/,New Arabian Nights,,"Stevenson, Robert Louis",1882,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/8f%2F26%2F37%2F8f26370e03244c58a377ef9d09237eef%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1922-06-15,1922-07-15,https://shakespeareandco.princeton.edu/members/scott-laplat/,Mrs. Laplat Scott,"Scott, Mrs. Laplat",8.00,,1 month,30,1,,1922-06-14,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-06-15,1922-07-04,https://shakespeareandco.princeton.edu/members/milhaud/,Madeleine Milhaud,"Milhaud, Madeleine",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/hardy-pair-blue-eyes/,A Pair of Blue Eyes,,"Hardy, Thomas",1873,,Lending Library Card,"Sylvia Beach, Madeleine Milhaud Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/30bac701-0f7f-4f16-b790-8c7876940713/manifest,https://iiif.princeton.edu/loris/figgy_prod/7a%2F7b%2Fd1%2F7a7bd1a81c4a4f558978f622836aabf7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1922-06-15,1922-07-15,https://shakespeareandco.princeton.edu/members/cundall/,Mr. Cundall,"Cundall, Mr.",12.00,14.00,1 month,30,2,,1922-06-15,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-06-16,1922-06-19,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/beals-merry-heart/,The Merry Heart,,"Beals, Helen Abbott",1918,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/51%2Fed%2F4c%2F51ed4ce0e0ee48c681c19b7c872dd103%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-06-16,1922-06-27,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/frank-dark-mother/,The Dark Mother,,"Frank, Waldo",1920,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/a3%2F06%2F38%2Fa30638d93f964372ac35745c0f99c8f3%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-06-16,1922-06-24,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/butler-life-habit/,Life and Habit,,"Butler, Samuel",1878,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/4d%2F3b%2Fff%2F4d3bff71461f45579405294959660eff%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-06-17,1922-06-24,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/carswell-open-door/,Open the Door,,"Carswell, Catherine",1920,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/93%2F38%2Fde%2F9338deb2d88c414e97c485170ee7520f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1922-06-17,1922-09-17,https://shakespeareandco.princeton.edu/members/clerc/,Mme Clerc,"Clerc, Mme",20.00,,3 months,92,1,,1922-06-17,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1922-06-18,1922-07-18,https://shakespeareandco.princeton.edu/members/merlo/,Mme Merlo,"Merlo, Mme",8.00,,1 month,30,1,,1922-06-17,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-06-19,1922-06-29,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/machen-secret-glory/,The Secret Glory,,"Machen, Arthur",1922,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/51%2Fed%2F4c%2F51ed4ce0e0ee48c681c19b7c872dd103%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-06-21,1922-06-28,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/jerome-three-men-boat/,Three Men in a Boat (To Say Nothing of the Dog),,"Jerome, Jerome K.",1889,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/8f%2F26%2F37%2F8f26370e03244c58a377ef9d09237eef%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-06-24,1922-07-10,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/bryher-development/,Development,,Bryher,1920,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/93%2F38%2Fde%2F9338deb2d88c414e97c485170ee7520f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-06-24,1922-07-18,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,24,,,https://shakespeareandco.princeton.edu/books/rhys-rabindranath-tagore-biographical/,Rabindranath Tagore: A Biographical Study,,"Rhys, Ernest",1915,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/af%2F41%2Fe3%2Faf41e31bbb2942368b752621b338e9c9%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-06-24,1922-07-01,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/percy-bysshe-shelley/,Percy Bysshe Shelley,,,,"Unidentified. By or about Shelley. John Rodker borrowed an unspecifed Oxford edition. On March 19, 1932, Fernand Colens borrowed volume 2 of an unspecified edition.",Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/4d%2F3b%2Fff%2F4d3bff71461f45579405294959660eff%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-06-24,1922-07-18,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,24,,,https://shakespeareandco.princeton.edu/books/hichens-garden-allah/,The Garden of Allah,,"Hichens, Robert Smythe",1904,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/af%2F41%2Fe3%2Faf41e31bbb2942368b752621b338e9c9%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1922-06-26,1922-07-26,https://shakespeareandco.princeton.edu/members/sailly/,Mme de Sailly,"de Sailly, Mme",8.00,,1 month,30,1,,1922-06-14,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-06-26,1922-07-10,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/butler-way-flesh/,The Way of All Flesh,,"Butler, Samuel",1903,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/05%2Fd1%2F20%2F05d120f890cb4152b7f64e0179929987%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1922-06-26,1922-07-26,https://shakespeareandco.princeton.edu/members/jewell-edward-alden/,Edward Alden Jewell,"Jewell, Edward Alden",8.00,7.00,1 month,30,1,,1922-06-26,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-06-27,1922-07-25,https://shakespeareandco.princeton.edu/members/schereck/,Mildred Schereck,"Schereck, Mildred",,,,,,,,,Returned,28,,,https://shakespeareandco.princeton.edu/books/tagore-nationalism/,Nationalism,,"Tagore, Rabindranath",1917,,Lending Library Card,"Sylvia Beach, Mildred Schereck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3b15ea0c-ed8d-4b41-80f3-33485620b12c/manifest,https://iiif-cloud.princeton.edu/iiif/2/65%2F5f%2F8a%2F655f8aeadadb48bfa319309d0b2dab6b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-06-27,1922-07-18,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/kay-scott-blind-mice/,Blind Mice,,"Kay-Scott, C.",1921,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2F96%2Fd2%2F5e96d2c676ff4f7d8107736bf23ae839%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1922-06-28,1922-07-12,https://shakespeareandco.princeton.edu/members/stern-mr/,Mr. Stern,"Stern, Mr.",4.00,,2 weeks,14,,,1922-06-28,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-06-28,1922-07-01,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/sanger-woman-new-race/,Woman and the New Race,,"Sanger, Margaret",1920,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/8f%2F26%2F37%2F8f26370e03244c58a377ef9d09237eef%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-06-29,1922-06-30,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/burke-whispering-windows/,Whispering Windows,,"Burke, Thomas",1921,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/51%2Fed%2F4c%2F51ed4ce0e0ee48c681c19b7c872dd103%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1922-06-29,1922-07-29,https://shakespeareandco.princeton.edu/members/roger-cornaz-frederic/,FrΓ©dΓ©ric Roger-Cornaz,"Roger-Cornaz, FrΓ©dΓ©ric",8.00,,1 month,30,1,,1922-06-22,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1922-06-29,1922-07-29,https://shakespeareandco.princeton.edu/members/gueneau/,M. Gueneau,"Gueneau, M.",8.00,,1 month,30,1,,1922-06-26,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1922-06-30,1922-12-30,https://shakespeareandco.princeton.edu/members/kershaw/,Mr. Kershaw,"Kershaw, Mr.",35.00,,6 months,183,1,,1922-06-19,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-06-30,1922-07-13,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/chamberlin-private-character-queen/,The Private Character of Queen Elizabeth,,"Chamberlin, Frederick Carleton",1922,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/51%2Fed%2F4c%2F51ed4ce0e0ee48c681c19b7c872dd103%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-07-01,1922-07-07,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/thayer-dial/,The Dial,"Vol. 72, no. 6, Jun 1922",,,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/4d%2F3b%2Fff%2F4d3bff71461f45579405294959660eff%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-07-01,1922-07-04,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/clouston-lunatic-large-novel/,The Lunatic at Large: A Novel,,"Clouston, J. Storer",1899,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/8f%2F26%2F37%2F8f26370e03244c58a377ef9d09237eef%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1922-07-01,1922-07-01,https://shakespeareandco.princeton.edu/members/gage-j-w/,J. W. Gage,"Gage, J. W.",,,,,,,,7.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Supplement,1922-07-01,1922-09-17,https://shakespeareandco.princeton.edu/members/clerc/,Mme Clerc,"Clerc, Mme",10.00,,"2 months, 16 days",78,2,,1922-07-01,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1922-07-03,1922-07-03,https://shakespeareandco.princeton.edu/members/maurice/,Mme Maurice,"Maurice, Mme",,,,,,,,7.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1922-07-03,1922-07-03,https://shakespeareandco.princeton.edu/members/mason-harriet/,Harriet Mason,"Mason, Harriet",,,,,,,,14.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1922-07-03,1922-08-03,https://shakespeareandco.princeton.edu/members/ingalls-c-l/,C. L. Ingalls,"Ingalls, C. L.",8.00,7.00,1 month,31,1,,1922-07-03,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-07-04,1922-10-20,https://shakespeareandco.princeton.edu/members/milhaud/,Madeleine Milhaud,"Milhaud, Madeleine",,,,,,,,,Returned,108,,,https://shakespeareandco.princeton.edu/books/norris-shanghaied/,Shanghaied,,"Norris, Frank",1920,,Lending Library Card,"Sylvia Beach, Madeleine Milhaud Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/30bac701-0f7f-4f16-b790-8c7876940713/manifest,https://iiif.princeton.edu/loris/figgy_prod/7a%2F7b%2Fd1%2F7a7bd1a81c4a4f558978f622836aabf7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-07-04,1922-07-10,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/stevenson-master-ballantrae/,The Master of Ballantrae,,"Stevenson, Robert Louis",1889,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/8f%2F26%2F37%2F8f26370e03244c58a377ef9d09237eef%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1922-07-04,1922-10-04,https://shakespeareandco.princeton.edu/members/bourgeois/,M. Bourgeois,"Bourgeois, M.",24.00,,3 months,92,2,AdL,1922-07-04,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1922-07-05,1922-08-05,https://shakespeareandco.princeton.edu/members/renault-mlle/,Mlle Renault,"Renault, Mlle",12.00,,1 month,31,2,,1922-07-05,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1922-07-05,1923-07-05,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",48.00,,1 year,365,1,AdL,1922-06-26,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,
+Subscription,1922-07-05,1922-08-05,https://shakespeareandco.princeton.edu/members/isery/,Mr. d'IsΓ¨re / Isery,"d'IsΓ¨re, Mr.",8.00,7.00,1 month,31,1,,1922-07-05,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1922-07-06,1922-07-09,https://shakespeareandco.princeton.edu/members/maclean/,Mr. MacLean,"MacLean, Mr.",2.00,15.00,3 days,3,1,,1922-07-06,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-07-06,1922-07-17,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/joyce-portrait-artist-young/,A Portrait of the Artist as a Young Man,,"Joyce, James",1916,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/18%2F8a%2F2d%2F188a2d5b46c44e5e96b6cdaf585e9dd1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1922-07-06,1922-08-06,https://shakespeareandco.princeton.edu/members/bruel-mme/,Mme Bruel,"Bruel, Mme",8.00,7.00,1 month,31,1,,1922-07-06,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1922-07-07,1922-08-07,https://shakespeareandco.princeton.edu/members/briere/,Mlle BriΓ¨re,"BriΓ¨re, Mlle",8.00,7.00,1 month,31,1,,1922-07-07,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1922-07-07,1922-10-07,https://shakespeareandco.princeton.edu/members/kerravue/,Mme de Kerravue / Mme de Kerraoul,"de Kerravue, Mme",16.00,,3 months,92,1,AdL,1922-07-07,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1922-07-10,1922-08-10,https://shakespeareandco.princeton.edu/members/hardily/,Mrs. A. P. Hardil,"Hardil, Mrs. A. P.",12.00,14.00,1 month,31,2,,1922-07-10,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-07-10,1922-08-05,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,26,,,https://shakespeareandco.princeton.edu/books/couperus-hidden-story-modern/,The Hidden Force: A Story of Modern Java,,"Couperus, Louis",1921,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/93%2F38%2Fde%2F9338deb2d88c414e97c485170ee7520f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-07-10,1922-08-04,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,25,,,https://shakespeareandco.princeton.edu/books/lewis-main-street-story/,Main Street: The Story of Carol Kennicott,,"Lewis, Sinclair",1920,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/05%2Fd1%2F20%2F05d120f890cb4152b7f64e0179929987%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-07-10,1922-08-05,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,26,,,https://shakespeareandco.princeton.edu/books/fleay-almond-blossoms/,Almond Blossoms,,"Fleay, Frederick Gard",1857,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/93%2F38%2Fde%2F9338deb2d88c414e97c485170ee7520f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-07-10,1922-08-05,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,26,,,https://shakespeareandco.princeton.edu/books/jameson-clash/,The Clash,,"Jameson, Storm",1922,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/93%2F38%2Fde%2F9338deb2d88c414e97c485170ee7520f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1922-07-10,1922-09-10,https://shakespeareandco.princeton.edu/members/fernandez-yva/,Yva Fernandez,"Fernandez, Yva",16.00,,2 months,62,1,,1922-07-10,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-07-10,1922-08-04,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,25,,,https://shakespeareandco.princeton.edu/books/note-books/,The Note Books,,,,"Unidentified. Samuel Butler's *The Note-Books of Samuel Butler* (1912) or Anton Chekhov's *The Note-books of Anton Tchekhov* (1921), etc.",Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/05%2Fd1%2F20%2F05d120f890cb4152b7f64e0179929987%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1922-07-11,1922-08-11,https://shakespeareandco.princeton.edu/members/krauss/,Mrs. W. K. Krauss,"Krauss, Mrs. W. K.",8.00,7.00,1 month,31,1,,1922-07-11,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1922-07-11,1923-07-11,https://shakespeareandco.princeton.edu/members/cerf/,Colette Cerf,"Cerf, Colette",48.00,,1 year,365,1,AdL,1922-07-11,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1922-07-12,1922-07-12,https://shakespeareandco.princeton.edu/members/maclean/,Mr. MacLean,"MacLean, Mr.",,,,,,,,15.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1922-07-12,1922-08-12,https://shakespeareandco.princeton.edu/members/barry/,George Barry,"Barry, George",8.00,7.00,1 month,31,1,,1922-07-12,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1922-07-13,1922-10-13,https://shakespeareandco.princeton.edu/members/abreu-rosalie/,Rosalie Sanchez Abreu,"Abreu, Rosalie Sanchez",30.00,,3 months,92,2,,1922-07-13,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-07-13,1922-08-11,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,29,,,https://shakespeareandco.princeton.edu/books/de-la-mare-memoirs-midget/,Memoirs of a Midget,,"De la Mare, Walter",1921,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/51%2Fed%2F4c%2F51ed4ce0e0ee48c681c19b7c872dd103%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1922-07-13,1922-08-13,https://shakespeareandco.princeton.edu/members/cavelier/,M. Cavelier,"Cavelier, M.",8.00,7.00,1 month,31,1,,1922-07-13,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1922-07-15,1922-08-15,https://shakespeareandco.princeton.edu/members/cundall/,Mr. Cundall,"Cundall, Mr.",8.00,,1 month,31,1,,1922-07-11,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1922-07-15,1922-08-15,https://shakespeareandco.princeton.edu/members/howarth-j/,J. Howarth,"Howarth, J.",12.00,,1 month,31,2,,1922-07-15,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-07-16,,https://shakespeareandco.princeton.edu/members/rhys/,Mr. Rhys,"Rhys, Mr.",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/angell-fruits-victory/,The Fruits of Victory,,"Angell, Norman",1921,,Lending Library Card,"Sylvia Beach, Rhys Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0fcf5eb6-f872-481c-a304-e45a0c9fe472/manifest,https://iiif.princeton.edu/loris/figgy_prod/67%2F3d%2F21%2F673d211972284e099df1c89a348719ce%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-07-17,1922-07-27,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/galsworthy-mob/,The Mob,,"Galsworthy, John",1914,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/18%2F8a%2F2d%2F188a2d5b46c44e5e96b6cdaf585e9dd1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1922-07-17,1922-08-17,https://shakespeareandco.princeton.edu/members/clessenswitch/,Mlle Clessenswitch,"Clessenswitch, Mlle",12.00,,1 month,31,2,,1922-07-15,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-07-18,1922-07-24,https://shakespeareandco.princeton.edu/members/rice-matilda/,Matilda Rice,"Rice, Matilda",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/strachey-eminent-victorians/,Eminent Victorians,,"Strachey, Giles Lytton",1918,,Lending Library Card,"Sylvia Beach, Matilda Rice Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ad8eeb53-ecdd-4d4d-99be-0651f54c7214/manifest,https://iiif.princeton.edu/loris/figgy_prod/bb%2F70%2Fcc%2Fbb70ccfcf56b4157852126045e9d0bd2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1922-07-18,1922-10-18,https://shakespeareandco.princeton.edu/members/boesmilon/,Mme Tougard de Boesmilon,"de Boesmilon, Mme Tougard",20.00,,3 months,92,1,,1922-07-17,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-07-18,1922-08-04,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/dreiser-twelve-men/,Twelve Men,,"Dreiser, Theodore",1919,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2F96%2Fd2%2F5e96d2c676ff4f7d8107736bf23ae839%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1922-07-19,1922-08-19,https://shakespeareandco.princeton.edu/members/sargent/,Mr. Sargent,"Sargent, Mr.",12.00,,1 month,31,2,,1922-07-15,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1922-07-20,1923-07-20,https://shakespeareandco.princeton.edu/members/burt-maud/,Maud Burt,"Burt, Maud",64.00,,1 year,365,2,,1922-07-20,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1922-07-25,1922-07-25,https://shakespeareandco.princeton.edu/members/greer/,Mr. Greer,"Greer, Mr.",,,,,,,,14.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-07-25,1922-08-31,https://shakespeareandco.princeton.edu/members/schereck/,Mildred Schereck,"Schereck, Mildred",,,,,,,,,Returned,37,,,https://shakespeareandco.princeton.edu/books/wilde-picture-dorian-grey/,The Picture of Dorian Grey,,"Wilde, Oscar",1890,,Lending Library Card,"Sylvia Beach, Mildred Schereck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3b15ea0c-ed8d-4b41-80f3-33485620b12c/manifest,https://iiif-cloud.princeton.edu/iiif/2/65%2F5f%2F8a%2F655f8aeadadb48bfa319309d0b2dab6b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-07-25,1922-08-31,https://shakespeareandco.princeton.edu/members/schereck/,Mildred Schereck,"Schereck, Mildred",,,,,,,,,Returned,37,,,https://shakespeareandco.princeton.edu/books/wilde-plays-oscar-wilde/,The Plays of Oscar Wilde,,"Wilde, Oscar",,,Lending Library Card,"Sylvia Beach, Mildred Schereck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3b15ea0c-ed8d-4b41-80f3-33485620b12c/manifest,https://iiif-cloud.princeton.edu/iiif/2/65%2F5f%2F8a%2F655f8aeadadb48bfa319309d0b2dab6b%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1922-07-26,1922-08-26,https://shakespeareandco.princeton.edu/members/sailly/,Mme de Sailly,"de Sailly, Mme",8.00,,1 month,31,1,,1922-07-15,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-07-27,1922-10-03,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,68,,,https://shakespeareandco.princeton.edu/books/douglas-south-wind/,South Wind,,"Douglas, Norman",1917,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/18%2F8a%2F2d%2F188a2d5b46c44e5e96b6cdaf585e9dd1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1922-07-27,1922-08-27,https://shakespeareandco.princeton.edu/members/lee-3/,Miss Lee,"Lee, Miss",8.00,,1 month,31,1,,1922-07-27,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-07-27,1922-10-03,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,68,,,https://shakespeareandco.princeton.edu/books/conrad-lord-jim/,Lord Jim,,"Conrad, Joseph",1900,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/18%2F8a%2F2d%2F188a2d5b46c44e5e96b6cdaf585e9dd1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1922-07-27,1923-07-27,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",48.00,,1 year,365,1,,1922-09-12,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,;https://iiif-cloud.princeton.edu/iiif/2/51%2Fed%2F4c%2F51ed4ce0e0ee48c681c19b7c872dd103%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-07-27,1922-10-03,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,68,,,https://shakespeareandco.princeton.edu/books/shaw-unsocial-socialist/,An Unsocial Socialist,,"Shaw, George Bernard",1917,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/18%2F8a%2F2d%2F188a2d5b46c44e5e96b6cdaf585e9dd1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1922-07-28,1922-10-28,https://shakespeareandco.princeton.edu/members/vansittart/,Miss Vansittart,"Vansittart, Miss",30.00,,3 months,92,2,,1922-06-02,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1922-07-29,1923-07-29,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",48.00,,1 year,365,,AdL,1922-07-27,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,;https://iiif.princeton.edu/loris/figgy_prod/18%2F8a%2F2d%2F188a2d5b46c44e5e96b6cdaf585e9dd1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1922-07-30,1922-10-30,https://shakespeareandco.princeton.edu/members/flecker/,Mrs. Flecker,"Flecker, Mrs.",16.00,,3 months,92,1,,1922-06-27,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1922-07-31,1922-08-31,https://shakespeareandco.princeton.edu/members/marcel-gabriel/,Gabriel Marcel,"Marcel, Gabriel",8.00,7.00,1 month,31,1,,1922-07-31,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1922-07-31,1922-08-31,https://shakespeareandco.princeton.edu/members/deniau/,M. Deniau,"Deniau, M.",8.00,7.00,1 month,31,1,,1922-07-31,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1922-07-31,1922-08-31,https://shakespeareandco.princeton.edu/members/carter/,John Carter,"Carter, John",12.00,,1 month,31,2,,1922-07-31,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Supplement,1922-08-01,1922-08-12,https://shakespeareandco.princeton.edu/members/barry/,George Barry,"Barry, George",4.00,7.00,11 days,11,2,,1922-08-01,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-08-01,1923-04-06,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,248,,,https://shakespeareandco.princeton.edu/books/stevenson-prince-otto/,Prince Otto,,"Stevenson, Robert Louis",1885,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/e9%2F30%2F98%2Fe93098b0dad84c25a10ad281283ba11d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-08-01,1923-03-15,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,226,,,https://shakespeareandco.princeton.edu/books/shaw-cashel-byrons-profession/,Cashel Byron's Profession,,"Shaw, George Bernard",1886,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/e9%2F30%2F98%2Fe93098b0dad84c25a10ad281283ba11d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-08-01,,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/stevenson-treasure-island/,Treasure Island,,"Stevenson, Robert Louis",1883,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/e9%2F30%2F98%2Fe93098b0dad84c25a10ad281283ba11d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-08-01,,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/shaw-plays-pleasant-unpleasant/,Plays: Pleasant and Unpleasant,Vol. 2 Pleasant Plays,"Shaw, George Bernard",1898,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/e9%2F30%2F98%2Fe93098b0dad84c25a10ad281283ba11d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-08-01,1923-01-02,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,154,,,https://shakespeareandco.princeton.edu/books/butler-way-flesh/,The Way of All Flesh,,"Butler, Samuel",1903,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/e9%2F30%2F98%2Fe93098b0dad84c25a10ad281283ba11d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1922-08-02,1922-08-02,https://shakespeareandco.princeton.edu/members/gueneau/,M. Gueneau,"Gueneau, M.",,,,,,,,7.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1922-08-04,1923-08-04,https://shakespeareandco.princeton.edu/members/vox-maximilien/,Maximilien Vox / Samuel William ThΓ©odore Monod / Mr. Monod-Vox,"Vox, Maximilien",64.00,,1 year,365,2,AdL,1922-08-04,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-08-04,1922-08-22,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/shaw-john-bulls-island/,John Bull's Other Island,,"Shaw, George Bernard",1907,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/05%2Fd1%2F20%2F05d120f890cb4152b7f64e0179929987%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-08-04,1922-08-19,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/sinclair-mr-waddington-wyck/,Mr. Waddington of Wyck,,"Sinclair, May",1921,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2F96%2Fd2%2F5e96d2c676ff4f7d8107736bf23ae839%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1922-08-05,1922-09-05,https://shakespeareandco.princeton.edu/members/walsh/,Ernest Walsh,"Walsh, Ernest",8.00,7.00,1 month,31,1,,1922-08-05,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Ernest Walsh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/2ae46387-914e-4187-a60c-ae437c045257/manifest,;https://iiif.princeton.edu/loris/figgy_prod/af%2F12%2F3c%2Faf123cec65dc473e8d969ad725244c75%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1922-08-05,1922-09-05,https://shakespeareandco.princeton.edu/members/doerr/,Mme Doerr / Mme Duer,"Doerr, Mme",8.00,,1 month,31,1,,1922-08-03,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-08-05,,https://shakespeareandco.princeton.edu/members/walsh/,Ernest Walsh,"Walsh, Ernest",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/hergesheimer-cytherea/,Cytherea,,"Hergesheimer, Joseph",1921,,Lending Library Card,"Sylvia Beach, Ernest Walsh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2ae46387-914e-4187-a60c-ae437c045257/manifest,https://iiif.princeton.edu/loris/figgy_prod/af%2F12%2F3c%2Faf123cec65dc473e8d969ad725244c75%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-08-05,1922-09-04,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,30,,,https://shakespeareandco.princeton.edu/books/oriordan-london-story-adam/,In London: The Story of Adam and Marriage,,"O'Riordan, Conal",1922,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F68%2Fff%2Fb468ffa8ff574c2dab5b58ccc7a9f83a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-08-05,1922-09-04,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,30,,,https://shakespeareandco.princeton.edu/books/machen-secret-glory/,The Secret Glory,,"Machen, Arthur",1922,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F68%2Fff%2Fb468ffa8ff574c2dab5b58ccc7a9f83a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-08-05,1922-09-04,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,30,,,https://shakespeareandco.princeton.edu/books/gale-miss-lulu-bett/,Miss Lulu Bett,,"Gale, Zona",1920,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F68%2Fff%2Fb468ffa8ff574c2dab5b58ccc7a9f83a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-08-05,1922-09-04,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,30,,,https://shakespeareandco.princeton.edu/books/carswell-camomile/,The Camomile,,"Carswell, Catherine",1922,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F68%2Fff%2Fb468ffa8ff574c2dab5b58ccc7a9f83a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-08-05,1922-08-07,https://shakespeareandco.princeton.edu/members/walsh/,Ernest Walsh,"Walsh, Ernest",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/joyce-dubliners/,Dubliners,,"Joyce, James",1914,,Lending Library Card,"Sylvia Beach, Ernest Walsh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2ae46387-914e-4187-a60c-ae437c045257/manifest,https://iiif.princeton.edu/loris/figgy_prod/af%2F12%2F3c%2Faf123cec65dc473e8d969ad725244c75%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1922-08-08,1922-08-08,https://shakespeareandco.princeton.edu/members/chauvel/,Jean Chauvel,"Chauvel, Jean",,,,,,,,14.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1922-08-10,1922-09-10,https://shakespeareandco.princeton.edu/members/isery/,Mr. d'IsΓ¨re / Isery,"d'IsΓ¨re, Mr.",8.00,,1 month,31,1,,1922-08-10,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1922-08-10,1922-09-10,https://shakespeareandco.princeton.edu/members/colette/,Mr. Colette,"Colette, Mr.",8.00,7.00,1 month,31,1,,1922-08-10,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1922-08-11,1923-02-11,https://shakespeareandco.princeton.edu/members/duthuit-georges/,Georges Duthuit,"Duthuit, Georges",35.00,7.00,6 months,184,1,,1922-08-11,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-08-11,1922-08-25,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/shaw-plays-pleasant-unpleasant/,Plays: Pleasant and Unpleasant,Vol. 2 Pleasant Plays,"Shaw, George Bernard",1898,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/51%2Fed%2F4c%2F51ed4ce0e0ee48c681c19b7c872dd103%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1922-08-12,1922-09-12,https://shakespeareandco.princeton.edu/members/bullen/,Adeline Bullen,"Bullen, Adeline",8.00,7.00,1 month,31,1,,1922-08-12,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1922-08-13,1922-10-13,https://shakespeareandco.princeton.edu/members/duche/,M. DuchΓ©,"DuchΓ©, M.",16.00,,2 months,61,1,,1922-07-28,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1922-08-17,1922-09-17,https://shakespeareandco.princeton.edu/members/lewis-caroline/,Caroline Lewis,"Lewis, Caroline",12.00,14.00,1 month,31,2,,1922-08-17,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1922-08-17,1922-09-17,https://shakespeareandco.princeton.edu/members/barr-2/,Mr. W. Barr,"Barr, Mr. W.",8.00,7.00,1 month,31,1,,1922-08-17,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1922-08-17,1922-08-17,https://shakespeareandco.princeton.edu/members/sokoloff/;https://shakespeareandco.princeton.edu/members/sokoloff-2/,M. Sokoloff;Mlle Sokoloff,"Sokoloff, M.;Sokoloff, Mlle",,,,,,,,7.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1922-08-19,1922-09-19,https://shakespeareandco.princeton.edu/members/switz/;https://shakespeareandco.princeton.edu/members/switz-2/,Mr. Switz;Mrs. Switz,"Switz, Mr.;Switz, Mrs.",8.00,7.00,1 month,31,1,,1922-08-19,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-08-19,1922-09-11,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/galsworthy-let-forsyte-saga/,To Let (The Forsyte Saga),,"Galsworthy, John",1921,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2F96%2Fd2%2F5e96d2c676ff4f7d8107736bf23ae839%2Fintermediate_file/full/full/0/default.jpg
+Supplement,1922-08-22,1922-10-04,https://shakespeareandco.princeton.edu/members/fosca-francois/,FranΓ§ois Fosca,"Fosca, FranΓ§ois",4.00,,"1 month, 12 days",43,2,,1922-08-22,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-08-22,1922-10-22,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,61,,,https://shakespeareandco.princeton.edu/books/pound-pavannes-divisions/,Pavannes and Divisions,,"Pound, Ezra",1918,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/05%2Fd1%2F20%2F05d120f890cb4152b7f64e0179929987%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1922-08-22,1922-09-22,https://shakespeareandco.princeton.edu/members/giocandi/,Mme Giocandi,"Giocandi, Mme",8.00,7.00,1 month,31,1,,1922-08-22,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-08-23,,https://shakespeareandco.princeton.edu/members/rhys/,Mr. Rhys,"Rhys, Mr.",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/hearn-letters-raven/,Letters from the Raven,,"Hearn, Lafcadio;Watkin, Henry",1907,,Lending Library Card,"Sylvia Beach, Rhys Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0fcf5eb6-f872-481c-a304-e45a0c9fe472/manifest,https://iiif.princeton.edu/loris/figgy_prod/67%2F3d%2F21%2F673d211972284e099df1c89a348719ce%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-08-25,1922-09-06,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/shaw-plays-pleasant-unpleasant/,Plays: Pleasant and Unpleasant,Vol. 1 Unpleasant Plays,"Shaw, George Bernard",1898,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/51%2Fed%2F4c%2F51ed4ce0e0ee48c681c19b7c872dd103%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1922-08-26,1922-09-26,https://shakespeareandco.princeton.edu/members/sailly/,Mme de Sailly,"de Sailly, Mme",8.00,,1 month,31,1,,1922-08-01,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1922-08-28,1922-08-28,https://shakespeareandco.princeton.edu/members/cavelier/,M. Cavelier,"Cavelier, M.",,,,,,,,7.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1922-08-31,1922-09-30,https://shakespeareandco.princeton.edu/members/lee-3/,Miss Lee,"Lee, Miss",8.00,7.00,1 month,30,2,,1922-08-31,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1922-08-31,1922-09-30,https://shakespeareandco.princeton.edu/members/samarth/,Mr. Samarth,"Samarth, Mr.",8.00,,1 month,30,1,,1922-08-31,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1922-08-31,1922-09-30,https://shakespeareandco.princeton.edu/members/barnaby/,H. E. Barnaby,"Barnaby, H. E.",12.00,14.00,1 month,30,2,,1922-08-31,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1922-08-31,1922-09-30,https://shakespeareandco.princeton.edu/members/javal/;https://shakespeareandco.princeton.edu/members/javal-2/,M. Javal;Mme Javal,"Javal, M.;Javal, Mme",8.00,,1 month,30,1,,1922-08-31,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-09-01,1922-10-03,https://shakespeareandco.princeton.edu/members/schereck/,Mildred Schereck,"Schereck, Mildred",,,,,,,,,Returned,32,,,https://shakespeareandco.princeton.edu/books/strachey-queen-victoria/,Queen Victoria,,"Strachey, Giles Lytton",1921,,Lending Library Card,"Sylvia Beach, Mildred Schereck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3b15ea0c-ed8d-4b41-80f3-33485620b12c/manifest,https://iiif-cloud.princeton.edu/iiif/2/65%2F5f%2F8a%2F655f8aeadadb48bfa319309d0b2dab6b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-09-04,1922-09-16,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/chekhov-chorus-girl-stories/,The Chorus Girl and Other Stories,,"Chekhov, Anton",1920,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F68%2Fff%2Fb468ffa8ff574c2dab5b58ccc7a9f83a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-09-04,1922-09-16,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/wharton-glimpses-moon/,The Glimpses of the Moon,,"Wharton, Edith",1922,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F68%2Fff%2Fb468ffa8ff574c2dab5b58ccc7a9f83a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-09-04,1922-09-16,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/turgenev-two-friends-stories/,The Two Friends and Other Stories,,"Turgenev, Ivan",1921,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F68%2Fff%2Fb468ffa8ff574c2dab5b58ccc7a9f83a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1922-09-06,1922-12-06,https://shakespeareandco.princeton.edu/members/brizard-2/,Mlle Brizard / Brigard,"Brizard, Mlle",16.00,,3 months,91,1,AdL,1922-08-10,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-09-06,1922-09-12,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/george-caliban/,Caliban,,"George, Walter Lionel",1920,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/51%2Fed%2F4c%2F51ed4ce0e0ee48c681c19b7c872dd103%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1922-09-06,1922-09-06,https://shakespeareandco.princeton.edu/members/switz/;https://shakespeareandco.princeton.edu/members/switz-2/,Mr. Switz;Mrs. Switz,"Switz, Mr.;Switz, Mrs.",,,,,,,,7.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1922-09-07,1922-10-07,https://shakespeareandco.princeton.edu/members/beaujeu/,Mme de Beaujeu,"de Beaujeu, Mme",8.00,7.00,1 month,30,1,,1922-09-07,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-09-07,1922-09-15,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/lawrence-aarons-rod/,Aaron's Rod,,"Lawrence, D. H.",1922,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/4d%2F3b%2Fff%2F4d3bff71461f45579405294959660eff%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-09-07,1922-09-15,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/walt-whitman-study/,Walt Whitman: A Study,,,,Unidentified. Either John Burroughs's *Whitman: A Study* (1904) or John Addington Symonds's *Walt Whitman: A Study* (1915).,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/4d%2F3b%2Fff%2F4d3bff71461f45579405294959660eff%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1922-09-08,1922-12-08,https://shakespeareandco.princeton.edu/members/arnold-2/,J. O. Arnold,"Arnold, J. O.",30.00,,3 months,91,2,,1922-09-08,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1922-09-08,1922-09-08,https://shakespeareandco.princeton.edu/members/unnamed-member-7/,[unnamed member],[unnamed member],,,,,,,,14.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1922-09-08,1922-12-08,https://shakespeareandco.princeton.edu/members/erickson-carl/,Carl Erickson,"Erickson, Carl",30.00,14.00,3 months,91,2,,1922-09-08,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-09-09,1922-09-26,https://shakespeareandco.princeton.edu/members/rieder/,M. Rieder,"Rieder, M.",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/mencken-prejudices/,Prejudices,,"Mencken, H. L.",,Unidentified series number.,Lending Library Card,"Sylvia Beach, Rieder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/559c8919-8881-40ad-b027-67dbf1b23611/manifest,https://iiif.princeton.edu/loris/figgy_prod/6b%2Ffd%2F99%2F6bfd992bb8e742da8b7377869c34b3c2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1922-09-09,1922-12-09,https://shakespeareandco.princeton.edu/members/rieder/,M. Rieder,"Rieder, M.",16.00,,3 months,91,1,AdL,1922-09-09,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Rieder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/559c8919-8881-40ad-b027-67dbf1b23611/manifest,;https://iiif.princeton.edu/loris/figgy_prod/6b%2Ffd%2F99%2F6bfd992bb8e742da8b7377869c34b3c2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-09-11,1922-09-19,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/galsworthy-chancery-forsyte-saga/,In Chancery (The Forsyte Saga),,"Galsworthy, John",1920,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2F96%2Fd2%2F5e96d2c676ff4f7d8107736bf23ae839%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1922-09-12,1922-10-12,https://shakespeareandco.princeton.edu/members/colette/,Mr. Colette,"Colette, Mr.",8.00,,1 month,30,1,,1922-09-12,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-09-12,1922-09-15,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/fletcher-lost-mr-linthwaite/,The Lost Mr. Linthwaite,,"Fletcher, Joseph Smith",1920,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/51%2Fed%2F4c%2F51ed4ce0e0ee48c681c19b7c872dd103%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1922-09-14,1922-12-14,https://shakespeareandco.princeton.edu/members/chastenet/;https://shakespeareandco.princeton.edu/members/chastenet-mme/,M. Chastenet;Mme Chastenet,"Chastenet, M.;Chastenet, Mme",20.00,7.00,3 months,91,1,,1922-09-14,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1922-09-14,1922-12-14,https://shakespeareandco.princeton.edu/members/brace/,Mrs. Brace,"Brace, Mrs.",20.00,7.00,3 months,91,1,,1922-09-14,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1922-09-15,1922-09-15,https://shakespeareandco.princeton.edu/members/barry/,George Barry,"Barry, George",,,,,,,,7.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-09-15,1922-09-16,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/fletcher-scarhaven-keep/,Scarhaven Keep,,"Fletcher, Joseph Smith",1920,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/51%2Fed%2F4c%2F51ed4ce0e0ee48c681c19b7c872dd103%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-09-16,1922-11-03,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,48,,,https://shakespeareandco.princeton.edu/books/pepys-diary-samuel-pepys/,The Diary of Samuel Pepys,,"Pepys, Samuel",,"At least three editions of Pepys's *Diary* circulated in the lending library. John Murray borrowed volumes 1β3 of an unspecified edition; Dorothee Chareau borrowed volumes 4β6 from the Bell edition, edited by Henry B. Wheatley; Maximilien Vox borrowed the single-volume Globe edition, edited by G. Gregory Smith; HΓ©lΓ¨ne de Wendel borrowed the single-volume Globe edition and volumes 2β3 of the Bell edition; Guillaume Lerolle borrowed volumes 1β2 of the Bell edition; and Monique de Vigan borrowed the Newnes edition, edited by Lord Braybrooke.",Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F68%2Fff%2Fb468ffa8ff574c2dab5b58ccc7a9f83a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-09-16,1922-09-19,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/galsworthy-six-short-plays/,Six Short Plays,,"Galsworthy, John",1921,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/51%2Fed%2F4c%2F51ed4ce0e0ee48c681c19b7c872dd103%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-09-16,1922-09-25,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/van-vechten-peter-whiffle/,Peter Whiffle,,"Van Vechten, Carl",1922,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F68%2Fff%2Fb468ffa8ff574c2dab5b58ccc7a9f83a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1922-09-18,1922-10-02,https://shakespeareandco.princeton.edu/members/davies-mrs/,Mrs. Davies,"Davies, Mrs.",4.00,7.00,2 weeks,14,1,,1922-09-18,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1922-09-18,1922-10-18,https://shakespeareandco.princeton.edu/members/kennicott-c/,C. Kennicott,"Kennicott, C.",8.00,,1 month,30,1,,1922-09-15,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-09-19,,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/galsworthy-country-house/,The Country House,,"Galsworthy, John",1907,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2F96%2Fd2%2F5e96d2c676ff4f7d8107736bf23ae839%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-09-19,1922-09-22,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/bennett-mr-prohack/,Mr. Prohack,,"Bennett, Arnold",1922,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/51%2Fed%2F4c%2F51ed4ce0e0ee48c681c19b7c872dd103%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-09-22,1922-09-23,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/fletcher-valley-headstrong-men/,The Valley of Headstrong Men,,"Fletcher, Joseph Smith",1921,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/51%2Fed%2F4c%2F51ed4ce0e0ee48c681c19b7c872dd103%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-09-23,1922-09-28,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/freud-dream-psychology/,Dream Psychology: Psychoanalysis for Beginners,,"Freud, Sigmund",1920,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/51%2Fed%2F4c%2F51ed4ce0e0ee48c681c19b7c872dd103%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-09-25,1922-09-30,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/oscar-wilde/,Oscar Wilde,Vol. 1,,,Unidentified. By or about Oscar Wilde. An unspecified 2 volume edition.,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F68%2Fff%2Fb468ffa8ff574c2dab5b58ccc7a9f83a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-09-26,1922-10-19,https://shakespeareandco.princeton.edu/members/rieder/,M. Rieder,"Rieder, M.",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/dreiser-twelve-men/,Twelve Men,,"Dreiser, Theodore",1919,,Lending Library Card,"Sylvia Beach, Rieder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/559c8919-8881-40ad-b027-67dbf1b23611/manifest,https://iiif.princeton.edu/loris/figgy_prod/6b%2Ffd%2F99%2F6bfd992bb8e742da8b7377869c34b3c2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1922-09-26,1922-10-26,https://shakespeareandco.princeton.edu/members/sailly/,Mme de Sailly,"de Sailly, Mme",8.00,,1 month,30,1,,1922-08-19,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1922-09-26,1922-10-26,https://shakespeareandco.princeton.edu/members/maclean/,Mr. MacLean,"MacLean, Mr.",8.00,7.00,1 month,30,1,,1922-09-26,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-09-28,1922-09-30,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/fletcher-rayner-slade-amalgamation/,The Rayner-Slade Amalgamation,,"Fletcher, Joseph Smith",1922,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/51%2Fed%2F4c%2F51ed4ce0e0ee48c681c19b7c872dd103%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1922-09-28,1922-12-28,https://shakespeareandco.princeton.edu/members/bapat/,S. K. Bapat,"Bapat, S. K.",20.00,7.00,3 months,91,1,,1922-09-28,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-09-30,,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/machen-far-things/,Far Off Things,,"Machen, Arthur",1922,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/51%2Fed%2F4c%2F51ed4ce0e0ee48c681c19b7c872dd103%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-09-30,1922-10-05,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/oscar-wilde/,Oscar Wilde,Vol. 2,,,Unidentified. By or about Oscar Wilde. An unspecified 2 volume edition.,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F68%2Fff%2Fb468ffa8ff574c2dab5b58ccc7a9f83a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1922-09-30,1922-10-30,https://shakespeareandco.princeton.edu/members/lee-3/,Miss Lee,"Lee, Miss",8.00,,1 month,30,1,,1922-09-27,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1922-10-02,1922-10-09,https://shakespeareandco.princeton.edu/members/ingalls-c-l/,C. L. Ingalls,"Ingalls, C. L.",2.00,,1 week,7,,,1922-09-11,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1922-10-02,1922-11-02,https://shakespeareandco.princeton.edu/members/sage-robert/,Robert D. Sage,"Sage, Robert D.",8.00,7.00,1 month,31,1,,1922-10-02,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Robert Sage Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/222c7bee-1104-420b-879a-fa13a26a189a/manifest,;https://iiif-cloud.princeton.edu/iiif/2/4b%2F14%2Fdd%2F4b14dd54602c4068962a5f1cba7101fe%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-10-02,1922-10-09,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/galsworthy-fraternity/,Fraternity,,"Galsworthy, John",1909,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2F96%2Fd2%2F5e96d2c676ff4f7d8107736bf23ae839%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-10-02,1922-10-03,https://shakespeareandco.princeton.edu/members/sage-robert/,Robert D. Sage,"Sage, Robert D.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/joyce-dubliners/,Dubliners,,"Joyce, James",1914,,Lending Library Card,"Sylvia Beach, Robert Sage Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/222c7bee-1104-420b-879a-fa13a26a189a/manifest,https://iiif-cloud.princeton.edu/iiif/2/4b%2F14%2Fdd%2F4b14dd54602c4068962a5f1cba7101fe%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1922-10-02,1922-11-02,https://shakespeareandco.princeton.edu/members/champcommunal/,Mme Champcommunal,"Champcommunal, Mme",12.00,14.00,1 month,31,2,,1922-10-02,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-10-03,1922-10-31,https://shakespeareandco.princeton.edu/members/schereck/,Mildred Schereck,"Schereck, Mildred",,,,,,,,,Returned,28,,,https://shakespeareandco.princeton.edu/books/kaye-smith-green-apple-harvest/,Green Apple Harvest,,"Kaye-Smith, Sheila",1920,,Lending Library Card,"Sylvia Beach, Mildred Schereck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3b15ea0c-ed8d-4b41-80f3-33485620b12c/manifest,https://iiif-cloud.princeton.edu/iiif/2/65%2F5f%2F8a%2F655f8aeadadb48bfa319309d0b2dab6b%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1922-10-03,1923-01-03,https://shakespeareandco.princeton.edu/members/browne/,Dorothy Browne,"Browne, Dorothy",20.00,7.00,3 months,92,1,,1922-10-03,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-10-03,1922-11-30,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,58,,,https://shakespeareandco.princeton.edu/books/joyce-portrait-artist-young/,A Portrait of the Artist as a Young Man,,"Joyce, James",1916,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/18%2F8a%2F2d%2F188a2d5b46c44e5e96b6cdaf585e9dd1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-10-03,1922-10-04,https://shakespeareandco.princeton.edu/members/sage-robert/,Robert D. Sage,"Sage, Robert D.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/bell-since-cezanne/,Since CΓ©zanne,,"Bell, Clive",1922,,Lending Library Card,"Sylvia Beach, Robert Sage Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/222c7bee-1104-420b-879a-fa13a26a189a/manifest,https://iiif-cloud.princeton.edu/iiif/2/4b%2F14%2Fdd%2F4b14dd54602c4068962a5f1cba7101fe%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-10-04,1922-10-06,https://shakespeareandco.princeton.edu/members/sage-robert/,Robert D. Sage,"Sage, Robert D.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/pound-instigations-ezra-pound/,"Instigations of Ezra Pound: Together with an Essay on the Chinese Written Character, by Ernest Fenollosa",,"Pound, Ezra;Fenollosa, Ernest",1920,,Lending Library Card,"Sylvia Beach, Robert Sage Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/222c7bee-1104-420b-879a-fa13a26a189a/manifest,https://iiif-cloud.princeton.edu/iiif/2/4b%2F14%2Fdd%2F4b14dd54602c4068962a5f1cba7101fe%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-10-05,1922-10-11,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/conrad-youth-narrative/,Youth: A Narrative,,"Conrad, Joseph",1902,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F68%2Fff%2Fb468ffa8ff574c2dab5b58ccc7a9f83a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-10-06,1922-10-07,https://shakespeareandco.princeton.edu/members/sage-robert/,Robert D. Sage,"Sage, Robert D.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/van-vechten-peter-whiffle/,Peter Whiffle,,"Van Vechten, Carl",1922,,Lending Library Card,"Sylvia Beach, Robert Sage Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/222c7bee-1104-420b-879a-fa13a26a189a/manifest,https://iiif-cloud.princeton.edu/iiif/2/4b%2F14%2Fdd%2F4b14dd54602c4068962a5f1cba7101fe%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1922-10-06,1923-10-06,https://shakespeareandco.princeton.edu/members/laval/,Vicomtesse de Lacroix-Laval,"de Lacroix-Laval, Vicomtesse",64.00,,1 year,365,2,AdL,1922-10-06,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-10-06,1922-10-06,https://shakespeareandco.princeton.edu/members/mansfield-katherine/,Katherine Mansfield,"Mansfield, Katherine",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/anderson-poor-white/,Poor White,,"Anderson, Sherwood",1920,,Lending Library Card,"Sylvia Beach, Katherine Mansfield Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/713c48bf-7d00-42b9-a205-cd7ae1cbbd43/manifest,https://iiif.princeton.edu/loris/figgy_prod/f0%2F16%2Fac%2Ff016ac4e7d0547d59ef93cadb5a7e073%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1922-10-06,1922-11-06,https://shakespeareandco.princeton.edu/members/baker/,Miss Baker,"Baker, Miss",8.00,,1 month,31,1,,1922-10-06,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-10-06,1922-10-11,https://shakespeareandco.princeton.edu/members/mansfield-katherine/,Katherine Mansfield,"Mansfield, Katherine",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/anderson-windy-mcphersons/,Windy McPherson's Son,,"Anderson, Sherwood",1916,,Lending Library Card,"Sylvia Beach, Katherine Mansfield Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/713c48bf-7d00-42b9-a205-cd7ae1cbbd43/manifest,https://iiif.princeton.edu/loris/figgy_prod/f0%2F16%2Fac%2Ff016ac4e7d0547d59ef93cadb5a7e073%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-10-06,1922-10-11,https://shakespeareandco.princeton.edu/members/mansfield-katherine/,Katherine Mansfield,"Mansfield, Katherine",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/anderson-winesburg-ohio-group/,Winesburg Ohio: A Group of Tales of Ohio Small Town Life,,"Anderson, Sherwood",1919,,Lending Library Card,"Sylvia Beach, Katherine Mansfield Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/713c48bf-7d00-42b9-a205-cd7ae1cbbd43/manifest,https://iiif.princeton.edu/loris/figgy_prod/f0%2F16%2Fac%2Ff016ac4e7d0547d59ef93cadb5a7e073%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-10-07,1922-10-09,https://shakespeareandco.princeton.edu/members/sage-robert/,Robert D. Sage,"Sage, Robert D.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/lewis-babbitt/,Babbitt,,"Lewis, Sinclair",1922,,Lending Library Card,"Sylvia Beach, Robert Sage Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/222c7bee-1104-420b-879a-fa13a26a189a/manifest,https://iiif-cloud.princeton.edu/iiif/2/4b%2F14%2Fdd%2F4b14dd54602c4068962a5f1cba7101fe%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1922-10-07,1923-04-07,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",40.00,,6 months,182,2,AdL,1922-10-07,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1922-10-07,1922-10-07,https://shakespeareandco.princeton.edu/members/masson-h/,H. Masson,"Masson, H.",,,,,,,,14.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-10-09,1922-11-28,https://shakespeareandco.princeton.edu/members/joyce-lucia/,Lucia Joyce,"Joyce, Lucia",,,,,,,,,Returned,50,,,https://shakespeareandco.princeton.edu/books/stevenson-kidnapped/,Kidnapped,,"Stevenson, Robert Louis",1886,,Lending Library Card,"Lucia Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1922-10-09,1922-10-13,https://shakespeareandco.princeton.edu/members/sage-robert/,Robert D. Sage,"Sage, Robert D.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/lewis-tarr/,Tarr,,"Lewis, Wyndham",1918,,Lending Library Card,"Sylvia Beach, Robert Sage Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/222c7bee-1104-420b-879a-fa13a26a189a/manifest,https://iiif-cloud.princeton.edu/iiif/2/4b%2F14%2Fdd%2F4b14dd54602c4068962a5f1cba7101fe%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-10-09,1922-10-14,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/george-second-blooming/,The Second Blooming,,"George, Walter Lionel",1914,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/1d%2F01%2F1e%2F1d011e6433264ecbb94ef7bbd1882f41%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-10-09,1922-11-28,https://shakespeareandco.princeton.edu/members/joyce-lucia/,Lucia Joyce,"Joyce, Lucia",,,,,,,,,Returned,50,,,https://shakespeareandco.princeton.edu/books/stevenson-catriona/,Catriona,,"Stevenson, Robert Louis",1893,,Lending Library Card,"Lucia Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Subscription,1922-10-10,1922-11-10,https://shakespeareandco.princeton.edu/members/hanbury/,Mrs. Hanbury,"Hanbury, Mrs.",8.00,7.00,1 month,31,1,,1922-10-10,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1922-10-10,1922-11-10,https://shakespeareandco.princeton.edu/members/laborde/,Mlle Laborde,"Laborde, Mlle",12.00,14.00,1 month,31,2,,1922-10-10,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1922-10-10,1922-11-10,https://shakespeareandco.princeton.edu/members/charbonnier/,Mlle Charbonnier,"Charbonnier, Mlle",8.00,7.00,1 month,31,1,,1922-10-10,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1922-10-10,1923-01-10,https://shakespeareandco.princeton.edu/members/carol/,Mme Carol,"Carol, Mme",16.00,,3 months,92,1,AdL,1922-10-10,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-10-11,1922-10-13,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/moore-single-strictness/,In Single Strictness,,"Moore, George",1922,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F68%2Fff%2Fb468ffa8ff574c2dab5b58ccc7a9f83a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1922-10-11,1923-01-11,https://shakespeareandco.princeton.edu/members/farnsworth-e/,E. Farnsworth,"Farnsworth, E.",30.00,14.00,3 months,92,2,,1922-10-11,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-10-11,1922-10-20,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/lewis-main-street-story/,Main Street: The Story of Carol Kennicott,,"Lewis, Sinclair",1920,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2F96%2Fd2%2F5e96d2c676ff4f7d8107736bf23ae839%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-10-11,1922-10-16,https://shakespeareandco.princeton.edu/members/mansfield-katherine/,Katherine Mansfield,"Mansfield, Katherine",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/fisher-brimming-cup/,The Brimming Cup,,"Fisher, Dorothy Canfield",1921,,Lending Library Card,"Sylvia Beach, Katherine Mansfield Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/713c48bf-7d00-42b9-a205-cd7ae1cbbd43/manifest,https://iiif.princeton.edu/loris/figgy_prod/f0%2F16%2Fac%2Ff016ac4e7d0547d59ef93cadb5a7e073%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1922-10-12,1923-01-12,https://shakespeareandco.princeton.edu/members/lockwood-helen/,Helen Drusilla Lockwood / Helen Lockwood,"Lockwood, Helen Drusilla",20.00,7.00,3 months,92,1,,1922-10-12,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1922-10-12,1922-11-12,https://shakespeareandco.princeton.edu/members/fleming-ronald/,Ronald Fleming,"Fleming, Ronald",15.00,,1 month,31,3,,1922-10-12,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1922-10-12,1923-10-12,https://shakespeareandco.princeton.edu/members/gribbon-4/;https://shakespeareandco.princeton.edu/members/gribbon/,Mr. Gribbon;Mrs. Gribbon,"Gribbon, Mr.;Gribbon, Mrs.",48.00,,1 year,365,1,AdL,1922-10-12,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-10-13,1922-10-14,https://shakespeareandco.princeton.edu/members/sage-robert/,Robert D. Sage,"Sage, Robert D.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/pepys-diary-samuel-pepys/,The Diary of Samuel Pepys,,"Pepys, Samuel",,"At least three editions of Pepys's *Diary* circulated in the lending library. John Murray borrowed volumes 1β3 of an unspecified edition; Dorothee Chareau borrowed volumes 4β6 from the Bell edition, edited by Henry B. Wheatley; Maximilien Vox borrowed the single-volume Globe edition, edited by G. Gregory Smith; HΓ©lΓ¨ne de Wendel borrowed the single-volume Globe edition and volumes 2β3 of the Bell edition; Guillaume Lerolle borrowed volumes 1β2 of the Bell edition; and Monique de Vigan borrowed the Newnes edition, edited by Lord Braybrooke.",Lending Library Card,"Sylvia Beach, Robert Sage Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/222c7bee-1104-420b-879a-fa13a26a189a/manifest,https://iiif-cloud.princeton.edu/iiif/2/4b%2F14%2Fdd%2F4b14dd54602c4068962a5f1cba7101fe%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-10-13,1922-10-14,https://shakespeareandco.princeton.edu/members/sage-robert/,Robert D. Sage,"Sage, Robert D.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/crowninshield-vanity-fair/,Vanity Fair,,,,,Lending Library Card,"Sylvia Beach, Robert Sage Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/222c7bee-1104-420b-879a-fa13a26a189a/manifest,https://iiif-cloud.princeton.edu/iiif/2/4b%2F14%2Fdd%2F4b14dd54602c4068962a5f1cba7101fe%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-10-13,1922-10-28,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/tomlinson-sea-jungle/,The Sea and the Jungle,,"Tomlinson, H. M.",1912,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F68%2Fff%2Fb468ffa8ff574c2dab5b58ccc7a9f83a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-10-14,1922-10-16,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/george-stiff-lip-novel/,The Stiff Lip: A Novel,,"George, Walter Lionel",1922,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/1d%2F01%2F1e%2F1d011e6433264ecbb94ef7bbd1882f41%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1922-10-14,1922-11-14,https://shakespeareandco.princeton.edu/members/fierst/,Mme Fierst,"Fierst, Mme",8.00,7.00,1 month,31,1,,1922-10-14,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-10-16,1922-10-21,https://shakespeareandco.princeton.edu/members/mansfield-katherine/,Katherine Mansfield,"Mansfield, Katherine",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/stein-three-lives/,Three Lives,,"Stein, Gertrude",1909,,Lending Library Card,"Sylvia Beach, Katherine Mansfield Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/713c48bf-7d00-42b9-a205-cd7ae1cbbd43/manifest,https://iiif.princeton.edu/loris/figgy_prod/f0%2F16%2Fac%2Ff016ac4e7d0547d59ef93cadb5a7e073%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-10-16,1922-10-23,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/machen-hill-dreams/,The Hill of Dreams,,"Machen, Arthur",1907,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/1d%2F01%2F1e%2F1d011e6433264ecbb94ef7bbd1882f41%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1922-10-16,1922-11-16,https://shakespeareandco.princeton.edu/members/kuntz-1/,Mrs. Charles Kuntz,"Kuntz, Mrs. Charles",12.00,,1 month,31,2,,1922-08-31,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-10-16,1922-10-21,https://shakespeareandco.princeton.edu/members/mansfield-katherine/,Katherine Mansfield,"Mansfield, Katherine",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/van-vechten-peter-whiffle/,Peter Whiffle,,"Van Vechten, Carl",1922,,Lending Library Card,"Sylvia Beach, Katherine Mansfield Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/713c48bf-7d00-42b9-a205-cd7ae1cbbd43/manifest,https://iiif.princeton.edu/loris/figgy_prod/f0%2F16%2Fac%2Ff016ac4e7d0547d59ef93cadb5a7e073%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1922-10-19,1923-01-19,https://shakespeareandco.princeton.edu/members/howard-2/,Mr. Howard,"Howard, Mr.",20.00,7.00,3 months,92,1,,1922-10-19,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-10-19,1922-10-30,https://shakespeareandco.princeton.edu/members/rieder/,M. Rieder,"Rieder, M.",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/joyce-dubliners/,Dubliners,,"Joyce, James",1914,,Lending Library Card,"Sylvia Beach, Rieder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/559c8919-8881-40ad-b027-67dbf1b23611/manifest,https://iiif.princeton.edu/loris/figgy_prod/6b%2Ffd%2F99%2F6bfd992bb8e742da8b7377869c34b3c2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1922-10-20,1923-01-20,https://shakespeareandco.princeton.edu/members/colwell/,Sarah Colwell,"Colwell, Sarah",20.00,7.00,3 months,92,1,,1922-10-20,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-10-20,1922-10-22,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/wells-tono-bungay/,Tono-Bungay,,"Wells, H. G.",1909,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2F96%2Fd2%2F5e96d2c676ff4f7d8107736bf23ae839%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1922-10-20,1923-04-20,https://shakespeareandco.princeton.edu/members/mcfarland-kathryn/,Kathryn McFarland,"McFarland, Kathryn",35.00,7.00,6 months,182,1,,1922-10-20,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1922-10-20,1923-10-20,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",48.00,,1 year,365,1,,1922-10-20,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1922-10-21,1923-04-21,https://shakespeareandco.princeton.edu/members/mattingly/,Mr. Mattingly,"Mattingly, Mr.",50.00,14.00,6 months,182,2,,1922-10-21,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1922-10-21,1922-11-21,https://shakespeareandco.princeton.edu/members/brewster/,Earl Henry Brewster,"Brewster, Earl Henry",12.00,14.00,1 month,31,2,,1922-10-21,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1922-10-21,1922-11-21,https://shakespeareandco.princeton.edu/members/buchanan/,Mrs. Buchanan,"Buchanan, Mrs.",8.00,7.00,1 month,31,1,,1922-10-21,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-10-21,1922-10-24,https://shakespeareandco.princeton.edu/members/mansfield-katherine/,Katherine Mansfield,"Mansfield, Katherine",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/anderson-triumph-egg/,The Triumph of the Egg,,"Anderson, Sherwood",1921,,Lending Library Card,"Sylvia Beach, Katherine Mansfield Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/713c48bf-7d00-42b9-a205-cd7ae1cbbd43/manifest,https://iiif.princeton.edu/loris/figgy_prod/f0%2F16%2Fac%2Ff016ac4e7d0547d59ef93cadb5a7e073%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-10-22,,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/darwin-naturalists-voyage-round/,A Naturalist's Voyage Round the World,,"Darwin, Charles",1845,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/05%2Fd1%2F20%2F05d120f890cb4152b7f64e0179929987%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1922-10-22,1923-04-22,https://shakespeareandco.princeton.edu/members/collens/,Mme Collens / Collins,"Collens, Mme",35.00,,6 months,182,1,AdL,1922-10-22,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-10-22,1922-10-25,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/shaw-unsocial-socialist/,An Unsocial Socialist,,"Shaw, George Bernard",1917,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2F96%2Fd2%2F5e96d2c676ff4f7d8107736bf23ae839%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-10-23,1922-10-27,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/bennett-love-match-play/,The Love Match: A Play in Five Scenes,,"Bennett, Arnold",1922,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/1d%2F01%2F1e%2F1d011e6433264ecbb94ef7bbd1882f41%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1922-10-26,1922-11-26,https://shakespeareandco.princeton.edu/members/sailly/,Mme de Sailly,"de Sailly, Mme",8.00,,1 month,31,1,,1922-09-20,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1922-10-27,1922-11-27,https://shakespeareandco.princeton.edu/members/bayles/,Edith Bayles,"Bayles, Edith",8.00,7.00,1 month,31,1,,1922-10-27,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-10-27,1922-10-31,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/joyce-exiles/,Exiles,,"Joyce, James",1918,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/1d%2F01%2F1e%2F1d011e6433264ecbb94ef7bbd1882f41%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1922-10-27,1922-11-27,https://shakespeareandco.princeton.edu/members/cowley-malcolm/;https://shakespeareandco.princeton.edu/members/cowley-peggy/,Malcolm Cowley;Peggy (Baird) Cowley / Mrs. Cowley,"Cowley, Malcolm;Cowley, Peggy",12.00,14.00,1 month,31,2,,1922-10-27,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1922-10-28,1922-11-28,https://shakespeareandco.princeton.edu/members/proix/,Troise Proix,"Proix, Troise",8.00,7.00,1 month,31,1,,1922-10-28,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Troise Proix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/b7152822-4421-406d-9472-740daf9b84e0/manifest,;https://iiif.princeton.edu/loris/figgy_prod/ee%2F85%2F02%2Fee85026d575d4fe7af0e0ad5fcd4954c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1922-10-28,1923-01-28,https://shakespeareandco.princeton.edu/members/vansittart/,Miss Vansittart,"Vansittart, Miss",30.00,,3 months,92,2,,1922-10-20,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1922-10-28,1923-01-28,https://shakespeareandco.princeton.edu/members/beck-2/,Miss Beck,"Beck, Miss",20.00,7.00,3 months,92,1,,1922-10-28,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1922-10-28,1922-11-28,https://shakespeareandco.princeton.edu/members/howard-charles/,Charles Howard / Mr. Ch. Howard,"Howard, Charles",12.00,14.00,1 month,31,2,,1922-10-28,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-10-28,1922-11-03,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/buchan-huntingtower/,Huntingtower,,"Buchan, John",1922,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F68%2Fff%2Fb468ffa8ff574c2dab5b58ccc7a9f83a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-10-28,1922-11-03,https://shakespeareandco.princeton.edu/members/proix/,Troise Proix,"Proix, Troise",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/conrad-youth-narrative/,Youth: A Narrative,,"Conrad, Joseph",1902,,Lending Library Card,"Sylvia Beach, Troise Proix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b7152822-4421-406d-9472-740daf9b84e0/manifest,https://iiif.princeton.edu/loris/figgy_prod/ee%2F85%2F02%2Fee85026d575d4fe7af0e0ad5fcd4954c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1922-10-30,1922-11-30,https://shakespeareandco.princeton.edu/members/hopkins/,Mrs. Hopkins,"Hopkins, Mrs.",8.00,7.00,1 month,31,1,,1922-10-30,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-10-30,1922-11-09,https://shakespeareandco.princeton.edu/members/rieder/,M. Rieder,"Rieder, M.",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/anderson-poor-white/,Poor White,,"Anderson, Sherwood",1920,,Lending Library Card,"Sylvia Beach, Rieder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/559c8919-8881-40ad-b027-67dbf1b23611/manifest,https://iiif.princeton.edu/loris/figgy_prod/6b%2Ffd%2F99%2F6bfd992bb8e742da8b7377869c34b3c2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1922-10-30,1923-01-30,https://shakespeareandco.princeton.edu/members/flecker/,Mrs. Flecker,"Flecker, Mrs.",16.00,,3 months,92,1,,1922-09-29,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1922-10-31,1922-11-30,https://shakespeareandco.princeton.edu/members/goff/,Mr. Goff,"Goff, Mr.",8.00,7.00,1 month,30,1,,1922-10-31,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-10-31,1922-11-13,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/ford-critical-attitude/,The Critical Attitude,,"Ford, Ford Madox",1911,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/1d%2F01%2F1e%2F1d011e6433264ecbb94ef7bbd1882f41%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1922-10-31,1923-01-31,https://shakespeareandco.princeton.edu/members/clerc/,Mme Clerc,"Clerc, Mme",30.00,,3 months,92,2,,1922-10-31,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-10-31,1922-11-13,https://shakespeareandco.princeton.edu/members/schereck/,Mildred Schereck,"Schereck, Mildred",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/mansfield-garden-party-stories/,The Garden Party and Other Stories,,"Mansfield, Katherine",1922,,Lending Library Card,"Sylvia Beach, Mildred Schereck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3b15ea0c-ed8d-4b41-80f3-33485620b12c/manifest,https://iiif-cloud.princeton.edu/iiif/2/65%2F5f%2F8a%2F655f8aeadadb48bfa319309d0b2dab6b%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1922-11-01,1923-11-01,https://shakespeareandco.princeton.edu/members/schereck/,Mildred Schereck,"Schereck, Mildred",60.00,,1 year,365,1,,1923-03-06,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Mildred Schereck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/3b15ea0c-ed8d-4b41-80f3-33485620b12c/manifest,;https://iiif-cloud.princeton.edu/iiif/2/65%2F5f%2F8a%2F655f8aeadadb48bfa319309d0b2dab6b%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1922-11-02,1922-12-02,https://shakespeareandco.princeton.edu/members/harris-h-f/,Mrs. H. F. Harris,"Harris, Mrs. H. F.",8.00,7.00,1 month,30,1,,1922-11-02,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1922-11-02,1922-12-02,https://shakespeareandco.princeton.edu/members/champcommunal/,Mme Champcommunal,"Champcommunal, Mme",12.00,,1 month,30,2,,1922-10-31,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1922-11-03,1922-12-03,https://shakespeareandco.princeton.edu/members/ayer/,Caroline Ayer,"Ayer, Caroline",8.00,7.00,1 month,30,1,,1922-11-03,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-11-03,1922-11-10,https://shakespeareandco.princeton.edu/members/proix/,Troise Proix,"Proix, Troise",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/hardy-mayor-casterbridge/,The Mayor of Casterbridge,,"Hardy, Thomas",1886,,Lending Library Card,"Sylvia Beach, Troise Proix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b7152822-4421-406d-9472-740daf9b84e0/manifest,https://iiif.princeton.edu/loris/figgy_prod/ee%2F85%2F02%2Fee85026d575d4fe7af0e0ad5fcd4954c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1922-11-03,1923-11-03,https://shakespeareandco.princeton.edu/members/fosca-francois/,FranΓ§ois Fosca,"Fosca, FranΓ§ois",80.00,,1 year,365,2,,1922-11-03,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-11-03,1922-11-09,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/lewis-babbitt/,Babbitt,,"Lewis, Sinclair",1922,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F68%2Fff%2Fb468ffa8ff574c2dab5b58ccc7a9f83a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-11-03,1922-11-21,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/freud-psychopathology-everyday-life/,The Psychopathology of Everyday Life,,"Freud, Sigmund",1914,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/af%2F41%2Fe3%2Faf41e31bbb2942368b752621b338e9c9%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-11-03,1922-11-21,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/mansfield-garden-party-stories/,The Garden Party and Other Stories,,"Mansfield, Katherine",1922,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/af%2F41%2Fe3%2Faf41e31bbb2942368b752621b338e9c9%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1922-11-03,1923-02-03,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",30.00,,3 months,92,2,,1922-11-06,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Maspero Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/92dca37a-f412-4b18-90a3-d236d2b3fe20/manifest,;https://iiif-cloud.princeton.edu/iiif/2/af%2F41%2Fe3%2Faf41e31bbb2942368b752621b338e9c9%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-11-04,1922-11-06,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/oriordan-london-story-adam/,In London: The Story of Adam and Marriage,,"O'Riordan, Conal",1922,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/6a%2F29%2F86%2F6a29867f6869471cbe99e9eab34fb937%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1922-11-04,1923-02-04,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",20.00,7.00,3 months,92,1,,1922-11-04,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,;https://iiif-cloud.princeton.edu/iiif/2/6a%2F29%2F86%2F6a29867f6869471cbe99e9eab34fb937%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1922-11-04,1922-12-04,https://shakespeareandco.princeton.edu/members/lowe-jeannette/,Jeannette Lowe,"Lowe, Jeannette",8.00,7.00,1 month,30,1,,1922-11-04,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-11-06,1922-11-19,https://shakespeareandco.princeton.edu/members/martin-maud/,Maud Martin,"Martin, Maud",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/chekhov-letters-tchehov-family/,Letters of Tchehov to His Family and Friends,,"Chekhov, Anton",1920,,Lending Library Card,"Sylvia Beach, Maud Martin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/934c6444-6b2c-4d42-acea-282118c23e5a/manifest,https://iiif.princeton.edu/loris/figgy_prod/20%2F2e%2F91%2F202e91695dcb418e9d6b53721827e013%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1922-11-06,1922-12-06,https://shakespeareandco.princeton.edu/members/martin-maud/,Maud Martin,"Martin, Maud",16.00,,1 month,30,2,,1922-11-06,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Maud Martin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/934c6444-6b2c-4d42-acea-282118c23e5a/manifest,https://iiif.princeton.edu/loris/figgy_prod/20%2F2e%2F91%2F202e91695dcb418e9d6b53721827e013%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-11-06,,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/moore-muslin/,Muslin,,"Moore, George",1915,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/6a%2F29%2F86%2F6a29867f6869471cbe99e9eab34fb937%2Fintermediate_file/full/full/0/default.jpg
+Supplement,1922-11-06,1922-12-17,https://shakespeareandco.princeton.edu/members/deniau/,M. Deniau,"Deniau, M.",4.00,,"1 month, 11 days",41,1,,1922-11-06,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1922-11-06,1922-12-06,https://shakespeareandco.princeton.edu/members/chenu/,M. Chenu,"Chenu, M.",8.00,7.00,1 month,30,1,,1922-11-06,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1922-11-06,1923-05-06,https://shakespeareandco.princeton.edu/members/nairn/,Mrs. Nairn,"Nairn, Mrs.",50.00,14.00,6 months,181,2,,1922-11-06,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1922-11-06,1922-12-06,https://shakespeareandco.princeton.edu/members/merle-daubigne-maurice/,Maurice Merle d'AubignΓ©,"Merle d'AubignΓ©, Maurice",12.00,14.00,1 month,30,2,,1922-11-06,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-11-06,1922-11-16,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/frank-rahab/,Rahab,,"Frank, Waldo",1922,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2F96%2Fd2%2F5e96d2c676ff4f7d8107736bf23ae839%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-11-06,1922-11-19,https://shakespeareandco.princeton.edu/members/martin-maud/,Maud Martin,"Martin, Maud",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/mansfield-bliss-short-stories/,Bliss and Other Stories,,"Mansfield, Katherine",1920,,Lending Library Card,"Sylvia Beach, Maud Martin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/934c6444-6b2c-4d42-acea-282118c23e5a/manifest,https://iiif.princeton.edu/loris/figgy_prod/20%2F2e%2F91%2F202e91695dcb418e9d6b53721827e013%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1922-11-07,1923-02-07,https://shakespeareandco.princeton.edu/members/hamer-douglas/,Douglas Hamer,"Hamer, Douglas",20.00,7.00,3 months,92,1,,1922-11-07,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1922-11-08,1922-11-08,https://shakespeareandco.princeton.edu/members/laborde/,Mlle Laborde,"Laborde, Mlle",,,,,,,,7.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1922-11-08,1922-11-08,https://shakespeareandco.princeton.edu/members/charbonnier/,Mlle Charbonnier,"Charbonnier, Mlle",,,,,,,,7.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-11-09,1922-12-02,https://shakespeareandco.princeton.edu/members/rieder/,M. Rieder,"Rieder, M.",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/joyce-portrait-artist-young/,A Portrait of the Artist as a Young Man,,"Joyce, James",1916,,Lending Library Card,"Sylvia Beach, Rieder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/559c8919-8881-40ad-b027-67dbf1b23611/manifest,https://iiif.princeton.edu/loris/figgy_prod/6b%2Ffd%2F99%2F6bfd992bb8e742da8b7377869c34b3c2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1922-11-09,1922-11-09,https://shakespeareandco.princeton.edu/members/helie/,Miss Helie,"Helie, Miss",,,,,,,,7.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-11-09,1922-11-18,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/jones-wedgwood-medallion/,The Wedgwood Medallion,,"Jones, E. B. C.",1922,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F68%2Fff%2Fb468ffa8ff574c2dab5b58ccc7a9f83a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-11-09,1922-11,https://shakespeareandco.princeton.edu/members/rieder/,M. Rieder,"Rieder, M.",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/mencken-prejudices/,Prejudices,,"Mencken, H. L.",,Unidentified series number.,Lending Library Card,"Sylvia Beach, Rieder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/559c8919-8881-40ad-b027-67dbf1b23611/manifest,https://iiif.princeton.edu/loris/figgy_prod/6b%2Ffd%2F99%2F6bfd992bb8e742da8b7377869c34b3c2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1922-11-10,1922-12-10,https://shakespeareandco.princeton.edu/members/somerville/,Miss Somerville and Miss Somerville / The Misses Somervile,"Somerville, The Misses",12.00,,1 month,30,2,,1922-11-10,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, The Misses Somerville Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/779ca7de-acdb-4b9b-a25b-b3c13cd1d7be/manifest,https://iiif.princeton.edu/loris/figgy_prod/03%2F3b%2F35%2F033b35c54a534a559337a2acea5b93fb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-11-10,1922-11-20,https://shakespeareandco.princeton.edu/members/proix/,Troise Proix,"Proix, Troise",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/galsworthy-let-forsyte-saga/,To Let (The Forsyte Saga),,"Galsworthy, John",1921,,Lending Library Card,"Sylvia Beach, Troise Proix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b7152822-4421-406d-9472-740daf9b84e0/manifest,https://iiif.princeton.edu/loris/figgy_prod/ee%2F85%2F02%2Fee85026d575d4fe7af0e0ad5fcd4954c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-11-10,1922-11-14,https://shakespeareandco.princeton.edu/members/somerville/,Miss Somerville and Miss Somerville / The Misses Somervile,"Somerville, The Misses",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/strachey-eminent-victorians/,Eminent Victorians,,"Strachey, Giles Lytton",1918,,Lending Library Card,"Sylvia Beach, The Misses Somerville Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/779ca7de-acdb-4b9b-a25b-b3c13cd1d7be/manifest,https://iiif.princeton.edu/loris/figgy_prod/03%2F3b%2F35%2F033b35c54a534a559337a2acea5b93fb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1922-11-10,1922-12-10,https://shakespeareandco.princeton.edu/members/laborde/,Mlle Laborde,"Laborde, Mlle",8.00,,1 month,30,1,,1922-11-08,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-11-10,1922-11-20,https://shakespeareandco.princeton.edu/members/somerville/,Miss Somerville and Miss Somerville / The Misses Somervile,"Somerville, The Misses",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/wharton-glimpses-moon/,The Glimpses of the Moon,,"Wharton, Edith",1922,,Lending Library Card,"Sylvia Beach, The Misses Somerville Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/779ca7de-acdb-4b9b-a25b-b3c13cd1d7be/manifest,https://iiif.princeton.edu/loris/figgy_prod/03%2F3b%2F35%2F033b35c54a534a559337a2acea5b93fb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1922-11-13,1923-11-13,https://shakespeareandco.princeton.edu/members/pottecher-therese/,TherΓ¨se Pottecher,"Pottecher, TherΓ¨se",10.00,,1 year,365,1,AdL,1922-11-13,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, TherΓ¨se Pottecher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/69b82696-3801-41ff-b1fd-c792179c5b98/manifest,;https://iiif-cloud.princeton.edu/iiif/2/c0%2F05%2Fa6%2Fc005a6b8d76241a98262cea0f950c728%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-11-13,1923-02-05,https://shakespeareandco.princeton.edu/members/pottecher-therese/,Therèse Pottecher,"Pottecher, Therèse",,,,,,,,,Returned,84,,,https://shakespeareandco.princeton.edu/books/sinclair-jimmie-higgins/,Jimmie Higgins,,"Sinclair, Upton",1919,,Lending Library Card,"Sylvia Beach, Therèse Pottecher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/69b82696-3801-41ff-b1fd-c792179c5b98/manifest,https://iiif-cloud.princeton.edu/iiif/2/c0%2F05%2Fa6%2Fc005a6b8d76241a98262cea0f950c728%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-11-13,1922-11-24,https://shakespeareandco.princeton.edu/members/pottecher-therese/,Therèse Pottecher,"Pottecher, Therèse",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/kirchwey-nation/,The Nation,,,,,Lending Library Card,"Sylvia Beach, Therèse Pottecher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/69b82696-3801-41ff-b1fd-c792179c5b98/manifest,https://iiif-cloud.princeton.edu/iiif/2/c0%2F05%2Fa6%2Fc005a6b8d76241a98262cea0f950c728%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-11-13,1922-11-16,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/bennett-body-soul-play/,Body and Soul: A Play in Four Acts,,"Bennett, Arnold",1921,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/1d%2F01%2F1e%2F1d011e6433264ecbb94ef7bbd1882f41%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-11-14,1922-11-20,https://shakespeareandco.princeton.edu/members/somerville/,Miss Somerville and Miss Somerville / The Misses Somervile,"Somerville, The Misses",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/stevenson-letters-mrs-stevenson/,Letters of Mrs. Stevenson,,"Stevenson, Margaret Isabella Balfour",,"Unidentified edition. Likely Mrs. M. I. Stevenson's *Letters from Samoa,* 1891β1895 (1906).",Lending Library Card,"Sylvia Beach, The Misses Somerville Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/779ca7de-acdb-4b9b-a25b-b3c13cd1d7be/manifest,https://iiif.princeton.edu/loris/figgy_prod/03%2F3b%2F35%2F033b35c54a534a559337a2acea5b93fb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-11-14,1922-12-07,https://shakespeareandco.princeton.edu/members/schereck/,Mildred Schereck,"Schereck, Mildred",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/dell-moon-calf/,Moon-Calf,,"Dell, Floyd",1920,,Lending Library Card,"Sylvia Beach, Mildred Schereck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3b15ea0c-ed8d-4b41-80f3-33485620b12c/manifest,https://iiif-cloud.princeton.edu/iiif/2/65%2F5f%2F8a%2F655f8aeadadb48bfa319309d0b2dab6b%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1922-11-15,1922-12-15,https://shakespeareandco.princeton.edu/members/barry/,George Barry,"Barry, George",8.00,,1 month,30,1,,1922-10-11,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-11-16,1922-11-21,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/lawrence-lost-girl/,The Lost Girl,,"Lawrence, D. H.",1920,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2F96%2Fd2%2F5e96d2c676ff4f7d8107736bf23ae839%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-11-16,1922-11-21,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/hardy-jude-obscure/,Jude the Obscure,,"Hardy, Thomas",1895,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/1d%2F01%2F1e%2F1d011e6433264ecbb94ef7bbd1882f41%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1922-11-16,1922-12-16,https://shakespeareandco.princeton.edu/members/kuntz-1/,Mrs. Charles Kuntz,"Kuntz, Mrs. Charles",8.00,,1 month,30,1,,1922-10-10,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1922-11-16,1922-12-16,https://shakespeareandco.princeton.edu/members/barry/,George Barry,"Barry, George",8.00,,1 month,30,1,,1922-11-14,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-11-16,1922-11-18,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/criterion/,The Criterion,,,,"Renamed *The New Criterion* from January 1926 to January 1927, and *The Monthly Criterion* from May 1927 to March 1928.",Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/6a%2F29%2F86%2F6a29867f6869471cbe99e9eab34fb937%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1922-11-16,1922-12-16,https://shakespeareandco.princeton.edu/members/heeckeren/,Baron de Heeckeren,"Heeckeren, Baron de",8.00,7.00,1 month,30,1,,1922-11-16,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1922-11-16,1923-11-16,https://shakespeareandco.princeton.edu/members/cousin-suzanne/,Suzanne Cousin / Mlle Suzanne Dufour / Mme Jean Cousin,"Cousin, Suzanne",48.00,,1 year,365,1,AdL,1922-11-16,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1922-11-17,1922-12-17,https://shakespeareandco.princeton.edu/members/castagnol/,Mme Castagnol,"Castagnol, Mme",8.00,7.00,1 month,30,1,,1922-11-17,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1922-11-18,1923-05-18,https://shakespeareandco.princeton.edu/members/stoddard/,Mr. Stoddard,"Stoddard, Mr.",35.00,,6 months,181,1,,1922-11-16,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-11-18,1922-11-20,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/barbellion-journal-disappointed-man/,The Journal of a Disappointed Man,,"Barbellion, W. N. P.",1919,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/6a%2F29%2F86%2F6a29867f6869471cbe99e9eab34fb937%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1922-11-18,1922-12-18,https://shakespeareandco.princeton.edu/members/caetani/,Marguerite (Chapin) Caetani / Princess Bassiano,"Caetani, Marguerite",12.00,14.00,1 month,30,2,,1922-11-18,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1922-11-18,1923-02-18,https://shakespeareandco.princeton.edu/members/henderson/,Mr. Henderson,"Henderson, Mr.",30.00,,3 months,92,2,AdL,1922-11-18,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1922-11-18,1923-02-18,https://shakespeareandco.princeton.edu/members/hekking/,Mme Hekking,"Hekking, Mme",20.00,7.00,3 months,92,1,,1922-11-18,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1922-11-18,1922-12-18,https://shakespeareandco.princeton.edu/members/bornand-odette/,Odette Bornand,"Bornand, Odette",8.00,,1 month,30,1,,1922-11-18,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-11-18,1922-11-25,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/benet-beginning-wisdom/,The Beginning of Wisdom,,"BenΓ©t, Stephen Vincent",1921,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F68%2Fff%2Fb468ffa8ff574c2dab5b58ccc7a9f83a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-11-19,1922-12-11,https://shakespeareandco.princeton.edu/members/martin-maud/,Maud Martin,"Martin, Maud",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/west-judge/,The Judge,,"West, Rebecca",1922,,Lending Library Card,"Sylvia Beach, Maud Martin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/934c6444-6b2c-4d42-acea-282118c23e5a/manifest,https://iiif.princeton.edu/loris/figgy_prod/20%2F2e%2F91%2F202e91695dcb418e9d6b53721827e013%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-11-19,1922-12-11,https://shakespeareandco.princeton.edu/members/martin-maud/,Maud Martin,"Martin, Maud",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/byron-lord-byrons-correspondence/,Lord Byron's Correspondence,Vol. 1,"Byron, George Gordon Byron",1922,,Lending Library Card,"Sylvia Beach, Maud Martin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/934c6444-6b2c-4d42-acea-282118c23e5a/manifest,https://iiif.princeton.edu/loris/figgy_prod/20%2F2e%2F91%2F202e91695dcb418e9d6b53721827e013%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-11-19,1922-12-11,https://shakespeareandco.princeton.edu/members/martin-maud/,Maud Martin,"Martin, Maud",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/byron-lord-byrons-correspondence/,Lord Byron's Correspondence,Vol. 2,"Byron, George Gordon Byron",1922,,Lending Library Card,"Sylvia Beach, Maud Martin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/934c6444-6b2c-4d42-acea-282118c23e5a/manifest,https://iiif.princeton.edu/loris/figgy_prod/20%2F2e%2F91%2F202e91695dcb418e9d6b53721827e013%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-11-19,1922-11-28,https://shakespeareandco.princeton.edu/members/martin-maud/,Maud Martin,"Martin, Maud",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/mansfield-garden-party-stories/,The Garden Party and Other Stories,,"Mansfield, Katherine",1922,,Lending Library Card,"Sylvia Beach, Maud Martin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/934c6444-6b2c-4d42-acea-282118c23e5a/manifest,https://iiif.princeton.edu/loris/figgy_prod/20%2F2e%2F91%2F202e91695dcb418e9d6b53721827e013%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-11-20,1922-11-27,https://shakespeareandco.princeton.edu/members/somerville/,Miss Somerville and Miss Somerville / The Misses Somervile,"Somerville, The Misses",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/mansfield-garden-party-stories/,The Garden Party and Other Stories,,"Mansfield, Katherine",1922,,Lending Library Card,"Sylvia Beach, The Misses Somerville Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/779ca7de-acdb-4b9b-a25b-b3c13cd1d7be/manifest,https://iiif.princeton.edu/loris/figgy_prod/03%2F3b%2F35%2F033b35c54a534a559337a2acea5b93fb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1922-11-20,1923-01-20,https://shakespeareandco.princeton.edu/members/drake/,Mr. Drake,"Drake, Mr.",24.00,14.00,2 months,61,2,,1922-11-20,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-11-20,1922-11-29,https://shakespeareandco.princeton.edu/members/proix/,Troise Proix,"Proix, Troise",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/meredith-ordeal-richard-feverel/,The Ordeal of Richard Feverel,,"Meredith, George",1859,,Lending Library Card,"Sylvia Beach, Troise Proix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b7152822-4421-406d-9472-740daf9b84e0/manifest,https://iiif.princeton.edu/loris/figgy_prod/ee%2F85%2F02%2Fee85026d575d4fe7af0e0ad5fcd4954c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Generic,1922-11-20,,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/butler-erewhon/,Erewhon,,"Butler, Samuel",1872,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/6a%2F29%2F86%2F6a29867f6869471cbe99e9eab34fb937%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-11-20,1922-11-29,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/richardson-pointed-roofs/,Pointed Roofs (Pilgrimage 1),,"Richardson, Dorothy M.",1915,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/6a%2F29%2F86%2F6a29867f6869471cbe99e9eab34fb937%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-11-20,1922-11-27,https://shakespeareandco.princeton.edu/members/somerville/,Miss Somerville and Miss Somerville / The Misses Somervile,"Somerville, The Misses",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/milne-red-house-mystery/,The Red House Mystery,,"Milne, A. A.",1922,,Lending Library Card,"Sylvia Beach, The Misses Somerville Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/779ca7de-acdb-4b9b-a25b-b3c13cd1d7be/manifest,https://iiif.princeton.edu/loris/figgy_prod/03%2F3b%2F35%2F033b35c54a534a559337a2acea5b93fb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-11-20,1922-11-25,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/de-la-mare-return/,The Return,,"De la Mare, Walter",1910,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/6a%2F29%2F86%2F6a29867f6869471cbe99e9eab34fb937%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1922-11-21,1923-11-21,https://shakespeareandco.princeton.edu/members/gibbons-w/,We[unclear] Gibbons,"Gibbons, We[unclear]",65.00,,1 year,365,2,,1922-09-29,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-11-21,1922-12-12,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/huxley-limbo/,Limbo,,"Huxley, Aldous",1920,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/af%2F41%2Fe3%2Faf41e31bbb2942368b752621b338e9c9%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1922-11-21,1922-11-21,https://shakespeareandco.princeton.edu/members/marcel-gabriel/,Gabriel Marcel,"Marcel, Gabriel",,,,,,,,7.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-11-21,1922-12-01,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/hudson-crystal-age/,A Crystal Age,,"Hudson, W. H.",1887,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/1d%2F01%2F1e%2F1d011e6433264ecbb94ef7bbd1882f41%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-11-21,1922-12-01,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/wells-washington-hope-peace/,Washington and the Hope of Peace,,"Wells, H. G.",1922,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2F96%2Fd2%2F5e96d2c676ff4f7d8107736bf23ae839%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-11-21,1922-12-12,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/white-peacock/,The White Peacock,,"Lawrence, D. H.",1911,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/af%2F41%2Fe3%2Faf41e31bbb2942368b752621b338e9c9%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1922-11-22,1922-11-22,https://shakespeareandco.princeton.edu/members/buchanan/,Mrs. Buchanan,"Buchanan, Mrs.",,,,,,,,7.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-11-23,1922-12-11,https://shakespeareandco.princeton.edu/members/philip-terence/,Terence Philip,"Philip, Terence",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/strindberg-plays-august-strindberg-first/,Plays by August Strindberg: First Series,,"Strindberg, August",1912,,Lending Library Card,"Sylvia Beach, Terence Philip Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/880ae6be-2806-4c0e-abb5-8ae7f939b057/manifest,https://iiif.princeton.edu/loris/figgy_prod/88%2F0b%2F9e%2F880b9e079efd46a69f55bf9aa031317e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1922-11-23,1922-12-23,https://shakespeareandco.princeton.edu/members/philip-terence/,Terence Philip,"Philip, Terence",12.00,14.00,1 month,30,2,,1922-11-23,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Terence Philip Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/880ae6be-2806-4c0e-abb5-8ae7f939b057/manifest,;https://iiif.princeton.edu/loris/figgy_prod/88%2F0b%2F9e%2F880b9e079efd46a69f55bf9aa031317e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-11-23,1922-12-11,https://shakespeareandco.princeton.edu/members/philip-terence/,Terence Philip,"Philip, Terence",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/lawrence-women-love/,Women in Love,,"Lawrence, D. H.",1920,,Lending Library Card,"Sylvia Beach, Terence Philip Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/880ae6be-2806-4c0e-abb5-8ae7f939b057/manifest,https://iiif.princeton.edu/loris/figgy_prod/88%2F0b%2F9e%2F880b9e079efd46a69f55bf9aa031317e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Supplement,1922-11-25,1923-11-18,https://shakespeareandco.princeton.edu/members/hekking/,Mme Hekking,"Hekking, Mme",40.00,,"11 months, 24 days",358,,,1922-11-25,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-11-25,1922-11-30,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/woolf-jacobs-room/,Jacob's Room,,"Woolf, Virginia",1922,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F68%2Fff%2Fb468ffa8ff574c2dab5b58ccc7a9f83a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1922-11-26,1922-12-26,https://shakespeareandco.princeton.edu/members/sailly/,Mme de Sailly,"de Sailly, Mme",8.00,,1 month,30,1,,1922-10-18,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-11-27,1922-12-01,https://shakespeareandco.princeton.edu/members/somerville/,Miss Somerville and Miss Somerville / The Misses Somervile,"Somerville, The Misses",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/dane-bill-divorcement/,A Bill of Divorcement,,"Dane, Clemence",1921,,Lending Library Card,"Sylvia Beach, The Misses Somerville Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/779ca7de-acdb-4b9b-a25b-b3c13cd1d7be/manifest,https://iiif.princeton.edu/loris/figgy_prod/03%2F3b%2F35%2F033b35c54a534a559337a2acea5b93fb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-11-27,1922-12-01,https://shakespeareandco.princeton.edu/members/somerville/,Miss Somerville and Miss Somerville / The Misses Somervile,"Somerville, The Misses",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/fletcher-markenmore-mystery/,The Markenmore Mystery,,"Fletcher, Joseph Smith",1922,,Lending Library Card,"Sylvia Beach, The Misses Somerville Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/779ca7de-acdb-4b9b-a25b-b3c13cd1d7be/manifest,https://iiif.princeton.edu/loris/figgy_prod/03%2F3b%2F35%2F033b35c54a534a559337a2acea5b93fb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-11-27,1922-12-01,https://shakespeareandco.princeton.edu/members/somerville/,Miss Somerville and Miss Somerville / The Misses Somervile,"Somerville, The Misses",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/sidgwick-gentleman-idyll-quarter/,Le Gentleman: An Idyll of the Quarter,,"Sidgwick, Ethel",1911,,Lending Library Card,"Sylvia Beach, The Misses Somerville Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/779ca7de-acdb-4b9b-a25b-b3c13cd1d7be/manifest,https://iiif.princeton.edu/loris/figgy_prod/03%2F3b%2F35%2F033b35c54a534a559337a2acea5b93fb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Supplement,1922-11-27,1923-04-22,https://shakespeareandco.princeton.edu/members/collens/,Mme Collens / Collins,"Collens, Mme",10.00,,"4 months, 26 days",146,2,,1922-11-27,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1922-11-28,1923-02-28,https://shakespeareandco.princeton.edu/members/gilliam/,Miss Gilliam,"Gilliam, Miss",20.00,,3 months,92,1,,1922-11-13,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-11-28,1923-05-31,https://shakespeareandco.princeton.edu/members/joyce-lucia/,Lucia Joyce,"Joyce, Lucia",,,,,,,,,Returned,184,,,https://shakespeareandco.princeton.edu/books/clouston-lunatic-large-novel/,The Lunatic at Large: A Novel,,"Clouston, J. Storer",1899,,Lending Library Card,"Lucia Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1922-11-28,,https://shakespeareandco.princeton.edu/members/joyce-lucia/,Lucia Joyce,"Joyce, Lucia",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/kipling-jungle-book/,The Jungle Book,,"Kipling, Rudyard",1894,,Lending Library Card,"Lucia Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1922-11-29,1922-12-02,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/joyce-exiles/,Exiles,,"Joyce, James",1918,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/6a%2F29%2F86%2F6a29867f6869471cbe99e9eab34fb937%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1922-11-29,1922-11-29,https://shakespeareandco.princeton.edu/members/proix/,Troise Proix,"Proix, Troise",,,,,,,,7.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-11-30,1922-12-02,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/tolstoy-reminiscences-tolstoy/,Reminiscences of Tolstoy by his Son,,"Tolstoy, Ilya",1914,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F68%2Fff%2Fb468ffa8ff574c2dab5b58ccc7a9f83a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-11-30,1923-05-31,https://shakespeareandco.princeton.edu/members/joyce-lucia/,Lucia Joyce,"Joyce, Lucia",,,,,,,,,Unknown,182,,,https://shakespeareandco.princeton.edu/books/ibsen-peer-gynt/,Peer Gynt,,"Ibsen, Henrik",1892,,Lending Library Card,"Lucia Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1922-12-01,1922-12-14,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/hutchinson-freedom/,This Freedom,,"Hutchinson, A. S. M.",1922,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/1d%2F01%2F1e%2F1d011e6433264ecbb94ef7bbd1882f41%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-12-01,1922-12-04,https://shakespeareandco.princeton.edu/members/service/,Robert W. Service / Mr. R. W. Service,"Service, Robert W.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/overton-winter-comes-main/,When Winter Comes to Main Street,,"Overton, Grant Martin",1922,,Lending Library Card,"Sylvia Beach, Robert Service Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/102d8619-7160-464b-8967-ca771c0c29f6/manifest,https://iiif.princeton.edu/loris/figgy_prod/53%2F09%2F2b%2F53092b965bc944c783c7ec0d7f2e9c0d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1922-12-01,1923-03-01,https://shakespeareandco.princeton.edu/members/service/,Robert W. Service / Mr. R. W. Service,"Service, Robert W.",30.00,14.00,3 months,90,2,,1922-12-01,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Robert Service Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/102d8619-7160-464b-8967-ca771c0c29f6/manifest,;https://iiif.princeton.edu/loris/figgy_prod/53%2F09%2F2b%2F53092b965bc944c783c7ec0d7f2e9c0d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-12-01,1922-12-13,https://shakespeareandco.princeton.edu/members/somerville/,Miss Somerville and Miss Somerville / The Misses Somervile,"Somerville, The Misses",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/hudson-far-away-long/,Far Away and Long Ago,,"Hudson, W. H.",1918,,Lending Library Card,"Sylvia Beach, The Misses Somerville Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/779ca7de-acdb-4b9b-a25b-b3c13cd1d7be/manifest,https://iiif.princeton.edu/loris/figgy_prod/03%2F3b%2F35%2F033b35c54a534a559337a2acea5b93fb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-12-01,1922-12-06,https://shakespeareandco.princeton.edu/members/service/,Robert W. Service / Mr. R. W. Service,"Service, Robert W.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/dreiser-twelve-men/,Twelve Men,,"Dreiser, Theodore",1919,,Lending Library Card,"Sylvia Beach, Robert Service Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/102d8619-7160-464b-8967-ca771c0c29f6/manifest,https://iiif.princeton.edu/loris/figgy_prod/53%2F09%2F2b%2F53092b965bc944c783c7ec0d7f2e9c0d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-12-01,1922-12-13,https://shakespeareandco.princeton.edu/members/somerville/,Miss Somerville and Miss Somerville / The Misses Somervile,"Somerville, The Misses",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/buchan-huntingtower/,Huntingtower,,"Buchan, John",1922,,Lending Library Card,"Sylvia Beach, The Misses Somerville Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/779ca7de-acdb-4b9b-a25b-b3c13cd1d7be/manifest,https://iiif.princeton.edu/loris/figgy_prod/03%2F3b%2F35%2F033b35c54a534a559337a2acea5b93fb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-12-02,1922-12-07,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/sidgwick-promise/,Promise,,"Sidgwick, Ethel",1913,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F68%2Fff%2Fb468ffa8ff574c2dab5b58ccc7a9f83a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-12-02,1922-12-04,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/bennett-mr-prohack/,Mr. Prohack,,"Bennett, Arnold",1922,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/6a%2F29%2F86%2F6a29867f6869471cbe99e9eab34fb937%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1922-12-02,1923-03-02,https://shakespeareandco.princeton.edu/members/chaulin/,La Baronne Chaulin / Mme Chaulin,"Chaulin, La Baronne",30.00,14.00,3 months,90,2,,1922-12-02,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1922-12-02,1923-06-02,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",35.00,,6 months,182,1,,1922-12-02,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,;https://iiif.princeton.edu/loris/figgy_prod/8f%2F26%2F37%2F8f26370e03244c58a377ef9d09237eef%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-12-02,1922-12-13,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/lodge-raymond-life-death/,Raymond or Life and Death,,"Lodge, Oliver",1916,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/8f%2F26%2F37%2F8f26370e03244c58a377ef9d09237eef%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1922-12-02,1922-12-02,https://shakespeareandco.princeton.edu/members/barry/,George Barry,"Barry, George",,,,,,,,7.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-12-02,1922-12-30,https://shakespeareandco.princeton.edu/members/rieder/,M. Rieder,"Rieder, M.",,,,,,,,,Returned,28,,,https://shakespeareandco.princeton.edu/books/strachey-queen-victoria/,Queen Victoria,,"Strachey, Giles Lytton",1921,,Lending Library Card,"Sylvia Beach, Rieder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/559c8919-8881-40ad-b027-67dbf1b23611/manifest,https://iiif.princeton.edu/loris/figgy_prod/6b%2Ffd%2F99%2F6bfd992bb8e742da8b7377869c34b3c2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1922-12-03,1923-01-03,https://shakespeareandco.princeton.edu/members/barr-2/,Mr. W. Barr,"Barr, Mr. W.",12.00,,1 month,31,2,,1922-11-18,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1922-12-04,1923-06-04,https://shakespeareandco.princeton.edu/members/porel/,Jacques Porel,"Porel, Jacques",35.00,,6 months,182,1,,1922-12-04,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Jacques Porel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/0f3056e7-a6fb-4650-8f99-ba0c9ac5d665/manifest,;https://iiif.princeton.edu/loris/figgy_prod/7f%2F06%2Fd6%2F7f06d6fe6cda4bd38f71756c004d41e7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Supplement,1922-12-04,1923-10-20,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",3.50,,"10 months, 16 days",320,2,,1922-12-04,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-12-04,,https://shakespeareandco.princeton.edu/members/porel/,Jacques Porel,"Porel, Jacques",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/joyce-portrait-artist-young/,A Portrait of the Artist as a Young Man,,"Joyce, James",1916,,Lending Library Card,"Sylvia Beach, Jacques Porel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0f3056e7-a6fb-4650-8f99-ba0c9ac5d665/manifest,https://iiif.princeton.edu/loris/figgy_prod/7f%2F06%2Fd6%2F7f06d6fe6cda4bd38f71756c004d41e7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-12-04,1922-12-06,https://shakespeareandco.princeton.edu/members/service/,Robert W. Service / Mr. R. W. Service,"Service, Robert W.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/jennings-shadows-o-henry/,Through the Shadows with O. Henry,,"Jennings, Al",1921,,Lending Library Card,"Sylvia Beach, Robert Service Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/102d8619-7160-464b-8967-ca771c0c29f6/manifest,https://iiif.princeton.edu/loris/figgy_prod/53%2F09%2F2b%2F53092b965bc944c783c7ec0d7f2e9c0d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-12-04,1922-12-07,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/butler-erewhon-revisited-twenty/,"Erewhon Revisited: Twenty Years Later, Both by the Original Discoverer of the Country and by His Son",,"Butler, Samuel",1901,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/6a%2F29%2F86%2F6a29867f6869471cbe99e9eab34fb937%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1922-12-05,1923-01-05,https://shakespeareandco.princeton.edu/members/lowe-jeannette/,Jeannette Lowe,"Lowe, Jeannette",8.00,,1 month,31,1,,1922-12-05,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-12-05,1922-12-09,https://shakespeareandco.princeton.edu/members/somerville/,Miss Somerville and Miss Somerville / The Misses Somervile,"Somerville, The Misses",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/tarkington-alice-adams/,Alice Adams,,"Tarkington, Booth",1921,,Lending Library Card,"Sylvia Beach, The Misses Somerville Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/779ca7de-acdb-4b9b-a25b-b3c13cd1d7be/manifest,https://iiif.princeton.edu/loris/figgy_prod/03%2F3b%2F35%2F033b35c54a534a559337a2acea5b93fb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-12-05,1922-12-09,https://shakespeareandco.princeton.edu/members/somerville/,Miss Somerville and Miss Somerville / The Misses Somervile,"Somerville, The Misses",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/stevenson-travels-donkey-vennes/,Travels with a Donkey in the CΓ©vennes,,"Stevenson, Robert Louis",1879,,Lending Library Card,"Sylvia Beach, The Misses Somerville Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/779ca7de-acdb-4b9b-a25b-b3c13cd1d7be/manifest,https://iiif.princeton.edu/loris/figgy_prod/03%2F3b%2F35%2F033b35c54a534a559337a2acea5b93fb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1922-12-05,1923-01-05,https://shakespeareandco.princeton.edu/members/bowl/,Margaret Bowl,"Bowl, Margaret",12.00,14.00,1 month,31,2,,1922-12-05,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1922-12-05,1922-12-05,https://shakespeareandco.princeton.edu/members/merle-daubigne-maurice/,Maurice Merle d'AubignΓ©,"Merle d'AubignΓ©, Maurice",,,,,,,,7.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-12-06,1922-12-08,https://shakespeareandco.princeton.edu/members/service/,Robert W. Service / Mr. R. W. Service,"Service, Robert W.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/crowninshield-vanity-fair/,Vanity Fair,,,,,Lending Library Card,"Sylvia Beach, Robert Service Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/102d8619-7160-464b-8967-ca771c0c29f6/manifest,https://iiif.princeton.edu/loris/figgy_prod/53%2F09%2F2b%2F53092b965bc944c783c7ec0d7f2e9c0d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1922-12-06,1923-01-06,https://shakespeareandco.princeton.edu/members/mourat/,Mlle Mourat,"Mourat, Mlle",12.00,14.00,1 month,31,2,,1922-12-06,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-12-06,1922-12-14,https://shakespeareandco.princeton.edu/members/service/,Robert W. Service / Mr. R. W. Service,"Service, Robert W.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/mais-books-writers/,Books and Their Writers,,"Mais, S. P. B.",1920,,Lending Library Card,"Sylvia Beach, Robert Service Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/102d8619-7160-464b-8967-ca771c0c29f6/manifest,https://iiif.princeton.edu/loris/figgy_prod/53%2F09%2F2b%2F53092b965bc944c783c7ec0d7f2e9c0d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1922-12-06,1923-01-06,https://shakespeareandco.princeton.edu/members/edwards-c-d/,C. D. Edwards,"Edwards, C. D.",8.00,,1 month,31,1,,1922-12-06,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1922-12-06,1923-03-06,https://shakespeareandco.princeton.edu/members/de-la-niece-charles/,Charles de la Niece,"de la Niece, Charles",20.00,,3 months,90,1,,1922-12-06,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1922-12-06,1923-01-06,https://shakespeareandco.princeton.edu/members/merle-daubigne-maurice/,Maurice Merle d'AubignΓ©,"Merle d'AubignΓ©, Maurice",8.00,,1 month,31,1,,1922-12-05,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-12-06,1922-12-14,https://shakespeareandco.princeton.edu/members/service/,Robert W. Service / Mr. R. W. Service,"Service, Robert W.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/gissing/,Gissing,,,,Unidentified. By or about George Gissing.,Lending Library Card,"Sylvia Beach, Robert Service Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/102d8619-7160-464b-8967-ca771c0c29f6/manifest,https://iiif.princeton.edu/loris/figgy_prod/53%2F09%2F2b%2F53092b965bc944c783c7ec0d7f2e9c0d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-12-06,1922-12-08,https://shakespeareandco.princeton.edu/members/service/,Robert W. Service / Mr. R. W. Service,"Service, Robert W.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/crowninshield-vanity-fair/,Vanity Fair,,,,,Lending Library Card,"Sylvia Beach, Robert Service Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/102d8619-7160-464b-8967-ca771c0c29f6/manifest,https://iiif.princeton.edu/loris/figgy_prod/53%2F09%2F2b%2F53092b965bc944c783c7ec0d7f2e9c0d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-12-06,1922-12-08,https://shakespeareandco.princeton.edu/members/service/,Robert W. Service / Mr. R. W. Service,"Service, Robert W.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/crowninshield-vanity-fair/,Vanity Fair,,,,,Lending Library Card,"Sylvia Beach, Robert Service Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/102d8619-7160-464b-8967-ca771c0c29f6/manifest,https://iiif.princeton.edu/loris/figgy_prod/53%2F09%2F2b%2F53092b965bc944c783c7ec0d7f2e9c0d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-12-07,1922-12-15,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/saintsbury-history-elizabethan-literature/,A History of Elizabethan Literature (History of English Literature 1),,"Saintsbury, George",1887,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/6a%2F29%2F86%2F6a29867f6869471cbe99e9eab34fb937%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-12-07,1922-12-16,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/macaulay-mystery-geneva-improbable/,Mystery at Geneva: An Improbable Tale of Singular Happenings,,"Macaulay, Rose",1922,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F68%2Fff%2Fb468ffa8ff574c2dab5b58ccc7a9f83a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1922-12-07,1923-02-07,https://shakespeareandco.princeton.edu/members/javal/;https://shakespeareandco.princeton.edu/members/javal-2/,M. Javal;Mme Javal,"Javal, M.;Javal, Mme",16.00,,2 months,62,1,,1922-12-07,,,,,,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1922-12-08,1923-02-08,https://shakespeareandco.princeton.edu/members/hunter-2/,Miss Hunter,"Hunter, Miss",16.00,,2 months,62,1,,1922-12-08,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1922-12-09,1922-12-16,https://shakespeareandco.princeton.edu/members/rademeyer/,Miss Rademeyer,"Rademeyer, Miss",3.20,,1 week,7,2,,1922-12-09,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-12-09,1922-12-20,https://shakespeareandco.princeton.edu/members/somerville/,Miss Somerville and Miss Somerville / The Misses Somervile,"Somerville, The Misses",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/galsworthy-country-house/,The Country House,,"Galsworthy, John",1907,,Lending Library Card,"Sylvia Beach, The Misses Somerville Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/779ca7de-acdb-4b9b-a25b-b3c13cd1d7be/manifest,https://iiif.princeton.edu/loris/figgy_prod/03%2F3b%2F35%2F033b35c54a534a559337a2acea5b93fb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1922-12-09,1923-01-09,https://shakespeareandco.princeton.edu/members/smith-4/,Miss Smith,"Smith, Miss",8.00,,1 month,31,1,,1922-12-09,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-12-09,1923-01-03,https://shakespeareandco.princeton.edu/members/schereck/,Mildred Schereck,"Schereck, Mildred",,,,,,,,,Returned,25,,,https://shakespeareandco.princeton.edu/books/gosse-french-profiles/,French Profiles,,"Gosse, Edmund",1905,,Lending Library Card,"Sylvia Beach, Mildred Schereck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3b15ea0c-ed8d-4b41-80f3-33485620b12c/manifest,https://iiif-cloud.princeton.edu/iiif/2/65%2F5f%2F8a%2F655f8aeadadb48bfa319309d0b2dab6b%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1922-12-09,1923-12-09,https://shakespeareandco.princeton.edu/members/rieder/,M. Rieder,"Rieder, M.",48.00,,1 year,365,1,AdL,1922-12-30,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Rieder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/559c8919-8881-40ad-b027-67dbf1b23611/manifest,;https://iiif.princeton.edu/loris/figgy_prod/6b%2Ffd%2F99%2F6bfd992bb8e742da8b7377869c34b3c2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1922-12-09,1923-03-09,https://shakespeareandco.princeton.edu/members/mendenhall-aiden/,Mrs. Aiden Mendenhall,"Mendenhall, Mrs. Aiden",30.00,7.00,3 months,90,2,,1922-12-09,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1922-12-09,1922-12-23,https://shakespeareandco.princeton.edu/members/hopkins/,Mrs. Hopkins,"Hopkins, Mrs.",4.00,,2 weeks,14,1,,1922-12-09,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1922-12-09,1923-01-09,https://shakespeareandco.princeton.edu/members/samarth/,Mr. Samarth,"Samarth, Mr.",8.00,,1 month,31,1,,1922-12-09,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-12-09,1922-12-20,https://shakespeareandco.princeton.edu/members/somerville/,Miss Somerville and Miss Somerville / The Misses Somervile,"Somerville, The Misses",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/symons-william-blake/,William Blake,,"Symons, Arthur",1907,,Lending Library Card,"Sylvia Beach, The Misses Somerville Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/779ca7de-acdb-4b9b-a25b-b3c13cd1d7be/manifest,https://iiif.princeton.edu/loris/figgy_prod/03%2F3b%2F35%2F033b35c54a534a559337a2acea5b93fb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-12-09,1922-12-13,https://shakespeareandco.princeton.edu/members/somerville/,Miss Somerville and Miss Somerville / The Misses Somervile,"Somerville, The Misses",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/macaulay-dangerous-ages/,Dangerous Ages,,"Macaulay, Rose",1921,,Lending Library Card,"Sylvia Beach, The Misses Somerville Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/779ca7de-acdb-4b9b-a25b-b3c13cd1d7be/manifest,https://iiif.princeton.edu/loris/figgy_prod/03%2F3b%2F35%2F033b35c54a534a559337a2acea5b93fb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Crossed out,1922-12-09,,https://shakespeareandco.princeton.edu/members/schereck/,Mildred Schereck,"Schereck, Mildred",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/gosse-aspects-impressions/,Aspects and Impressions,,"Gosse, Edmund",1922,,Lending Library Card,"Sylvia Beach, Mildred Schereck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3b15ea0c-ed8d-4b41-80f3-33485620b12c/manifest,https://iiif-cloud.princeton.edu/iiif/2/65%2F5f%2F8a%2F655f8aeadadb48bfa319309d0b2dab6b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-12-09,1922-12-20,https://shakespeareandco.princeton.edu/members/somerville/,Miss Somerville and Miss Somerville / The Misses Somervile,"Somerville, The Misses",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/merrick-paris-laughed-pranks/,While Paris Laughed: Being Pranks and Passions of the Poet Tricotrin,,"Merrick, Leonard",1918,,Lending Library Card,"Sylvia Beach, The Misses Somerville Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/779ca7de-acdb-4b9b-a25b-b3c13cd1d7be/manifest,https://iiif.princeton.edu/loris/figgy_prod/03%2F3b%2F35%2F033b35c54a534a559337a2acea5b93fb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1922-12-10,1923-01-10,https://shakespeareandco.princeton.edu/members/somerville/,Miss Somerville and Miss Somerville / The Misses Somervile,"Somerville, The Misses",12.00,,1 month,31,2,,1922-12-13,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, The Misses Somerville Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/779ca7de-acdb-4b9b-a25b-b3c13cd1d7be/manifest,;https://iiif.princeton.edu/loris/figgy_prod/03%2F3b%2F35%2F033b35c54a534a559337a2acea5b93fb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1922-12-11,1923-03-11,https://shakespeareandco.princeton.edu/members/lucas-e-v/,Mrs. E. V. Lucas,"Lucas, Mrs. E. V.",30.00,,3 months,90,2,,1922-12-11,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1922-12-11,1923-03-11,https://shakespeareandco.princeton.edu/members/champcommunal/,Mme Champcommunal,"Champcommunal, Mme",30.00,,3 months,90,2,,1922-12-11,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1922-12-11,1923-01-11,https://shakespeareandco.princeton.edu/members/baker/,Miss Baker,"Baker, Miss",8.00,,1 month,31,1,,1922-12-11,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1922-12-11,1923-06-11,https://shakespeareandco.princeton.edu/members/bourgeois/,M. Bourgeois,"Bourgeois, M.",40.00,,6 months,182,2,,1922-12-11,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-12-11,1922-12-12,https://shakespeareandco.princeton.edu/members/rhys/,Mr. Rhys,"Rhys, Mr.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/ford-critical-attitude/,The Critical Attitude,,"Ford, Ford Madox",1911,,Lending Library Card,"Sylvia Beach, Rhys Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0fcf5eb6-f872-481c-a304-e45a0c9fe472/manifest,https://iiif.princeton.edu/loris/figgy_prod/67%2F3d%2F21%2F673d211972284e099df1c89a348719ce%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-12-11,1922-12-23,https://shakespeareandco.princeton.edu/members/philip-terence/,Terence Philip,"Philip, Terence",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/augustine-of-hippo-saint-augustines-confessions/,Saint Augustine's Confessions,2 vols.,Augustine of Hippo,,,Lending Library Card,"Sylvia Beach, Terence Philip Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/880ae6be-2806-4c0e-abb5-8ae7f939b057/manifest,https://iiif.princeton.edu/loris/figgy_prod/88%2F0b%2F9e%2F880b9e079efd46a69f55bf9aa031317e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1922-12-11,1923-01-11,https://shakespeareandco.princeton.edu/members/howe/,Mrs. Howe,"Howe, Mrs.",8.00,,1 month,31,1,,1922-12-11,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-12-12,1922-12-27,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/russell-problem-china/,The Problem of China,,"Russell, Bertrand",1922,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/42%2Fcc%2Fbe%2F42ccbe4435684d7180b19fe0f00616f5%2Fintermediate_file/full/full/0/default.jpg
+Crossed out,1922-12-12,,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/jung-psychology-unconscious/,The Psychology of the Unconscious,,"Jung, Carl Gustav",1916,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/af%2F41%2Fe3%2Faf41e31bbb2942368b752621b338e9c9%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-12-12,1922-12-27,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/jung-psychology-unconscious/,The Psychology of the Unconscious,,"Jung, Carl Gustav",1916,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/42%2Fcc%2Fbe%2F42ccbe4435684d7180b19fe0f00616f5%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1922-12-12,1923-01-12,https://shakespeareandco.princeton.edu/members/conlan/,Barnett D. Conlan,"Conlan, Barnett D.",8.00,7.00,1 month,31,1,,1922-12-12,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1922-12-12,1922-12-12,https://shakespeareandco.princeton.edu/members/duez/,Mrs. Duez,"Duez, Mrs.",,,,,,,,7.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1922-12-13,1922-12-13,https://shakespeareandco.princeton.edu/members/hopkins/,Mrs. Hopkins,"Hopkins, Mrs.",,,,,,,,7.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-12-13,1922-12-23,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/french-revolution/,The French Revolution,,,,Unidentified. CΓ©cile de Montricher likely borrowed volumes 1 and 2 of Thomas Carlyle's *French Revolution* (1837).,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/8f%2F26%2F37%2F8f26370e03244c58a377ef9d09237eef%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-12-14,1922-12-19,https://shakespeareandco.princeton.edu/members/service/,Robert W. Service / Mr. R. W. Service,"Service, Robert W.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/crowninshield-vanity-fair/,Vanity Fair,,,,,Lending Library Card,"Sylvia Beach, Robert Service Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/102d8619-7160-464b-8967-ca771c0c29f6/manifest,https://iiif.princeton.edu/loris/figgy_prod/53%2F09%2F2b%2F53092b965bc944c783c7ec0d7f2e9c0d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-12-14,1922-12-23,https://shakespeareandco.princeton.edu/members/service/,Robert W. Service / Mr. R. W. Service,"Service, Robert W.",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/twain-letters-mark-twain/,"Letters of Mark Twain, pseud. of Samuel Langhorne Clemens: With a Biographical Sketch and Commentary",,"Twain, Mark",1920,,Lending Library Card,"Sylvia Beach, Robert Service Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/102d8619-7160-464b-8967-ca771c0c29f6/manifest,https://iiif.princeton.edu/loris/figgy_prod/53%2F09%2F2b%2F53092b965bc944c783c7ec0d7f2e9c0d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-12-14,1922-12-16,https://shakespeareandco.princeton.edu/members/service/,Robert W. Service / Mr. R. W. Service,"Service, Robert W.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/sanchez-life-mrs-robert/,The Life of Mrs. Robert Louis Stevenson,,"Sanchez, Nellie Van de Grift",1920,,Lending Library Card,"Sylvia Beach, Robert Service Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/102d8619-7160-464b-8967-ca771c0c29f6/manifest,https://iiif.princeton.edu/loris/figgy_prod/53%2F09%2F2b%2F53092b965bc944c783c7ec0d7f2e9c0d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-12-14,1922-12-19,https://shakespeareandco.princeton.edu/members/service/,Robert W. Service / Mr. R. W. Service,"Service, Robert W.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/crowninshield-vanity-fair/,Vanity Fair,,,,,Lending Library Card,"Sylvia Beach, Robert Service Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/102d8619-7160-464b-8967-ca771c0c29f6/manifest,https://iiif.princeton.edu/loris/figgy_prod/53%2F09%2F2b%2F53092b965bc944c783c7ec0d7f2e9c0d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-12-14,1923-01-06,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/locke-jaffery/,Jaffery,,"Locke, William John",1915,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/1d%2F01%2F1e%2F1d011e6433264ecbb94ef7bbd1882f41%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-12-14,1922-12-16,https://shakespeareandco.princeton.edu/members/service/,Robert W. Service / Mr. R. W. Service,"Service, Robert W.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/gosse-books-table/,Books on the Table,,"Gosse, Edmund",1921,,Lending Library Card,"Sylvia Beach, Robert Service Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/102d8619-7160-464b-8967-ca771c0c29f6/manifest,https://iiif.princeton.edu/loris/figgy_prod/53%2F09%2F2b%2F53092b965bc944c783c7ec0d7f2e9c0d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-12-15,1922-12-19,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/lewis-babbitt/,Babbitt,,"Lewis, Sinclair",1922,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/6a%2F29%2F86%2F6a29867f6869471cbe99e9eab34fb937%2Fintermediate_file/full/full/0/default.jpg
+Borrow,,1922-12-15,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/couperus-twilight-souls/,The Twilight of the Souls,,"Couperus, Louis",1917,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/7e%2F89%2Fd9%2F7e89d956d66e4e2893ae3ae67b1b5fa6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1922-12-15,1923-03-15,https://shakespeareandco.princeton.edu/members/briere/,Mlle BriΓ¨re,"BriΓ¨re, Mlle",20.00,,3 months,90,1,,1922-12-15,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-12-16,1922-12-23,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/snaith-van-roon/,The Van Roon,,"Snaith, J. C.",1922,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2F96%2Fd2%2F5e96d2c676ff4f7d8107736bf23ae839%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-12-16,1922-12-23,https://shakespeareandco.princeton.edu/members/service/,Robert W. Service / Mr. R. W. Service,"Service, Robert W.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/frank-america/,Our America,,"Frank, Waldo",1919,,Lending Library Card,"Sylvia Beach, Robert Service Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/102d8619-7160-464b-8967-ca771c0c29f6/manifest,https://iiif.princeton.edu/loris/figgy_prod/53%2F09%2F2b%2F53092b965bc944c783c7ec0d7f2e9c0d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-12-16,1922-12-28,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/baring-overlooked/,Overlooked,,"Baring, Maurice",1922,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F68%2Fff%2Fb468ffa8ff574c2dab5b58ccc7a9f83a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-12-17,1923-02-09,https://shakespeareandco.princeton.edu/members/rhys/,Mr. Rhys,"Rhys, Mr.",,,,,,,,,Returned,54,,,https://shakespeareandco.princeton.edu/books/fry-vision-design/,Vision and Design,,"Fry, Roger Eliot",1921,,Lending Library Card,"Sylvia Beach, Rhys Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0fcf5eb6-f872-481c-a304-e45a0c9fe472/manifest,https://iiif.princeton.edu/loris/figgy_prod/67%2F3d%2F21%2F673d211972284e099df1c89a348719ce%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1922-12-18,1923-06-18,https://shakespeareandco.princeton.edu/members/maclennan/,Miss MacLennan,"MacLennan, Miss",35.00,7.00,6 months,182,1,,1922-12-18,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-12-18,1923-01-08,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/shaw-androcles-lion/,Androcles and the Lion,,"Shaw, George Bernard",1916,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/7e%2F89%2Fd9%2F7e89d956d66e4e2893ae3ae67b1b5fa6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-12-19,1922-12-23,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/butler-erewhon/,Erewhon,,"Butler, Samuel",1872,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/6a%2F29%2F86%2F6a29867f6869471cbe99e9eab34fb937%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1922-12-19,1923-12-19,https://shakespeareandco.princeton.edu/members/frieseke-sarah/,Sarah Anne Frieseke,"Frieseke, Sarah Anne",48.00,,1 year,365,1,AdL,1922-12-19,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-12-20,,https://shakespeareandco.princeton.edu/members/joyce-lucia/,Lucia Joyce,"Joyce, Lucia",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/harte-luck-roaring-camp/,The Luck of Roaring Camp,,"Harte, Bret",1868,,Lending Library Card,"Lucia Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Reimbursement,1922-12-20,1922-12-20,https://shakespeareandco.princeton.edu/members/chastenet/;https://shakespeareandco.princeton.edu/members/chastenet-mme/,M. Chastenet;Mme Chastenet,"Chastenet, M.;Chastenet, Mme",,,,,,,,14.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-12-20,1923-01-06,https://shakespeareandco.princeton.edu/members/somerville/,Miss Somerville and Miss Somerville / The Misses Somervile,"Somerville, The Misses",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/fitzgerald-side-paradise/,This Side of Paradise,,"Fitzgerald, F. Scott",1920,,Lending Library Card,"Sylvia Beach, The Misses Somerville Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/779ca7de-acdb-4b9b-a25b-b3c13cd1d7be/manifest,https://iiif.princeton.edu/loris/figgy_prod/03%2F3b%2F35%2F033b35c54a534a559337a2acea5b93fb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-12-20,1923-01-06,https://shakespeareandco.princeton.edu/members/somerville/,Miss Somerville and Miss Somerville / The Misses Somervile,"Somerville, The Misses",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/atherton-californians/,The Californians,,"Atherton, Gertrude Franklin Horn",1898,,Lending Library Card,"Sylvia Beach, The Misses Somerville Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/779ca7de-acdb-4b9b-a25b-b3c13cd1d7be/manifest,https://iiif.princeton.edu/loris/figgy_prod/03%2F3b%2F35%2F033b35c54a534a559337a2acea5b93fb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-12-20,1923-05-31,https://shakespeareandco.princeton.edu/members/joyce-lucia/,Lucia Joyce,"Joyce, Lucia",,,,,,,,,Returned,162,,,https://shakespeareandco.princeton.edu/books/norris-shanghaied/,Shanghaied,,"Norris, Frank",1920,,Lending Library Card,"Lucia Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1922-12-20,1923-05-31,https://shakespeareandco.princeton.edu/members/joyce-lucia/,Lucia Joyce,"Joyce, Lucia",,,,,,,,,Returned,162,,,https://shakespeareandco.princeton.edu/books/galsworthy-mob/,The Mob,,"Galsworthy, John",1914,,Lending Library Card,"Lucia Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1922-12-20,1923-05-31,https://shakespeareandco.princeton.edu/members/joyce-lucia/,Lucia Joyce,"Joyce, Lucia",,,,,,,,,Returned,162,,,https://shakespeareandco.princeton.edu/books/haggard-history-adventure/,She: A History of Adventure,2 vols.,"Haggard, H. Rider",1887,,Lending Library Card,"Lucia Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1922-12-20,1923-01-06,https://shakespeareandco.princeton.edu/members/somerville/,Miss Somerville and Miss Somerville / The Misses Somervile,"Somerville, The Misses",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/conrad-western-eyes/,Under Western Eyes,,"Conrad, Joseph",1911,,Lending Library Card,"Sylvia Beach, The Misses Somerville Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/779ca7de-acdb-4b9b-a25b-b3c13cd1d7be/manifest,https://iiif.princeton.edu/loris/figgy_prod/03%2F3b%2F35%2F033b35c54a534a559337a2acea5b93fb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-12-20,1923-01-06,https://shakespeareandco.princeton.edu/members/somerville/,Miss Somerville and Miss Somerville / The Misses Somervile,"Somerville, The Misses",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/butler-way-flesh/,The Way of All Flesh,,"Butler, Samuel",1903,,Lending Library Card,"Sylvia Beach, The Misses Somerville Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/779ca7de-acdb-4b9b-a25b-b3c13cd1d7be/manifest,https://iiif.princeton.edu/loris/figgy_prod/03%2F3b%2F35%2F033b35c54a534a559337a2acea5b93fb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-12-22,1923-01-10,https://shakespeareandco.princeton.edu/members/varney/,John Varney,"Varney, John",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/macy-spirit-american-literature/,The Spirit of American Literature,,"Macy, John Albert",1913,,Lending Library Card,"Sylvia Beach, John Varney Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bbf0a1f9-fa76-478d-8db2-86d29b1a9688/manifest,https://iiif.princeton.edu/loris/figgy_prod/ec%2Fa6%2F85%2Feca685ca4d7343f196d3bbd5ff372e00%2Fintermediate_file.jp2/full/full/0/default.jpg
+Supplement,1922-12-22,1923-03-06,https://shakespeareandco.princeton.edu/members/mourat/,Mlle Mourat,"Mourat, Mlle",8.00,,"2 months, 12 days",74,1,,1922-12-22,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1922-12-22,1923-03-22,https://shakespeareandco.princeton.edu/members/varney/,John Varney,"Varney, John",30.00,14.00,3 months,90,2,,1922-12-22,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, John Varney Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/bbf0a1f9-fa76-478d-8db2-86d29b1a9688/manifest,;https://iiif.princeton.edu/loris/figgy_prod/ec%2Fa6%2F85%2Feca685ca4d7343f196d3bbd5ff372e00%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1922-12-22,1922-12-22,https://shakespeareandco.princeton.edu/members/mourat/,Mlle Mourat,"Mourat, Mlle",,,,,,,,7.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1922-12-22,1923-03-22,https://shakespeareandco.princeton.edu/members/burt/,Paul Burt,"Burt, Paul",20.00,,3 months,90,1,,1922-12-22,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-12-22,1923-01-10,https://shakespeareandco.princeton.edu/members/varney/,John Varney,"Varney, John",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/scott-bewilderment/,Bewilderment,,"Scott, Evelyn",1922,,Lending Library Card,"Sylvia Beach, John Varney Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bbf0a1f9-fa76-478d-8db2-86d29b1a9688/manifest,https://iiif.princeton.edu/loris/figgy_prod/ec%2Fa6%2F85%2Feca685ca4d7343f196d3bbd5ff372e00%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-12-23,1923-01-26,https://shakespeareandco.princeton.edu/members/service/,Robert W. Service / Mr. R. W. Service,"Service, Robert W.",,,,,,,,,Returned,34,,,https://shakespeareandco.princeton.edu/books/calderon-tahiti-tihoti/,Tahiti,,"Calderon, George",1921,,Lending Library Card,"Sylvia Beach, Robert Service Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/102d8619-7160-464b-8967-ca771c0c29f6/manifest,https://iiif.princeton.edu/loris/figgy_prod/53%2F09%2F2b%2F53092b965bc944c783c7ec0d7f2e9c0d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1922-12-23,1923-01-23,https://shakespeareandco.princeton.edu/members/monnod/,Mme Monnod,"Monnod, Mme",8.00,7.00,1 month,31,1,,1922-12-23,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1922-12-23,1923-03-23,https://shakespeareandco.princeton.edu/members/mills-heyworth/;https://shakespeareandco.princeton.edu/members/mills-mariette/,"Lawrence Heyworth Mills, Jr. / Heyworth Mills;Mariette Benedict (Thompson) Mills / Mrs. Heyworth Mills","Mills Jr., Lawrence Heyworth;Mills, Mariette Benedict",60.00,,3 months,90,4,,1922-12-23,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-12-23,1922-12-28,https://shakespeareandco.princeton.edu/members/philip-terence/,Terence Philip,"Philip, Terence",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/chekhov-letters-tchehov-family/,Letters of Tchehov to His Family and Friends,,"Chekhov, Anton",1920,,Lending Library Card,"Sylvia Beach, Terence Philip Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/880ae6be-2806-4c0e-abb5-8ae7f939b057/manifest,https://iiif.princeton.edu/loris/figgy_prod/88%2F0b%2F9e%2F880b9e079efd46a69f55bf9aa031317e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1922-12-23,1922-12-23,https://shakespeareandco.princeton.edu/members/caetani/,Marguerite (Chapin) Caetani / Princess Bassiano,"Caetani, Marguerite",,,,,,,,14.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-12-23,1923-01-12,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/galsworthy-forsyte-saga/,The Forsyte Saga,,"Galsworthy, John",1922,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2F96%2Fd2%2F5e96d2c676ff4f7d8107736bf23ae839%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-12-23,1922-12-26,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/walpole-cathedral-novel/,The Cathedral: A Novel,,"Walpole, Hugh",1922,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/6a%2F29%2F86%2F6a29867f6869471cbe99e9eab34fb937%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-12-23,1923-01-10,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/dickens-hard-times/,Hard Times,,"Dickens, Charles",1854,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/8f%2F26%2F37%2F8f26370e03244c58a377ef9d09237eef%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1922-12-24,1923-01-24,https://shakespeareandco.princeton.edu/members/genevoix/,Mme Genevoix,"Genevoix, Mme",8.00,,1 month,31,1,,1922-12-16,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-12-26,1922-12-27,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/george-stiff-lip-novel/,The Stiff Lip: A Novel,,"George, Walter Lionel",1922,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/6a%2F29%2F86%2F6a29867f6869471cbe99e9eab34fb937%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-12-26,1922-12-28,https://shakespeareandco.princeton.edu/members/service/,Robert W. Service / Mr. R. W. Service,"Service, Robert W.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/nights/,Nights,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Robert Service Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/102d8619-7160-464b-8967-ca771c0c29f6/manifest,https://iiif.princeton.edu/loris/figgy_prod/53%2F09%2F2b%2F53092b965bc944c783c7ec0d7f2e9c0d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-12-27,1923-01-17,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/tagore-home-world/,The Home and the World,,"Tagore, Rabindranath",1919,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/42%2Fcc%2Fbe%2F42ccbe4435684d7180b19fe0f00616f5%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-12-27,1923-01-02,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/dostoyevsky-eternal-husband-stories/,The Eternal Husband and Other Stories,,"Dostoyevsky, Fyodor",1917,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/6a%2F29%2F86%2F6a29867f6869471cbe99e9eab34fb937%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1922-12-27,1922-12-27,https://shakespeareandco.princeton.edu/members/castagnol/,Mme Castagnol,"Castagnol, Mme",,,,,,,,7.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1922-12-27,1923-01-17,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/walpole-cathedral-novel/,The Cathedral: A Novel,,"Walpole, Hugh",1922,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/42%2Fcc%2Fbe%2F42ccbe4435684d7180b19fe0f00616f5%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1922-12-28,1923-01-06,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/woolf-voyage/,The Voyage Out,,"Woolf, Virginia",1915,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F68%2Fff%2Fb468ffa8ff574c2dab5b58ccc7a9f83a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-12-28,1923-01-02,https://shakespeareandco.princeton.edu/members/philip-terence/,Terence Philip,"Philip, Terence",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/lawrence-psychoanalysis-unconscious/,Psychoanalysis and the Unconscious,,"Lawrence, D. H.",1921,,Lending Library Card,"Sylvia Beach, Terence Philip Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/880ae6be-2806-4c0e-abb5-8ae7f939b057/manifest,https://iiif.princeton.edu/loris/figgy_prod/88%2F0b%2F9e%2F880b9e079efd46a69f55bf9aa031317e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-12-28,1923-01-22,https://shakespeareandco.princeton.edu/members/service/,Robert W. Service / Mr. R. W. Service,"Service, Robert W.",,,,,,,,,Returned,25,,,https://shakespeareandco.princeton.edu/books/meredith-letters-george-meredith/,The Letters of George Meredith,,"Meredith, George",1912,,Lending Library Card,"Sylvia Beach, Robert Service Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/102d8619-7160-464b-8967-ca771c0c29f6/manifest,https://iiif.princeton.edu/loris/figgy_prod/53%2F09%2F2b%2F53092b965bc944c783c7ec0d7f2e9c0d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1922-12-28,1923-01-28,https://shakespeareandco.princeton.edu/members/carpenter-l-t/,L. T. Carpenter,"Carpenter, L. T.",8.00,7.00,1 month,31,1,,1922-12-28,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Supplement,1922-12-29,1923-01-28,https://shakespeareandco.princeton.edu/members/carpenter-l-t/,L. T. Carpenter,"Carpenter, L. T.",4.00,,30 days,30,1,,1923-12-29,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1922-12-29,1923-01-29,https://shakespeareandco.princeton.edu/members/howard-charles/,Charles Howard / Mr. Ch. Howard,"Howard, Charles",12.00,,1 month,31,2,,1922-12-29,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1922-12-29,1923-03-29,https://shakespeareandco.princeton.edu/members/louriau-camille/,Camille Louriau,"Louriau, Camille",16.00,,3 months,90,1,AdL,1923-12-15,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1922-12-30,1923-03-30,https://shakespeareandco.princeton.edu/members/kershaw/,Mr. Kershaw,"Kershaw, Mr.",20.00,,3 months,90,1,,1922-12-06,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1922-12-30,1932-05-02,https://shakespeareandco.princeton.edu/members/porel/,Jacques Porel,"Porel, Jacques",,,,,,,,,Returned,3411,,,https://shakespeareandco.princeton.edu/books/hardy-trumpet-major/,The Trumpet-Major,,"Hardy, Thomas",1880,,Lending Library Card,"Sylvia Beach, Jacques Porel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0f3056e7-a6fb-4650-8f99-ba0c9ac5d665/manifest,https://iiif.princeton.edu/loris/figgy_prod/7f%2F06%2Fd6%2F7f06d6fe6cda4bd38f71756c004d41e7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1922-12-30,1923-01-27,https://shakespeareandco.princeton.edu/members/rieder/,M. Rieder,"Rieder, M.",,,,,,,,,Returned,28,,,https://shakespeareandco.princeton.edu/books/frank-dark-mother/,The Dark Mother,,"Frank, Waldo",1920,,Lending Library Card,"Sylvia Beach, Rieder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/559c8919-8881-40ad-b027-67dbf1b23611/manifest,https://iiif.princeton.edu/loris/figgy_prod/6b%2Ffd%2F99%2F6bfd992bb8e742da8b7377869c34b3c2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-01-02,1923-01-05,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/moore-memoirs-dead-life/,Memoirs of My Dead Life,,"Moore, George",1906,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/6a%2F29%2F86%2F6a29867f6869471cbe99e9eab34fb937%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-01-02,1923-02-05,https://shakespeareandco.princeton.edu/members/philip-terence/,Terence Philip,"Philip, Terence",,,,,,,,,Returned,34,,,https://shakespeareandco.princeton.edu/books/cannan-mendel-story-youth/,Mendel: A Story of Youth,,"Cannan, Gilbert",1921,,Lending Library Card,"Sylvia Beach, Terence Philip Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/880ae6be-2806-4c0e-abb5-8ae7f939b057/manifest,https://iiif.princeton.edu/loris/figgy_prod/88%2F0b%2F9e%2F880b9e079efd46a69f55bf9aa031317e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1923-01-02,1923-03-02,https://shakespeareandco.princeton.edu/members/harden-e-f/,E. F. Harden,"Harden, E. F.",16.00,7.00,2 months,59,1,,1923-01-02,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-01-04,1923-01-18,https://shakespeareandco.princeton.edu/members/schereck/,Mildred Schereck,"Schereck, Mildred",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/gosse-books-table/,Books on the Table,,"Gosse, Edmund",1921,,Lending Library Card,"Sylvia Beach, Mildred Schereck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3b15ea0c-ed8d-4b41-80f3-33485620b12c/manifest,https://iiif-cloud.princeton.edu/iiif/2/65%2F5f%2F8a%2F655f8aeadadb48bfa319309d0b2dab6b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-01-05,1923-01-08,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/wharton-glimpses-moon/,The Glimpses of the Moon,,"Wharton, Edith",1922,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/6a%2F29%2F86%2F6a29867f6869471cbe99e9eab34fb937%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-01-06,1923-01-25,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/lewis-tarr/,Tarr,,"Lewis, Wyndham",1918,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/1d%2F01%2F1e%2F1d011e6433264ecbb94ef7bbd1882f41%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-01-06,1923-01-10,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/strachey-books-characters-french/,"Books and Characters, French and English",,"Strachey, Giles Lytton",1922,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F68%2Fff%2Fb468ffa8ff574c2dab5b58ccc7a9f83a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-01-06,1923-01-22,https://shakespeareandco.princeton.edu/members/somerville/,Miss Somerville and Miss Somerville / The Misses Somervile,"Somerville, The Misses",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/mackenzie-sylvia-michael/,Sylvia & Michael,,"Mackenzie, Compton",1919,,Lending Library Card,"Sylvia Beach, The Misses Somerville Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/779ca7de-acdb-4b9b-a25b-b3c13cd1d7be/manifest,https://iiif.princeton.edu/loris/figgy_prod/03%2F3b%2F35%2F033b35c54a534a559337a2acea5b93fb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-01-06,1923-01-22,https://shakespeareandco.princeton.edu/members/somerville/,Miss Somerville and Miss Somerville / The Misses Somervile,"Somerville, The Misses",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/phillpotts-old-delabole/,Old Delabole,,"Phillpotts, Eden",1915,,Lending Library Card,"Sylvia Beach, The Misses Somerville Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/779ca7de-acdb-4b9b-a25b-b3c13cd1d7be/manifest,https://iiif.princeton.edu/loris/figgy_prod/03%2F3b%2F35%2F033b35c54a534a559337a2acea5b93fb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-01-06,1923-01-10,https://shakespeareandco.princeton.edu/members/somerville/,Miss Somerville and Miss Somerville / The Misses Somervile,"Somerville, The Misses",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/joyce-dubliners/,Dubliners,,"Joyce, James",1914,,Lending Library Card,"Sylvia Beach, The Misses Somerville Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/779ca7de-acdb-4b9b-a25b-b3c13cd1d7be/manifest,https://iiif.princeton.edu/loris/figgy_prod/03%2F3b%2F35%2F033b35c54a534a559337a2acea5b93fb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-01-08,1923-01-10,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/oscar-wilde/,Oscar Wilde,Vol. 1,,,Unidentified. By or about Oscar Wilde. An unspecified 2 volume edition.,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/6a%2F29%2F86%2F6a29867f6869471cbe99e9eab34fb937%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1923-01-08,1923-02-08,https://shakespeareandco.princeton.edu/members/merrell-1/,Miss Merrell / Miss Merril,"Merrell, Miss",8.00,7.00,1 month,31,1,,1923-01-08,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-01-08,1923-02-28,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,51,,,https://shakespeareandco.princeton.edu/books/hardy-tess-durbervilles/,Tess of the d'Urbervilles,,"Hardy, Thomas",1891,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/7e%2F89%2Fd9%2F7e89d956d66e4e2893ae3ae67b1b5fa6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1923-01-09,1924-01-09,https://shakespeareandco.princeton.edu/members/boissonnas/,Mme Boissonnas,"Boissonnas, Mme",64.00,,1 year,365,2,,1923-01-09,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1923-01-09,1924-01-09,https://shakespeareandco.princeton.edu/members/richardson-hadley/,Hadley Richardson / Mrs. Hemingway,"Richardson, Hadley",80.00,,1 year,365,2,,1922-10-26,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1923-01-09,1923-07-09,https://shakespeareandco.princeton.edu/members/weiss-colette/,Colette Weiss,"Weiss, Colette",35.00,7.00,6 months,181,1,,1923-01-09,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-01-10,1923-01-12,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/joyce-dubliners/,Dubliners,,"Joyce, James",1914,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/6a%2F29%2F86%2F6a29867f6869471cbe99e9eab34fb937%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1923-01-10,1923-02-10,https://shakespeareandco.princeton.edu/members/beadle/,Mrs. Beadle,"Beadle, Mrs.",12.00,14.00,1 month,31,2,,1923-01-10,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-01-10,1923-01-22,https://shakespeareandco.princeton.edu/members/somerville/,Miss Somerville and Miss Somerville / The Misses Somervile,"Somerville, The Misses",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/stephens-women-french-revolution/,Women of the French Revolution,,"Stephens, Winifred",1922,,Lending Library Card,"Sylvia Beach, The Misses Somerville Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/779ca7de-acdb-4b9b-a25b-b3c13cd1d7be/manifest,https://iiif.princeton.edu/loris/figgy_prod/a7%2Fe3%2F87%2Fa7e38794dd504b3fba6625c37a44bbf2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-01-10,1923-01-23,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/conrad-notes-life-letters/,Notes on Life and Letters,,"Conrad, Joseph",1921,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F68%2Fff%2Fb468ffa8ff574c2dab5b58ccc7a9f83a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1923-01-10,1923-04-10,https://shakespeareandco.princeton.edu/members/carol/,Mme Carol,"Carol, Mme",20.00,,3 months,90,1,,1923-01-19,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-01-10,1923-01-24,https://shakespeareandco.princeton.edu/members/varney/,John Varney,"Varney, John",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/hamsun-hunger/,Hunger,,"Hamsun, Knut",1899,,Lending Library Card,"Sylvia Beach, John Varney Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bbf0a1f9-fa76-478d-8db2-86d29b1a9688/manifest,https://iiif.princeton.edu/loris/figgy_prod/ec%2Fa6%2F85%2Feca685ca4d7343f196d3bbd5ff372e00%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-01-10,1923-01-24,https://shakespeareandco.princeton.edu/members/varney/,John Varney,"Varney, John",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/symons-plays-symons/,Plays,,"Symons, Arthur",,"Unidentified. Likely Arthur Symons's [*Plays, Acting, and Music*](https://shakespeareandco.princeton.edu/books/symons-plays-acting-music/) (1903).",Lending Library Card,"Sylvia Beach, John Varney Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bbf0a1f9-fa76-478d-8db2-86d29b1a9688/manifest,https://iiif.princeton.edu/loris/figgy_prod/ec%2Fa6%2F85%2Feca685ca4d7343f196d3bbd5ff372e00%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-01-10,1923-02-03,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,24,,,https://shakespeareandco.princeton.edu/books/dickens-dombey/,Dombey and Son,,"Dickens, Charles",1848,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/8f%2F26%2F37%2F8f26370e03244c58a377ef9d09237eef%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1923-01-10,1923-02-10,https://shakespeareandco.princeton.edu/members/somerville/,Miss Somerville and Miss Somerville / The Misses Somervile,"Somerville, The Misses",12.00,,1 month,31,2,,1923-01-10,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, The Misses Somerville Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/779ca7de-acdb-4b9b-a25b-b3c13cd1d7be/manifest,;https://iiif.princeton.edu/loris/figgy_prod/a7%2Fe3%2F87%2Fa7e38794dd504b3fba6625c37a44bbf2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1923-01-10,1923-02-10,https://shakespeareandco.princeton.edu/members/blum/,Mlle Blum,"Blum, Mlle",8.00,7.00,1 month,31,1,,1923-01-10,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-01-10,1923-02-24,https://shakespeareandco.princeton.edu/members/somerville/,Miss Somerville and Miss Somerville / The Misses Somervile,"Somerville, The Misses",,,,,,,,,Returned,45,,,https://shakespeareandco.princeton.edu/books/duclaux-short-history-france/,A Short History of France,,"Duclaux, Mary",1917,,Lending Library Card,"Sylvia Beach, The Misses Somerville Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/779ca7de-acdb-4b9b-a25b-b3c13cd1d7be/manifest,https://iiif.princeton.edu/loris/figgy_prod/a7%2Fe3%2F87%2Fa7e38794dd504b3fba6625c37a44bbf2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-01-11,1923-01-25,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/joyce-portrait-artist-young/,A Portrait of the Artist as a Young Man,,"Joyce, James",1916,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/7b%2Fd0%2F1f%2F7bd01f8bb8e348b49e9ee3952883396c%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1923-01-11,1923-02-11,https://shakespeareandco.princeton.edu/members/rhys/,Mr. Rhys,"Rhys, Mr.",6.40,,1 month,31,1,,1923-01-11,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Rhys Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/0fcf5eb6-f872-481c-a304-e45a0c9fe472/manifest,;https://iiif.princeton.edu/loris/figgy_prod/67%2F3d%2F21%2F673d211972284e099df1c89a348719ce%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1923-01-11,1924-01-11,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",48.00,,1 year,365,1,,1923-01-11,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,;https://iiif-cloud.princeton.edu/iiif/2/7b%2Fd0%2F1f%2F7bd01f8bb8e348b49e9ee3952883396c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-01-12,1923-01-16,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/gunnarsson-guest-one-eyed/,Guest the One-Eyed,,"Gunnarsson, Gunnar",1920,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2F96%2Fd2%2F5e96d2c676ff4f7d8107736bf23ae839%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-01-12,1923-01-16,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/oscar-wilde/,Oscar Wilde,Vol. 2,,,Unidentified. By or about Oscar Wilde. An unspecified 2 volume edition.,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/6a%2F29%2F86%2F6a29867f6869471cbe99e9eab34fb937%2Fintermediate_file/full/full/0/default.jpg
+Crossed out,1923-01-13,,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/richardson-honeycomb-pilgrimage-3/,Honeycomb (Pilgrimage 3),,"Richardson, Dorothy M.",1917,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/18%2F8a%2F2d%2F188a2d5b46c44e5e96b6cdaf585e9dd1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1923-01-15,1923-02-15,https://shakespeareandco.princeton.edu/members/lowe-jeannette/,Jeannette Lowe,"Lowe, Jeannette",8.00,,1 month,31,1,,1923-01-15,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1923-01-15,1923-04-15,https://shakespeareandco.princeton.edu/members/cowley-malcolm/;https://shakespeareandco.princeton.edu/members/cowley-peggy/,Malcolm Cowley;Peggy (Baird) Cowley / Mrs. Cowley,"Cowley, Malcolm;Cowley, Peggy",30.00,,3 months,90,2,,1923-01-15,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1923-01-15,1923-02-15,https://shakespeareandco.princeton.edu/members/gardin/,M. Gardin,"Gardin, M.",8.00,7.00,1 month,31,1,,1923-01-15,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-01-16,1923-01-31,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/coke-pamela/,Pamela Herself,,"Coke, Desmond",1922,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2F96%2Fd2%2F5e96d2c676ff4f7d8107736bf23ae839%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-01-16,1923-01-22,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/gogol-dead-souls/,Dead Souls,2 vols.,"Gogol, Nikolai",1842,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/6a%2F29%2F86%2F6a29867f6869471cbe99e9eab34fb937%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1923-01-16,1923-07-16,https://shakespeareandco.princeton.edu/members/dechamps/,Suzaine Deschamps,"Deschamps, Suzaine",35.00,,6 months,181,1,,1923-01-16,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-01-17,1923-02-05,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/ellis-kanga-creek-australian/,Kanga Creek: An Australian Idyll,,"Ellis, Havelock",1923,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/42%2Fcc%2Fbe%2F42ccbe4435684d7180b19fe0f00616f5%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-01-17,1923-02-05,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/merrick-love-flies-o/,When Love Flies Out o' the Window,,"Merrick, Leonard",1919,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/42%2Fcc%2Fbe%2F42ccbe4435684d7180b19fe0f00616f5%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1923-01-18,1923-03-18,https://shakespeareandco.princeton.edu/members/deniau/,M. Deniau,"Deniau, M.",24.00,,2 months,59,2,,1923-01-16,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1923-01-18,1923-02-18,https://shakespeareandco.princeton.edu/members/comminges-de/,Comtesse de Comminges,"de Comminges, Comtesse",12.00,,1 month,31,2,,1923-01-18,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-01-18,1923-02-07,https://shakespeareandco.princeton.edu/members/schereck/,Mildred Schereck,"Schereck, Mildred",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/brooks-ordeal-mark-twain/,The Ordeal of Mark Twain,,"Brooks, Van Wyck",1920,,Lending Library Card,"Sylvia Beach, Mildred Schereck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3b15ea0c-ed8d-4b41-80f3-33485620b12c/manifest,https://iiif-cloud.princeton.edu/iiif/2/65%2F5f%2F8a%2F655f8aeadadb48bfa319309d0b2dab6b%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1923-01-19,1923-02-19,https://shakespeareandco.princeton.edu/members/slack/,Miss Slack-x,"Slack, Miss",8.00,,1 month,31,1,,1923-01-19,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1923-01-19,1923-07-19,https://shakespeareandco.princeton.edu/members/butler-2/,Mrs. Butler,"Butler, Mrs.",26.00,14.00,6 months,181,2,,1923-01-19,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1923-01-19,1923-02-19,https://shakespeareandco.princeton.edu/members/linossier-raymonde/,Raymonde Linossier,"Linossier, Raymonde",6.40,,1 month,31,1,AdL,1923-01-19,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Raymonde Linossier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/53ede5bf-939d-44f5-9ddb-4dd39363bd20/manifest,;https://iiif.princeton.edu/loris/figgy_prod/23%2F3a%2F9c%2F233a9cb20f834e619e82f1ecdce098fd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1923-01-19,1923-02-19,https://shakespeareandco.princeton.edu/members/schweinitz/,Miss de Schweinitz,"de Schweinitz, Miss",12.00,14.00,1 month,31,2,,1923-01-23,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-01-22,1923-02-02,https://shakespeareandco.princeton.edu/members/somerville/,Miss Somerville and Miss Somerville / The Misses Somervile,"Somerville, The Misses",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/macaulay-views-vagabonds/,Views and Vagabonds,,"Macaulay, Rose",1912,,Lending Library Card,"Sylvia Beach, The Misses Somerville Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/779ca7de-acdb-4b9b-a25b-b3c13cd1d7be/manifest,https://iiif.princeton.edu/loris/figgy_prod/a7%2Fe3%2F87%2Fa7e38794dd504b3fba6625c37a44bbf2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-01-22,1923-02-08,https://shakespeareandco.princeton.edu/members/somerville/,Miss Somerville and Miss Somerville / The Misses Somervile,"Somerville, The Misses",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/turner-music-life/,Music and Life,,"Turner, W. J.",1921,,Lending Library Card,"Sylvia Beach, The Misses Somerville Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/779ca7de-acdb-4b9b-a25b-b3c13cd1d7be/manifest,https://iiif.princeton.edu/loris/figgy_prod/a7%2Fe3%2F87%2Fa7e38794dd504b3fba6625c37a44bbf2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-01-22,1923-02-02,https://shakespeareandco.princeton.edu/members/somerville/,Miss Somerville and Miss Somerville / The Misses Somervile,"Somerville, The Misses",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/pain-stories-grey/,Stories in Grey,,"Pain, Barry",1911,,Lending Library Card,"Sylvia Beach, The Misses Somerville Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/779ca7de-acdb-4b9b-a25b-b3c13cd1d7be/manifest,https://iiif.princeton.edu/loris/figgy_prod/a7%2Fe3%2F87%2Fa7e38794dd504b3fba6625c37a44bbf2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-01-22,1923-01-24,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/bennett-lillian/,Lillian,,"Bennett, Arnold",1922,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/6a%2F29%2F86%2F6a29867f6869471cbe99e9eab34fb937%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1923-01-23,1923-02-23,https://shakespeareandco.princeton.edu/members/smith-5/,Miss Smith,"Smith, Miss",8.00,,1 month,31,1,,1923-01-20,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-01-23,1923-01-31,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/byron-lord-byrons-correspondence/,Lord Byron's Correspondence,Vol. 1,"Byron, George Gordon Byron",1922,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F68%2Fff%2Fb468ffa8ff574c2dab5b58ccc7a9f83a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-01-24,1923-01-27,https://shakespeareandco.princeton.edu/members/varney/,John Varney,"Varney, John",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/chekhov-letters-tchehov-family/,Letters of Tchehov to His Family and Friends,,"Chekhov, Anton",1920,,Lending Library Card,"Sylvia Beach, John Varney Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bbf0a1f9-fa76-478d-8db2-86d29b1a9688/manifest,https://iiif.princeton.edu/loris/figgy_prod/ec%2Fa6%2F85%2Feca685ca4d7343f196d3bbd5ff372e00%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-01-24,1923-02-12,https://shakespeareandco.princeton.edu/members/varney/,John Varney,"Varney, John",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/proust-swanns-way/,Swann's Way (Γ la recherche du temps perdu 1),Vol. 2,"Proust, Marcel",1922,,Lending Library Card,"Sylvia Beach, John Varney Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bbf0a1f9-fa76-478d-8db2-86d29b1a9688/manifest,https://iiif.princeton.edu/loris/figgy_prod/ec%2Fa6%2F85%2Feca685ca4d7343f196d3bbd5ff372e00%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1923-01-24,1923-02-24,https://shakespeareandco.princeton.edu/members/foster-barbara/,Barbara Foster,"Foster, Barbara",12.00,14.00,1 month,31,2,,1923-01-24,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-01-24,1923-02-08,https://shakespeareandco.princeton.edu/members/varney/,John Varney,"Varney, John",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/nietzsche-nietzsche-wagner-correspondence/,The Nietzsche-Wagner Correspondence,,"Nietzsche, Friedrich;Wagner, Richard",1921,,Lending Library Card,"Sylvia Beach, John Varney Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bbf0a1f9-fa76-478d-8db2-86d29b1a9688/manifest,https://iiif.princeton.edu/loris/figgy_prod/ec%2Fa6%2F85%2Feca685ca4d7343f196d3bbd5ff372e00%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-01-24,1923-02-01,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/croce-ariosto-shakespeare-corneille/,"Ariosto, Shakespeare and Corneille",,"Croce, Benedetto",1921,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/6a%2F29%2F86%2F6a29867f6869471cbe99e9eab34fb937%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1923-01-25,1923-02-25,https://shakespeareandco.princeton.edu/members/maurice-constantin-weyer/,Maurice Constantin-Weyer,"Constantin-Weyer, Maurice",12.00,,1 month,31,2,,1923-01-25,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Maurice Constantin-Weyer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/3649194f-2bc3-4742-a39a-a431d3d8d53f/manifest,;https://iiif.princeton.edu/loris/figgy_prod/1c%2F6a%2F0f%2F1c6a0fd7ac9143f2afaef91ac0d90d5b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-01-25,1923-01-27,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/oppenheim-amazing-quest-mr/,The Amazing Quest of Mr. Ernest Bliss,,"Oppenheim, E. Phillips",1919,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/1d%2F01%2F1e%2F1d011e6433264ecbb94ef7bbd1882f41%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-01-25,1923-02-01,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/flecker-hassan/,Hassan,,"Flecker, James Elroy",1922,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/7b%2Fd0%2F1f%2F7bd01f8bb8e348b49e9ee3952883396c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-01-25,1923-02-01,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/joyce-dubliners/,Dubliners,,"Joyce, James",1914,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/7b%2Fd0%2F1f%2F7bd01f8bb8e348b49e9ee3952883396c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-01-25,1923-01-27,https://shakespeareandco.princeton.edu/members/maurice-constantin-weyer/,Maurice Constantin-Weyer,"Constantin-Weyer, Maurice",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/synge-playboy-western-world/,The Playboy of the Western World,,"Synge, John Millington",1907,,Lending Library Card,"Sylvia Beach, Maurice Constantin-Weyer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3649194f-2bc3-4742-a39a-a431d3d8d53f/manifest,https://iiif.princeton.edu/loris/figgy_prod/1c%2F6a%2F0f%2F1c6a0fd7ac9143f2afaef91ac0d90d5b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-01-25,1923-01-27,https://shakespeareandco.princeton.edu/members/maurice-constantin-weyer/,Maurice Constantin-Weyer,"Constantin-Weyer, Maurice",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/piccoli-benedetto-croce-introduction/,Benedetto Croce: An Introduction to His Philosophy,,"Piccoli, Raffaello",1922,,Lending Library Card,"Sylvia Beach, Maurice Constantin-Weyer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3649194f-2bc3-4742-a39a-a431d3d8d53f/manifest,https://iiif.princeton.edu/loris/figgy_prod/1c%2F6a%2F0f%2F1c6a0fd7ac9143f2afaef91ac0d90d5b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Supplement,1923-01-25,1924-01-11,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",16.00,,"11 months, 17 days",351,2,,1923-01-25,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,;https://iiif-cloud.princeton.edu/iiif/2/7b%2Fd0%2F1f%2F7bd01f8bb8e348b49e9ee3952883396c%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1923-01-26,1923-02-26,https://shakespeareandco.princeton.edu/members/axtell/,Anne Axtell,"Axtell, Anne",8.00,7.00,1 month,31,1,,1923-01-26,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-01-27,1923-02-02,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/lewis-babbitt/,Babbitt,,"Lewis, Sinclair",1922,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/1d%2F01%2F1e%2F1d011e6433264ecbb94ef7bbd1882f41%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1923-01-27,1923-04-27,https://shakespeareandco.princeton.edu/members/pourtales-guy-de/,Guy de Pourtales,"de Pourtales, Guy",30.00,,3 months,90,2,,1923-01-31,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Guy de Pourtales Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/7bc6eb6e-75c8-4482-bd7d-99d4a5605ec1/manifest,;https://iiif.princeton.edu/loris/figgy_prod/ec%2F4e%2F2f%2Fec4e2fe372ff4061acaca64ca57f742d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-01-27,1923-02-02,https://shakespeareandco.princeton.edu/members/somerville/,Miss Somerville and Miss Somerville / The Misses Somervile,"Somerville, The Misses",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/bibesco-blame/,I Have Only Myself to Blame,,"Bibesco, Elizabeth",1921,,Lending Library Card,"Sylvia Beach, The Misses Somerville Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/779ca7de-acdb-4b9b-a25b-b3c13cd1d7be/manifest,https://iiif.princeton.edu/loris/figgy_prod/a7%2Fe3%2F87%2Fa7e38794dd504b3fba6625c37a44bbf2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-01-27,1923-02-13,https://shakespeareandco.princeton.edu/members/rieder/,M. Rieder,"Rieder, M.",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/sandburg-smoke-steel/,Smoke and Steel,,"Sandburg, Carl",1921,,Lending Library Card,"Sylvia Beach, Rieder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/559c8919-8881-40ad-b027-67dbf1b23611/manifest,https://iiif.princeton.edu/loris/figgy_prod/6b%2Ffd%2F99%2F6bfd992bb8e742da8b7377869c34b3c2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-01-27,1923-01-31,https://shakespeareandco.princeton.edu/members/pourtales-guy-de/,Guy de Pourtales,"de Pourtales, Guy",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/hull-sheik/,The Sheik,,"Hull, E. M.",1921,,Lending Library Card,"Sylvia Beach, Guy de Pourtales Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7bc6eb6e-75c8-4482-bd7d-99d4a5605ec1/manifest,https://iiif.princeton.edu/loris/figgy_prod/ec%2F4e%2F2f%2Fec4e2fe372ff4061acaca64ca57f742d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-01-27,1923-01-31,https://shakespeareandco.princeton.edu/members/maurice-constantin-weyer/,Maurice Constantin-Weyer,"Constantin-Weyer, Maurice",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/deirdre/,Deirdre,,,,"Unidentified. Robert Dwyer Joyce's *DeirdreΜ* (1877), A. E.'s *Deirdre* (1902), or W. B. Yeats's *Deirdre* (1907), etc.",Lending Library Card,"Sylvia Beach, Maurice Constantin-Weyer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3649194f-2bc3-4742-a39a-a431d3d8d53f/manifest,https://iiif.princeton.edu/loris/figgy_prod/1c%2F6a%2F0f%2F1c6a0fd7ac9143f2afaef91ac0d90d5b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-01-27,1923-02-09,https://shakespeareandco.princeton.edu/members/pourtales-guy-de/,Guy de Pourtales,"de Pourtales, Guy",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/renaissance-2/,The Renaissance,,,,Unidentified. Likely Walter Pater's *The Renaissance: Studies of Art and Poetry* (1873).,Lending Library Card,"Sylvia Beach, Guy de Pourtales Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7bc6eb6e-75c8-4482-bd7d-99d4a5605ec1/manifest,https://iiif.princeton.edu/loris/figgy_prod/ec%2F4e%2F2f%2Fec4e2fe372ff4061acaca64ca57f742d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1923-01-27,1923-02-27,https://shakespeareandco.princeton.edu/members/davis-mary/,Mary Davis / Mrs. N. D. Davis,"Davis, Mary",8.00,,1 month,31,1,,1923-01-27,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-01-27,1923-01-31,https://shakespeareandco.princeton.edu/members/maurice-constantin-weyer/,Maurice Constantin-Weyer,"Constantin-Weyer, Maurice",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/smollett-adventures-roderick-random/,The Adventures of Roderick Random,,"Smollett, Tobias",1748,,Lending Library Card,"Sylvia Beach, Maurice Constantin-Weyer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3649194f-2bc3-4742-a39a-a431d3d8d53f/manifest,https://iiif.princeton.edu/loris/figgy_prod/1c%2F6a%2F0f%2F1c6a0fd7ac9143f2afaef91ac0d90d5b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1923-01-30,1923-02-28,https://shakespeareandco.princeton.edu/members/hamilton-helen/,Helen Hamilton,"Hamilton, Helen",8.00,7.00,1 month,29,1,,1923-01-30,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1923-01-30,1923-02-28,https://shakespeareandco.princeton.edu/members/lazard/,Dr. Lazard,"Lazard, Dr.",8.00,7.00,1 month,29,1,,1923-01-30,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1923-01-30,1923-04-30,https://shakespeareandco.princeton.edu/members/flecker/,Mrs. Flecker,"Flecker, Mrs.",16.00,,3 months,90,1,AdL,1923-01-16,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1923-01-30,1923-01-30,https://shakespeareandco.princeton.edu/members/luard-v/,V. Luard,"Luard, V.",,,,,,,,14.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-01-31,1923-02-13,https://shakespeareandco.princeton.edu/members/pourtales-guy-de/,Guy de Pourtales,"de Pourtales, Guy",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/eliot-mill-floss/,The Mill on the Floss,,"Eliot, George",1860,,Lending Library Card,"Sylvia Beach, Guy de Pourtales Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7bc6eb6e-75c8-4482-bd7d-99d4a5605ec1/manifest,https://iiif.princeton.edu/loris/figgy_prod/ec%2F4e%2F2f%2Fec4e2fe372ff4061acaca64ca57f742d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-01-31,1923-02-05,https://shakespeareandco.princeton.edu/members/maurice-constantin-weyer/,Maurice Constantin-Weyer,"Constantin-Weyer, Maurice",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/swinburne-study-ben-jonson/,A Study of Ben Jonson,,"Swinburne, Algernon Charles",1889,,Lending Library Card,"Sylvia Beach, Maurice Constantin-Weyer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3649194f-2bc3-4742-a39a-a431d3d8d53f/manifest,https://iiif.princeton.edu/loris/figgy_prod/1c%2F6a%2F0f%2F1c6a0fd7ac9143f2afaef91ac0d90d5b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-01-31,1923-02-05,https://shakespeareandco.princeton.edu/members/maurice-constantin-weyer/,Maurice Constantin-Weyer,"Constantin-Weyer, Maurice",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/hazlitt-characters-shakespeares-plays/,Characters of Shakespeare's Plays,,"Hazlitt, William",1817,Published in the Everyman's Library series and as volume 1 of *The Collected Works of William Hazlitt.*,Lending Library Card,"Sylvia Beach, Maurice Constantin-Weyer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3649194f-2bc3-4742-a39a-a431d3d8d53f/manifest,https://iiif.princeton.edu/loris/figgy_prod/1c%2F6a%2F0f%2F1c6a0fd7ac9143f2afaef91ac0d90d5b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-01-31,1923-02-14,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/byron-lord-byrons-correspondence/,Lord Byron's Correspondence,Vol. 2,"Byron, George Gordon Byron",1922,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F68%2Fff%2Fb468ffa8ff574c2dab5b58ccc7a9f83a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-01-31,1923-02-20,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/sinclair-mary-olivier-life/,Mary Olivier: A Life,,"Sinclair, May",1919,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2F96%2Fd2%2F5e96d2c676ff4f7d8107736bf23ae839%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-02-01,1923-02-08,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/galsworthy-plays-fifth-series/,Plays: Fifth Series,,"Galsworthy, John",1922,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/7b%2Fd0%2F1f%2F7bd01f8bb8e348b49e9ee3952883396c%2Fintermediate_file/full/full/0/default.jpg
+Supplement,1923-02-01,1923-02-17,https://shakespeareandco.princeton.edu/members/barr-2/,Mr. W. Barr,"Barr, Mr. W.",4.00,,16 days,16,2,,1923-02-01,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-02-01,1923-02-08,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/james-daisy-miller/,Daisy Miller,,"James, Henry",1879,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/7b%2Fd0%2F1f%2F7bd01f8bb8e348b49e9ee3952883396c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-02-01,1923-02-03,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/reid-pender-among-residents/,Pender among the Residents,,"Reid, Forrest",1922,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/6a%2F29%2F86%2F6a29867f6869471cbe99e9eab34fb937%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1923-02-01,1923-05-01,https://shakespeareandco.princeton.edu/members/cook/,HIldegarde Cooke,"Cooke, Hildegarde",30.00,,3 months,89,2,,1923-02-01,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1923-02-02,1923-05-02,https://shakespeareandco.princeton.edu/members/boesmilon/,Mme Tougard de Boesmilon,"de Boesmilon, Mme Tougard",20.00,,3 months,89,1,,1923-01-31,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-02-02,1923-02-10,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/young-pilgrims-rest/,Pilgrim's Rest,,"Young, Francis Brett",1922,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/1d%2F01%2F1e%2F1d011e6433264ecbb94ef7bbd1882f41%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-02-02,1923-02-08,https://shakespeareandco.princeton.edu/members/somerville/,Miss Somerville and Miss Somerville / The Misses Somervile,"Somerville, The Misses",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/smith-trivia/,Trivia,,"Smith, Logan Pearsall",1917,,Lending Library Card,"Sylvia Beach, The Misses Somerville Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/779ca7de-acdb-4b9b-a25b-b3c13cd1d7be/manifest,https://iiif.princeton.edu/loris/figgy_prod/a7%2Fe3%2F87%2Fa7e38794dd504b3fba6625c37a44bbf2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-02-02,1923-02-08,https://shakespeareandco.princeton.edu/members/somerville/,Miss Somerville and Miss Somerville / The Misses Somervile,"Somerville, The Misses",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/bennett-lillian/,Lillian,,"Bennett, Arnold",1922,,Lending Library Card,"Sylvia Beach, The Misses Somerville Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/779ca7de-acdb-4b9b-a25b-b3c13cd1d7be/manifest,https://iiif.princeton.edu/loris/figgy_prod/a7%2Fe3%2F87%2Fa7e38794dd504b3fba6625c37a44bbf2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-02-02,1923-02-08,https://shakespeareandco.princeton.edu/members/somerville/,Miss Somerville and Miss Somerville / The Misses Somervile,"Somerville, The Misses",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/roosevelt-african-game-trails/,African Game Trails: An Account of the African Wanderings of an American Hunter-Naturalist,,"Roosevelt, Theodore",1910,,Lending Library Card,"Sylvia Beach, The Misses Somerville Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/779ca7de-acdb-4b9b-a25b-b3c13cd1d7be/manifest,https://iiif.princeton.edu/loris/figgy_prod/a7%2Fe3%2F87%2Fa7e38794dd504b3fba6625c37a44bbf2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1923-02-03,1923-03-03,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",12.00,,1 month,28,2,,1923-02-05,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,;https://iiif-cloud.princeton.edu/iiif/2/42%2Fcc%2Fbe%2F42ccbe4435684d7180b19fe0f00616f5%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-02-03,1923-02-06,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/huxley-crome-yellow/,Crome Yellow,,"Huxley, Aldous",1921,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/30%2Fa6%2F5a%2F30a65ae6db3342ceb750d3757815324e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-02-03,1923-02-15,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/james-spoils-poynton/,The Spoils of Poynton,,"James, Henry",1897,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/8f%2F26%2F37%2F8f26370e03244c58a377ef9d09237eef%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1923-02-03,1923-03-03,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",8.00,,1 month,28,1,,1923-02-03,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,
+Borrow,1923-02-03,1923-03-03,https://shakespeareandco.princeton.edu/members/rieder/,M. Rieder,"Rieder, M.",,,,,,,,,Returned,28,,,https://shakespeareandco.princeton.edu/books/anderson-triumph-egg/,The Triumph of the Egg,,"Anderson, Sherwood",1921,,Lending Library Card,"Sylvia Beach, Rieder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/559c8919-8881-40ad-b027-67dbf1b23611/manifest,https://iiif.princeton.edu/loris/figgy_prod/6b%2Ffd%2F99%2F6bfd992bb8e742da8b7377869c34b3c2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Crossed out,1923-02-03,,https://shakespeareandco.princeton.edu/members/rieder/,M. Rieder,"Rieder, M.",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/lewis-main-street-story/,Main Street: The Story of Carol Kennicott,,"Lewis, Sinclair",1920,,Lending Library Card,"Sylvia Beach, Rieder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/559c8919-8881-40ad-b027-67dbf1b23611/manifest,https://iiif.princeton.edu/loris/figgy_prod/6b%2Ffd%2F99%2F6bfd992bb8e742da8b7377869c34b3c2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-02-05,1923-02-27,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/ellis-impressions-comments/,Impressions and Comments,,"Ellis, Havelock",1914,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/42%2Fcc%2Fbe%2F42ccbe4435684d7180b19fe0f00616f5%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1923-02-05,1923-03-05,https://shakespeareandco.princeton.edu/members/dunne/,Mrs. P. F. Dunne,"Dunne, Mrs. P. F.",12.00,14.00,1 month,28,2,,1923-02-05,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-02-05,1923-02-21,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/mansfield-garden-party-stories/,The Garden Party and Other Stories,,"Mansfield, Katherine",1922,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/18%2F8a%2F2d%2F188a2d5b46c44e5e96b6cdaf585e9dd1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1923-02-05,1923-08-05,https://shakespeareandco.princeton.edu/members/genevoix/,Mme Genevoix,"Genevoix, Mme",35.00,,6 months,181,1,,1923-02-05,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-02-05,1923-02-08,https://shakespeareandco.princeton.edu/members/maurice-constantin-weyer/,Maurice Constantin-Weyer,"Constantin-Weyer, Maurice",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/swinburne-study-shakespeare/,A Study of Shakespeare,,"Swinburne, Algernon Charles",1880,,Lending Library Card,"Sylvia Beach, Maurice Constantin-Weyer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3649194f-2bc3-4742-a39a-a431d3d8d53f/manifest,https://iiif.princeton.edu/loris/figgy_prod/1c%2F6a%2F0f%2F1c6a0fd7ac9143f2afaef91ac0d90d5b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-02-05,1923-02-08,https://shakespeareandco.princeton.edu/members/maurice-constantin-weyer/,Maurice Constantin-Weyer,"Constantin-Weyer, Maurice",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/synge-tinkers-wedding/,The Tinker's Wedding,,"Synge, John Millington",1904,,Lending Library Card,"Sylvia Beach, Maurice Constantin-Weyer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3649194f-2bc3-4742-a39a-a431d3d8d53f/manifest,https://iiif.princeton.edu/loris/figgy_prod/1c%2F6a%2F0f%2F1c6a0fd7ac9143f2afaef91ac0d90d5b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-02-05,1923-02-27,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/waugh-loom-youth/,The Loom of Youth,,"Waugh, Alec",1917,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/42%2Fcc%2Fbe%2F42ccbe4435684d7180b19fe0f00616f5%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-02-05,1923-03-05,https://shakespeareandco.princeton.edu/members/pottecher-therese/,Therèse Pottecher,"Pottecher, Therèse",,,,,,,,,Returned,28,,,https://shakespeareandco.princeton.edu/books/dreiser-twelve-men/,Twelve Men,,"Dreiser, Theodore",1919,,Lending Library Card,"Sylvia Beach, Therèse Pottecher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/69b82696-3801-41ff-b1fd-c792179c5b98/manifest,https://iiif-cloud.princeton.edu/iiif/2/c0%2F05%2Fa6%2Fc005a6b8d76241a98262cea0f950c728%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-02-05,1923-02-22,https://shakespeareandco.princeton.edu/members/philip-terence/,Terence Philip,"Philip, Terence",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/davies-shorter-lyrics-twentieth/,Shorter Lyrics of the Twentieth Century 1900 β 1922,,,1922,,Lending Library Card,"Sylvia Beach, Terence Philip Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/880ae6be-2806-4c0e-abb5-8ae7f939b057/manifest,https://iiif.princeton.edu/loris/figgy_prod/88%2F0b%2F9e%2F880b9e079efd46a69f55bf9aa031317e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-02-06,1923-02-16,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/croce-poetry-dante/,The Poetry of Dante,,"Croce, Benedetto",1922,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/30%2Fa6%2F5a%2F30a65ae6db3342ceb750d3757815324e%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1923-02-06,1923-02-06,https://shakespeareandco.princeton.edu/members/merle-daubigne-maurice/,Maurice Merle d'AubignΓ©,"Merle d'AubignΓ©, Maurice",,,,,,,,7.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1923-02-06,1923-05-06,https://shakespeareandco.princeton.edu/members/este-florence/,Florence EstΓ©,"EstΓ©, Florence",30.00,14.00,3 months,89,2,,1923-02-06,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1923-02-07,1923-05-07,https://shakespeareandco.princeton.edu/members/javal/;https://shakespeareandco.princeton.edu/members/javal-2/,M. Javal;Mme Javal,"Javal, M.;Javal, Mme",20.00,,3 months,89,1,,1923-01-24,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-02-07,1923-02-28,https://shakespeareandco.princeton.edu/members/schereck/,Mildred Schereck,"Schereck, Mildred",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/fielding-history-tom-jones/,"The History of Tom Jones, a Foundling",,"Fielding, Henry",1749,,Lending Library Card,"Sylvia Beach, Mildred Schereck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3b15ea0c-ed8d-4b41-80f3-33485620b12c/manifest,https://iiif-cloud.princeton.edu/iiif/2/65%2F5f%2F8a%2F655f8aeadadb48bfa319309d0b2dab6b%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1923-02-08,1923-05-08,https://shakespeareandco.princeton.edu/members/merrell-1/,Miss Merrell / Miss Merril,"Merrell, Miss",20.00,,3 months,89,1,,1923-02-07,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-02-08,1923-02-16,https://shakespeareandco.princeton.edu/members/somerville/,Miss Somerville and Miss Somerville / The Misses Somervile,"Somerville, The Misses",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/wharton-glimpses-moon/,The Glimpses of the Moon,,"Wharton, Edith",1922,,Lending Library Card,"Sylvia Beach, The Misses Somerville Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/779ca7de-acdb-4b9b-a25b-b3c13cd1d7be/manifest,https://iiif.princeton.edu/loris/figgy_prod/a7%2Fe3%2F87%2Fa7e38794dd504b3fba6625c37a44bbf2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-02-08,1923-02-16,https://shakespeareandco.princeton.edu/members/somerville/,Miss Somerville and Miss Somerville / The Misses Somervile,"Somerville, The Misses",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/overton-winter-comes-main/,When Winter Comes to Main Street,,"Overton, Grant Martin",1922,,Lending Library Card,"Sylvia Beach, The Misses Somerville Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/779ca7de-acdb-4b9b-a25b-b3c13cd1d7be/manifest,https://iiif.princeton.edu/loris/figgy_prod/a7%2Fe3%2F87%2Fa7e38794dd504b3fba6625c37a44bbf2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-02-08,1923-02-16,https://shakespeareandco.princeton.edu/members/somerville/,Miss Somerville and Miss Somerville / The Misses Somervile,"Somerville, The Misses",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/gordon-modern-french-painters/,Modern French Painters,,"Gordon, Jan",1923,,Lending Library Card,"Sylvia Beach, The Misses Somerville Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/779ca7de-acdb-4b9b-a25b-b3c13cd1d7be/manifest,https://iiif.princeton.edu/loris/figgy_prod/a7%2Fe3%2F87%2Fa7e38794dd504b3fba6625c37a44bbf2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-02-08,1923-02-16,https://shakespeareandco.princeton.edu/members/somerville/,Miss Somerville and Miss Somerville / The Misses Somervile,"Somerville, The Misses",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/ruck-subconscious-courtship-novel/,The Subconscious Courtship: A Novel,,"Ruck, Berta",1922,,Lending Library Card,"Sylvia Beach, The Misses Somerville Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/779ca7de-acdb-4b9b-a25b-b3c13cd1d7be/manifest,https://iiif.princeton.edu/loris/figgy_prod/a7%2Fe3%2F87%2Fa7e38794dd504b3fba6625c37a44bbf2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-02-08,1923-02-10,https://shakespeareandco.princeton.edu/members/maurice-constantin-weyer/,Maurice Constantin-Weyer,"Constantin-Weyer, Maurice",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/shaw-unsocial-socialist/,An Unsocial Socialist,,"Shaw, George Bernard",1917,,Lending Library Card,"Sylvia Beach, Maurice Constantin-Weyer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3649194f-2bc3-4742-a39a-a431d3d8d53f/manifest,https://iiif.princeton.edu/loris/figgy_prod/1c%2F6a%2F0f%2F1c6a0fd7ac9143f2afaef91ac0d90d5b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-02-08,1923-02-10,https://shakespeareandco.princeton.edu/members/maurice-constantin-weyer/,Maurice Constantin-Weyer,"Constantin-Weyer, Maurice",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/synge-travels-wicklow-west/,"Travels in Wicklow, West Kerry and Connemara",,"Synge, John Millington",1912,,Lending Library Card,"Sylvia Beach, Maurice Constantin-Weyer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3649194f-2bc3-4742-a39a-a431d3d8d53f/manifest,https://iiif.princeton.edu/loris/figgy_prod/1c%2F6a%2F0f%2F1c6a0fd7ac9143f2afaef91ac0d90d5b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1923-02-08,1923-03-08,https://shakespeareandco.princeton.edu/members/howard-charles/,Charles Howard / Mr. Ch. Howard,"Howard, Charles",12.00,,1 month,28,2,,1923-02-08,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-02-08,1923-03-01,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/moore-ave-hail-farewell/,Ave (Hail and Farewell!),,"Moore, George",1911,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/7b%2Fd0%2F1f%2F7bd01f8bb8e348b49e9ee3952883396c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-02-08,1923-03-01,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/smith-trivia/,Trivia,,"Smith, Logan Pearsall",1917,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/7b%2Fd0%2F1f%2F7bd01f8bb8e348b49e9ee3952883396c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-02-09,1923-02-16,https://shakespeareandco.princeton.edu/members/somerville/,Miss Somerville and Miss Somerville / The Misses Somervile,"Somerville, The Misses",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/cather-antonia/,My Antonia,,"Cather, Willa",1918,,Lending Library Card,"Sylvia Beach, The Misses Somerville Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/779ca7de-acdb-4b9b-a25b-b3c13cd1d7be/manifest,https://iiif.princeton.edu/loris/figgy_prod/a7%2Fe3%2F87%2Fa7e38794dd504b3fba6625c37a44bbf2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1923-02-09,1923-05-09,https://shakespeareandco.princeton.edu/members/kemp-1/,Miss Kemp,"Kemp, Miss",20.00,,3 months,89,1,,1923-02-09,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-02-09,1923-02-16,https://shakespeareandco.princeton.edu/members/somerville/,Miss Somerville and Miss Somerville / The Misses Somervile,"Somerville, The Misses",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/hergesheimer-cytherea/,Cytherea,,"Hergesheimer, Joseph",1921,,Lending Library Card,"Sylvia Beach, The Misses Somerville Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/779ca7de-acdb-4b9b-a25b-b3c13cd1d7be/manifest,https://iiif.princeton.edu/loris/figgy_prod/a7%2Fe3%2F87%2Fa7e38794dd504b3fba6625c37a44bbf2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-02-09,1923-02-16,https://shakespeareandco.princeton.edu/members/somerville/,Miss Somerville and Miss Somerville / The Misses Somervile,"Somerville, The Misses",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/fletcher-scarhaven-keep/,Scarhaven Keep,,"Fletcher, Joseph Smith",1920,,Lending Library Card,"Sylvia Beach, The Misses Somerville Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/779ca7de-acdb-4b9b-a25b-b3c13cd1d7be/manifest,https://iiif.princeton.edu/loris/figgy_prod/a7%2Fe3%2F87%2Fa7e38794dd504b3fba6625c37a44bbf2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-02-09,1923-02-22,https://shakespeareandco.princeton.edu/members/pourtales-guy-de/,Guy de Pourtales,"de Pourtales, Guy",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/meredith-egoist/,The Egoist,,"Meredith, George",1879,,Lending Library Card,"Sylvia Beach, Guy de Pourtales Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7bc6eb6e-75c8-4482-bd7d-99d4a5605ec1/manifest,https://iiif.princeton.edu/loris/figgy_prod/ec%2F4e%2F2f%2Fec4e2fe372ff4061acaca64ca57f742d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1923-02-09,1923-02-09,https://shakespeareandco.princeton.edu/members/blum/,Mlle Blum,"Blum, Mlle",,,,,,,,7.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-02-09,1923-02-22,https://shakespeareandco.princeton.edu/members/pourtales-guy-de/,Guy de Pourtales,"de Pourtales, Guy",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/joyce-dubliners/,Dubliners,,"Joyce, James",1914,,Lending Library Card,"Sylvia Beach, Guy de Pourtales Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7bc6eb6e-75c8-4482-bd7d-99d4a5605ec1/manifest,https://iiif.princeton.edu/loris/figgy_prod/ec%2F4e%2F2f%2Fec4e2fe372ff4061acaca64ca57f742d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1923-02-10,1923-05-10,https://shakespeareandco.princeton.edu/members/doerr/,Mme Doerr / Mme Duer,"Doerr, Mme",30.00,,3 months,89,2,,1923-01-26,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1923-02-10,1923-03-10,https://shakespeareandco.princeton.edu/members/somerville/,Miss Somerville and Miss Somerville / The Misses Somervile,"Somerville, The Misses",12.00,,1 month,28,2,,1923-02-08,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, The Misses Somerville Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/779ca7de-acdb-4b9b-a25b-b3c13cd1d7be/manifest,;https://iiif.princeton.edu/loris/figgy_prod/a7%2Fe3%2F87%2Fa7e38794dd504b3fba6625c37a44bbf2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-02-10,1923-02-14,https://shakespeareandco.princeton.edu/members/maurice-constantin-weyer/,Maurice Constantin-Weyer,"Constantin-Weyer, Maurice",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/coleridge-lectures-notes-shakespeare/,Lectures and Essays on Shakespeare,,"Coleridge, Samuel Taylor",,,Lending Library Card,"Sylvia Beach, Maurice Constantin-Weyer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3649194f-2bc3-4742-a39a-a431d3d8d53f/manifest,https://iiif.princeton.edu/loris/figgy_prod/1c%2F6a%2F0f%2F1c6a0fd7ac9143f2afaef91ac0d90d5b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-02-10,1923-02-14,https://shakespeareandco.princeton.edu/members/maurice-constantin-weyer/,Maurice Constantin-Weyer,"Constantin-Weyer, Maurice",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/shaw-irrational-knot/,The Irrational Knot,,"Shaw, George Bernard",1905,,Lending Library Card,"Sylvia Beach, Maurice Constantin-Weyer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3649194f-2bc3-4742-a39a-a431d3d8d53f/manifest,https://iiif.princeton.edu/loris/figgy_prod/1c%2F6a%2F0f%2F1c6a0fd7ac9143f2afaef91ac0d90d5b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-02-10,1923-02-21,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/swinnerton-three-lovers/,The Three Lovers,,"Swinnerton, Frank",1922,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/1d%2F01%2F1e%2F1d011e6433264ecbb94ef7bbd1882f41%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1923-02-11,1923-03-11,https://shakespeareandco.princeton.edu/members/raub/,Mrs. Raub,"Raub, Mrs.",8.00,,1 month,28,1,,1923-02-09,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-02-12,1923-03-02,https://shakespeareandco.princeton.edu/members/varney/,John Varney,"Varney, John",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/lawrence-women-love/,Women in Love,,"Lawrence, D. H.",1920,,Lending Library Card,"Sylvia Beach, John Varney Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bbf0a1f9-fa76-478d-8db2-86d29b1a9688/manifest,https://iiif.princeton.edu/loris/figgy_prod/ec%2Fa6%2F85%2Feca685ca4d7343f196d3bbd5ff372e00%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-02-12,1923-03-02,https://shakespeareandco.princeton.edu/members/varney/,John Varney,"Varney, John",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/twain-letters-mark-twain/,"Letters of Mark Twain, pseud. of Samuel Langhorne Clemens: With a Biographical Sketch and Commentary",,"Twain, Mark",1920,,Lending Library Card,"Sylvia Beach, John Varney Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bbf0a1f9-fa76-478d-8db2-86d29b1a9688/manifest,https://iiif.princeton.edu/loris/figgy_prod/ec%2Fa6%2F85%2Feca685ca4d7343f196d3bbd5ff372e00%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1923-02-12,1923-02-12,https://shakespeareandco.princeton.edu/members/goldsmith-m/,M. Goldsmith,"Goldsmith, M.",,,,,,,,7.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1923-02-13,1923-02-27,https://shakespeareandco.princeton.edu/members/rowe-2/,Mrs. Rowe,"Rowe, Mrs.",4.00,,2 weeks,14,1,,1923-02-10,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-02-13,1923-02-15,https://shakespeareandco.princeton.edu/members/pourtales-guy-de/,Guy de Pourtales,"de Pourtales, Guy",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/miscellaneous-pieces/,Miscellaneous Pieces,,,1913,Unidentified. Likely Ralph Waldo Emerson's *Miscellaneous Pieces* (1913).,Lending Library Card,"Sylvia Beach, Guy de Pourtales Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7bc6eb6e-75c8-4482-bd7d-99d4a5605ec1/manifest,https://iiif.princeton.edu/loris/figgy_prod/ec%2F4e%2F2f%2Fec4e2fe372ff4061acaca64ca57f742d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1923-02-13,,https://shakespeareandco.princeton.edu/members/harris-frank/,Frank Harris,"Harris, Frank",24.00,,,,,,1923-02-13,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-02-14,1923-02-21,https://shakespeareandco.princeton.edu/members/maurice-constantin-weyer/,Maurice Constantin-Weyer,"Constantin-Weyer, Maurice",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/shaw-quintessence-ibsenism/,The Quintessence of Ibsenism,,"Shaw, George Bernard",1891,,Lending Library Card,"Sylvia Beach, Maurice Constantin-Weyer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3649194f-2bc3-4742-a39a-a431d3d8d53f/manifest,https://iiif.princeton.edu/loris/figgy_prod/1c%2F6a%2F0f%2F1c6a0fd7ac9143f2afaef91ac0d90d5b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-02-14,1923-02-21,https://shakespeareandco.princeton.edu/members/maurice-constantin-weyer/,Maurice Constantin-Weyer,"Constantin-Weyer, Maurice",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/shaw-back-methuselah-metabiological/,Back to Methuselah (A Metabiological Pentateuch),,"Shaw, George Bernard",1921,,Lending Library Card,"Sylvia Beach, Maurice Constantin-Weyer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3649194f-2bc3-4742-a39a-a431d3d8d53f/manifest,https://iiif.princeton.edu/loris/figgy_prod/1c%2F6a%2F0f%2F1c6a0fd7ac9143f2afaef91ac0d90d5b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-02-14,1923-02-17,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/walpole-captives-novel-four/,The Captives: A Novel in Four Parts,,"Walpole, Hugh",1920,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F68%2Fff%2Fb468ffa8ff574c2dab5b58ccc7a9f83a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-02-15,1923-02-22,https://shakespeareandco.princeton.edu/members/pourtales-guy-de/,Guy de Pourtales,"de Pourtales, Guy",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/emerson-representative-men-seven/,Representative Men: Seven Lectures,,"Emerson, Ralph Waldo",1856,,Lending Library Card,"Sylvia Beach, Guy de Pourtales Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7bc6eb6e-75c8-4482-bd7d-99d4a5605ec1/manifest,https://iiif.princeton.edu/loris/figgy_prod/ec%2F4e%2F2f%2Fec4e2fe372ff4061acaca64ca57f742d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1923-02-15,1923-05-15,https://shakespeareandco.princeton.edu/members/picard-3/,Miss Picard,"Picard, Miss",20.00,,3 months,89,1,,1923-02-06,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-02-15,1923-03-01,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/james-reverberator/,The Reverberator,,"James, Henry",1888,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/8f%2F26%2F37%2F8f26370e03244c58a377ef9d09237eef%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-02-15,1923-02-17,https://shakespeareandco.princeton.edu/members/service/,Robert W. Service / Mr. R. W. Service,"Service, Robert W.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/goldring-reputations-essays-criticism/,Reputations: Essays in Criticism,,"Goldring, Douglas",1920,,Lending Library Card,"Sylvia Beach, Robert Service Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/102d8619-7160-464b-8967-ca771c0c29f6/manifest,https://iiif.princeton.edu/loris/figgy_prod/53%2F09%2F2b%2F53092b965bc944c783c7ec0d7f2e9c0d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1923-02-16,1923-03-16,https://shakespeareandco.princeton.edu/members/dyer-mrs/,Mrs. Dyer,"Dyer, Mrs.",12.00,7.00,1 month,28,1,,1923-02-16,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-02-16,1923-03-07,https://shakespeareandco.princeton.edu/members/somerville/,Miss Somerville and Miss Somerville / The Misses Somervile,"Somerville, The Misses",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/hudson-purple-land/,The Purple Land,,"Hudson, W. H.",1885,,Lending Library Card,"Sylvia Beach, The Misses Somerville Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/779ca7de-acdb-4b9b-a25b-b3c13cd1d7be/manifest,https://iiif.princeton.edu/loris/figgy_prod/a7%2Fe3%2F87%2Fa7e38794dd504b3fba6625c37a44bbf2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-02-16,1923-02-17,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/james-watch-ward/,Watch and Ward,,"James, Henry",1878,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/30%2Fa6%2F5a%2F30a65ae6db3342ceb750d3757815324e%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1923-02-17,1923-02-17,https://shakespeareandco.princeton.edu/members/loge/,Mme LogΓ©,"LogΓ©, Mme",,,,,,,,14.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-02-17,1923-02-26,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/leskov-sentry-stories/,The Sentry and Other Stories,,"Leskov, Nikola Semyonovich",1922,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/30%2Fa6%2F5a%2F30a65ae6db3342ceb750d3757815324e%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1923-02-17,1923-03-17,https://shakespeareandco.princeton.edu/members/blackader/,Miss Blackader,"Blackader, Miss",12.00,7.00,1 month,28,1,,1923-02-17,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1923-02-17,1923-03-17,https://shakespeareandco.princeton.edu/members/faxon/,Miss Faxon,"Faxon, Miss",16.00,14.00,1 month,28,2,,1923-02-17,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1923-02-17,1923-03-17,https://shakespeareandco.princeton.edu/members/ably-2/,Mme Ably,"Ably, Mme",12.00,,1 month,28,1,,1923-02-17,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-02-17,1923-02-22,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/james-aspern-papers/,The Aspern Papers,,"James, Henry",1888,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F68%2Fff%2Fb468ffa8ff574c2dab5b58ccc7a9f83a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-02-17,1923-03-01,https://shakespeareandco.princeton.edu/members/service/,Robert W. Service / Mr. R. W. Service,"Service, Robert W.",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/lawrence-prussian-officer-stories/,The Prussian Officer and Other Stories,,"Lawrence, D. H.",1914,,Lending Library Card,"Sylvia Beach, Robert Service Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/102d8619-7160-464b-8967-ca771c0c29f6/manifest,https://iiif.princeton.edu/loris/figgy_prod/53%2F09%2F2b%2F53092b965bc944c783c7ec0d7f2e9c0d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1923-02-19,,https://shakespeareandco.princeton.edu/members/salter/,Miss Salter,"Salter, Miss",12.00,,,,,,1923-02-19,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1923-02-19,1923-05-19,https://shakespeareandco.princeton.edu/members/schweinitz/,Miss de Schweinitz,"de Schweinitz, Miss",30.00,,3 months,89,2,,1923-02-19,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-02-20,1923-02-22,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/king-inner-shrine-novel/,The Inner Shrine: A Novel of Today,,"King, Basil",1909,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/30%2Fa6%2F5a%2F30a65ae6db3342ceb750d3757815324e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-02-20,1923-03-10,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/mckenna-sonia-two-worlds/,Sonia: Between Two Worlds,,"McKenna, Stephen",1917,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2F96%2Fd2%2F5e96d2c676ff4f7d8107736bf23ae839%2Fintermediate_file/full/full/0/default.jpg
+Supplement,1923-02-20,1924-01-09,https://shakespeareandco.princeton.edu/members/boissonnas/,Mme Boissonnas,"Boissonnas, Mme",35.00,,"10 months, 20 days",323,,,1923-02-20,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-02-21,,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/mansfield-bliss-short-stories/,Bliss and Other Stories,,"Mansfield, Katherine",1920,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/18%2F8a%2F2d%2F188a2d5b46c44e5e96b6cdaf585e9dd1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-02-21,,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/oscar-wilde/,Oscar Wilde,2 vols.,,,Unidentified. By or about Oscar Wilde. An unspecified 2 volume edition.,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/18%2F8a%2F2d%2F188a2d5b46c44e5e96b6cdaf585e9dd1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-02-21,1923-03-01,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/lewis-main-street-story/,Main Street: The Story of Carol Kennicott,,"Lewis, Sinclair",1920,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/1d%2F01%2F1e%2F1d011e6433264ecbb94ef7bbd1882f41%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1923-02-21,1923-05-21,https://shakespeareandco.princeton.edu/members/nutting/,Mr. Nutting,"Nutting, Mr.",20.00,,3 months,89,1,,1923-01-12,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-02-22,1923-02-22,https://shakespeareandco.princeton.edu/members/pourtales-guy-de/,Guy de Pourtales,"de Pourtales, Guy",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/emerson-essays/,Essays,,"Emerson, Ralph Waldo",,Eric Culley borrowed *Essays: First Series* (1841) and *Essays: Second Series* (1844). Monique de Vigan borrowed volume 2 of an unspecified edition.,Lending Library Card,"Sylvia Beach, Guy de Pourtales Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7bc6eb6e-75c8-4482-bd7d-99d4a5605ec1/manifest,https://iiif.princeton.edu/loris/figgy_prod/ec%2F4e%2F2f%2Fec4e2fe372ff4061acaca64ca57f742d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-02-22,1923-03-02,https://shakespeareandco.princeton.edu/members/philip-terence/,Terence Philip,"Philip, Terence",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/merezhkovsky-dostoievski-russian-merejkowski/,Dostoievski: From the Russian of Merejkowski,,"Merezhkovsky, Dmitry",1912,,Lending Library Card,"Sylvia Beach, Terence Philip Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/880ae6be-2806-4c0e-abb5-8ae7f939b057/manifest,https://iiif.princeton.edu/loris/figgy_prod/88%2F0b%2F9e%2F880b9e079efd46a69f55bf9aa031317e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-02-22,1923-03-07,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/swinnerton-three-lovers/,The Three Lovers,,"Swinnerton, Frank",1922,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F68%2Fff%2Fb468ffa8ff574c2dab5b58ccc7a9f83a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1923-02-22,1923-03-22,https://shakespeareandco.princeton.edu/members/frankenburg-edna/,Edna Frankenburg,"Frankenburg, Edna",12.00,7.00,1 month,28,1,,1923-02-22,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-02-22,1923-02-23,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/huxley-mortal-coils/,Mortal Coils,,"Huxley, Aldous",1922,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/30%2Fa6%2F5a%2F30a65ae6db3342ceb750d3757815324e%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1923-02-23,1923-03-23,https://shakespeareandco.princeton.edu/members/mac/,AbbΓ© Mac,"Mac, AbbΓ©",12.00,7.00,1 month,28,1,,1923-02-23,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-02-23,1923-02-26,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/white-peacock/,The White Peacock,,"Lawrence, D. H.",1911,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/30%2Fa6%2F5a%2F30a65ae6db3342ceb750d3757815324e%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1923-02-24,1923-02-24,https://shakespeareandco.princeton.edu/members/lockwood-helen/,Helen Drusilla Lockwood / Helen Lockwood,"Lockwood, Helen Drusilla",,,,,,,,7.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1923-02-24,1923-03-24,https://shakespeareandco.princeton.edu/members/smith-5/,Miss Smith,"Smith, Miss",8.00,,1 month,28,1,,1923-02-24,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-02-26,1923-03-01,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/james-diary-man-fifty/,The Diary of a Man of Fifty,,"James, Henry",1880,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/30%2Fa6%2F5a%2F30a65ae6db3342ceb750d3757815324e%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1923-02-27,1923-03-13,https://shakespeareandco.princeton.edu/members/rowe-2/,Mrs. Rowe,"Rowe, Mrs.",4.00,,2 weeks,14,,,1923-02-27,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-02-27,1923-04-03,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,35,,,https://shakespeareandco.princeton.edu/books/walpole-mr-perrin-mr/,Mr. Perrin and Mr. Traill,,"Walpole, Hugh",1911,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/42%2Fcc%2Fbe%2F42ccbe4435684d7180b19fe0f00616f5%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-02-27,1923-04-03,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,35,,,https://shakespeareandco.princeton.edu/books/ellis-man-woman-study/,Man and Woman: A Study of Human Secondary Sexual Characters,,"Ellis, Havelock",1894,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/42%2Fcc%2Fbe%2F42ccbe4435684d7180b19fe0f00616f5%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1923-02-28,1923-02-28,https://shakespeareandco.princeton.edu/members/carpenter-l-t/,L. T. Carpenter,"Carpenter, L. T.",,,,,,,,7.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1923-02-28,1923-03-28,https://shakespeareandco.princeton.edu/members/carpenter-l-t/,L. T. Carpenter,"Carpenter, L. T.",8.00,,1 month,28,1,,1923-02-28,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1923-02-28,1923-05-28,https://shakespeareandco.princeton.edu/members/gilliam/,Miss Gilliam,"Gilliam, Miss",30.00,,3 months,89,2,,1923-01-26,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-02-28,1923-03-12,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/kipling-stalky-co/,Stalky and Co.,,"Kipling, Rudyard",1899,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/7e%2F89%2Fd9%2F7e89d956d66e4e2893ae3ae67b1b5fa6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-03-01,1923-03-03,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/bennett-lillian/,Lillian,,"Bennett, Arnold",1922,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/1d%2F01%2F1e%2F1d011e6433264ecbb94ef7bbd1882f41%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-03-01,1923-03-13,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/james-aspern-papers/,The Aspern Papers,,"James, Henry",1888,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/8f%2F26%2F37%2F8f26370e03244c58a377ef9d09237eef%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-03-01,1923-03-05,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/mansfield-garden-party-stories/,The Garden Party and Other Stories,,"Mansfield, Katherine",1922,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/30%2Fa6%2F5a%2F30a65ae6db3342ceb750d3757815324e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-03-01,1923-03-31,https://shakespeareandco.princeton.edu/members/schereck/,Mildred Schereck,"Schereck, Mildred",,,,,,,,,Returned,30,,,https://shakespeareandco.princeton.edu/books/conrad-notes-life-letters/,Notes on Life and Letters,,"Conrad, Joseph",1921,,Lending Library Card,"Sylvia Beach, Mildred Schereck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3b15ea0c-ed8d-4b41-80f3-33485620b12c/manifest,https://iiif-cloud.princeton.edu/iiif/2/65%2F5f%2F8a%2F655f8aeadadb48bfa319309d0b2dab6b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-03-01,1923-03-31,https://shakespeareandco.princeton.edu/members/schereck/,Mildred Schereck,"Schereck, Mildred",,,,,,,,,Returned,30,,,https://shakespeareandco.princeton.edu/books/conrad-set-six/,A Set of Six,,"Conrad, Joseph",1908,,Lending Library Card,"Sylvia Beach, Mildred Schereck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3b15ea0c-ed8d-4b41-80f3-33485620b12c/manifest,https://iiif-cloud.princeton.edu/iiif/2/65%2F5f%2F8a%2F655f8aeadadb48bfa319309d0b2dab6b%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1923-03-01,1923-04-01,https://shakespeareandco.princeton.edu/members/davis-mary/,Mary Davis / Mrs. N. D. Davis,"Davis, Mary",8.00,,1 month,31,1,,1923-03-01,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-03-01,1923-03-22,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/de-la-mare-memoirs-midget/,Memoirs of a Midget,,"De la Mare, Walter",1921,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/7b%2Fd0%2F1f%2F7bd01f8bb8e348b49e9ee3952883396c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-03-01,1923-03-22,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/moore-vale-hail-farewell/,Vale (Hail and Farewell!),,"Moore, George",1914,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/7b%2Fd0%2F1f%2F7bd01f8bb8e348b49e9ee3952883396c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-03-02,,https://shakespeareandco.princeton.edu/members/varney/,John Varney,"Varney, John",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/arnold-civilization-united-states/,Civilization in the United States: First and Last Impressions of America,,"Arnold, Matthew",1888,,Lending Library Card,"Sylvia Beach, John Varney Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bbf0a1f9-fa76-478d-8db2-86d29b1a9688/manifest,https://iiif.princeton.edu/loris/figgy_prod/ec%2Fa6%2F85%2Feca685ca4d7343f196d3bbd5ff372e00%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-03-02,1923-03-31,https://shakespeareandco.princeton.edu/members/varney/,John Varney,"Varney, John",,,,,,,,,Returned,29,,,https://shakespeareandco.princeton.edu/books/strachey-queen-victoria/,Queen Victoria,,"Strachey, Giles Lytton",1921,,Lending Library Card,"Sylvia Beach, John Varney Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bbf0a1f9-fa76-478d-8db2-86d29b1a9688/manifest,https://iiif.princeton.edu/loris/figgy_prod/ec%2Fa6%2F85%2Feca685ca4d7343f196d3bbd5ff372e00%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-03-02,,https://shakespeareandco.princeton.edu/members/philip-terence/,Terence Philip,"Philip, Terence",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/hamsun-shallow-soil/,Shallow Soil,,"Hamsun, Knut",1914,,Lending Library Card,"Sylvia Beach, Terence Philip Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/880ae6be-2806-4c0e-abb5-8ae7f939b057/manifest,https://iiif.princeton.edu/loris/figgy_prod/88%2F0b%2F9e%2F880b9e079efd46a69f55bf9aa031317e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-03-02,1923-03-09,https://shakespeareandco.princeton.edu/members/varney/,John Varney,"Varney, John",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/dostoyevsky-letters-fyodor-michailovitch/,Letters of Fyodor Michailovitch Dostoevsky to His Family and Friends,,"Dostoyevsky, Fyodor",1914,,Lending Library Card,"Sylvia Beach, John Varney Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bbf0a1f9-fa76-478d-8db2-86d29b1a9688/manifest,https://iiif.princeton.edu/loris/figgy_prod/ec%2Fa6%2F85%2Feca685ca4d7343f196d3bbd5ff372e00%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1923-03-03,1923-04-03,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",8.00,,1 month,31,1,,1923-03-03,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,;https://iiif-cloud.princeton.edu/iiif/2/30%2Fa6%2F5a%2F30a65ae6db3342ceb750d3757815324e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-03-03,1923-03-25,https://shakespeareandco.princeton.edu/members/wallace-lillian/,Lillian Wallace,"Wallace, Lillian",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/lewis-main-street-story/,Main Street: The Story of Carol Kennicott,,"Lewis, Sinclair",1920,,Lending Library Card,"Sylvia Beach, Lillian Wallace Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a234d29a-dbdf-436a-a710-3af0940cb6e3/manifest,https://iiif-cloud.princeton.edu/iiif/2/12%2F32%2Fb3%2F1232b3f0788d426eb89de76cde22dfe0%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1923-03-03,1923-04-03,https://shakespeareandco.princeton.edu/members/wallace-lillian/,Lillian Wallace,"Wallace, Lillian",12.00,,1 month,31,2,,1923-03-03,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Lillian Wallace Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/a234d29a-dbdf-436a-a710-3af0940cb6e3/manifest,;https://iiif-cloud.princeton.edu/iiif/2/12%2F32%2Fb3%2F1232b3f0788d426eb89de76cde22dfe0%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-03-03,1923-03-10,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/george-strangers-wedding-comedy/,"The Strangers' Wedding; or, The Comedy of a Romantic",,"George, Walter Lionel",1916,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/30%2Fa6%2F5a%2F30a65ae6db3342ceb750d3757815324e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-03-03,1923-03-25,https://shakespeareandco.princeton.edu/members/wallace-lillian/,Lillian Wallace,"Wallace, Lillian",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/crowley-diary-drug-fiend/,The Diary of a Drug Fiend,,"Crowley, Aleister",1922,,Lending Library Card,"Sylvia Beach, Lillian Wallace Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a234d29a-dbdf-436a-a710-3af0940cb6e3/manifest,https://iiif-cloud.princeton.edu/iiif/2/12%2F32%2Fb3%2F1232b3f0788d426eb89de76cde22dfe0%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1923-03-03,1923-03-03,https://shakespeareandco.princeton.edu/members/faxon/,Miss Faxon,"Faxon, Miss",,,,,,,,7.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-03-03,,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/flood-ireland-myths-legends/,Ireland: Its Myths and Legends,,"Flood, Joseph Mary",1916,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1923-03-03,,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/flood-ireland-saints-scholars/,Ireland: Its Saints and Scholars,,"Flood, Joseph Mary",1917,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Reimbursement,1923-03-03,1923-03-03,https://shakespeareandco.princeton.edu/members/hamilton-helen/,Helen Hamilton,"Hamilton, Helen",,,,,,,,14.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-03-03,1923-03-10,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/baring-overlooked/,Overlooked,,"Baring, Maurice",1922,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/1d%2F01%2F1e%2F1d011e6433264ecbb94ef7bbd1882f41%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-03-03,1923-03-17,https://shakespeareandco.princeton.edu/members/rieder/,M. Rieder,"Rieder, M.",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/eliot-mill-floss/,The Mill on the Floss,,"Eliot, George",1860,,Lending Library Card,"Sylvia Beach, Rieder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/559c8919-8881-40ad-b027-67dbf1b23611/manifest,https://iiif.princeton.edu/loris/figgy_prod/6b%2Ffd%2F99%2F6bfd992bb8e742da8b7377869c34b3c2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-03-05,1923-03-27,https://shakespeareandco.princeton.edu/members/pottecher-therese/,Therèse Pottecher,"Pottecher, Therèse",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/merrick-conrad-quest-youth/,Conrad in Quest of His Youth,,"Merrick, Leonard",1903,,Lending Library Card,"Sylvia Beach, Therèse Pottecher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/69b82696-3801-41ff-b1fd-c792179c5b98/manifest,https://iiif-cloud.princeton.edu/iiif/2/c0%2F05%2Fa6%2Fc005a6b8d76241a98262cea0f950c728%2Fintermediate_file/full/full/0/default.jpg
+Supplement,1923-03-05,1923-04-30,https://shakespeareandco.princeton.edu/members/lazard/,Dr. Lazard,"Lazard, Dr.",12.00,,8 weeks,56,1,,1923-03-05,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-03-07,1923-03-17,https://shakespeareandco.princeton.edu/members/rieder/,M. Rieder,"Rieder, M.",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/mencken-prejudices-first-series/,Prejudices: First Series,,"Mencken, H. L.",1919,,Lending Library Card,"Sylvia Beach, Rieder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/559c8919-8881-40ad-b027-67dbf1b23611/manifest,https://iiif.princeton.edu/loris/figgy_prod/6b%2Ffd%2F99%2F6bfd992bb8e742da8b7377869c34b3c2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-03-07,1923-10-16,https://shakespeareandco.princeton.edu/members/rieder/,M. Rieder,"Rieder, M.",,,,,,,,,Returned,223,,,https://shakespeareandco.princeton.edu/books/hecht-gargoyles/,Gargoyles,,"Hecht, Ben",1922,,Lending Library Card,"Sylvia Beach, Rieder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/559c8919-8881-40ad-b027-67dbf1b23611/manifest,https://iiif.princeton.edu/loris/figgy_prod/6b%2Ffd%2F99%2F6bfd992bb8e742da8b7377869c34b3c2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-03-07,1923-03-09,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/asquith-autobiography-margot-asquith/,The Autobiography of Margot Asquith,,"Asquith, Margot",1920,"Margot Asquith's autobiography was published as *An Autobiography* in 1920, and then retitled *The Autobiography of Margot Asquith* in 1921. Both versions likely circulated in the library.",Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F68%2Fff%2Fb468ffa8ff574c2dab5b58ccc7a9f83a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1923-03-07,1923-06-07,https://shakespeareandco.princeton.edu/members/de-la-niece-charles/,Charles de la Niece,"de la Niece, Charles",20.00,,3 months,92,1,,1923-03-07,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1923-03-08,1923-04-08,https://shakespeareandco.princeton.edu/members/howard-charles/,Charles Howard / Mr. Ch. Howard,"Howard, Charles",8.00,,1 month,31,1,,1923-02-21,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1923-03-08,1923-04-08,https://shakespeareandco.princeton.edu/members/pissot-2/,Mlle Pissot,"Pissot, Mlle",8.00,,1 month,31,1,,1923-03-05,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1923-03-09,1923-04-09,https://shakespeareandco.princeton.edu/members/merlay/,M. Merlay,"Merlay, M.",12.00,7.00,1 month,31,1,,1923-03-09,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-03-10,1923-03-16,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/lewis-babbitt/,Babbitt,,"Lewis, Sinclair",1922,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2F96%2Fd2%2F5e96d2c676ff4f7d8107736bf23ae839%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-03-10,1923-03-12,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/george-bed-roses/,A Bed of Roses,,"George, Walter Lionel",1916,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/30%2Fa6%2F5a%2F30a65ae6db3342ceb750d3757815324e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-03-10,1923-03-21,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/jones-wedgwood-medallion/,The Wedgwood Medallion,,"Jones, E. B. C.",1922,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/1d%2F01%2F1e%2F1d011e6433264ecbb94ef7bbd1882f41%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-03-10,1923-03-20,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/scott-bewilderment/,Bewilderment,,"Scott, Evelyn",1922,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F68%2Fff%2Fb468ffa8ff574c2dab5b58ccc7a9f83a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1923-03-10,1923-06-10,https://shakespeareandco.princeton.edu/members/mowrer/,Mrs. Mowrer,"Mowrer, Mrs.",30.00,7.00,3 months,92,1,,1923-03-10,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1923-03-12,1923-04-12,https://shakespeareandco.princeton.edu/members/bayles/,Edith Bayles,"Bayles, Edith",8.00,,1 month,31,1,,1923-03-12,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-03-12,1923-03-19,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/waugh-loom-youth/,The Loom of Youth,,"Waugh, Alec",1917,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/7e%2F89%2Fd9%2F7e89d956d66e4e2893ae3ae67b1b5fa6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1923-03-12,1923-04-12,https://shakespeareandco.princeton.edu/members/chopard/,M. Chopard,"Chopard, M.",12.00,7.00,1 month,31,1,,1923-03-12,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1923-03-12,1923-04-12,https://shakespeareandco.princeton.edu/members/moorhead-ethel/,Ethel Moorhead,"Moorhead, Ethel",16.00,14.00,1 month,31,2,,1923-03-12,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-03-12,1923-03-17,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/tomlinson-sea-jungle/,The Sea and the Jungle,,"Tomlinson, H. M.",1912,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/30%2Fa6%2F5a%2F30a65ae6db3342ceb750d3757815324e%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1923-03-13,1923-03-27,https://shakespeareandco.princeton.edu/members/rowe-2/,Mrs. Rowe,"Rowe, Mrs.",4.00,,2 weeks,14,1,,1923-03-13,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-03-13,1923-03-16,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/andersen-nexo-ditte-daughter-man/,"Ditte, Daughter of Man",,"Andersen-NexΓΈ, Martin",1921,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/c6%2F3f%2F1a%2Fc63f1a7a5fda4a1d8c3c23faa72fecc8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-03-13,1923-04-14,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,32,,,https://shakespeareandco.princeton.edu/books/fowler-locke/,Locke,Vol. 1,"Fowler, Thomas",1880,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/8f%2F26%2F37%2F8f26370e03244c58a377ef9d09237eef%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-03-15,1923-03-22,https://shakespeareandco.princeton.edu/members/wallace-lillian/,Lillian Wallace,"Wallace, Lillian",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/garnett-lady-fox/,Lady into Fox,,"Garnett, David",1922,,Lending Library Card,"Sylvia Beach, Lillian Wallace Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a234d29a-dbdf-436a-a710-3af0940cb6e3/manifest,https://iiif-cloud.princeton.edu/iiif/2/12%2F32%2Fb3%2F1232b3f0788d426eb89de76cde22dfe0%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1923-03-15,1923-04-15,https://shakespeareandco.princeton.edu/members/enoe/,Mlle EnoΓ©,"EnoΓ©, Mlle",8.00,7.00,1 month,31,1,,1923-03-15,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1923-03-15,1923-06-15,https://shakespeareandco.princeton.edu/members/briere/,Mlle BriΓ¨re,"BriΓ¨re, Mlle",20.00,,3 months,92,1,,1923-03-16,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-03-16,1923-03-22,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/sinclair-jimmie-higgins/,Jimmie Higgins,,"Sinclair, Upton",1919,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2F96%2Fd2%2F5e96d2c676ff4f7d8107736bf23ae839%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1923-03-16,1923-04-16,https://shakespeareandco.princeton.edu/members/dyer-mrs/,Mrs. Dyer,"Dyer, Mrs.",12.00,,1 month,31,1,,1923-03-16,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1923-03-16,1923-06-16,https://shakespeareandco.princeton.edu/members/mourat/,Mlle Mourat,"Mourat, Mlle",20.00,,3 months,92,1,,1923-03-16,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-03-16,1923-03-31,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/lawrence-sons-lovers/,Sons and Lovers,,"Lawrence, D. H.",1913,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/c6%2F3f%2F1a%2Fc63f1a7a5fda4a1d8c3c23faa72fecc8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-03-16,,https://shakespeareandco.princeton.edu/members/rhys/,Mr. Rhys,"Rhys, Mr.",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/galsworthy-dark-flower/,The Dark Flower,,"Galsworthy, John",1913,,Lending Library Card,"Sylvia Beach, Rhys Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0fcf5eb6-f872-481c-a304-e45a0c9fe472/manifest,https://iiif.princeton.edu/loris/figgy_prod/67%2F3d%2F21%2F673d211972284e099df1c89a348719ce%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1923-03-17,1923-04-17,https://shakespeareandco.princeton.edu/members/ably-2/,Mme Ably,"Ably, Mme",12.00,,1 month,31,1,,1923-03-17,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-03-17,1923-04-05,https://shakespeareandco.princeton.edu/members/rieder/,M. Rieder,"Rieder, M.",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/lewis-babbitt/,Babbitt,,"Lewis, Sinclair",1922,,Lending Library Card,"Sylvia Beach, Rieder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/559c8919-8881-40ad-b027-67dbf1b23611/manifest,https://iiif.princeton.edu/loris/figgy_prod/6b%2Ffd%2F99%2F6bfd992bb8e742da8b7377869c34b3c2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-03-17,1923-03-23,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/stephens-women-french-revolution/,Women of the French Revolution,,"Stephens, Winifred",1922,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/30%2Fa6%2F5a%2F30a65ae6db3342ceb750d3757815324e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-03-19,1923-03-22,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/sinclair-mary-olivier-life/,Mary Olivier: A Life,,"Sinclair, May",1919,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/7e%2F89%2Fd9%2F7e89d956d66e4e2893ae3ae67b1b5fa6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1923-03-20,1923-09-20,https://shakespeareandco.princeton.edu/members/dyer-mildred/,Mildred Dyer,"Dyer, Mildred",52.00,7.00,6 months,184,1,,1923-03-20,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-03-21,1923-04-05,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/davies-shorter-lyrics-twentieth/,Shorter Lyrics of the Twentieth Century 1900 β 1922,,,1922,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/1d%2F01%2F1e%2F1d011e6433264ecbb94ef7bbd1882f41%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-03-22,1923-03-29,https://shakespeareandco.princeton.edu/members/wallace-lillian/,Lillian Wallace,"Wallace, Lillian",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/sinclair-anne-severn-fieldings/,Anne Severn and the Fieldings,,"Sinclair, May",1922,,Lending Library Card,"Sylvia Beach, Lillian Wallace Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a234d29a-dbdf-436a-a710-3af0940cb6e3/manifest,https://iiif-cloud.princeton.edu/iiif/2/12%2F32%2Fb3%2F1232b3f0788d426eb89de76cde22dfe0%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-03-22,1923-04-12,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/bridges-poetical-works/,Poetical Works,,"Bridges, Robert",,Mlle Valerio and Tamara van den Bergh borrowed an unspecified edition of Robert Bridges's *Poems.* The other lending library members borrowed an unspecified edition of Robert Bridges's *Poetical Works.*,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/7b%2Fd0%2F1f%2F7bd01f8bb8e348b49e9ee3952883396c%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1923-03-22,1923-09-22,https://shakespeareandco.princeton.edu/members/delorne/,Mlle Delorne,"Delorne, Mlle",28.00,,6 months,184,1,AdL,1922-12-26,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-03-22,1923-03-29,https://shakespeareandco.princeton.edu/members/wallace-lillian/,Lillian Wallace,"Wallace, Lillian",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/richardson-pointed-roofs/,Pointed Roofs (Pilgrimage 1),,"Richardson, Dorothy M.",1915,,Lending Library Card,"Sylvia Beach, Lillian Wallace Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a234d29a-dbdf-436a-a710-3af0940cb6e3/manifest,https://iiif-cloud.princeton.edu/iiif/2/12%2F32%2Fb3%2F1232b3f0788d426eb89de76cde22dfe0%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-03-22,1923-04-12,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/seeger-poems/,Poems,,"Seeger, Alan",,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/7b%2Fd0%2F1f%2F7bd01f8bb8e348b49e9ee3952883396c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-03-22,1923-04-16,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,25,,,https://shakespeareandco.princeton.edu/books/mackenzie-sylvia-michael/,Sylvia & Michael,,"Mackenzie, Compton",1919,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/7e%2F89%2Fd9%2F7e89d956d66e4e2893ae3ae67b1b5fa6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-03-22,,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/gibbs-youth-triumphant/,Youth Triumphant,,"Gibbs, George",1921,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2F96%2Fd2%2F5e96d2c676ff4f7d8107736bf23ae839%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-03-23,,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/hauptmann-phantom-novel/,Phantom: A Novel,,"Hauptmann, Gerhart",1922,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0e%2F11%2F22%2F0e112265b86349fcb3817e711b264d0a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-03-23,1923-03-30,https://shakespeareandco.princeton.edu/members/sargent/,Mr. Sargent,"Sargent, Mr.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/twain-innocents-abroad-new/,"The Innocents Abroad, or The New Pilgrims' Progress",,"Twain, Mark",1869,,Lending Library Card,"Sylvia Beach, Mr Sargent Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd817648-39a7-4e94-8569-055719ecd661/manifest,https://iiif.princeton.edu/loris/figgy_prod/91%2F71%2F6d%2F91716d209a754f03bb298449766ba845%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1923-03-23,1923-03-23,https://shakespeareandco.princeton.edu/members/mattingly/,Mr. Mattingly,"Mattingly, Mr.",,,,,,,,14.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-03-23,1923-03-30,https://shakespeareandco.princeton.edu/members/sargent/,Mr. Sargent,"Sargent, Mr.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/henry-options/,Options,,"Henry, O.",1909,,Lending Library Card,"Sylvia Beach, Mr Sargent Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd817648-39a7-4e94-8569-055719ecd661/manifest,https://iiif.princeton.edu/loris/figgy_prod/91%2F71%2F6d%2F91716d209a754f03bb298449766ba845%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1923-03-23,1923-04-23,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",6.80,,1 month,31,1,,1923-04-07,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/c6%2F3f%2F1a%2Fc63f1a7a5fda4a1d8c3c23faa72fecc8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-03-23,,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/james-last-valerii-master/,"The Last of the Valerii, Master Eustace, The Romance of Certain Old Clothes, and Other Tales",,"James, Henry",1923,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0e%2F11%2F22%2F0e112265b86349fcb3817e711b264d0a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1923-03-23,1923-04-23,https://shakespeareandco.princeton.edu/members/philip-terence/,Terence Philip,"Philip, Terence",8.00,,1 month,31,1,,1923-04-06,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Terence Philip Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/880ae6be-2806-4c0e-abb5-8ae7f939b057/manifest,;https://iiif.princeton.edu/loris/figgy_prod/88%2F0b%2F9e%2F880b9e079efd46a69f55bf9aa031317e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1923-03-23,1923-04-23,https://shakespeareandco.princeton.edu/members/buckleys/,Miss Buckley,"Buckley, Miss",16.00,14.00,1 month,31,2,,1923-03-23,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1923-03-23,1923-04-23,https://shakespeareandco.princeton.edu/members/sargent/,Mr. Sargent,"Sargent, Mr.",12.00,,1 month,31,2,,1923-03-23,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Mr Sargent Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/bd817648-39a7-4e94-8569-055719ecd661/manifest,;https://iiif.princeton.edu/loris/figgy_prod/91%2F71%2F6d%2F91716d209a754f03bb298449766ba845%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-03-23,,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/ford-good-soldier/,The Good Soldier,,"Ford, Ford Madox",1915,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0e%2F11%2F22%2F0e112265b86349fcb3817e711b264d0a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-03-23,,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/corkery-munster-twilight/,A Munster Twilight,,"Corkery, Daniel",1917,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0e%2F11%2F22%2F0e112265b86349fcb3817e711b264d0a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1923-03-23,1923-06-23,https://shakespeareandco.princeton.edu/members/navelot/,Mme Navelot,"Navelot, Mme",30.00,7.00,3 months,92,1,,1923-03-23,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1923-03-24,1923-06-24,https://shakespeareandco.princeton.edu/members/curtiss-l-n/,L. N. Curtiss,"Curtiss, L. N.",40.00,14.00,3 months,92,2,,1923-03-24,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Supplement,1923-03-24,1923-04-22,https://shakespeareandco.princeton.edu/members/noyes/,Mr. Noyes,"Noyes, Mr.",4.00,7.00,29 days,29,1,,1923-03-24,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-03-26,1923-03-29,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/lewis-main-street-story/,Main Street: The Story of Carol Kennicott,,"Lewis, Sinclair",1920,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/30%2Fa6%2F5a%2F30a65ae6db3342ceb750d3757815324e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-03-27,1923-05-11,https://shakespeareandco.princeton.edu/members/pottecher-therese/,Therèse Pottecher,"Pottecher, Therèse",,,,,,,,,Returned,45,,,https://shakespeareandco.princeton.edu/books/sinclair-jungle/,The Jungle,,"Sinclair, Upton",1906,,Lending Library Card,"Sylvia Beach, Therèse Pottecher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/69b82696-3801-41ff-b1fd-c792179c5b98/manifest,https://iiif-cloud.princeton.edu/iiif/2/c0%2F05%2Fa6%2Fc005a6b8d76241a98262cea0f950c728%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1923-03-27,1923-04-27,https://shakespeareandco.princeton.edu/members/harshberger-f-m/,F. M. Harshberger,"Harshberger, F. M.",12.00,7.00,1 month,31,1,,1923-03-27,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-03-27,1923-05-11,https://shakespeareandco.princeton.edu/members/pottecher-therese/,Therèse Pottecher,"Pottecher, Therèse",,,,,,,,,Returned,45,,,https://shakespeareandco.princeton.edu/books/sinclair-brass-check/,The Brass Check,,"Sinclair, Upton",1919,,Lending Library Card,"Sylvia Beach, Therèse Pottecher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/69b82696-3801-41ff-b1fd-c792179c5b98/manifest,https://iiif-cloud.princeton.edu/iiif/2/c0%2F05%2Fa6%2Fc005a6b8d76241a98262cea0f950c728%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-03-27,1923-05-11,https://shakespeareandco.princeton.edu/members/pottecher-therese/,Therèse Pottecher,"Pottecher, Therèse",,,,,,,,,Returned,45,,,https://shakespeareandco.princeton.edu/books/moore-evelyn-inness/,Evelyn Innes,,"Moore, George",1898,,Lending Library Card,"Sylvia Beach, Therèse Pottecher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/69b82696-3801-41ff-b1fd-c792179c5b98/manifest,https://iiif-cloud.princeton.edu/iiif/2/c0%2F05%2Fa6%2Fc005a6b8d76241a98262cea0f950c728%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1923-03-28,1923-04-28,https://shakespeareandco.princeton.edu/members/blanchard/,Mlle Blanchard,"Blanchard, Mlle",12.00,7.00,1 month,31,1,,1923-03-28,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-03-29,1923-03-30,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/macaulay-potterism/,Potterism,,"Macaulay, Rose",1920,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/30%2Fa6%2F5a%2F30a65ae6db3342ceb750d3757815324e%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1923-03-30,1923-04-30,https://shakespeareandco.princeton.edu/members/deniau/,M. Deniau,"Deniau, M.",32.00,,1 month,31,2,,1923-03-30,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-03-30,1923-04-03,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/lawrence-ladybird/,The Ladybird,,"Lawrence, D. H.",1923,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/30%2Fa6%2F5a%2F30a65ae6db3342ceb750d3757815324e%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1923-03-30,1923-06-30,https://shakespeareandco.princeton.edu/members/kershaw/,Mr. Kershaw,"Kershaw, Mr.",20.00,,3 months,92,1,,1923-03-02,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-03-30,1923-04-03,https://shakespeareandco.princeton.edu/members/sargent/,Mr. Sargent,"Sargent, Mr.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/johnston-mrs-warrens-daughter/,Mrs. Warren's Daughter,,"Johnston, Harry Hamilton",1920,,Lending Library Card,"Sylvia Beach, Mr Sargent Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd817648-39a7-4e94-8569-055719ecd661/manifest,https://iiif.princeton.edu/loris/figgy_prod/91%2F71%2F6d%2F91716d209a754f03bb298449766ba845%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-03-30,1923-04-03,https://shakespeareandco.princeton.edu/members/sargent/,Mr. Sargent,"Sargent, Mr.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/galsworthy-beyond/,Beyond,,"Galsworthy, John",1917,,Lending Library Card,"Sylvia Beach, Mr Sargent Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd817648-39a7-4e94-8569-055719ecd661/manifest,https://iiif.princeton.edu/loris/figgy_prod/91%2F71%2F6d%2F91716d209a754f03bb298449766ba845%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-03-31,1923-04-26,https://shakespeareandco.princeton.edu/members/schereck/,Mildred Schereck,"Schereck, Mildred",,,,,,,,,Returned,26,,,https://shakespeareandco.princeton.edu/books/strachey-books-characters-french/,"Books and Characters, French and English",,"Strachey, Giles Lytton",1922,,Lending Library Card,"Sylvia Beach, Mildred Schereck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3b15ea0c-ed8d-4b41-80f3-33485620b12c/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2F91%2Fb3%2F5e91b3031c4d49a5a9df2b18e73d411d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-03-31,1923-04-07,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/huxley-crome-yellow/,Crome Yellow,,"Huxley, Aldous",1921,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/c6%2F3f%2F1a%2Fc63f1a7a5fda4a1d8c3c23faa72fecc8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-03-31,1923-04-26,https://shakespeareandco.princeton.edu/members/schereck/,Mildred Schereck,"Schereck, Mildred",,,,,,,,,Returned,26,,,https://shakespeareandco.princeton.edu/books/bennett-lillian/,Lillian,,"Bennett, Arnold",1922,,Lending Library Card,"Sylvia Beach, Mildred Schereck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3b15ea0c-ed8d-4b41-80f3-33485620b12c/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2F91%2Fb3%2F5e91b3031c4d49a5a9df2b18e73d411d%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1923-03-31,1923-03-31,https://shakespeareandco.princeton.edu/members/moorhead-ethel/,Ethel Moorhead,"Moorhead, Ethel",,,,,,,,14.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1923-03-31,1923-03-31,https://shakespeareandco.princeton.edu/members/harden-e-f/,E. F. Harden,"Harden, E. F.",,,,,,,,7.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1923-04-02,1923-05-02,https://shakespeareandco.princeton.edu/members/barr-2/,Mr. W. Barr,"Barr, Mr. W.",8.00,,1 month,30,1,,1923-03-31,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-04-03,1923-04-13,https://shakespeareandco.princeton.edu/members/sargent/,Mr. Sargent,"Sargent, Mr.",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/fitzgerald-side-paradise/,This Side of Paradise,,"Fitzgerald, F. Scott",1920,,Lending Library Card,"Sylvia Beach, Mr Sargent Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd817648-39a7-4e94-8569-055719ecd661/manifest,https://iiif.princeton.edu/loris/figgy_prod/91%2F71%2F6d%2F91716d209a754f03bb298449766ba845%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-04-03,1923-04-13,https://shakespeareandco.princeton.edu/members/sargent/,Mr. Sargent,"Sargent, Mr.",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/george-strangers-wedding-comedy/,"The Strangers' Wedding; or, The Comedy of a Romantic",,"George, Walter Lionel",1916,,Lending Library Card,"Sylvia Beach, Mr Sargent Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd817648-39a7-4e94-8569-055719ecd661/manifest,https://iiif.princeton.edu/loris/figgy_prod/91%2F71%2F6d%2F91716d209a754f03bb298449766ba845%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1923-04-04,1923-05-04,https://shakespeareandco.princeton.edu/members/mackay/,Miss Mackay,"Mackay, Miss",16.00,14.00,1 month,30,2,,1923-04-04,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1923-04-05,1923-05-05,https://shakespeareandco.princeton.edu/members/chaulin/,La Baronne Chaulin / Mme Chaulin,"Chaulin, La Baronne",12.00,,1 month,30,2,,1923-04-05,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-04-05,1923-04-10,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/davies-shorter-lyrics-twentieth/,Shorter Lyrics of the Twentieth Century 1900 β 1922,,,1922,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/1d%2F01%2F1e%2F1d011e6433264ecbb94ef7bbd1882f41%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1923-04-05,1924-04-05,https://shakespeareandco.princeton.edu/members/le-verrier-2/,M. Le Verrier,"Le Verrier, M.",64.00,,1 year,366,2,,1923-04-05,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1923-04-06,1923-05-06,https://shakespeareandco.princeton.edu/members/merle-daubigne-maurice/,Maurice Merle d'AubignΓ©,"Merle d'AubignΓ©, Maurice",8.00,,1 month,30,1,,1923-03-03,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-04-06,1923-04-09,https://shakespeareandco.princeton.edu/members/philip-terence/,Terence Philip,"Philip, Terence",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/eliot-sacred-wood-essays/,The Sacred Wood: Essays on Poetry and Criticism,,"Eliot, T. S.",1920,,Lending Library Card,"Sylvia Beach, Terence Philip Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/880ae6be-2806-4c0e-abb5-8ae7f939b057/manifest,https://iiif.princeton.edu/loris/figgy_prod/88%2F0b%2F9e%2F880b9e079efd46a69f55bf9aa031317e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-04-07,1923-04-12,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/freud-psychopathology-everyday-life/,The Psychopathology of Everyday Life,,"Freud, Sigmund",1914,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/c6%2F3f%2F1a%2Fc63f1a7a5fda4a1d8c3c23faa72fecc8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-04-07,1923-04-19,https://shakespeareandco.princeton.edu/members/rhys/,Mr. Rhys,"Rhys, Mr.",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/walter-raleigh/,Walter Raleigh,,,,Unidentified. By or about Raleigh.,Lending Library Card,"Sylvia Beach, Rhys Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0fcf5eb6-f872-481c-a304-e45a0c9fe472/manifest,https://iiif.princeton.edu/loris/figgy_prod/67%2F3d%2F21%2F673d211972284e099df1c89a348719ce%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1923-04-08,1923-05-08,https://shakespeareandco.princeton.edu/members/howard-charles/,Charles Howard / Mr. Ch. Howard,"Howard, Charles",8.00,,1 month,30,1,,1923-03-20,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Supplement,1923-04-09,1923-09-20,https://shakespeareandco.princeton.edu/members/dyer-mildred/,Mildred Dyer,"Dyer, Mildred",15.00,,"5 months, 11 days",164,2,,1923-04-09,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-04-09,1923-04-14,https://shakespeareandco.princeton.edu/members/philip-terence/,Terence Philip,"Philip, Terence",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/frost-north-boston/,North of Boston,,"Frost, Robert",1914,,Lending Library Card,"Sylvia Beach, Terence Philip Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/880ae6be-2806-4c0e-abb5-8ae7f939b057/manifest,https://iiif.princeton.edu/loris/figgy_prod/88%2F0b%2F9e%2F880b9e079efd46a69f55bf9aa031317e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-04-09,1923-04-14,https://shakespeareandco.princeton.edu/members/philip-terence/,Terence Philip,"Philip, Terence",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/lowell-tendencies-modern-american/,Tendencies in Modern American Poetry,,"Lowell, Amy",1917,,Lending Library Card,"Sylvia Beach, Terence Philip Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/880ae6be-2806-4c0e-abb5-8ae7f939b057/manifest,https://iiif.princeton.edu/loris/figgy_prod/88%2F0b%2F9e%2F880b9e079efd46a69f55bf9aa031317e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1923-04-10,1923-04-10,https://shakespeareandco.princeton.edu/members/chopard/,M. Chopard,"Chopard, M.",,,,,,,,7.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1923-04-10,1923-04-10,https://shakespeareandco.princeton.edu/members/chaulin/,La Baronne Chaulin / Mme Chaulin,"Chaulin, La Baronne",,,,,,,,14.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-04-10,1923-04-12,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/chesterton-things-considered/,All Things Considered,,"Chesterton, G. K.",1908,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/1d%2F01%2F1e%2F1d011e6433264ecbb94ef7bbd1882f41%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1923-04-10,1923-04-10,https://shakespeareandco.princeton.edu/members/tournay/,Mme Tournay,"Tournay, Mme",,,,,,,,7.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1923-04-10,1923-07-10,https://shakespeareandco.princeton.edu/members/carol/,Mme Carol,"Carol, Mme",20.00,,3 months,91,1,,1923-04-14,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-04-12,1923-04-23,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/lee-handling-words-studies/,The Handling of Words and Other Studies in Literary Psychology,,"Lee, Vernon",1923,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/1d%2F01%2F1e%2F1d011e6433264ecbb94ef7bbd1882f41%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-04-12,1923-05-01,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/stevenson-letters-robert-louis/,The Letters of Robert Louis Stevenson,2 vols.,"Stevenson, Robert Louis",1899,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/7b%2Fd0%2F1f%2F7bd01f8bb8e348b49e9ee3952883396c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-04-12,1923-05-01,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/mansfield-garden-party-stories/,The Garden Party and Other Stories,,"Mansfield, Katherine",1922,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/7b%2Fd0%2F1f%2F7bd01f8bb8e348b49e9ee3952883396c%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1923-04-12,1923-07-12,https://shakespeareandco.princeton.edu/members/luard-2/,Mr. Luard,"Luard, Mr.",30.00,,3 months,91,2,,1923-04-12,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1923-04-12,1923-05-12,https://shakespeareandco.princeton.edu/members/conlan/,Barnett D. Conlan,"Conlan, Barnett D.",8.00,,1 month,30,1,,1923-04-12,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-04-12,1923-04-14,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/sinclair-mary-olivier-life/,Mary Olivier: A Life,,"Sinclair, May",1919,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/c6%2F3f%2F1a%2Fc63f1a7a5fda4a1d8c3c23faa72fecc8%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1923-04-13,1923-05-13,https://shakespeareandco.princeton.edu/members/lowe-jeannette/,Jeannette Lowe,"Lowe, Jeannette",8.00,7.00,1 month,30,1,,1923-04-13,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-04-14,1923-04-23,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/thoreau-walden/,Walden,Vol. 1,"Thoreau, Henry David",1854,"At least three editions of *Walden* circulated in the lending library. G. Violette borrowed the volumes of an unspecified 2 volume edition separately. Mildred Schereck borrowed the volumes of an unspecified 2 volume edition together. Monique de Vigan purchased *Walden: Or, Life in the Woods* (Penguin, 1938) on January 30, 1941 and *Walden: Or, Life in the Woods* (Everyman's Library, 1912) on February 3, 1941.",Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/8f%2F26%2F37%2F8f26370e03244c58a377ef9d09237eef%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-04-14,1923-04-20,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/mansfield-garden-party-stories/,The Garden Party and Other Stories,,"Mansfield, Katherine",1922,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/c6%2F3f%2F1a%2Fc63f1a7a5fda4a1d8c3c23faa72fecc8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-04-14,1923-04-21,https://shakespeareandco.princeton.edu/members/philip-terence/,Terence Philip,"Philip, Terence",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/wassermann-worlds-illusion/,The World's Illusion,2 vols.,"Wassermann, Jakob",1920,,Lending Library Card,"Sylvia Beach, Terence Philip Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/880ae6be-2806-4c0e-abb5-8ae7f939b057/manifest,https://iiif.princeton.edu/loris/figgy_prod/88%2F0b%2F9e%2F880b9e079efd46a69f55bf9aa031317e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-04-16,1923-04-23,https://shakespeareandco.princeton.edu/members/sargent/,Mr. Sargent,"Sargent, Mr.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/gibbs-youth-triumphant/,Youth Triumphant,,"Gibbs, George",1921,,Lending Library Card,"Sylvia Beach, Mr Sargent Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd817648-39a7-4e94-8569-055719ecd661/manifest,https://iiif.princeton.edu/loris/figgy_prod/91%2F71%2F6d%2F91716d209a754f03bb298449766ba845%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-04-16,1923-04-23,https://shakespeareandco.princeton.edu/members/sargent/,Mr. Sargent,"Sargent, Mr.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/wilde-lord-arthur-saviles/,Lord Arthur Savile's Crime and Other Stories,,"Wilde, Oscar",1891,,Lending Library Card,"Sylvia Beach, Mr Sargent Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd817648-39a7-4e94-8569-055719ecd661/manifest,https://iiif.princeton.edu/loris/figgy_prod/91%2F71%2F6d%2F91716d209a754f03bb298449766ba845%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-04-16,1923-04-18,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/sinclair-mr-waddington-wyck/,Mr. Waddington of Wyck,,"Sinclair, May",1921,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/7e%2F89%2Fd9%2F7e89d956d66e4e2893ae3ae67b1b5fa6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-04-17,1923-05-08,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/moore-lake-2/,The Lake,,"Moore, George",1905,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/18%2F8a%2F2d%2F188a2d5b46c44e5e96b6cdaf585e9dd1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-04-18,1923-04-21,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/walpole-cathedral-novel/,The Cathedral: A Novel,,"Walpole, Hugh",1922,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/7e%2F89%2Fd9%2F7e89d956d66e4e2893ae3ae67b1b5fa6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1923-04-19,1923-04-19,https://shakespeareandco.princeton.edu/members/enoe/,Mlle EnoΓ©,"EnoΓ©, Mlle",,,,,,,,7.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1923-04-20,1923-04-20,https://shakespeareandco.princeton.edu/members/mackay/,Miss Mackay,"Mackay, Miss",,,,,,,,14.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-04-21,,https://shakespeareandco.princeton.edu/members/philip-terence/,Terence Philip,"Philip, Terence",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/criterion/,The Criterion,,,,"Renamed *The New Criterion* from January 1926 to January 1927, and *The Monthly Criterion* from May 1927 to March 1928.",Lending Library Card,"Sylvia Beach, Terence Philip Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/880ae6be-2806-4c0e-abb5-8ae7f939b057/manifest,https://iiif.princeton.edu/loris/figgy_prod/88%2F0b%2F9e%2F880b9e079efd46a69f55bf9aa031317e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-04-21,1923-05-07,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/september/,September,,,,Unidentified. Likely Frank Swinnerton's *September* (1919).,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/7e%2F89%2Fd9%2F7e89d956d66e4e2893ae3ae67b1b5fa6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-04-21,,https://shakespeareandco.princeton.edu/members/philip-terence/,Terence Philip,"Philip, Terence",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/dostoyevsky-possessed/,The Possessed,,"Dostoyevsky, Fyodor",1872,,Lending Library Card,"Sylvia Beach, Terence Philip Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/880ae6be-2806-4c0e-abb5-8ae7f939b057/manifest,https://iiif.princeton.edu/loris/figgy_prod/88%2F0b%2F9e%2F880b9e079efd46a69f55bf9aa031317e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1923-04-23,1923-05-23,https://shakespeareandco.princeton.edu/members/sargent/,Mr. Sargent,"Sargent, Mr.",12.00,,1 month,30,2,,1923-04-23,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Mr Sargent Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/bd817648-39a7-4e94-8569-055719ecd661/manifest,;https://iiif.princeton.edu/loris/figgy_prod/91%2F71%2F6d%2F91716d209a754f03bb298449766ba845%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1923-04-23,1923-04-23,https://shakespeareandco.princeton.edu/members/fox-r-w/,R. W. Fox,"Fox, R. W.",,,,,,,,7.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-04-23,1923-04-24,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/wells-men-like-gods/,Men Like Gods,,"Wells, H. G.",1923,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/c6%2F3f%2F1a%2Fc63f1a7a5fda4a1d8c3c23faa72fecc8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-04-23,1923-05-08,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/thoreau-walden/,Walden,Vol. 2,"Thoreau, Henry David",1854,"At least three editions of *Walden* circulated in the lending library. G. Violette borrowed the volumes of an unspecified 2 volume edition separately. Mildred Schereck borrowed the volumes of an unspecified 2 volume edition together. Monique de Vigan purchased *Walden: Or, Life in the Woods* (Penguin, 1938) on January 30, 1941 and *Walden: Or, Life in the Woods* (Everyman's Library, 1912) on February 3, 1941.",Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/64%2F86%2F6d%2F64866dd1f8ee4309bc4a3e389fd2938c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1923-04-23,1923-05-07,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",4.00,,2 weeks,14,1,,1923-04-23,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,;https://iiif-cloud.princeton.edu/iiif/2/c6%2F3f%2F1a%2Fc63f1a7a5fda4a1d8c3c23faa72fecc8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-04-23,,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/mackenzie-altar-steps/,The Altar Steps,,"Mackenzie, Compton",1922,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/1d%2F01%2F1e%2F1d011e6433264ecbb94ef7bbd1882f41%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-04-23,1923-05-05,https://shakespeareandco.princeton.edu/members/sargent/,Mr. Sargent,"Sargent, Mr.",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/dunsany-tales-wonder/,Tales of Wonder,,"Dunsany, Lord",1916,,Lending Library Card,"Sylvia Beach, Mr Sargent Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd817648-39a7-4e94-8569-055719ecd661/manifest,https://iiif.princeton.edu/loris/figgy_prod/91%2F71%2F6d%2F91716d209a754f03bb298449766ba845%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-04-23,1923-05-05,https://shakespeareandco.princeton.edu/members/sargent/,Mr. Sargent,"Sargent, Mr.",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/cannan-stucco-house/,The Stucco House,,"Cannan, Gilbert",1917,,Lending Library Card,"Sylvia Beach, Mr Sargent Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd817648-39a7-4e94-8569-055719ecd661/manifest,https://iiif.princeton.edu/loris/figgy_prod/91%2F71%2F6d%2F91716d209a754f03bb298449766ba845%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1923-04-24,1923-04-26,https://shakespeareandco.princeton.edu/members/alston/,Mr. Alston,"Alston, Mr.",5.00,,2 days,2,1,,1923-04-24,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-04-24,1923-04-27,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/mansfield-bliss-short-stories/,Bliss and Other Stories,,"Mansfield, Katherine",1920,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/c6%2F3f%2F1a%2Fc63f1a7a5fda4a1d8c3c23faa72fecc8%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1923-04-25,1923-05-25,https://shakespeareandco.princeton.edu/members/mankiewicz-erna/,Erna Mankiewicz / Erna Nankiewicz,"Mankiewicz, Erna",16.00,7.00,1 month,30,2,,1923-04-25,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-04-26,1923-05-29,https://shakespeareandco.princeton.edu/members/schereck/,Mildred Schereck,"Schereck, Mildred",,,,,,,,,Returned,33,,,https://shakespeareandco.princeton.edu/books/lawrence-sons-lovers/,Sons and Lovers,,"Lawrence, D. H.",1913,,Lending Library Card,"Sylvia Beach, Mildred Schereck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3b15ea0c-ed8d-4b41-80f3-33485620b12c/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2F91%2Fb3%2F5e91b3031c4d49a5a9df2b18e73d411d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-04-26,1923-05-29,https://shakespeareandco.princeton.edu/members/schereck/,Mildred Schereck,"Schereck, Mildred",,,,,,,,,Returned,33,,,https://shakespeareandco.princeton.edu/books/orage-readers-writers/,Readers and Writers (1917 β 1921),,"Orage, A. R.",1922,,Lending Library Card,"Sylvia Beach, Mildred Schereck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3b15ea0c-ed8d-4b41-80f3-33485620b12c/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2F91%2Fb3%2F5e91b3031c4d49a5a9df2b18e73d411d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-04-27,1923-05-08,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/lowell-tendencies-modern-american/,Tendencies in Modern American Poetry,,"Lowell, Amy",1917,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/c6%2F3f%2F1a%2Fc63f1a7a5fda4a1d8c3c23faa72fecc8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-04-27,1923-05-08,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/richardson-revolving-lights-pilgrimage/,Revolving Lights (Pilgrimage 7),,"Richardson, Dorothy M.",1923,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/c6%2F3f%2F1a%2Fc63f1a7a5fda4a1d8c3c23faa72fecc8%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1923-04-28,1923-05-06,https://shakespeareandco.princeton.edu/members/willison/,Mr. Willison,"Willison, Mr.",8.00,48.00,8 days,8,1,,1923-04-28,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1923-04-28,1923-05-28,https://shakespeareandco.princeton.edu/members/mcvitty/,Mrs. A. E. McVitty,"McVitty, Mrs. A. E.",12.00,7.00,1 month,30,1,,1923-04-28,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1923-04-30,1923-04-30,https://shakespeareandco.princeton.edu/members/hamer-douglas/,Douglas Hamer,"Hamer, Douglas",,,,,,,,14.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1923-04-30,1924-04-30,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",48.00,,1 year,366,1,AdL,1923-05-05,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,;https://iiif.princeton.edu/loris/figgy_prod/0e%2F11%2F22%2F0e112265b86349fcb3817e711b264d0a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1923-04-30,1923-07-30,https://shakespeareandco.princeton.edu/members/hunter-2/,Miss Hunter,"Hunter, Miss",20.00,,3 months,91,1,,1923-04-30,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1923-04-30,1923-07-30,https://shakespeareandco.princeton.edu/members/deniau/,M. Deniau,"Deniau, M.",,,3 months,91,1,,1923-03-30,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-05-01,1923-05-31,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,30,,,https://shakespeareandco.princeton.edu/books/stevenson-letters-robert-louis/,The Letters of Robert Louis Stevenson,,"Stevenson, Robert Louis",1899,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/7b%2Fd0%2F1f%2F7bd01f8bb8e348b49e9ee3952883396c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-05-01,1923-05-08,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/galsworthy-forsyte-saga/,The Forsyte Saga,,"Galsworthy, John",1922,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/7b%2Fd0%2F1f%2F7bd01f8bb8e348b49e9ee3952883396c%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1923-05-03,1923-08-03,https://shakespeareandco.princeton.edu/members/flecker/,Mrs. Flecker,"Flecker, Mrs.",16.00,,3 months,92,1,,1923-05-03,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-05-04,1923-05-14,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/mackenzie-early-life-adventures/,The Early Life and Adventures of Sylvia Scarlett,,"Mackenzie, Compton",1918,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/1d%2F01%2F1e%2F1d011e6433264ecbb94ef7bbd1882f41%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-05-05,1923-05-08,https://shakespeareandco.princeton.edu/members/sargent/,Mr. Sargent,"Sargent, Mr.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/galsworthy-country-house/,The Country House,,"Galsworthy, John",1907,,Lending Library Card,"Sylvia Beach, Mr Sargent Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd817648-39a7-4e94-8569-055719ecd661/manifest,https://iiif.princeton.edu/loris/figgy_prod/91%2F71%2F6d%2F91716d209a754f03bb298449766ba845%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-05-05,1923-05-08,https://shakespeareandco.princeton.edu/members/sargent/,Mr. Sargent,"Sargent, Mr.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/huneker-promenades-impressionist/,Promenades of an Impressionist,,"Huneker, James",1910,,Lending Library Card,"Sylvia Beach, Mr Sargent Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd817648-39a7-4e94-8569-055719ecd661/manifest,https://iiif.princeton.edu/loris/figgy_prod/91%2F71%2F6d%2F91716d209a754f03bb298449766ba845%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-05-05,1923-05-17,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/maugham-chinese-screen/,On a Chinese Screen,,"Maugham, W. Somerset",1922,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0e%2F11%2F22%2F0e112265b86349fcb3817e711b264d0a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Crossed out,1923-05-05,,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/conrad-lord-jim/,Lord Jim,,"Conrad, Joseph",1900,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/7b%2Fd0%2F1f%2F7bd01f8bb8e348b49e9ee3952883396c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-05-07,1923-05-14,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/moore-esther-waters/,Esther Waters,,"Moore, George",1894,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/7e%2F89%2Fd9%2F7e89d956d66e4e2893ae3ae67b1b5fa6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1923-05-07,1923-05-07,https://shakespeareandco.princeton.edu/members/allum/,L. G. Allum,"Allum, L. G.",,,,,,,,14.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-05-08,1923-05-11,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/frazier-golden-bough-study/,The Golden Bough: A Study in Comparative Religion,,"Frazer, James George",1890,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/c6%2F3f%2F1a%2Fc63f1a7a5fda4a1d8c3c23faa72fecc8%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1923-05-08,1923-05-21,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",4.00,,13 days,13,1,,1923-05-08,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,;https://iiif-cloud.princeton.edu/iiif/2/c6%2F3f%2F1a%2Fc63f1a7a5fda4a1d8c3c23faa72fecc8%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1923-05-08,1923-06-08,https://shakespeareandco.princeton.edu/members/butler-3/,Dorothy Butler,"Butler, Dorothy",12.00,7.00,1 month,31,1,,1923-05-08,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-05-08,1923-05-14,https://shakespeareandco.princeton.edu/members/sargent/,Mr. Sargent,"Sargent, Mr.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/huneker-melomaniacs/,Melomaniacs,,"Huneker, James",1902,,Lending Library Card,"Sylvia Beach, Mr Sargent Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd817648-39a7-4e94-8569-055719ecd661/manifest,https://iiif.princeton.edu/loris/figgy_prod/91%2F71%2F6d%2F91716d209a754f03bb298449766ba845%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-05-08,1923-05-24,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/stevenson-memories-portraits/,Memories and Portraits,,"Stevenson, Robert Louis",1887,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/18%2F8a%2F2d%2F188a2d5b46c44e5e96b6cdaf585e9dd1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-05-08,1923-05-14,https://shakespeareandco.princeton.edu/members/sargent/,Mr. Sargent,"Sargent, Mr.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/conrad-nostromo-tale-seaboard/,Nostromo: A Tale of the Seaboard,,"Conrad, Joseph",1904,,Lending Library Card,"Sylvia Beach, Mr Sargent Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd817648-39a7-4e94-8569-055719ecd661/manifest,https://iiif.princeton.edu/loris/figgy_prod/91%2F71%2F6d%2F91716d209a754f03bb298449766ba845%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-05-08,1923-05-31,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/shaw-back-methuselah-metabiological/,Back to Methuselah (A Metabiological Pentateuch),,"Shaw, George Bernard",1921,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/7b%2Fd0%2F1f%2F7bd01f8bb8e348b49e9ee3952883396c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-05-09,1923,https://shakespeareandco.princeton.edu/members/philip-terence/,Terence Philip,"Philip, Terence",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/eliot-waste-land/,The Waste Land,,"Eliot, T. S.",1922,,Lending Library Card,"Sylvia Beach, Terence Philip Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/880ae6be-2806-4c0e-abb5-8ae7f939b057/manifest,https://iiif.princeton.edu/loris/figgy_prod/88%2F0b%2F9e%2F880b9e079efd46a69f55bf9aa031317e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-05-09,1923-05-19,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/smith-trivia/,Trivia,,"Smith, Logan Pearsall",1917,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/64%2F86%2F6d%2F64866dd1f8ee4309bc4a3e389fd2938c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1923-05-09,1923-06-09,https://shakespeareandco.princeton.edu/members/dyer-mrs/,Mrs. Dyer,"Dyer, Mrs.",12.00,,1 month,31,1,,1923-05-09,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1923-05-11,1923-11-11,https://shakespeareandco.princeton.edu/members/kenmore-margaret/,Margaret Kenmore,"Kenmore, Margaret",52.00,20.00,6 months,184,1,,1923-05-11,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-05-11,1923-05-14,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/galsworthy-plays-fifth-series/,Plays: Fifth Series,,"Galsworthy, John",1922,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/c6%2F3f%2F1a%2Fc63f1a7a5fda4a1d8c3c23faa72fecc8%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1923-05-11,1923-06-11,https://shakespeareandco.princeton.edu/members/mcconnell/,Mr. McConnell,"McConnell, Mr.",16.00,20.00,1 month,31,2,,1923-05-11,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-05-11,1923-05-21,https://shakespeareandco.princeton.edu/members/pottecher-therese/,Therèse Pottecher,"Pottecher, Therèse",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/masefield-king-cole/,King Cole,,"Masefield, John",1921,,Lending Library Card,"Sylvia Beach, Therèse Pottecher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/69b82696-3801-41ff-b1fd-c792179c5b98/manifest,https://iiif-cloud.princeton.edu/iiif/2/c0%2F05%2Fa6%2Fc005a6b8d76241a98262cea0f950c728%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-05-14,1923-06-01,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/sinclair-mr-waddington-wyck/,Mr. Waddington of Wyck,,"Sinclair, May",1921,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/c6%2F3f%2F1a%2Fc63f1a7a5fda4a1d8c3c23faa72fecc8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-05-14,,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/tarkington-seventeen-tale-youth/,Seventeen: A Tale of Youth and Summer Time and the Baxter Family Especially William,,"Tarkington, Booth",1916,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2F96%2Fd2%2F5e96d2c676ff4f7d8107736bf23ae839%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-05-14,1923-05-19,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/mackenzie-sinister-street/,Sinister Street,Vol. 1,"Mackenzie, Compton",1914,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/1d%2F01%2F1e%2F1d011e6433264ecbb94ef7bbd1882f41%2Fintermediate_file/full/full/0/default.jpg
+Crossed out,1923-05-14,,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/twilight-comes/,When the Twilight Comes,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/1d%2F01%2F1e%2F1d011e6433264ecbb94ef7bbd1882f41%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1923-05-14,1923-06-14,https://shakespeareandco.princeton.edu/members/robinson-3/,Mrs. Robinson,"Robinson, Mrs.",12.00,,1 month,31,1,,1923-05-14,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-05-14,1923-05-25,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/macaulay-potterism/,Potterism,,"Macaulay, Rose",1920,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/7e%2F89%2Fd9%2F7e89d956d66e4e2893ae3ae67b1b5fa6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-05-15,1923-05-16,https://shakespeareandco.princeton.edu/members/wilson-natalie/,Natalie Wilson,"Wilson, Natalie",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/earham/,Earham,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Miss Romer Wilson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e3848a8c-f7ed-41e2-a95c-ce16d182158e/manifest,https://iiif.princeton.edu/loris/figgy_prod/4c%2F33%2F9a%2F4c339ad70163447c8dfce7f4eb5ef032%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1923-05-15,1923-08-15,https://shakespeareandco.princeton.edu/members/bonner-eugene/,Eugene Bonner,"Bonner, Eugene",30.00,20.00,3 months,92,1,,1923-05-15,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-05-15,1923-05-16,https://shakespeareandco.princeton.edu/members/wilson-natalie/,Natalie Wilson,"Wilson, Natalie",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/garnett-friday-nights-literary/,Friday Nights: Literary Criticisms and Appreciations,,"Garnett, Edward",1922,,Lending Library Card,"Sylvia Beach, Miss Romer Wilson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e3848a8c-f7ed-41e2-a95c-ce16d182158e/manifest,https://iiif.princeton.edu/loris/figgy_prod/4c%2F33%2F9a%2F4c339ad70163447c8dfce7f4eb5ef032%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1923-05-16,1923-06-16,https://shakespeareandco.princeton.edu/members/gordon-brown/,Mrs. Gordon-Brown,"Gordon-Brown, Mrs.",12.00,20.00,1 month,31,1,,1923-05-16,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1923-05-16,1923-06-16,https://shakespeareandco.princeton.edu/members/barker-miss/,Miss Barker,"Barker, Miss",12.00,,1 month,31,1,,1923-05-16,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1923-05-17,1923-08-17,https://shakespeareandco.princeton.edu/members/gilliam/,Miss Gilliam,"Gilliam, Miss",20.00,,3 months,92,1,,1923-05-17,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1923-05-17,1923-11-17,https://shakespeareandco.princeton.edu/members/lemierre-m-j/,M. J. Lemierre,"Lemierre, Mr. M. J.",50.00,,6 months,184,2,,1923-04-16,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-05-17,1923-05-22,https://shakespeareandco.princeton.edu/members/sargent/,Mr. Sargent,"Sargent, Mr.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/unclear-19/,[unclear],,,,Unidentified. Handwriting unclear. Likely Frank Norris's [*McTeague*](https://shakespeareandco.princeton.edu/books/norris-mcteague/) (1899).,Lending Library Card,"Sylvia Beach, Mr Sargent Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd817648-39a7-4e94-8569-055719ecd661/manifest,https://iiif.princeton.edu/loris/figgy_prod/91%2F71%2F6d%2F91716d209a754f03bb298449766ba845%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-05-17,1923-05-22,https://shakespeareandco.princeton.edu/members/sargent/,Mr. Sargent,"Sargent, Mr.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/galsworthy-fraternity/,Fraternity,,"Galsworthy, John",1909,,Lending Library Card,"Sylvia Beach, Mr Sargent Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd817648-39a7-4e94-8569-055719ecd661/manifest,https://iiif.princeton.edu/loris/figgy_prod/91%2F71%2F6d%2F91716d209a754f03bb298449766ba845%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-05-17,1923-05-30,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/richardson-revolving-lights-pilgrimage/,Revolving Lights (Pilgrimage 7),,"Richardson, Dorothy M.",1923,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0e%2F11%2F22%2F0e112265b86349fcb3817e711b264d0a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1923-05-18,1924-05-18,https://shakespeareandco.princeton.edu/members/lang-netter-3/,Mme Lang-Netter,"Lang-Netter, Mme",48.00,,1 year,366,1,AdL,1923-03-13,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-05-19,1923-05-30,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/burroughs-whitman-study/,Whitman: A Study,,"Burroughs, John",1896,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/64%2F86%2F6d%2F64866dd1f8ee4309bc4a3e389fd2938c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-05-19,1923-05-21,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/mackenzie-sinister-street/,Sinister Street,Vol. 2,"Mackenzie, Compton",1914,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/1d%2F01%2F1e%2F1d011e6433264ecbb94ef7bbd1882f41%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1923-05-19,1923-06-19,https://shakespeareandco.princeton.edu/members/egloff-m-a/,M. A. Egloff,"Egloff, M. A.",12.00,,1 month,31,1,,1923-05-19,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-05-21,1923-06-02,https://shakespeareandco.princeton.edu/members/pottecher-therese/,Therèse Pottecher,"Pottecher, Therèse",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/galsworthy-man-property-forsyte/,The Man of Property (The Forsyte Saga),,"Galsworthy, John",1906,,Lending Library Card,"Sylvia Beach, Therèse Pottecher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/69b82696-3801-41ff-b1fd-c792179c5b98/manifest,https://iiif-cloud.princeton.edu/iiif/2/c0%2F05%2Fa6%2Fc005a6b8d76241a98262cea0f950c728%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-05-21,1923-05-29,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/mackenzie-sylvia-michael/,Sylvia & Michael,,"Mackenzie, Compton",1919,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/dd%2Fd4%2Fc5%2Fddd4c51b44084836ab3bd7e8ebc808fd%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1923-05-22,1923-05-22,https://shakespeareandco.princeton.edu/members/dyer-mrs/,Mrs. Dyer,"Dyer, Mrs.",,,,,,,,7.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1923-05-22,1923-06-22,https://shakespeareandco.princeton.edu/members/krauss/,Mrs. W. K. Krauss,"Krauss, Mrs. W. K.",8.00,,1 month,31,1,,1923-05-22,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1923-05-22,1923-06-22,https://shakespeareandco.princeton.edu/members/fitzgerald-2/,Ellen Fitzgerald,"Fitzgerald, Ellen",12.00,20.00,1 month,31,1,,1923-05-22,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1923-05-22,1923-05-22,https://shakespeareandco.princeton.edu/members/este-florence/,Florence EstΓ©,"EstΓ©, Florence",,,,,,,,14.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Supplement,1923-05-24,1923-06-24,https://shakespeareandco.princeton.edu/members/price/,Mr. Price,"Price, Mr.",8.00,,1 month,31,2,,1923-05-24,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-05-24,1923-06-12,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/shaw/,M. Shaw,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/18%2F8a%2F2d%2F188a2d5b46c44e5e96b6cdaf585e9dd1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-05-25,1923-06-09,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/mackenzie-guy-pauline/,Guy and Pauline,,"Mackenzie, Compton",1915,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/7e%2F89%2Fd9%2F7e89d956d66e4e2893ae3ae67b1b5fa6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1923-05-26,1923-06-26,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",12.00,,1 month,31,2,,1923-05-26,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,;https://iiif.princeton.edu/loris/figgy_prod/98%2F09%2F76%2F980976167b584583a3c8a45d687bb5ca%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-05-26,1923-06-02,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/mencken-prejudices-third-series/,Prejudices: Third Series,,"Mencken, H. L.",1922,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/98%2F09%2F76%2F980976167b584583a3c8a45d687bb5ca%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-05-26,1923-06-02,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/farrar-life-christ/,Life of Christ,,"Farrar, F. W.",1877,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/98%2F09%2F76%2F980976167b584583a3c8a45d687bb5ca%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-05-29,1923-06-02,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/dos-passos-one-mans-initiation/,One Man's Initiation β 1917,,"Dos Passos, John",1917,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/dd%2Fd4%2Fc5%2Fddd4c51b44084836ab3bd7e8ebc808fd%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-05-29,1923-07-04,https://shakespeareandco.princeton.edu/members/schereck/,Mildred Schereck,"Schereck, Mildred",,,,,,,,,Returned,36,,,https://shakespeareandco.princeton.edu/books/wells-joan-peter/,Joan and Peter,2 vols.,"Wells, H. G.",1918,,Lending Library Card,"Sylvia Beach, Mildred Schereck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3b15ea0c-ed8d-4b41-80f3-33485620b12c/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2F91%2Fb3%2F5e91b3031c4d49a5a9df2b18e73d411d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-05-29,1923-07-04,https://shakespeareandco.princeton.edu/members/schereck/,Mildred Schereck,"Schereck, Mildred",,,,,,,,,Returned,36,,,https://shakespeareandco.princeton.edu/books/thoreau-walden/,Walden,2 vols.,"Thoreau, Henry David",1854,"At least three editions of *Walden* circulated in the lending library. G. Violette borrowed the volumes of an unspecified 2 volume edition separately. Mildred Schereck borrowed the volumes of an unspecified 2 volume edition together. Monique de Vigan purchased *Walden: Or, Life in the Woods* (Penguin, 1938) on January 30, 1941 and *Walden: Or, Life in the Woods* (Everyman's Library, 1912) on February 3, 1941.",Lending Library Card,"Sylvia Beach, Mildred Schereck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3b15ea0c-ed8d-4b41-80f3-33485620b12c/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2F91%2Fb3%2F5e91b3031c4d49a5a9df2b18e73d411d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-05-30,1923-06-13,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/cummings-enormous-room/,The Enormous Room,,"Cummings, E. E.",1922,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0e%2F11%2F22%2F0e112265b86349fcb3817e711b264d0a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1923-05-30,1923-05-30,https://shakespeareandco.princeton.edu/members/de-la-niece-charles/,Charles de la Niece,"de la Niece, Charles",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-05-30,1923-06-19,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/whitman-leaves-grass/,Leaves of Grass,,"Whitman, Walt",,Unspecified edition.,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/64%2F86%2F6d%2F64866dd1f8ee4309bc4a3e389fd2938c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1923-05-31,1923-05-31,https://shakespeareandco.princeton.edu/members/blackader/,Miss Blackader,"Blackader, Miss",,,,,,,,7.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-05-31,1923-07-02,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,32,,,https://shakespeareandco.princeton.edu/books/landor-imaginary-conversations/,Imaginary Conversations,,"Landor, Walter Savage",1882,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/7b%2Fd0%2F1f%2F7bd01f8bb8e348b49e9ee3952883396c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-05-31,1923-07-02,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,32,,,https://shakespeareandco.princeton.edu/books/blake-blakes-works/,Willam Blake's Works,,"Blake, William",,"At least three editions of Blake's collected works circulated in the lending library. Monique de Vigan borrowed The Poetical Works of William Blake, edited by William Michael Rossetti (Bell, 1874). Jean PrΓ©vost, John Rodker, Guy de Pourtales, Catherine Yarrow, Ella Cassigne, FranΓ§oise Bernheim, and Francoise de Marcilly (in 1939) borrowed The Poetical Works of William Blake, edited by John Sampson (Oxford, 1905). Armand Petitjean, Antoinette Bernheim, and Francoise de Marcilly (in 1938) borrowed Poetry and Prose of William Blake, edited by Geoffrey Keynes (Nonesuch, 1927).",Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/7b%2Fd0%2F1f%2F7bd01f8bb8e348b49e9ee3952883396c%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1923-06-01,1923-09-01,https://shakespeareandco.princeton.edu/members/harrison-a/,A. Harrison,"Harrison, A.",20.00,,3 months,92,1,,1923-06-01,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1923-06-02,1923-07-02,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",8.00,,1 month,30,,,1923-06-02,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/64%2F86%2F6d%2F64866dd1f8ee4309bc4a3e389fd2938c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Supplement,1923-06-02,1923-06-28,https://shakespeareandco.princeton.edu/members/warb/,Mr. Warb,"Warb, Mr.",4.00,,26 days,26,2,,1923-06-02,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-06-02,1923-06-08,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/wells-men-like-gods/,Men Like Gods,,"Wells, H. G.",1923,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/dd%2Fd4%2Fc5%2Fddd4c51b44084836ab3bd7e8ebc808fd%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1923-06-02,1923-07-02,https://shakespeareandco.princeton.edu/members/lowe-jeannette/,Jeannette Lowe,"Lowe, Jeannette",8.00,,1 month,30,1,,1923-06-02,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-06-02,1923-06-11,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/gogol-dead-souls/,Dead Souls,2 vols.,"Gogol, Nikolai",1842,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/98%2F09%2F76%2F980976167b584583a3c8a45d687bb5ca%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-06-02,1923-06-25,https://shakespeareandco.princeton.edu/members/pottecher-therese/,Therèse Pottecher,"Pottecher, Therèse",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/hardy-jude-obscure/,Jude the Obscure,,"Hardy, Thomas",1895,,Lending Library Card,"Sylvia Beach, Therèse Pottecher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/69b82696-3801-41ff-b1fd-c792179c5b98/manifest,https://iiif-cloud.princeton.edu/iiif/2/c0%2F05%2Fa6%2Fc005a6b8d76241a98262cea0f950c728%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-06-02,1923-06-11,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/carr-philosophy-benedetto-croce/,The Philosophy of Benedetto Croce: The Problem of Art and History,,"Carr, Herbert Wildon",1917,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/98%2F09%2F76%2F980976167b584583a3c8a45d687bb5ca%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1923-06-05,1923-07-05,https://shakespeareandco.princeton.edu/members/solome/,Mme de SolomΓ©,"de SolomΓ©, Mme",8.00,,1 month,30,1,,1923-05-29,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-06-06,1923-07-12,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,36,,,https://shakespeareandco.princeton.edu/books/bennett-things-interested/,Things That Have Interested Me,,"Bennett, Arnold",1921,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/42%2Fcc%2Fbe%2F42ccbe4435684d7180b19fe0f00616f5%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-06-06,,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/hergesheimer-java-head/,Java Head,,"Hergesheimer, Joseph",1918,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/42%2Fcc%2Fbe%2F42ccbe4435684d7180b19fe0f00616f5%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1923-06-06,1923-08-06,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",24.00,,2 months,61,2,,1923-06-06,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,;https://iiif-cloud.princeton.edu/iiif/2/42%2Fcc%2Fbe%2F42ccbe4435684d7180b19fe0f00616f5%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1923-06-08,1924-06-08,https://shakespeareandco.princeton.edu/members/lorach/,Mme Lorach,"Lorach, Mme",60.00,,1 year,366,1,,1923-04-23,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1923-06-08,1923-06-08,https://shakespeareandco.princeton.edu/members/fitzgerald-2/,Ellen Fitzgerald,"Fitzgerald, Ellen",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-06-08,1923-06-12,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/mackenzie-vanity-girl/,The Vanity Girl,,"Mackenzie, Compton",1920,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/dd%2Fd4%2Fc5%2Fddd4c51b44084836ab3bd7e8ebc808fd%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1923-06-09,1923-06-09,https://shakespeareandco.princeton.edu/members/garmel-florence/,Florence Garmel,"Garmel, Florence",,,,,,,,40.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1923-06-09,1923-07-09,https://shakespeareandco.princeton.edu/members/conner/,Caroline Conner,"Conner, Caroline",12.00,20.00,1 month,30,1,,1923-06-09,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-06-09,1923-07-02,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/mansfield-garden-party-stories/,The Garden Party and Other Stories,,"Mansfield, Katherine",1922,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/7e%2F89%2Fd9%2F7e89d956d66e4e2893ae3ae67b1b5fa6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-06-11,1923-06-19,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/butcher-memories-george-meredith/,Memories of George Meredith,,"Butcher, Alice Mary Brandreth",1919,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/98%2F09%2F76%2F980976167b584583a3c8a45d687bb5ca%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1923-06-11,1923-07-11,https://shakespeareandco.princeton.edu/members/faxon-l/,L. Faxon,"Faxon, L.",12.00,20.00,1 month,30,1,,1923-06-11,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1923-06-11,1923-12-11,https://shakespeareandco.princeton.edu/members/bourgeois/,M. Bourgeois,"Bourgeois, M.",40.00,,6 months,183,2,AdL,1923-04-05,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-06-11,1923-06-19,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/lawrence-women-love/,Women in Love,,"Lawrence, D. H.",1920,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/98%2F09%2F76%2F980976167b584583a3c8a45d687bb5ca%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-06-12,1923-06-16,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/mackenzie-rich-relatives/,Rich Relatives,,"Mackenzie, Compton",1921,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/dd%2Fd4%2Fc5%2Fddd4c51b44084836ab3bd7e8ebc808fd%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1923-06-12,1924-06-12,https://shakespeareandco.princeton.edu/members/hunter-5/,Mrs. Hunter,"Hunter, Mrs.",88.00,,1 year,366,2,AdL,1923-06-12,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-06-13,,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/cather-one/,One of Ours,,"Cather, Willa",1922,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0e%2F11%2F22%2F0e112265b86349fcb3817e711b264d0a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-06-13,1923-06-20,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/huxley-margin/,On the Margin,,"Huxley, Aldous",1923,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0e%2F11%2F22%2F0e112265b86349fcb3817e711b264d0a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1923-06-15,1923-07-15,https://shakespeareandco.princeton.edu/members/bull-m/,Margaret Bull,"Bull, Margaret",16.00,40.00,1 month,30,2,,1923-06-15,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1923-06-16,1923-07-16,https://shakespeareandco.princeton.edu/members/sargent/,Mr. Sargent,"Sargent, Mr.",12.00,,1 month,30,2,,1923-06-16,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Mr Sargent Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/bd817648-39a7-4e94-8569-055719ecd661/manifest,;https://iiif.princeton.edu/loris/figgy_prod/91%2F71%2F6d%2F91716d209a754f03bb298449766ba845%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-06-16,1923-06-19,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/mackenzie-poor-relations/,Poor Relations,,"Mackenzie, Compton",1919,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/dd%2Fd4%2Fc5%2Fddd4c51b44084836ab3bd7e8ebc808fd%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-06-16,1923-07-20,https://shakespeareandco.princeton.edu/members/sargent/,Mr. Sargent,"Sargent, Mr.",,,,,,,,,Returned,34,,,https://shakespeareandco.princeton.edu/books/george-stiff-lip-novel/,The Stiff Lip: A Novel,,"George, Walter Lionel",1922,,Lending Library Card,"Sylvia Beach, Mr Sargent Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd817648-39a7-4e94-8569-055719ecd661/manifest,https://iiif.princeton.edu/loris/figgy_prod/91%2F71%2F6d%2F91716d209a754f03bb298449766ba845%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-06-16,1923-07-20,https://shakespeareandco.princeton.edu/members/saunders-olivia/,Olivia Saunders,"Saunders, Olivia",,,,,,,,,Returned,34,,,https://shakespeareandco.princeton.edu/books/frazier-golden-bough-study/,The Golden Bough: A Study in Comparative Religion,,"Frazer, James George",1890,,Lending Library Card,"Sylvia Beach, Olivia Saunders Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5dece859-aef4-4bd4-9d2b-c0b5ff596e0b/manifest,https://iiif.princeton.edu/loris/figgy_prod/8f%2F12%2F33%2F8f123385801a4607a4394556c055728a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-06-16,1923-07-02,https://shakespeareandco.princeton.edu/members/sargent/,Mr. Sargent,"Sargent, Mr.",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/galsworthy-forsyte-saga/,The Forsyte Saga,,"Galsworthy, John",1922,,Lending Library Card,"Sylvia Beach, Mr Sargent Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd817648-39a7-4e94-8569-055719ecd661/manifest,https://iiif.princeton.edu/loris/figgy_prod/91%2F71%2F6d%2F91716d209a754f03bb298449766ba845%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1923-06-16,1923-07-16,https://shakespeareandco.princeton.edu/members/saunders-olivia/,Olivia Saunders,"Saunders, Olivia",12.00,,1 month,30,1,,1923-06-16,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Olivia Saunders Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/5dece859-aef4-4bd4-9d2b-c0b5ff596e0b/manifest,;https://iiif.princeton.edu/loris/figgy_prod/8f%2F12%2F33%2F8f123385801a4607a4394556c055728a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1923-06-17,1923-09-17,https://shakespeareandco.princeton.edu/members/lowenfeld/,Mme Lowenfeld,"Lowenfeld, Mme",60.00,,3 months,92,4,,1923-05-19,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1923-06-18,1923-07-18,https://shakespeareandco.princeton.edu/members/beaudains/,Mlle Beaudains,"Beaudains, Mlle",12.00,,1 month,30,1,AdL,1923-06-18,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1923-06-18,1923-07-18,https://shakespeareandco.princeton.edu/members/footner-marjorie/,Marjorie Footner,"Footner, Marjorie",12.00,20.00,1 month,30,1,,1923-06-18,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-06-19,1923-06-30,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/shelley-man-poet/,Shelley: The Man and the Poet,,,,Unidentified. FeΜlix Rabbe's *Shelley: The Man and the Poet* (1888) or Arthur Clutton-Brock's *Shelley: The Man and the Poet* (1910).,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/64%2F86%2F6d%2F64866dd1f8ee4309bc4a3e389fd2938c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-06-19,1923-06-26,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/chesterton-club-queer-trades/,The Club of Queer Trades,,"Chesterton, G. K.",1905,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/dd%2Fd4%2Fc5%2Fddd4c51b44084836ab3bd7e8ebc808fd%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1923-06-19,1923-12-19,https://shakespeareandco.princeton.edu/members/lafitte-mme/,Mme Lafitte,"Lafitte, Mme",35.00,,6 months,183,1,,1923-06-19,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1923-06-20,1923-07-20,https://shakespeareandco.princeton.edu/members/macpherson/,Mrs. MacPherson,"MacPherson, Mrs.",16.00,40.00,1 month,30,2,,1923-06-20,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-06-20,1923-06-28,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/nugent-grand-tour/,The Grand Tour,,"Nugent, Thomas",1749,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0e%2F11%2F22%2F0e112265b86349fcb3817e711b264d0a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-06-21,1923-06-30,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/gissing-town-traveller/,The Town Traveller,,"Gissing, George Robert",1898,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/e0%2Fae%2F6b%2Fe0ae6bec54324349b412353650ee6dab%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1923-06-21,1923-09-21,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",16.00,,3 months,92,1,AdL,1923-06-21,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,;https://iiif-cloud.princeton.edu/iiif/2/e0%2Fae%2F6b%2Fe0ae6bec54324349b412353650ee6dab%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1923-06-23,1923-07-23,https://shakespeareandco.princeton.edu/members/antheil-george/,George Antheil,"Antheil, George",16.00,,1 month,30,2,,1923-06-23,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1923-06-23,1924-06-23,https://shakespeareandco.princeton.edu/members/burt-maud/,Maud Burt,"Burt, Maud",88.00,,1 year,366,2,AdL,1923-06-23,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1923-06-24,1923-09-24,https://shakespeareandco.princeton.edu/members/curtiss-l-n/,L. N. Curtiss,"Curtiss, L. N.",30.00,,3 months,92,1,,1923-06-23,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-06-25,1923-09-11,https://shakespeareandco.princeton.edu/members/pottecher-therese/,Therèse Pottecher,"Pottecher, Therèse",,,,,,,,,Returned,78,,,https://shakespeareandco.princeton.edu/books/conrad-lord-jim/,Lord Jim,,"Conrad, Joseph",1900,,Lending Library Card,"Sylvia Beach, Therèse Pottecher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/69b82696-3801-41ff-b1fd-c792179c5b98/manifest,https://iiif-cloud.princeton.edu/iiif/2/c0%2F05%2Fa6%2Fc005a6b8d76241a98262cea0f950c728%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-06-26,1923-07-05,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/de-la-mare-return/,The Return,,"De la Mare, Walter",1910,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/dd%2Fd4%2Fc5%2Fddd4c51b44084836ab3bd7e8ebc808fd%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1923-06-27,1923-07-27,https://shakespeareandco.princeton.edu/members/martin-allen/,Allen Martin,"Martin, Allen",16.00,20.00,1 month,30,2,,1923-06-27,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-06-28,1923-07-24,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,26,,,https://shakespeareandco.princeton.edu/books/ford-marsden-case-romance/,The Marsden Case: A Romance,,"Ford, Ford Madox",1923,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0e%2F11%2F22%2F0e112265b86349fcb3817e711b264d0a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1923-06-28,1923-07-28,https://shakespeareandco.princeton.edu/members/mason-a-h/,A. H. Mason,"Mason, A. H.",8.00,,1 month,30,1,,1923-06-28,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1923-06-28,1923-07-28,https://shakespeareandco.princeton.edu/members/audiau/,Jean Audiau,"Audiau, Jean",16.00,,1 month,30,2,,1923-06-28,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1923-06-30,1923-07-30,https://shakespeareandco.princeton.edu/members/kershaw/,Mr. Kershaw,"Kershaw, Mr.",8.00,,1 month,30,1,,1923-06-02,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-06-30,1923-07-11,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/snaith-broke-covenden/,Broke of Covenden,,"Snaith, J. C.",1904,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/e0%2Fae%2F6b%2Fe0ae6bec54324349b412353650ee6dab%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-07-02,1923-08-02,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,31,,,https://shakespeareandco.princeton.edu/books/murry-evolution-intellectual/,The Evolution of an Intellectual,,"Murry, John Middleton",1920,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/7e%2F89%2Fd9%2F7e89d956d66e4e2893ae3ae67b1b5fa6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1923-07-02,1924-01-02,https://shakespeareandco.princeton.edu/members/roelvink/,Mrs. Roelvink / Miss Roelvinck,"Roelvink, Mrs.",35.00,,6 months,184,1,,1923-07-02,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-07-02,1923-07-15,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/masefield-everlasting-mercy-widow/,The Everlasting Mercy; And the Widow in the Bye Street,,"Masefield, John",1912,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/7b%2Fd0%2F1f%2F7bd01f8bb8e348b49e9ee3952883396c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-07-02,1923-07-15,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/de-la-mare-poems-1901-1908/,"Poems, 1901 β 1908",,"De la Mare, Walter",1920,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/7b%2Fd0%2F1f%2F7bd01f8bb8e348b49e9ee3952883396c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-07-02,1923-07-04,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/moore-confessions-young-man/,The Confessions of a Young Man,,"Moore, George",1886,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/18%2F8a%2F2d%2F188a2d5b46c44e5e96b6cdaf585e9dd1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Supplement,1923-07-02,1923-10-02,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",16.00,,3 months,92,,,1923-07-02,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1923-07-03,1924-07-03,https://shakespeareandco.princeton.edu/members/oconor-1/,Mr. O'Conor,"O'Conor, Mr.",80.00,,1 year,366,2,,1923-07-03,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1923-07-04,1923-07-04,https://shakespeareandco.princeton.edu/members/price/,Mr. Price,"Price, Mr.",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1923-07-04,1923-08-04,https://shakespeareandco.princeton.edu/members/pougaud/,M. Pougaud,"Pougaud, M.",8.00,,1 month,31,1,,1923-07-04,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-07-04,1923-07-30,https://shakespeareandco.princeton.edu/members/schereck/,Mildred Schereck,"Schereck, Mildred",,,,,,,,,Returned,26,,,https://shakespeareandco.princeton.edu/books/strachey-queen-victoria/,Queen Victoria,,"Strachey, Giles Lytton",1921,,Lending Library Card,"Sylvia Beach, Mildred Schereck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3b15ea0c-ed8d-4b41-80f3-33485620b12c/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2F91%2Fb3%2F5e91b3031c4d49a5a9df2b18e73d411d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-07-04,1923-07-30,https://shakespeareandco.princeton.edu/members/schereck/,Mildred Schereck,"Schereck, Mildred",,,,,,,,,Returned,26,,,https://shakespeareandco.princeton.edu/books/joyce-portrait-artist-young/,A Portrait of the Artist as a Young Man,,"Joyce, James",1916,,Lending Library Card,"Sylvia Beach, Mildred Schereck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3b15ea0c-ed8d-4b41-80f3-33485620b12c/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2F91%2Fb3%2F5e91b3031c4d49a5a9df2b18e73d411d%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1923-07-04,1923-07-04,https://shakespeareandco.princeton.edu/members/navelot/,Mme Navelot,"Navelot, Mme",,,,,,,,7.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-07-05,1923-07-09,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/wells-secret-places-heart/,The Secret Places of the Heart,,"Wells, H. G.",1922,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/dd%2Fd4%2Fc5%2Fddd4c51b44084836ab3bd7e8ebc808fd%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-07-05,1923-09-21,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,78,,,https://shakespeareandco.princeton.edu/books/shaw-irrational-knot/,The Irrational Knot,,"Shaw, George Bernard",1905,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/18%2F8a%2F2d%2F188a2d5b46c44e5e96b6cdaf585e9dd1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-07-05,1923-09-21,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,78,,,https://shakespeareandco.princeton.edu/books/joyce-dubliners/,Dubliners,,"Joyce, James",1914,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/18%2F8a%2F2d%2F188a2d5b46c44e5e96b6cdaf585e9dd1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1923-07-05,1924-07-05,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",60.00,,1 year,366,1,,1923-07-02,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,;https://iiif.princeton.edu/loris/figgy_prod/7e%2F89%2Fd9%2F7e89d956d66e4e2893ae3ae67b1b5fa6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1923-07-05,1923-07-05,https://shakespeareandco.princeton.edu/members/faxon-l/,L. Faxon,"Faxon, L.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-07-05,1923-09-21,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,78,,,https://shakespeareandco.princeton.edu/books/hardy-far-madding-crowd/,Far from the Madding Crowd,,"Hardy, Thomas",1874,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/18%2F8a%2F2d%2F188a2d5b46c44e5e96b6cdaf585e9dd1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-07-05,1923-09-21,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,78,,,https://shakespeareandco.princeton.edu/books/kipling-story-gadsbys-tale/,The Story of the Gadsbys: A Tale without a Plot,,"Kipling, Rudyard",1888,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/18%2F8a%2F2d%2F188a2d5b46c44e5e96b6cdaf585e9dd1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1923-07-06,1923-08-06,https://shakespeareandco.princeton.edu/members/mcgrath-james/,James McGrath,"McGrath, James",16.00,,1 month,31,2,,1923-07-06,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1923-07-07,1923-07-07,https://shakespeareandco.princeton.edu/members/thiebault/,Mlle ThiΓ©bault,"ThiΓ©bault, Mlle",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-07-09,1923-07-11,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/merrick-one-mans-view/,One Man's View,,"Merrick, Leonard",1922,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/dd%2Fd4%2Fc5%2Fddd4c51b44084836ab3bd7e8ebc808fd%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1923-07-10,1923-07-10,https://shakespeareandco.princeton.edu/members/duez/,Mrs. Duez,"Duez, Mrs.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1923-07-11,1923-08-11,https://shakespeareandco.princeton.edu/members/craig-fanny/,Fanny Craig,"Craig, Fanny",12.00,20.00,1 month,31,1,,1923-07-11,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-07-11,1923-07-21,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/galsworthy-dark-flower/,The Dark Flower,,"Galsworthy, John",1913,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/e0%2Fae%2F6b%2Fe0ae6bec54324349b412353650ee6dab%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1923-07-11,1924-07-11,https://shakespeareandco.princeton.edu/members/cerf/,Colette Cerf,"Cerf, Colette",48.00,,1 year,366,1,AdL,1923-03-19,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1923-07-11,1923-08-11,https://shakespeareandco.princeton.edu/members/raub/,Mrs. Raub,"Raub, Mrs.",8.00,7.00,1 month,31,1,,1923-07-11,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-07-11,1923-07-26,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/f-unclear/,F[unclear],,,,Unidentified. Handwriting unclear.,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/dd%2Fd4%2Fc5%2Fddd4c51b44084836ab3bd7e8ebc808fd%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-07-12,1923-07-26,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/hewlett-open-country-comedy/,Open Country: A Comedy with a String,,"Hewlett, Maurice",1909,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/42%2Fcc%2Fbe%2F42ccbe4435684d7180b19fe0f00616f5%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-07-12,1923-07-26,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/lee-handling-words-studies/,The Handling of Words and Other Studies in Literary Psychology,,"Lee, Vernon",1923,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/42%2Fcc%2Fbe%2F42ccbe4435684d7180b19fe0f00616f5%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-07-15,1923-08-03,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/conrad-lord-jim/,Lord Jim,,"Conrad, Joseph",1900,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/7b%2Fd0%2F1f%2F7bd01f8bb8e348b49e9ee3952883396c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-07-15,1923-08-03,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/butler-erewhon-revisited-twenty/,"Erewhon Revisited: Twenty Years Later, Both by the Original Discoverer of the Country and by His Son",,"Butler, Samuel",1901,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/7b%2Fd0%2F1f%2F7bd01f8bb8e348b49e9ee3952883396c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-07-15,1923-08-04,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/carswell-camomile/,The Camomile,,"Carswell, Catherine",1922,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/7b%2Fd0%2F1f%2F7bd01f8bb8e348b49e9ee3952883396c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-07-15,1923-08-04,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/hardy-two-tower/,Two on a Tower,,"Hardy, Thomas",1882,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/7b%2Fd0%2F1f%2F7bd01f8bb8e348b49e9ee3952883396c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-07-15,1923-08-04,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/hardy-trumpet-major/,The Trumpet-Major,,"Hardy, Thomas",1880,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/44%2F3e%2F23%2F443e23d2272a4436913610d2befac4ad%2Fintermediate_file/full/full/0/default.jpg
+Supplement,1923-07-16,1924-06-11,https://shakespeareandco.princeton.edu/members/burt-maud/,Maud Burt,"Burt, Maud",44.00,,"10 months, 26 days",331,3,,1923-07-16,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1923-07-16,1923-08-16,https://shakespeareandco.princeton.edu/members/altan/,Pierre Atlan,"Atlan, Pierre",12.00,20.00,1 month,31,1,,1923-07-16,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1923-07-17,1923-08-17,https://shakespeareandco.princeton.edu/members/neufville-agnes-de/,AgnΓ¨s de Neufville,"de Neufville, AgnΓ¨s",8.00,,1 month,31,1,,1923-06-09,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1923-07-17,1923-10-17,https://shakespeareandco.princeton.edu/members/desternes-3/,Mlle Desternes,"Desternes, Mlle",20.00,20.00,3 months,92,1,,1923-07-17,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1923-07-19,1923-08-19,https://shakespeareandco.princeton.edu/members/winner-harry-e/,Harry E. Winner,"Winner, Harry E.",16.00,40.00,1 month,31,2,,1923-07-19,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Harry E. Winner Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/eebb67ee-2683-4946-a280-f5fb4143ee6e/manifest,;https://iiif.princeton.edu/loris/figgy_prod/80%2F85%2F78%2F8085785a670e40e296c94a9cc0f23781%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1923-07-19,1923-08-19,https://shakespeareandco.princeton.edu/members/savage-steele/,Steele Savage,"Savage, Steele",12.00,20.00,1 month,31,1,,1923-07-19,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Steele Savage Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/80670d2d-a346-4554-996d-53c9266b11ed/manifest,;https://iiif.princeton.edu/loris/figgy_prod/dd%2Fd7%2F04%2Fddd70482950743abbb3574c934ac7dd5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-07-19,1923-07-21,https://shakespeareandco.princeton.edu/members/savage-steele/,Steele Savage,"Savage, Steele",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/stevenson-travels-donkey-vennes/,Travels with a Donkey in the CΓ©vennes,,"Stevenson, Robert Louis",1879,,Lending Library Card,"Sylvia Beach, Steele Savage Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/80670d2d-a346-4554-996d-53c9266b11ed/manifest,https://iiif.princeton.edu/loris/figgy_prod/dd%2Fd7%2F04%2Fddd70482950743abbb3574c934ac7dd5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-07-19,1923-07-23,https://shakespeareandco.princeton.edu/members/winner-harry-e/,Harry E. Winner,"Winner, Harry E.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/chesterton-george-bernard-shaw/,George Bernard Shaw,,"Chesterton, G. K.",1909,,Lending Library Card,"Sylvia Beach, Harry E. Winner Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eebb67ee-2683-4946-a280-f5fb4143ee6e/manifest,https://iiif.princeton.edu/loris/figgy_prod/80%2F85%2F78%2F8085785a670e40e296c94a9cc0f23781%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-07-19,1923-07-23,https://shakespeareandco.princeton.edu/members/winner-harry-e/,Harry E. Winner,"Winner, Harry E.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/moore-memoirs-dead-life/,Memoirs of My Dead Life,,"Moore, George",1906,,Lending Library Card,"Sylvia Beach, Harry E. Winner Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eebb67ee-2683-4946-a280-f5fb4143ee6e/manifest,https://iiif.princeton.edu/loris/figgy_prod/80%2F85%2F78%2F8085785a670e40e296c94a9cc0f23781%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1923-07-19,1923-08-19,https://shakespeareandco.princeton.edu/members/clark-3/,Florence F. Clark,"Clark, Florence F.",16.00,40.00,1 month,31,2,,1923-07-19,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-07-21,1923-08-02,https://shakespeareandco.princeton.edu/members/savage-steele/,Steele Savage,"Savage, Steele",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/nietzsche-nietzsche-wagner-correspondence/,The Nietzsche-Wagner Correspondence,,"Nietzsche, Friedrich;Wagner, Richard",1921,,Lending Library Card,"Sylvia Beach, Steele Savage Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/80670d2d-a346-4554-996d-53c9266b11ed/manifest,https://iiif.princeton.edu/loris/figgy_prod/dd%2Fd7%2F04%2Fddd70482950743abbb3574c934ac7dd5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1923-07-21,1923-08-21,https://shakespeareandco.princeton.edu/members/may-c-h/,C. H. May,"May, C. H.",12.00,20.00,1 month,31,1,,1923-07-21,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-07-21,1923-08-02,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/bennett-lillian/,Lillian,,"Bennett, Arnold",1922,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/e0%2Fae%2F6b%2Fe0ae6bec54324349b412353650ee6dab%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-07-21,1923-08-02,https://shakespeareandco.princeton.edu/members/savage-steele/,Steele Savage,"Savage, Steele",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/tarkington-seventeen-tale-youth/,Seventeen: A Tale of Youth and Summer Time and the Baxter Family Especially William,,"Tarkington, Booth",1916,,Lending Library Card,"Sylvia Beach, Steele Savage Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/80670d2d-a346-4554-996d-53c9266b11ed/manifest,https://iiif.princeton.edu/loris/figgy_prod/dd%2Fd7%2F04%2Fddd70482950743abbb3574c934ac7dd5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-07-21,1923-10-22,https://shakespeareandco.princeton.edu/members/rieder/,M. Rieder,"Rieder, M.",,,,,,,,,Returned,93,,,https://shakespeareandco.princeton.edu/books/mencken-american-language/,The American Language,,"Mencken, H. L.",1919,,Lending Library Card,"Sylvia Beach, Rieder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/559c8919-8881-40ad-b027-67dbf1b23611/manifest,https://iiif.princeton.edu/loris/figgy_prod/6b%2Ffd%2F99%2F6bfd992bb8e742da8b7377869c34b3c2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Supplement,1923-07-21,1923-08-19,https://shakespeareandco.princeton.edu/members/savage-steele/,Steele Savage,"Savage, Steele",4.00,,29 days,29,2,,1923-07-21,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-07-24,1923-08-06,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/corkery-threshold-quiet/,The Threshold of Quiet,,"Corkery, Daniel",1917,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0e%2F11%2F22%2F0e112265b86349fcb3817e711b264d0a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1923-07-25,1924-01-25,https://shakespeareandco.princeton.edu/members/butler-2/,Mrs. Butler,"Butler, Mrs.",50.00,,6 months,184,1,,1923-07-25,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-07-26,1923-07-28,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/mencken-book-burlesques/,A Book of Burlesques,,"Mencken, H. L.",1923,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/dd%2Fd4%2Fc5%2Fddd4c51b44084836ab3bd7e8ebc808fd%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1923-07-26,1924-01-26,https://shakespeareandco.princeton.edu/members/bakshy-alex/,Alex Bakshy,"Bakshy, Alex",52.00,20.00,6 months,184,1,,1923-07-26,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-07-26,1923-08-23,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,28,,,https://shakespeareandco.princeton.edu/books/ervine-impressions-elders/,Some Impressions of My Elders,,"Ervine, St. John G.",1922,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/42%2Fcc%2Fbe%2F42ccbe4435684d7180b19fe0f00616f5%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-07-26,1923-08-23,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,28,,,https://shakespeareandco.princeton.edu/books/cather-antonia/,My Antonia,,"Cather, Willa",1918,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/42%2Fcc%2Fbe%2F42ccbe4435684d7180b19fe0f00616f5%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1923-07-27,1924-01-27,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",28.00,,6 months,184,1,,1923-08-03,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,;https://iiif-cloud.princeton.edu/iiif/2/dd%2Fd4%2Fc5%2Fddd4c51b44084836ab3bd7e8ebc808fd%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1923-07-27,1923-08-27,https://shakespeareandco.princeton.edu/members/hesse/,Mrs. Hesse,"Hesse, Mrs.",12.00,,1 month,31,1,,1923-07-27,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Supplement,1923-07-27,1923-08-23,https://shakespeareandco.princeton.edu/members/hanley/,Frank Hanley,"Hanley, Frank",10.00,,27 days,27,2,,1923-07-27,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-07-28,1923-08-03,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/de-la-mare-riddle/,The Riddle,,"De la Mare, Walter",1923,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/dd%2Fd4%2Fc5%2Fddd4c51b44084836ab3bd7e8ebc808fd%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1923-07-29,1923-08-29,https://shakespeareandco.princeton.edu/members/conlan/,Barnett D. Conlan,"Conlan, Barnett D.",8.00,,1 month,31,1,,1923-07-16,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1923-07-29,1924-07-29,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",50.00,,1 year,366,1,AdL,1923-07-06,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,;https://iiif.princeton.edu/loris/figgy_prod/18%2F8a%2F2d%2F188a2d5b46c44e5e96b6cdaf585e9dd1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1923-07-30,1923-07-30,https://shakespeareandco.princeton.edu/members/frankenburg-edna/,Edna Frankenburg,"Frankenburg, Edna",,,,,,,,7.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1923-07-30,1923-10-30,https://shakespeareandco.princeton.edu/members/deniau/,M. Deniau,"Deniau, M.",20.00,,3 months,92,1,,1923-06-16,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1923-07-30,1923-07-30,https://shakespeareandco.princeton.edu/members/macpherson/,Mrs. MacPherson,"MacPherson, Mrs.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-07-30,1923-08-25,https://shakespeareandco.princeton.edu/members/schereck/,Mildred Schereck,"Schereck, Mildred",,,,,,,,,Returned,26,,,https://shakespeareandco.princeton.edu/books/conrad-within-tides/,Within the Tides,,"Conrad, Joseph",1915,,Lending Library Card,"Sylvia Beach, Mildred Schereck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3b15ea0c-ed8d-4b41-80f3-33485620b12c/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2F91%2Fb3%2F5e91b3031c4d49a5a9df2b18e73d411d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-07-30,1923-08-25,https://shakespeareandco.princeton.edu/members/schereck/,Mildred Schereck,"Schereck, Mildred",,,,,,,,,Returned,26,,,https://shakespeareandco.princeton.edu/books/zangwill-children-ghetto-study/,Children of the Ghetto: A Study of a Peculiar People,,"Zangwill, Israel",1892,,Lending Library Card,"Sylvia Beach, Mildred Schereck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3b15ea0c-ed8d-4b41-80f3-33485620b12c/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2F91%2Fb3%2F5e91b3031c4d49a5a9df2b18e73d411d%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1923-08-01,1923-09-01,https://shakespeareandco.princeton.edu/members/macinnes-william-a/,Captain William A. MacInnes,"MacInnes, Captain William A.",12.00,20.00,1 month,31,1,,1923-08-01,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-08-02,1923-09-17,https://shakespeareandco.princeton.edu/members/savage-steele/,Steele Savage,"Savage, Steele",,,,,,,,,Returned,46,,,https://shakespeareandco.princeton.edu/books/huneker-overtones-book-temperaments/,"Overtones, a Book of Temperaments: Richard Strauss, Parsifal, Verdi, Balzac, Flaubert, Nietzsche, and TurgeΜnieff",,"Huneker, James",1904,,Lending Library Card,"Sylvia Beach, Steele Savage Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/80670d2d-a346-4554-996d-53c9266b11ed/manifest,https://iiif.princeton.edu/loris/figgy_prod/dd%2Fd7%2F04%2Fddd70482950743abbb3574c934ac7dd5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-08-02,1923-08-13,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/macaulay-mystery-geneva-improbable/,Mystery at Geneva: An Improbable Tale of Singular Happenings,,"Macaulay, Rose",1922,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/e0%2Fae%2F6b%2Fe0ae6bec54324349b412353650ee6dab%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-08-02,1923-09-17,https://shakespeareandco.princeton.edu/members/savage-steele/,Steele Savage,"Savage, Steele",,,,,,,,,Returned,46,,,https://shakespeareandco.princeton.edu/books/huneker-variations/,Variations,,"Huneker, James",1922,,Lending Library Card,"Sylvia Beach, Steele Savage Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/80670d2d-a346-4554-996d-53c9266b11ed/manifest,https://iiif.princeton.edu/loris/figgy_prod/dd%2Fd7%2F04%2Fddd70482950743abbb3574c934ac7dd5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-08-03,1923-08-20,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/nichols-fantastica/,Fantastica,,"Nichols, Robert",1923,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/dd%2Fd4%2Fc5%2Fddd4c51b44084836ab3bd7e8ebc808fd%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1923-08-03,1924-02-03,https://shakespeareandco.princeton.edu/members/elsmie/,Mrs. G. Elsmie,"Elsmie, Mrs. G.",50.00,,6 months,184,2,,1923-12-05,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1923-08-03,1924-02-03,https://shakespeareandco.princeton.edu/members/flecker/,Mrs. Flecker,"Flecker, Mrs.",35.00,,6 months,184,1,,1923-07-19,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1923-08-04,1924-08-04,https://shakespeareandco.princeton.edu/members/vox-maximilien/,Maximilien Vox / Samuel William ThΓ©odore Monod / Mr. Monod-Vox,"Vox, Maximilien",64.00,,1 year,366,2,AdL,1923-07-16,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-08-04,,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/butler-note-books-samuel/,The Note-Books of Samuel Butler,,"Butler, Samuel",1907,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/44%2F3e%2F23%2F443e23d2272a4436913610d2befac4ad%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1923-08-04,1923-09-04,https://shakespeareandco.princeton.edu/members/pougaud/,M. Pougaud,"Pougaud, M.",8.00,,1 month,31,1,,1923-08-01,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-08-04,1923-08-13,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/ford-marsden-case-romance/,The Marsden Case: A Romance,,"Ford, Ford Madox",1923,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/44%2F3e%2F23%2F443e23d2272a4436913610d2befac4ad%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1923-08-06,1923-09-06,https://shakespeareandco.princeton.edu/members/eaton-jeanette/,Jeanette Eaton,"Eaton, Jeanette",12.00,20.00,1 month,31,1,,1923-08-06,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-08-06,1923-10-01,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,56,,,https://shakespeareandco.princeton.edu/books/swinnerton-chaste-wife/,The Chaste Wife,,"Swinnerton, Frank",1916,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0e%2F11%2F22%2F0e112265b86349fcb3817e711b264d0a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-08-06,1923-10-01,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,56,,,https://shakespeareandco.princeton.edu/books/jameson-imprudence/,Imprudence,,"Jameson, Storm",1920,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0e%2F11%2F22%2F0e112265b86349fcb3817e711b264d0a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-08-06,1923-10-01,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,56,,,https://shakespeareandco.princeton.edu/books/hergesheimer-bright-shawl/,The Bright Shawl,,"Hergesheimer, Joseph",1922,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0e%2F11%2F22%2F0e112265b86349fcb3817e711b264d0a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-08-06,1923-09-06,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,31,,,https://shakespeareandco.princeton.edu/books/sinclair-divine-fire/,The Divine Fire,,"Sinclair, May",1904,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/7e%2F89%2Fd9%2F7e89d956d66e4e2893ae3ae67b1b5fa6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-08-06,1923-10-01,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,56,,,https://shakespeareandco.princeton.edu/books/douglas-south-wind/,South Wind,,"Douglas, Norman",1917,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0e%2F11%2F22%2F0e112265b86349fcb3817e711b264d0a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1923-08-08,1923-09-08,https://shakespeareandco.princeton.edu/members/kahler-carl/,Carl Kahler,"Kahler, Carl",12.00,20.00,1 month,31,1,,1923-08-08,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1923-08-08,1923-09-08,https://shakespeareandco.princeton.edu/members/ashleigh/,Charles Ashleigh,"Ashleigh, Charles",12.00,20.00,1 month,31,1,,1923-08-08,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-08-09,1923-08-17,https://shakespeareandco.princeton.edu/members/wood-thelma/,Thelma Wood,"Wood, Thelma",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/andersen-fairy-tales-stories/,Fairy Tales,,"Andersen, Hans Christian",,,Lending Library Card,"Sylvia Beach, Miss Thelma Wood Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4fa2ffb1-eb40-4e4a-9f21-a6459eee9457/manifest,https://iiif.princeton.edu/loris/figgy_prod/d5%2F32%2Fc6%2Fd532c602de97450e814516fd79b86ad2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1923-08-09,1923-09-09,https://shakespeareandco.princeton.edu/members/wood-thelma/,Thelma Wood,"Wood, Thelma",16.00,40.00,1 month,31,2,,1923-08-09,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Miss Thelma Wood Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/4fa2ffb1-eb40-4e4a-9f21-a6459eee9457/manifest,;https://iiif.princeton.edu/loris/figgy_prod/d5%2F32%2Fc6%2Fd532c602de97450e814516fd79b86ad2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-08-09,1923-08-17,https://shakespeareandco.princeton.edu/members/wood-thelma/,Thelma Wood,"Wood, Thelma",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/chekhov-schoolmistress-stories/,The Schoolmistress and Other Stories,,"Chekhov, Anton",1921,,Lending Library Card,"Sylvia Beach, Miss Thelma Wood Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4fa2ffb1-eb40-4e4a-9f21-a6459eee9457/manifest,https://iiif.princeton.edu/loris/figgy_prod/d5%2F32%2Fc6%2Fd532c602de97450e814516fd79b86ad2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Supplement,1923-08-13,1923-09-03,https://shakespeareandco.princeton.edu/members/davies-3/,Mrs. H. Davies,"Davies, Mrs. H.",4.00,20.00,3 weeks,21,1,,1923-08-13,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-08-13,1923-08-17,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/bibesco-blame/,I Have Only Myself to Blame,,"Bibesco, Elizabeth",1921,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/e0%2Fae%2F6b%2Fe0ae6bec54324349b412353650ee6dab%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-08-13,1923-08-21,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/hardy-lifes-little-ironies/,"Life's Little Ironies: A Set of Tales, with Some Colloquial Sketches, Entitled, A Few Crusted Characters",,"Hardy, Thomas",1894,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/44%2F3e%2F23%2F443e23d2272a4436913610d2befac4ad%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1923-08-16,1923-09-16,https://shakespeareandco.princeton.edu/members/goldring-douglas/,Douglas Goldring,"Goldring, Douglas",16.00,40.00,1 month,31,2,,1923-08-16,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-08-17,1923-08-29,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/sinclair-belfry/,The Belfry,,"Sinclair, May",1916,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/e0%2Fae%2F6b%2Fe0ae6bec54324349b412353650ee6dab%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-08-17,1923-08-27,https://shakespeareandco.princeton.edu/members/wood-thelma/,Thelma Wood,"Wood, Thelma",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/grimm-grimms-fairy-tales/,Grimms' Fairy Tales,,"Grimm, Jacob;Grimm, Wilhelm",1812,,Lending Library Card,"Sylvia Beach, Miss Thelma Wood Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4fa2ffb1-eb40-4e4a-9f21-a6459eee9457/manifest,https://iiif.princeton.edu/loris/figgy_prod/d5%2F32%2Fc6%2Fd532c602de97450e814516fd79b86ad2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1923-08-17,1924-02-17,https://shakespeareandco.princeton.edu/members/brouse/,Paul Brouse,"Brouse, Paul",67.00,40.00,6 months,184,2,,1923-08-17,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1923-08-19,1923-09-19,https://shakespeareandco.princeton.edu/members/savage-steele/,Steele Savage,"Savage, Steele",16.00,,1 month,31,2,,1923-09-17,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Steele Savage Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/80670d2d-a346-4554-996d-53c9266b11ed/manifest,;https://iiif.princeton.edu/loris/figgy_prod/dd%2Fd7%2F04%2Fddd70482950743abbb3574c934ac7dd5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-08-20,1923-08-25,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/mencken-prejudices-third-series/,Prejudices: Third Series,,"Mencken, H. L.",1922,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/10%2F56%2F21%2F105621f011bf42749a243278d3048ed3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-08-20,1923-09-06,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/essays-books/,Essays on Books,,,,Unidentified. William Lyon Phelps's *Essays on Books* (1914) or Arthur Clutton-Brock's *Essays on Books* (1920).,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/dd%2Fd4%2Fc5%2Fddd4c51b44084836ab3bd7e8ebc808fd%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-08-20,1923-08-31,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/sandburg-cornhuskers/,Cornhuskers,,"Sandburg, Carl",1918,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/10%2F56%2F21%2F105621f011bf42749a243278d3048ed3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1923-08-20,1923-11-20,https://shakespeareandco.princeton.edu/members/archer/,Mrs. J. W. Archer,"Archer, Mrs. J. W.",40.00,40.00,3 months,92,2,,1923-08-20,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1923-08-20,1923-09-20,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",16.00,40.00,1 month,31,2,,1923-08-20,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,;https://iiif.princeton.edu/loris/figgy_prod/10%2F56%2F21%2F105621f011bf42749a243278d3048ed3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1923-08-20,1923-09-20,https://shakespeareandco.princeton.edu/members/laughlin-mr/;https://shakespeareandco.princeton.edu/members/laughlin/,Mr. Laughlin;Mrs. Laughlin,"Laughlin, Mr.;Laughlin, Mrs.",12.00,20.00,1 month,31,1,,1923-08-20,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-08-21,1923-08-29,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/hardy-mayor-casterbridge/,The Mayor of Casterbridge,,"Hardy, Thomas",1886,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/44%2F3e%2F23%2F443e23d2272a4436913610d2befac4ad%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1923-08-24,1923-08-24,https://shakespeareandco.princeton.edu/members/goldring-douglas/,Douglas Goldring,"Goldring, Douglas",,,,,,,,40.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-08-25,1923-12-07,https://shakespeareandco.princeton.edu/members/schereck/,Mildred Schereck,"Schereck, Mildred",,,,,,,,,Returned,104,,,https://shakespeareandco.princeton.edu/books/galsworthy-beyond/,Beyond,,"Galsworthy, John",1917,,Lending Library Card,"Sylvia Beach, Mildred Schereck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3b15ea0c-ed8d-4b41-80f3-33485620b12c/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2F91%2Fb3%2F5e91b3031c4d49a5a9df2b18e73d411d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-08-25,1923-10-22,https://shakespeareandco.princeton.edu/members/schereck/,Mildred Schereck,"Schereck, Mildred",,,,,,,,,Returned,58,,,https://shakespeareandco.princeton.edu/books/wells-kipps-story-simple/,Kipps: The Story of A Simple Soul,,"Wells, H. G.",1905,,Lending Library Card,"Sylvia Beach, Mildred Schereck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3b15ea0c-ed8d-4b41-80f3-33485620b12c/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2F91%2Fb3%2F5e91b3031c4d49a5a9df2b18e73d411d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-08-25,1923-08-27,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/brooks-ordeal-mark-twain/,The Ordeal of Mark Twain,,"Brooks, Van Wyck",1920,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/10%2F56%2F21%2F105621f011bf42749a243278d3048ed3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1923-08-25,1923-08-25,https://shakespeareandco.princeton.edu/members/davies-3/,Mrs. H. Davies,"Davies, Mrs. H.",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1923-08-27,1923-09-27,https://shakespeareandco.princeton.edu/members/allary/,M. Allary,"Allary, M.",12.00,20.00,1 month,31,1,,1923-08-27,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-08-27,1923-09-21,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,25,,,https://shakespeareandco.princeton.edu/books/oneill-emperor-jones/,The Emperor Jones,,"O'Neill, Eugene",1921,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/10%2F56%2F21%2F105621f011bf42749a243278d3048ed3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-08-27,1923-09-03,https://shakespeareandco.princeton.edu/members/wood-thelma/,Thelma Wood,"Wood, Thelma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/folk-lore-legends/,Folk-Lore and Legends,,,,Unidentified. From the Folk-Lore and Legends series published by W. W. Gibbings in the 1880s and 1890s.,Lending Library Card,"Sylvia Beach, Miss Thelma Wood Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4fa2ffb1-eb40-4e4a-9f21-a6459eee9457/manifest,https://iiif.princeton.edu/loris/figgy_prod/d5%2F32%2Fc6%2Fd532c602de97450e814516fd79b86ad2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-08-27,1923-09-03,https://shakespeareandco.princeton.edu/members/wood-thelma/,Thelma Wood,"Wood, Thelma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/wells-outline-history/,The Outline of History,,"Wells, H. G.",1920,,Lending Library Card,"Sylvia Beach, Miss Thelma Wood Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4fa2ffb1-eb40-4e4a-9f21-a6459eee9457/manifest,https://iiif.princeton.edu/loris/figgy_prod/d5%2F32%2Fc6%2Fd532c602de97450e814516fd79b86ad2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1923-08-29,1923-09-29,https://shakespeareandco.princeton.edu/members/conlan/,Barnett D. Conlan,"Conlan, Barnett D.",8.00,,1 month,31,1,,1923-08-13,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-08-29,1923-09-13,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/wells-men-like-gods/,Men Like Gods,,"Wells, H. G.",1923,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/44%2F3e%2F23%2F443e23d2272a4436913610d2befac4ad%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-08-29,1923-09-18,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/london-call-wild/,The Call of the Wild,,"London, Jack",1903,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/e0%2Fae%2F6b%2Fe0ae6bec54324349b412353650ee6dab%2Fintermediate_file/full/full/0/default.jpg
+Crossed out,1923-08-31,,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/abercrombie-principles-english-prosody/,Principles of English Prosody,,"Abercrombie, Lascelles",1923,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/10%2F56%2F21%2F105621f011bf42749a243278d3048ed3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-08-31,1923-09-01,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/santayana-scepticism-animal-faith/,Scepticism and Animal Faith: Introduction to a System of Philosophy,,"Santayana, George",1923,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/10%2F56%2F21%2F105621f011bf42749a243278d3048ed3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-09-01,1923-09-03,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/ellis-little-essays-love/,Little Essays of Love or Virtue,,"Ellis, Havelock",1922,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/10%2F56%2F21%2F105621f011bf42749a243278d3048ed3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1923-09-01,1923-12-01,https://shakespeareandco.princeton.edu/members/chairing/,Mr. Chairing,"Chairing, Mr.",30.00,20.00,3 months,91,1,,1923-09-01,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1923-09-01,1923-10-01,https://shakespeareandco.princeton.edu/members/auchatraire/,M. Auchatraire,"Auchatraire, M.",12.00,20.00,1 month,30,1,,1923-09-01,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-09-01,1923-09-03,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/woolf-monday-tuesday/,Monday or Tuesday,,"Woolf, Virginia",1921,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/10%2F56%2F21%2F105621f011bf42749a243278d3048ed3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-09-03,1923-09-07,https://shakespeareandco.princeton.edu/members/wood-thelma/,Thelma Wood,"Wood, Thelma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/garnett-lady-fox/,Lady into Fox,,"Garnett, David",1922,,Lending Library Card,"Sylvia Beach, Miss Thelma Wood Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4fa2ffb1-eb40-4e4a-9f21-a6459eee9457/manifest,https://iiif.princeton.edu/loris/figgy_prod/d5%2F32%2Fc6%2Fd532c602de97450e814516fd79b86ad2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-09-03,1923-09-07,https://shakespeareandco.princeton.edu/members/wood-thelma/,Thelma Wood,"Wood, Thelma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/ellis-impressions-comments/,Impressions and Comments,,"Ellis, Havelock",1914,,Lending Library Card,"Sylvia Beach, Miss Thelma Wood Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4fa2ffb1-eb40-4e4a-9f21-a6459eee9457/manifest,https://iiif.princeton.edu/loris/figgy_prod/d5%2F32%2Fc6%2Fd532c602de97450e814516fd79b86ad2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-09-03,1923-09-10,https://shakespeareandco.princeton.edu/members/wood-thelma/,Thelma Wood,"Wood, Thelma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/kennedy-legendary-fictions-irish/,Legendary Fictions of the Irish Celts,,"Kennedy, Patrick",1866,,Lending Library Card,"Sylvia Beach, Miss Thelma Wood Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4fa2ffb1-eb40-4e4a-9f21-a6459eee9457/manifest,https://iiif.princeton.edu/loris/figgy_prod/d5%2F32%2Fc6%2Fd532c602de97450e814516fd79b86ad2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-09-03,1923-09-07,https://shakespeareandco.princeton.edu/members/wood-thelma/,Thelma Wood,"Wood, Thelma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/graves-irish-fairy-book/,The Irish Fairy Book,,"Graves, Alfred Perceval",1909,,Lending Library Card,"Sylvia Beach, Miss Thelma Wood Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4fa2ffb1-eb40-4e4a-9f21-a6459eee9457/manifest,https://iiif.princeton.edu/loris/figgy_prod/d5%2F32%2Fc6%2Fd532c602de97450e814516fd79b86ad2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1923-09-03,1923-10-03,https://shakespeareandco.princeton.edu/members/butler-3/,Dorothy Butler,"Butler, Dorothy",12.00,,1 month,30,1,,1923-09-03,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1923-09-03,1923-10-03,https://shakespeareandco.princeton.edu/members/hanley/,Frank Hanley,"Hanley, Frank",16.00,,1 month,30,2,,1923-09-03,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-09-03,1923-09-04,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/frank-rahab/,Rahab,,"Frank, Waldo",1922,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/10%2F56%2F21%2F105621f011bf42749a243278d3048ed3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-09-03,1923-09-04,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/main/,Main,,,,Unidentified. Likely Sinclair Lewis's [*Main Street*](https://shakespeareandco.princeton.edu/books/lewis-main-street-story/) (1920).,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/10%2F56%2F21%2F105621f011bf42749a243278d3048ed3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1923-09-04,1923-10-04,https://shakespeareandco.princeton.edu/members/pougaud/,M. Pougaud,"Pougaud, M.",8.00,,1 month,30,1,,1923-09-03,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-09-04,1923-09-17,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/graves-english-poetry-irregular/,"On English Poetry: Being an Irregular Approach to the Psychology of This Art, from Evidence Mainly Subjective",,"Graves, Robert",1922,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/10%2F56%2F21%2F105621f011bf42749a243278d3048ed3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-09-04,1923-09-05,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/masters-mitch-miller/,Mitch Miller,,"Masters, Edgar Lee",1920,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/10%2F56%2F21%2F105621f011bf42749a243278d3048ed3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-09-05,1923-09-15,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/dell-moon-calf/,Moon-Calf,,"Dell, Floyd",1920,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/10%2F56%2F21%2F105621f011bf42749a243278d3048ed3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1923-09-05,1923-10-05,https://shakespeareandco.princeton.edu/members/kroll-leon/,Leon Kroll,"Kroll, Leon",16.00,40.00,1 month,30,2,,1923-09-05,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-09-06,1923-09-13,https://shakespeareandco.princeton.edu/members/sargent/,Mr. Sargent,"Sargent, Mr.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/galsworthy-villa-rubein/,Villa Rubein,,"Galsworthy, John",1908,,Lending Library Card,"Sylvia Beach, Mr Sargent Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd817648-39a7-4e94-8569-055719ecd661/manifest,https://iiif.princeton.edu/loris/figgy_prod/88%2F66%2Ffb%2F8866fbca467849bfb81f2685c42c2d74%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-09-06,1923-10-29,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,53,,,https://shakespeareandco.princeton.edu/books/ingram-true-chatterton-new/,The True Chatterton: A New Study from Original Documents,,"Ingram, John Henry",1910,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/dd%2Fd4%2Fc5%2Fddd4c51b44084836ab3bd7e8ebc808fd%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1923-09-06,1923-10-06,https://shakespeareandco.princeton.edu/members/sargent/,Mr. Sargent,"Sargent, Mr.",12.00,,1 month,30,2,,1923-09-06,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Mr Sargent Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/bd817648-39a7-4e94-8569-055719ecd661/manifest,;https://iiif.princeton.edu/loris/figgy_prod/88%2F66%2Ffb%2F8866fbca467849bfb81f2685c42c2d74%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-09-06,1923-09-14,https://shakespeareandco.princeton.edu/members/sargent/,Mr. Sargent,"Sargent, Mr.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/galsworthy-dark-flower/,The Dark Flower,,"Galsworthy, John",1913,,Lending Library Card,"Sylvia Beach, Mr Sargent Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd817648-39a7-4e94-8569-055719ecd661/manifest,https://iiif.princeton.edu/loris/figgy_prod/88%2F66%2Ffb%2F8866fbca467849bfb81f2685c42c2d74%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-09-06,1923-09-17,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/moore-lewis-seymour-women/,Lewis Seymour and Some Women,,"Moore, George",1916,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/7e%2F89%2Fd9%2F7e89d956d66e4e2893ae3ae67b1b5fa6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-09-07,1923-09-10,https://shakespeareandco.princeton.edu/members/wood-thelma/,Thelma Wood,"Wood, Thelma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/chekhov-lady-dog/,The Lady with the Dog,,"Chekhov, Anton",1917,,Lending Library Card,"Sylvia Beach, Miss Thelma Wood Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4fa2ffb1-eb40-4e4a-9f21-a6459eee9457/manifest,https://iiif.princeton.edu/loris/figgy_prod/d5%2F32%2Fc6%2Fd532c602de97450e814516fd79b86ad2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-09-07,1923-09-10,https://shakespeareandco.princeton.edu/members/wood-thelma/,Thelma Wood,"Wood, Thelma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/lear-book-nonsense/,A Book of Nonsense,,"Lear, Edward",1846,,Lending Library Card,"Sylvia Beach, Miss Thelma Wood Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4fa2ffb1-eb40-4e4a-9f21-a6459eee9457/manifest,https://iiif.princeton.edu/loris/figgy_prod/d5%2F32%2Fc6%2Fd532c602de97450e814516fd79b86ad2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1923-09-07,1923-10-07,https://shakespeareandco.princeton.edu/members/jaffe-p/,P. Jaffe,"Jaffe, P.",12.00,20.00,1 month,30,1,,1923-09-07,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-09-07,1923-09-10,https://shakespeareandco.princeton.edu/members/wood-thelma/,Thelma Wood,"Wood, Thelma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/chekhov-horse-stealers-stories/,The Horse-Stealers and Other Stories,,"Chekhov, Anton",1921,,Lending Library Card,"Sylvia Beach, Miss Thelma Wood Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4fa2ffb1-eb40-4e4a-9f21-a6459eee9457/manifest,https://iiif.princeton.edu/loris/figgy_prod/d5%2F32%2Fc6%2Fd532c602de97450e814516fd79b86ad2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-09-07,1923-09-10,https://shakespeareandco.princeton.edu/members/wood-thelma/,Thelma Wood,"Wood, Thelma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/chekhov-note-books-anton/,"The Note-Books of Anton Tchekhov, Together with Reminiscences of Tchekhov by Maxim Gorky",,"Chekhov, Anton",1921,,Lending Library Card,"Sylvia Beach, Miss Thelma Wood Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4fa2ffb1-eb40-4e4a-9f21-a6459eee9457/manifest,https://iiif.princeton.edu/loris/figgy_prod/d5%2F32%2Fc6%2Fd532c602de97450e814516fd79b86ad2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-09-07,1923-09-10,https://shakespeareandco.princeton.edu/members/wood-thelma/,Thelma Wood,"Wood, Thelma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/carroll-alices-adventures-wonderland/,Alice's Adventures in Wonderland,,"Carroll, Lewis",1865,,Lending Library Card,"Sylvia Beach, Miss Thelma Wood Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4fa2ffb1-eb40-4e4a-9f21-a6459eee9457/manifest,https://iiif.princeton.edu/loris/figgy_prod/d5%2F32%2Fc6%2Fd532c602de97450e814516fd79b86ad2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1923-09-08,1924-09-08,https://shakespeareandco.princeton.edu/members/harrison-jane/,Jane Ellen Harrison,"Harrison, Jane Ellen",88.00,,1 year,366,2,AdL,1923-09-08,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1923-09-08,1923-10-08,https://shakespeareandco.princeton.edu/members/kahler-carl/,Carl Kahler,"Kahler, Carl",12.00,,1 month,30,1,,1923-09-07,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-09-10,1923-09-13,https://shakespeareandco.princeton.edu/members/wood-thelma/,Thelma Wood,"Wood, Thelma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/ellis-new-spirit/,The New Spirit,,"Ellis, Havelock",1890,,Lending Library Card,"Sylvia Beach, Miss Thelma Wood Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4fa2ffb1-eb40-4e4a-9f21-a6459eee9457/manifest,https://iiif.princeton.edu/loris/figgy_prod/5c%2Fa4%2F2f%2F5ca42ffd8e51478b97a8ca0fe08ad094%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-09-10,1923-09-13,https://shakespeareandco.princeton.edu/members/wood-thelma/,Thelma Wood,"Wood, Thelma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/nock-freeman/,The Freeman,,,,,Lending Library Card,"Sylvia Beach, Miss Thelma Wood Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4fa2ffb1-eb40-4e4a-9f21-a6459eee9457/manifest,https://iiif.princeton.edu/loris/figgy_prod/5c%2Fa4%2F2f%2F5ca42ffd8e51478b97a8ca0fe08ad094%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-09-10,1923-09-13,https://shakespeareandco.princeton.edu/members/wood-thelma/,Thelma Wood,"Wood, Thelma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/johnston-witch/,The Witch,,"Johnston, Mary",1914,,Lending Library Card,"Sylvia Beach, Miss Thelma Wood Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4fa2ffb1-eb40-4e4a-9f21-a6459eee9457/manifest,https://iiif.princeton.edu/loris/figgy_prod/5c%2Fa4%2F2f%2F5ca42ffd8e51478b97a8ca0fe08ad094%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-09-10,1923-09-26,https://shakespeareandco.princeton.edu/members/wood-thelma/,Thelma Wood,"Wood, Thelma",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/chekhov-cooks-wedding-stories/,"The Cook's Wedding, and Other Stories",,"Chekhov, Anton",1922,,Lending Library Card,"Sylvia Beach, Miss Thelma Wood Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4fa2ffb1-eb40-4e4a-9f21-a6459eee9457/manifest,https://iiif.princeton.edu/loris/figgy_prod/5c%2Fa4%2F2f%2F5ca42ffd8e51478b97a8ca0fe08ad094%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1923-09-10,1923-10-10,https://shakespeareandco.princeton.edu/members/kato/,Hana Kato,"Kato, Hana",12.00,20.00,1 month,30,1,,1923-09-10,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-09-10,1923-09-13,https://shakespeareandco.princeton.edu/members/wood-thelma/,Thelma Wood,"Wood, Thelma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/leacock-winsome-winnie-new/,Winsome Winnie: And Other New Nonsense Novels,,"Leacock, Stephen",1920,,Lending Library Card,"Sylvia Beach, Miss Thelma Wood Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4fa2ffb1-eb40-4e4a-9f21-a6459eee9457/manifest,https://iiif.princeton.edu/loris/figgy_prod/5c%2Fa4%2F2f%2F5ca42ffd8e51478b97a8ca0fe08ad094%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-09-10,1923-09-19,https://shakespeareandco.princeton.edu/members/joyce-lucia/,Lucia Joyce,"Joyce, Lucia",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/wilde-ideal-husband/,An Ideal Husband,,"Wilde, Oscar",1899,,Lending Library Card,"Lucia Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1923-09-10,1923-09-19,https://shakespeareandco.princeton.edu/members/joyce-lucia/,Lucia Joyce,"Joyce, Lucia",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/bennett-lillian/,Lillian,,"Bennett, Arnold",1922,,Lending Library Card,"Lucia Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Subscription,1923-09-10,1923-10-10,https://shakespeareandco.princeton.edu/members/goodwin-murray/,Murray Goodwin,"Goodwin, Murray",12.00,20.00,1 month,30,1,,1923-09-10,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1923-09-12,1923-10-12,https://shakespeareandco.princeton.edu/members/allen/,Mrs. Allen,"Allen, Mrs.",12.00,20.00,1 month,30,1,,1923-09-12,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-09-13,1923-09-29,https://shakespeareandco.princeton.edu/members/sargent/,Mr. Sargent,"Sargent, Mr.",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/george-second-blooming/,The Second Blooming,,"George, Walter Lionel",1914,,Lending Library Card,"Sylvia Beach, Mr Sargent Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd817648-39a7-4e94-8569-055719ecd661/manifest,https://iiif.princeton.edu/loris/figgy_prod/88%2F66%2Ffb%2F8866fbca467849bfb81f2685c42c2d74%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-09-13,1923-09-29,https://shakespeareandco.princeton.edu/members/sargent/,Mr. Sargent,"Sargent, Mr.",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/gibbs-wounded-souls/,Wounded Souls,,"Gibbs, Philip",1920,,Lending Library Card,"Sylvia Beach, Mr Sargent Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd817648-39a7-4e94-8569-055719ecd661/manifest,https://iiif.princeton.edu/loris/figgy_prod/88%2F66%2Ffb%2F8866fbca467849bfb81f2685c42c2d74%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-09-14,1923-09-26,https://shakespeareandco.princeton.edu/members/wood-thelma/,Thelma Wood,"Wood, Thelma",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/strachey-eminent-victorians/,Eminent Victorians,,"Strachey, Giles Lytton",1918,,Lending Library Card,"Sylvia Beach, Miss Thelma Wood Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4fa2ffb1-eb40-4e4a-9f21-a6459eee9457/manifest,https://iiif.princeton.edu/loris/figgy_prod/5c%2Fa4%2F2f%2F5ca42ffd8e51478b97a8ca0fe08ad094%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-09-14,1923-09-17,https://shakespeareandco.princeton.edu/members/wood-thelma/,Thelma Wood,"Wood, Thelma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/dostoyevsky-eternal-husband-stories/,The Eternal Husband and Other Stories,,"Dostoyevsky, Fyodor",1917,,Lending Library Card,"Sylvia Beach, Miss Thelma Wood Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4fa2ffb1-eb40-4e4a-9f21-a6459eee9457/manifest,https://iiif.princeton.edu/loris/figgy_prod/5c%2Fa4%2F2f%2F5ca42ffd8e51478b97a8ca0fe08ad094%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-09-14,1923-09-17,https://shakespeareandco.princeton.edu/members/wood-thelma/,Thelma Wood,"Wood, Thelma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/croce-poetry-dante/,The Poetry of Dante,,"Croce, Benedetto",1922,,Lending Library Card,"Sylvia Beach, Miss Thelma Wood Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4fa2ffb1-eb40-4e4a-9f21-a6459eee9457/manifest,https://iiif.princeton.edu/loris/figgy_prod/5c%2Fa4%2F2f%2F5ca42ffd8e51478b97a8ca0fe08ad094%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-09-15,1923-09-17,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/ellis-dance-life/,The Dance of Life,,"Ellis, Havelock",1923,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/10%2F56%2F21%2F105621f011bf42749a243278d3048ed3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1923-09-17,1923-10-17,https://shakespeareandco.princeton.edu/members/duques-allantaz/,Mr. Duques-Allantaz,"Duques-Allantaz, Mr.",12.00,,1 month,30,1,AdL,1923-09-17,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-09-17,1923-09-18,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/pound-pavannes-divisions/,Pavannes and Divisions,,"Pound, Ezra",1918,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/10%2F56%2F21%2F105621f011bf42749a243278d3048ed3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-09-17,,https://shakespeareandco.princeton.edu/members/wood-thelma/,Thelma Wood,"Wood, Thelma",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/nock-freeman/,The Freeman,,,,,Lending Library Card,"Sylvia Beach, Miss Thelma Wood Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4fa2ffb1-eb40-4e4a-9f21-a6459eee9457/manifest,https://iiif.princeton.edu/loris/figgy_prod/5c%2Fa4%2F2f%2F5ca42ffd8e51478b97a8ca0fe08ad094%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-09-17,1923-10-16,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,29,,,https://shakespeareandco.princeton.edu/books/walpole-secret-city-novel/,The Secret City: A Novel in Three Parts,,"Walpole, Hugh",1919,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/7e%2F89%2Fd9%2F7e89d956d66e4e2893ae3ae67b1b5fa6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-09-17,1923-09-20,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/williams-kora-hell-improvisations/,Kora in Hell: Improvisations,,"Williams, William Carlos",1920,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/10%2F56%2F21%2F105621f011bf42749a243278d3048ed3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-09-17,1923-09-18,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/poems-2/,Poems,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/10%2F56%2F21%2F105621f011bf42749a243278d3048ed3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-09-17,1923-10-11,https://shakespeareandco.princeton.edu/members/wood-thelma/,Thelma Wood,"Wood, Thelma",,,,,,,,,Returned,24,,,https://shakespeareandco.princeton.edu/books/wells-outline-history/,The Outline of History,,"Wells, H. G.",1920,,Lending Library Card,"Sylvia Beach, Miss Thelma Wood Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4fa2ffb1-eb40-4e4a-9f21-a6459eee9457/manifest,https://iiif.princeton.edu/loris/figgy_prod/5c%2Fa4%2F2f%2F5ca42ffd8e51478b97a8ca0fe08ad094%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-09-17,1923-10-20,https://shakespeareandco.princeton.edu/members/rhys/,Mr. Rhys,"Rhys, Mr.",,,,,,,,,Returned,33,,,https://shakespeareandco.princeton.edu/books/dostoyevsky-brothers-karamazov/,The Brothers Karamazov,,"Dostoyevsky, Fyodor",1880,,Lending Library Card,"Sylvia Beach, Rhys Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0fcf5eb6-f872-481c-a304-e45a0c9fe472/manifest,https://iiif.princeton.edu/loris/figgy_prod/d9%2F94%2Fe4%2Fd994e47f098b4633a08d651483db361c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1923-09-17,1923-10-17,https://shakespeareandco.princeton.edu/members/rhys/,Mr. Rhys,"Rhys, Mr.",8.00,,1 month,30,1,,1923-09-17,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Rhys Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/0fcf5eb6-f872-481c-a304-e45a0c9fe472/manifest,;https://iiif.princeton.edu/loris/figgy_prod/d9%2F94%2Fe4%2Fd994e47f098b4633a08d651483db361c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-09-17,1923-09-26,https://shakespeareandco.princeton.edu/members/wood-thelma/,Thelma Wood,"Wood, Thelma",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/gogol-dead-souls/,Dead Souls,2 vols.,"Gogol, Nikolai",1842,,Lending Library Card,"Sylvia Beach, Miss Thelma Wood Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4fa2ffb1-eb40-4e4a-9f21-a6459eee9457/manifest,https://iiif.princeton.edu/loris/figgy_prod/5c%2Fa4%2F2f%2F5ca42ffd8e51478b97a8ca0fe08ad094%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-09-17,1923-09-20,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/cather-one/,One of Ours,,"Cather, Willa",1922,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/10%2F56%2F21%2F105621f011bf42749a243278d3048ed3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-09-17,1923-09-26,https://shakespeareandco.princeton.edu/members/wood-thelma/,Thelma Wood,"Wood, Thelma",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/norris-shanghaied/,Shanghaied,,"Norris, Frank",1920,,Lending Library Card,"Sylvia Beach, Miss Thelma Wood Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4fa2ffb1-eb40-4e4a-9f21-a6459eee9457/manifest,https://iiif.princeton.edu/loris/figgy_prod/5c%2Fa4%2F2f%2F5ca42ffd8e51478b97a8ca0fe08ad094%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-09-17,1923-09-26,https://shakespeareandco.princeton.edu/members/wood-thelma/,Thelma Wood,"Wood, Thelma",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/schnitzler-casanovas-homecoming/,Casanova's Homecoming,,"Schnitzler, Arthur",1922,,Lending Library Card,"Sylvia Beach, Miss Thelma Wood Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4fa2ffb1-eb40-4e4a-9f21-a6459eee9457/manifest,https://iiif.princeton.edu/loris/figgy_prod/5c%2Fa4%2F2f%2F5ca42ffd8e51478b97a8ca0fe08ad094%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-09-18,1923-09-26,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/sinnett-growth-soul/,The Growth of the Soul,Vol. 1,"Sinnett, A. P.",1918,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/10%2F56%2F21%2F105621f011bf42749a243278d3048ed3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-09-18,1923-09-29,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/ford-marsden-case-romance/,The Marsden Case: A Romance,,"Ford, Ford Madox",1923,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/10%2F56%2F21%2F105621f011bf42749a243278d3048ed3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-09-18,1923-09-29,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/sinnett-growth-soul/,The Growth of the Soul,Vol. 2,"Sinnett, A. P.",1918,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/10%2F56%2F21%2F105621f011bf42749a243278d3048ed3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-09-18,1923-09-27,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/woolf-jacobs-room/,Jacob's Room,,"Woolf, Virginia",1922,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/44%2F3e%2F23%2F443e23d2272a4436913610d2befac4ad%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-09-18,1923-09-20,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/sitwell-hundred-one-harlequins/,The Hundred and One Harlequins,,"Sitwell, Sacheverell",1922,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/10%2F56%2F21%2F105621f011bf42749a243278d3048ed3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-09-18,1923-09-27,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/lewis-main-street-story/,Main Street: The Story of Carol Kennicott,,"Lewis, Sinclair",1920,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/44%2F3e%2F23%2F443e23d2272a4436913610d2befac4ad%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-09-18,1923-10-04,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/mansfield-garden-party-stories/,The Garden Party and Other Stories,,"Mansfield, Katherine",1922,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/e0%2Fae%2F6b%2Fe0ae6bec54324349b412353650ee6dab%2Fintermediate_file/full/full/0/default.jpg
+Crossed out,1923-09-18,,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/bennett-mr-prohack/,Mr. Prohack,,"Bennett, Arnold",1922,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/44%2F3e%2F23%2F443e23d2272a4436913610d2befac4ad%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-09-18,1923-09-20,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/pound-instigations-ezra-pound/,"Instigations of Ezra Pound: Together with an Essay on the Chinese Written Character, by Ernest Fenollosa",,"Pound, Ezra;Fenollosa, Ernest",1920,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/10%2F56%2F21%2F105621f011bf42749a243278d3048ed3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Supplement,1923-09-18,1923-10-06,https://shakespeareandco.princeton.edu/members/esler/,Mrs. Esler,"Esler, Mrs.",4.00,20.00,18 days,18,1,,1923-09-18,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-09-18,1923-09-26,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/sandburg-smoke-steel/,Smoke and Steel,,"Sandburg, Carl",1921,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/10%2F56%2F21%2F105621f011bf42749a243278d3048ed3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1923-09-19,1923-12-19,https://shakespeareandco.princeton.edu/members/koop/,Miss Koop,"Koop, Miss",30.00,20.00,3 months,91,1,,1923-09-19,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-09-19,1923-09-21,https://shakespeareandco.princeton.edu/members/joyce-lucia/,Lucia Joyce,"Joyce, Lucia",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/wilde-importance-earnest-trivial/,The Importance of Being Earnest: A Trivial Comedy for Serious People,,"Wilde, Oscar",1899,,Lending Library Card,"Lucia Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Subscription,1923-09-19,1923-10-19,https://shakespeareandco.princeton.edu/members/juta-henry/,Henry Juta,"Juta, Henry",16.00,40.00,1 month,30,2,,1923-09-19,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1923-09-19,1923-10-19,https://shakespeareandco.princeton.edu/members/savage-steele/,Steele Savage,"Savage, Steele",16.00,,1 month,30,2,,1923-10-17,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Steele Savage Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/80670d2d-a346-4554-996d-53c9266b11ed/manifest,https://iiif.princeton.edu/loris/figgy_prod/dd%2Fd7%2F04%2Fddd70482950743abbb3574c934ac7dd5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-09-19,1923-09-22,https://shakespeareandco.princeton.edu/members/savage-steele/,Steele Savage,"Savage, Steele",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/moore-evelyn-inness/,Evelyn Innes,,"Moore, George",1898,,Lending Library Card,"Sylvia Beach, Steele Savage Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/80670d2d-a346-4554-996d-53c9266b11ed/manifest,https://iiif.princeton.edu/loris/figgy_prod/dd%2Fd7%2F04%2Fddd70482950743abbb3574c934ac7dd5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Crossed out,1923-09-19,,https://shakespeareandco.princeton.edu/members/savage-steele/,Steele Savage,"Savage, Steele",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/dostoyevsky-idiot/,The Idiot,,"Dostoyevsky, Fyodor",1874,,Lending Library Card,"Sylvia Beach, Steele Savage Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/80670d2d-a346-4554-996d-53c9266b11ed/manifest,https://iiif.princeton.edu/loris/figgy_prod/dd%2Fd7%2F04%2Fddd70482950743abbb3574c934ac7dd5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-09-19,1923-09-22,https://shakespeareandco.princeton.edu/members/savage-steele/,Steele Savage,"Savage, Steele",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/jew/,The Jew,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Steele Savage Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/80670d2d-a346-4554-996d-53c9266b11ed/manifest,https://iiif.princeton.edu/loris/figgy_prod/dd%2Fd7%2F04%2Fddd70482950743abbb3574c934ac7dd5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1923-09-20,1923-10-20,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",32.00,,1 month,30,4,,1923-09-17,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,;https://iiif.princeton.edu/loris/figgy_prod/10%2F56%2F21%2F105621f011bf42749a243278d3048ed3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1923-09-21,1923-10-21,https://shakespeareandco.princeton.edu/members/savy/,Alice Savy,"Savy, Alice",12.00,20.00,1 month,30,1,,1923-09-21,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Alice Savy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/6bff5a62-eced-4f79-a6f3-649cab124b38/manifest,;https://iiif.princeton.edu/loris/figgy_prod/e4%2F77%2F6d%2Fe4776d9e1d694824804a09dfddc43004%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-09-21,1923-10-06,https://shakespeareandco.princeton.edu/members/savy/,Alice Savy,"Savy, Alice",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/pater-marius-epicurean/,Marius the Epicurean,2 vols.,"Pater, Walter",1885,,Lending Library Card,"Sylvia Beach, Alice Savy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6bff5a62-eced-4f79-a6f3-649cab124b38/manifest,https://iiif.princeton.edu/loris/figgy_prod/e4%2F77%2F6d%2Fe4776d9e1d694824804a09dfddc43004%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1923-09-21,1923-12-21,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",16.00,,3 months,91,1,,1923-10-04,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,;https://iiif-cloud.princeton.edu/iiif/2/e0%2Fae%2F6b%2Fe0ae6bec54324349b412353650ee6dab%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-09-22,1923-10-17,https://shakespeareandco.princeton.edu/members/savage-steele/,Steele Savage,"Savage, Steele",,,,,,,,,Returned,25,,,https://shakespeareandco.princeton.edu/books/dostoyevsky-white-nights-stories/,White Nights and Other Stories,,"Dostoyevsky, Fyodor",1923,,Lending Library Card,"Sylvia Beach, Steele Savage Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/80670d2d-a346-4554-996d-53c9266b11ed/manifest,https://iiif.princeton.edu/loris/figgy_prod/dd%2Fd7%2F04%2Fddd70482950743abbb3574c934ac7dd5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-09-22,1923-10-17,https://shakespeareandco.princeton.edu/members/savage-steele/,Steele Savage,"Savage, Steele",,,,,,,,,Returned,25,,,https://shakespeareandco.princeton.edu/books/cellini-life-benvenuto-cellini/,The Life of Benvenuto Cellini,,"Cellini, Benvenuto",1906,,Lending Library Card,"Sylvia Beach, Steele Savage Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/80670d2d-a346-4554-996d-53c9266b11ed/manifest,https://iiif.princeton.edu/loris/figgy_prod/dd%2Fd7%2F04%2Fddd70482950743abbb3574c934ac7dd5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1923-09-22,1924-03-22,https://shakespeareandco.princeton.edu/members/delorne/,Mlle Delorne,"Delorne, Mlle",35.00,,6 months,182,1,,1923-06-30,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-09-22,1923-10-20,https://shakespeareandco.princeton.edu/members/joyce-lucia/,Lucia Joyce,"Joyce, Lucia",,,,,,,,,Returned,28,,,https://shakespeareandco.princeton.edu/books/stevenson-strange-case-dr/,Strange Case of Dr. Jekyll and Mr. Hyde,,"Stevenson, Robert Louis",1886,,Lending Library Card,"Lucia Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1923-09-22,1923-09-25,https://shakespeareandco.princeton.edu/members/joyce-lucia/,Lucia Joyce,"Joyce, Lucia",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/wilde-lady-windermeres-fan/,Lady Windermere's Fan: A Play about a Good Woman,,"Wilde, Oscar",1893,,Lending Library Card,"Lucia Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1923-09-22,1923-10-20,https://shakespeareandco.princeton.edu/members/joyce-lucia/,Lucia Joyce,"Joyce, Lucia",,,,,,,,,Returned,28,,,https://shakespeareandco.princeton.edu/books/wilde-salome/,SalomΓ©,,"Wilde, Oscar",1891,,Lending Library Card,"Lucia Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1923-09-23,1923-10-13,https://shakespeareandco.princeton.edu/members/wallace-richard/,Richard Wallace,"Wallace, Richard",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/loeb-broom/,Broom,,,,,Lending Library Card,"Sylvia Beach, Mr. Richard Wallace Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f790bc37-4af4-4e1f-b62e-a9583333cfaa/manifest,https://iiif.princeton.edu/loris/figgy_prod/54%2F3d%2F32%2F543d32e9e8f14c5d8a496eeac070d2a8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-09-23,1923-10-13,https://shakespeareandco.princeton.edu/members/wallace-richard/,Richard Wallace,"Wallace, Richard",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/witness/,Witness,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Mr. Richard Wallace Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f790bc37-4af4-4e1f-b62e-a9583333cfaa/manifest,https://iiif.princeton.edu/loris/figgy_prod/54%2F3d%2F32%2F543d32e9e8f14c5d8a496eeac070d2a8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-09-23,1923-10-13,https://shakespeareandco.princeton.edu/members/wallace-richard/,Richard Wallace,"Wallace, Richard",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/douglas-sunday-express/,Sunday Express,,,,,Lending Library Card,"Sylvia Beach, Mr. Richard Wallace Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f790bc37-4af4-4e1f-b62e-a9583333cfaa/manifest,https://iiif.princeton.edu/loris/figgy_prod/54%2F3d%2F32%2F543d32e9e8f14c5d8a496eeac070d2a8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-09-23,1923-10-13,https://shakespeareandco.princeton.edu/members/wallace-richard/,Richard Wallace,"Wallace, Richard",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/nock-freeman/,The Freeman,"Vol. 5, no. 123, Jul 19, 1922",,,,Lending Library Card,"Sylvia Beach, Mr. Richard Wallace Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f790bc37-4af4-4e1f-b62e-a9583333cfaa/manifest,https://iiif.princeton.edu/loris/figgy_prod/54%2F3d%2F32%2F543d32e9e8f14c5d8a496eeac070d2a8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-09-23,,https://shakespeareandco.princeton.edu/members/wallace-richard/,Richard Wallace,"Wallace, Richard",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/dublin-review/,The Dublin Review,"Vol. 171, no. 342 β 343, Jul β Dec 1922",,,,Lending Library Card,"Sylvia Beach, Mr. Richard Wallace Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f790bc37-4af4-4e1f-b62e-a9583333cfaa/manifest,https://iiif.princeton.edu/loris/figgy_prod/54%2F3d%2F32%2F543d32e9e8f14c5d8a496eeac070d2a8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-09-23,,https://shakespeareandco.princeton.edu/members/wallace-richard/,Richard Wallace,"Wallace, Richard",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/evening-sun/,Baltimore Evening Sun,"Aug 3, 1922",,,,Lending Library Card,"Sylvia Beach, Mr. Richard Wallace Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f790bc37-4af4-4e1f-b62e-a9583333cfaa/manifest,https://iiif.princeton.edu/loris/figgy_prod/54%2F3d%2F32%2F543d32e9e8f14c5d8a496eeac070d2a8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-09-23,1923-10-13,https://shakespeareandco.princeton.edu/members/wallace-richard/,Richard Wallace,"Wallace, Richard",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/croly-new-republic/,The New Republic,,,,"Antoinette Bernheim's lending library card includes the following notation next to her borrow on March 1, 1939: 39/10/2. There is no issue of *The New Republic* on that date.",Lending Library Card,"Sylvia Beach, Mr. Richard Wallace Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f790bc37-4af4-4e1f-b62e-a9583333cfaa/manifest,https://iiif.princeton.edu/loris/figgy_prod/54%2F3d%2F32%2F543d32e9e8f14c5d8a496eeac070d2a8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1923-09-24,1923-12-24,https://shakespeareandco.princeton.edu/members/harrison-miss/,Miss Harrison,"Harrison, Miss",30.00,,3 months,91,2,,1923-09-24,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1923-09-25,,https://shakespeareandco.princeton.edu/members/tibbits/,Mrs. Tibbits,"Tibbits, Mrs.",,,,,,,1923-09-25,,,,,,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-09-25,1923-10-20,https://shakespeareandco.princeton.edu/members/joyce-lucia/,Lucia Joyce,"Joyce, Lucia",,,,,,,,,Returned,25,,,https://shakespeareandco.princeton.edu/books/ibsen-dolls-house/,A Doll's House,,"Ibsen, Henrik",1889,,Lending Library Card,"Lucia Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1923-09-25,1923-10-08,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/strindberg-plays-august-strindberg-second/,Plays by August Strindberg: Second Series,,"Strindberg, August",1913,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/18%2F8a%2F2d%2F188a2d5b46c44e5e96b6cdaf585e9dd1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1923-09-25,1923-12-25,https://shakespeareandco.princeton.edu/members/loeb-harold/,Harold Loeb,"Loeb, Harold",30.00,,3 months,91,1,,1923-09-25,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1923-09-26,1923-10-26,https://shakespeareandco.princeton.edu/members/davis-mary/,Mary Davis / Mrs. N. D. Davis,"Davis, Mary",16.00,40.00,1 month,30,2,,1923-09-26,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-09-26,1923-09-27,https://shakespeareandco.princeton.edu/members/wood-thelma/,Thelma Wood,"Wood, Thelma",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/nock-freeman/,The Freeman,,,,,Lending Library Card,"Sylvia Beach, Miss Thelma Wood Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4fa2ffb1-eb40-4e4a-9f21-a6459eee9457/manifest,https://iiif.princeton.edu/loris/figgy_prod/5c%2Fa4%2F2f%2F5ca42ffd8e51478b97a8ca0fe08ad094%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-09-26,1923-09-27,https://shakespeareandco.princeton.edu/members/wood-thelma/,Thelma Wood,"Wood, Thelma",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/butts-speed-plough-stories/,Speed the Plough and Other Stories,,"Butts, Mary",1923,,Lending Library Card,"Sylvia Beach, Miss Thelma Wood Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4fa2ffb1-eb40-4e4a-9f21-a6459eee9457/manifest,https://iiif.princeton.edu/loris/figgy_prod/5c%2Fa4%2F2f%2F5ca42ffd8e51478b97a8ca0fe08ad094%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-09-26,1923-10-11,https://shakespeareandco.princeton.edu/members/wood-thelma/,Thelma Wood,"Wood, Thelma",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/english-italian-dictionary/,English-Italian Dictionary,,,,Unidentified edition.,Lending Library Card,"Sylvia Beach, Miss Thelma Wood Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4fa2ffb1-eb40-4e4a-9f21-a6459eee9457/manifest,https://iiif.princeton.edu/loris/figgy_prod/5c%2Fa4%2F2f%2F5ca42ffd8e51478b97a8ca0fe08ad094%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1923-09-26,1923-12-26,https://shakespeareandco.princeton.edu/members/harrison-a/,A. Harrison,"Harrison, A.",30.00,,3 months,91,2,,1923-09-26,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-09-26,,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/oneill-hairy-ape/,The Hairy Ape,,"O'Neill, Eugene",1923,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/10%2F56%2F21%2F105621f011bf42749a243278d3048ed3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-09-26,1923-09-29,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/anderson-triumph-egg/,The Triumph of the Egg,,"Anderson, Sherwood",1921,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/10%2F56%2F21%2F105621f011bf42749a243278d3048ed3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-09-26,1923-09-29,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/russell-prospects-industrial-civilization/,The Prospects of Industrial Civilization,,"Russell, Bertrand",1923,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/10%2F56%2F21%2F105621f011bf42749a243278d3048ed3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-09-26,1923-09-27,https://shakespeareandco.princeton.edu/members/wood-thelma/,Thelma Wood,"Wood, Thelma",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/mencken-prejudices-second-series/,Prejudices: Second Series,,"Mencken, H. L.",1920,,Lending Library Card,"Sylvia Beach, Miss Thelma Wood Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4fa2ffb1-eb40-4e4a-9f21-a6459eee9457/manifest,https://iiif.princeton.edu/loris/figgy_prod/5c%2Fa4%2F2f%2F5ca42ffd8e51478b97a8ca0fe08ad094%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-09-27,1923-09-29,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/dunsany-five-plays/,Five Plays,,"Dunsany, Lord",1914,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/44%2F3e%2F23%2F443e23d2272a4436913610d2befac4ad%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-09-27,1923-09-29,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/garnett-lady-fox/,Lady into Fox,,"Garnett, David",1922,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/44%2F3e%2F23%2F443e23d2272a4436913610d2befac4ad%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1923-09-27,1923-09-27,https://shakespeareandco.princeton.edu/members/clark-3/,Florence F. Clark,"Clark, Florence F.",,,,,,,,40.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1923-09-27,1923-10-27,https://shakespeareandco.princeton.edu/members/solome/,Mme de SolomΓ©,"de SolomΓ©, Mme",8.00,,1 month,30,1,,1923-09-05,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-09-27,1923-10-08,https://shakespeareandco.princeton.edu/members/pottecher-therese/,Therèse Pottecher,"Pottecher, Therèse",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/rhys-rabindranath-tagore-biographical/,Rabindranath Tagore: A Biographical Study,,"Rhys, Ernest",1915,,Lending Library Card,"Sylvia Beach, Therèse Pottecher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/69b82696-3801-41ff-b1fd-c792179c5b98/manifest,https://iiif-cloud.princeton.edu/iiif/2/c0%2F05%2Fa6%2Fc005a6b8d76241a98262cea0f950c728%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-09-29,1923-10-10,https://shakespeareandco.princeton.edu/members/sargent/,Mr. Sargent,"Sargent, Mr.",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/douglas-south-wind/,South Wind,,"Douglas, Norman",1917,,Lending Library Card,"Sylvia Beach, Mr Sargent Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd817648-39a7-4e94-8569-055719ecd661/manifest,https://iiif.princeton.edu/loris/figgy_prod/88%2F66%2Ffb%2F8866fbca467849bfb81f2685c42c2d74%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-09-29,1923-10-10,https://shakespeareandco.princeton.edu/members/sargent/,Mr. Sargent,"Sargent, Mr.",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/hewlett-halfway-house-comedy/,Halfway House: A Comedy of Degrees,,"Hewlett, Maurice",1908,,Lending Library Card,"Sylvia Beach, Mr Sargent Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd817648-39a7-4e94-8569-055719ecd661/manifest,https://iiif.princeton.edu/loris/figgy_prod/88%2F66%2Ffb%2F8866fbca467849bfb81f2685c42c2d74%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-09-29,1923-10-02,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/dreiser-hey-rub-dub/,Hey Rub-a-Dub-Dub: A Book of the Mystery and Wonder and Terror of Life,,"Dreiser, Theodore",1920,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/46%2F5b%2F11%2F465b116cf8854264a7635ed938d2cce6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-09-29,1923-10-02,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/yeats-poems/,Poems,,"Yeats, William Butler",,Unidentified edition or editions.,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/46%2F5b%2F11%2F465b116cf8854264a7635ed938d2cce6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-09-29,1923-10-06,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/richardson-pointed-roofs/,Pointed Roofs (Pilgrimage 1),,"Richardson, Dorothy M.",1915,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/44%2F3e%2F23%2F443e23d2272a4436913610d2befac4ad%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-09-29,1923-10-06,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/joyce-exiles/,Exiles,,"Joyce, James",1918,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/44%2F3e%2F23%2F443e23d2272a4436913610d2befac4ad%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-10-01,1923-10-08,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/anderson-many-marriages/,Many Marriages,,"Anderson, Sherwood",1923,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0e%2F11%2F22%2F0e112265b86349fcb3817e711b264d0a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1923-10-01,1923-11-01,https://shakespeareandco.princeton.edu/members/lieper-r-m-c/,R. M. C. Lieper,"Lieper, R. M. C.",12.00,20.00,1 month,31,1,,1923-10-01,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-10-02,1923-10-09,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/russell-introduction-mathematical-philosophy/,Introduction to Mathematical Philosophy,,"Russell, Bertrand",1919,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/46%2F5b%2F11%2F465b116cf8854264a7635ed938d2cce6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-10-02,1923-10-06,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/joyce-portrait-artist-young/,A Portrait of the Artist as a Young Man,,"Joyce, James",1916,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/46%2F5b%2F11%2F465b116cf8854264a7635ed938d2cce6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-10-02,1923-10-06,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/sinclair-new-idealism/,The New Idealism,,"Sinclair, May",1922,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/46%2F5b%2F11%2F465b116cf8854264a7635ed938d2cce6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1923-10-02,1923-11-02,https://shakespeareandco.princeton.edu/members/laughlin-mr/;https://shakespeareandco.princeton.edu/members/laughlin/,Mr. Laughlin;Mrs. Laughlin,"Laughlin, Mr.;Laughlin, Mrs.",12.00,,1 month,31,1,,1923-10-02,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-10-02,1923-10-17,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/pound-instigations-ezra-pound/,"Instigations of Ezra Pound: Together with an Essay on the Chinese Written Character, by Ernest Fenollosa",,"Pound, Ezra;Fenollosa, Ernest",1920,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/46%2F5b%2F11%2F465b116cf8854264a7635ed938d2cce6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1923-10-02,1923-10-02,https://shakespeareandco.princeton.edu/members/arden/,Mrs. Arden,"Arden, Mrs.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-10-04,1923-10-26,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/hergesheimer-bright-shawl/,The Bright Shawl,,"Hergesheimer, Joseph",1922,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/e0%2Fae%2F6b%2Fe0ae6bec54324349b412353650ee6dab%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1923-10-05,1923-11-05,https://shakespeareandco.princeton.edu/members/pougaud/,M. Pougaud,"Pougaud, M.",8.00,,1 month,31,1,,1923-10-05,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-10-06,1923-10-19,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/swinnerton-nocturne/,Nocturne,,"Swinnerton, Frank",1917,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/44%2F3e%2F23%2F443e23d2272a4436913610d2befac4ad%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-10-06,1923-10-12,https://shakespeareandco.princeton.edu/members/savy/,Alice Savy,"Savy, Alice",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/tagore-reminiscences/,My Reminiscences,,"Tagore, Rabindranath",1916,,Lending Library Card,"Sylvia Beach, Alice Savy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6bff5a62-eced-4f79-a6f3-649cab124b38/manifest,https://iiif.princeton.edu/loris/figgy_prod/e4%2F77%2F6d%2Fe4776d9e1d694824804a09dfddc43004%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1923-10-06,1923-10-06,https://shakespeareandco.princeton.edu/members/desternes-3/,Mlle Desternes,"Desternes, Mlle",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-10-06,1923-11-18,https://shakespeareandco.princeton.edu/members/service/,Robert W. Service / Mr. R. W. Service,"Service, Robert W.",,,,,,,,,Returned,43,,,https://shakespeareandco.princeton.edu/books/mansfield-bliss-short-stories/,Bliss and Other Stories,,"Mansfield, Katherine",1920,,Lending Library Card,"Sylvia Beach, Robert Service Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/102d8619-7160-464b-8967-ca771c0c29f6/manifest,https://iiif.princeton.edu/loris/figgy_prod/53%2F09%2F2b%2F53092b965bc944c783c7ec0d7f2e9c0d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-10-06,1923-10-13,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/mckenna-sonia-two-worlds/,Sonia: Between Two Worlds,,"McKenna, Stephen",1917,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/44%2F3e%2F23%2F443e23d2272a4436913610d2befac4ad%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1923-10-06,1924-10-06,https://shakespeareandco.princeton.edu/members/barrows/,Helene Barrows,"Barrows, Helene",72.00,,1 year,366,1,AdL,1923-10-06,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1923-10-06,1924-01-06,https://shakespeareandco.princeton.edu/members/service/,Robert W. Service / Mr. R. W. Service,"Service, Robert W.",40.00,,3 months,92,2,,1923-10-06,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Robert Service Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/102d8619-7160-464b-8967-ca771c0c29f6/manifest,;https://iiif.princeton.edu/loris/figgy_prod/53%2F09%2F2b%2F53092b965bc944c783c7ec0d7f2e9c0d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-10-06,1923-10-08,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/adams-mont-saint-michel/,Mont-Saint-Michel and Chartres,,"Adams, Henry",1904,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/46%2F5b%2F11%2F465b116cf8854264a7635ed938d2cce6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-10-06,,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/robinson-collected-poems/,Collected Poems,,"Robinson, Edwin Arlington",1921,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/46%2F5b%2F11%2F465b116cf8854264a7635ed938d2cce6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Supplement,1923-10-08,1924-01-08,https://shakespeareandco.princeton.edu/members/koop/,Miss Koop,"Koop, Miss",10.00,,3 months,92,1,,1923-10-08,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-10-08,1923-10-13,https://shakespeareandco.princeton.edu/members/pottecher-therese/,Therèse Pottecher,"Pottecher, Therèse",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/tagore-gitanjali/,Gitanjali,,"Tagore, Rabindranath",1912,,Lending Library Card,"Sylvia Beach, Therèse Pottecher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/69b82696-3801-41ff-b1fd-c792179c5b98/manifest,https://iiif-cloud.princeton.edu/iiif/2/c0%2F05%2Fa6%2Fc005a6b8d76241a98262cea0f950c728%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-10-08,1923-10-20,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/mansfield-doves-nest-stories/,The Doves' Nest and Other Stories,,"Mansfield, Katherine",1923,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0e%2F11%2F22%2F0e112265b86349fcb3817e711b264d0a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-10-08,1923-10-09,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/dell-briary-bush/,The Briary-Bush,,"Dell, Floyd",1921,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/46%2F5b%2F11%2F465b116cf8854264a7635ed938d2cce6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-10-08,1923-10-25,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/synge-playboy-western-world/,The Playboy of the Western World,,"Synge, John Millington",1907,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/18%2F8a%2F2d%2F188a2d5b46c44e5e96b6cdaf585e9dd1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1923-10-08,1923-11-08,https://shakespeareandco.princeton.edu/members/clark-elizabeth/,Elizabeth Clark,"Clark, Elizabeth",12.00,20.00,1 month,31,1,,1923-10-08,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-10-09,1923-10-11,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/gale-miss-lulu-bett/,Miss Lulu Bett,,"Gale, Zona",1920,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/46%2F5b%2F11%2F465b116cf8854264a7635ed938d2cce6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Supplement,1923-10-09,1923-10-23,https://shakespeareandco.princeton.edu/members/jaffe-p/,P. Jaffe,"Jaffe, P.",2.00,,2 weeks,14,1,,1923-10-09,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1923-10-09,1923-10-09,https://shakespeareandco.princeton.edu/members/kroll-leon/,Leon Kroll,"Kroll, Leon",,,,,,,,40.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-10-09,1923-10-11,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/mackenzie-early-life-adventures/,The Early Life and Adventures of Sylvia Scarlett,,"Mackenzie, Compton",1918,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/46%2F5b%2F11%2F465b116cf8854264a7635ed938d2cce6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1923-10-09,1924-01-09,https://shakespeareandco.princeton.edu/members/hewitt-helen/,Helen Hewitt,"Hewitt, Helen",30.00,20.00,3 months,92,1,,1923-10-09,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1923-10-10,1923-10-10,https://shakespeareandco.princeton.edu/members/goodwin-murray/,Murray Goodwin,"Goodwin, Murray",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1923-10-10,1924-01-10,https://shakespeareandco.princeton.edu/members/myers-rollo/,Rollo Myers,"Myers, Rollo",30.00,,3 months,92,1,,1923-10-10,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-10-11,1923-10-13,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/butts-speed-plough-stories/,Speed the Plough and Other Stories,,"Butts, Mary",1923,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/46%2F5b%2F11%2F465b116cf8854264a7635ed938d2cce6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1923-10-11,1924-04-11,https://shakespeareandco.princeton.edu/members/heaton-ellis/,Lady Heaton-Ellis,"Heaton-Ellis, Lady",52.00,,6 months,183,1,,1923-10-11,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1923-10-11,1923-10-11,https://shakespeareandco.princeton.edu/members/lieper-r-m-c/,R. M. C. Lieper,"Lieper, R. M. C.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1923-10-11,1923-11-11,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",12.00,20.00,1 month,31,1,,1923-10-11,,,,,FRF,,,,,,,Lending Library Card;Logbook;Address Book,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest;;,https://iiif.princeton.edu/loris/figgy_prod/17%2Fb9%2F97%2F17b9978f259f49b9af0ed3a0d27a1e18%2Fintermediate_file.jp2/full/full/0/default.jpg;;
+Borrow,1923-10-11,1923-10-13,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/mackenzie-sylvia-michael/,Sylvia & Michael,,"Mackenzie, Compton",1919,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/46%2F5b%2F11%2F465b116cf8854264a7635ed938d2cce6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-10-11,1923-10-25,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/chaucer-complete-works-geoffrey-chaucer/,The Complete Works of Geoffrey Chaucer,Vol. 4 The Canterbury Tales,"Chaucer, Geoffrey",1894,"Published by Clarendon Press, Oxford University Press.",Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/17%2Fb9%2F97%2F17b9978f259f49b9af0ed3a0d27a1e18%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-10-11,1923-10-20,https://shakespeareandco.princeton.edu/members/wood-thelma/,Thelma Wood,"Wood, Thelma",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/figgis-return-hero/,The Return of the Hero,,"Figgis, Darrell",1923,,Lending Library Card,"Sylvia Beach, Miss Thelma Wood Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4fa2ffb1-eb40-4e4a-9f21-a6459eee9457/manifest,https://iiif.princeton.edu/loris/figgy_prod/5c%2Fa4%2F2f%2F5ca42ffd8e51478b97a8ca0fe08ad094%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-10-11,1923-10-20,https://shakespeareandco.princeton.edu/members/wood-thelma/,Thelma Wood,"Wood, Thelma",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/leacock-essays-literary-studies/,Essays and Literary Studies,,"Leacock, Stephen",1922,,Lending Library Card,"Sylvia Beach, Miss Thelma Wood Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4fa2ffb1-eb40-4e4a-9f21-a6459eee9457/manifest,https://iiif.princeton.edu/loris/figgy_prod/5c%2Fa4%2F2f%2F5ca42ffd8e51478b97a8ca0fe08ad094%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-10-11,1923-10-20,https://shakespeareandco.princeton.edu/members/wood-thelma/,Thelma Wood,"Wood, Thelma",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/gogol-overcoat-stories/,The Overcoat and Other Stories,,"Gogol, Nikolai",1923,,Lending Library Card,"Sylvia Beach, Miss Thelma Wood Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4fa2ffb1-eb40-4e4a-9f21-a6459eee9457/manifest,https://iiif.princeton.edu/loris/figgy_prod/5c%2Fa4%2F2f%2F5ca42ffd8e51478b97a8ca0fe08ad094%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1923-10-12,1923-10-12,https://shakespeareandco.princeton.edu/members/eaton-jeanette/,Jeanette Eaton,"Eaton, Jeanette",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-10-12,1923-10-20,https://shakespeareandco.princeton.edu/members/savy/,Alice Savy,"Savy, Alice",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/symons-studies-prose-verse/,Studies in Prose and Verse,,"Symons, Arthur",1904,,Lending Library Card,"Sylvia Beach, Alice Savy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6bff5a62-eced-4f79-a6f3-649cab124b38/manifest,https://iiif.princeton.edu/loris/figgy_prod/e4%2F77%2F6d%2Fe4776d9e1d694824804a09dfddc43004%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-10-13,1923-10-15,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/richardson-pointed-roofs/,Pointed Roofs (Pilgrimage 1),,"Richardson, Dorothy M.",1915,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/46%2F5b%2F11%2F465b116cf8854264a7635ed938d2cce6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-10-13,1923-10-19,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/conrad-youth-narrative/,Youth: A Narrative,,"Conrad, Joseph",1902,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/44%2F3e%2F23%2F443e23d2272a4436913610d2befac4ad%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-10-13,1923-11-22,https://shakespeareandco.princeton.edu/members/pottecher-therese/,Therèse Pottecher,"Pottecher, Therèse",,,,,,,,,Returned,40,,,https://shakespeareandco.princeton.edu/books/tagore-nationalism/,Nationalism,,"Tagore, Rabindranath",1917,,Lending Library Card,"Sylvia Beach, Therèse Pottecher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/69b82696-3801-41ff-b1fd-c792179c5b98/manifest,https://iiif-cloud.princeton.edu/iiif/2/c0%2F05%2Fa6%2Fc005a6b8d76241a98262cea0f950c728%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-10-13,1923-10-15,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/de-la-mare-memoirs-midget/,Memoirs of a Midget,,"De la Mare, Walter",1921,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/46%2F5b%2F11%2F465b116cf8854264a7635ed938d2cce6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-10-15,1923-10-17,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/sinclair-jungle/,The Jungle,,"Sinclair, Upton",1906,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/46%2F5b%2F11%2F465b116cf8854264a7635ed938d2cce6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-10-15,1923-10-17,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/eliot-waste-land/,The Waste Land,,"Eliot, T. S.",1922,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/46%2F5b%2F11%2F465b116cf8854264a7635ed938d2cce6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Supplement,1923-10-15,1923-11-13,https://shakespeareandco.princeton.edu/members/shostac-2/,Miss Shostac,"Shostac, Miss",4.00,,29 days,29,2,,1923-10-15,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1923-10-15,1923-10-15,https://shakespeareandco.princeton.edu/members/bull-m/,Margaret Bull,"Bull, Margaret",,,,,,,,40.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1923-10-15,1923-11-15,https://shakespeareandco.princeton.edu/members/desplanques/,Mme Desplanques,"Desplanques, Mme",12.00,20.00,1 month,31,1,,1923-10-15,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-10-16,,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/yeats-early-memories-chapters/,Early Memories: Some Chapters of Autobiography,,"Yeats, John Butler",1923,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1923-10-16,1931-01-10,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Returned,2643,,,https://shakespeareandco.princeton.edu/books/ludovici-woman-vindication/,Woman: A Vindication,,"Ludovici, Anthony M.",1923,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1923-10-16,1923-11-30,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,45,,,https://shakespeareandco.princeton.edu/books/sinclair-new-idealism/,The New Idealism,,"Sinclair, May",1922,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/7e%2F89%2Fd9%2F7e89d956d66e4e2893ae3ae67b1b5fa6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-10-16,1923-11-05,https://shakespeareandco.princeton.edu/members/joyce-lucia/,Lucia Joyce,"Joyce, Lucia",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/fovitzky-moscow-art-theatre/,The Moscow Art Theatre and Its Distinguishing Characteristics,,"Fovitzky, A. L.",1922,,Lending Library Card,"Lucia Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Reimbursement,1923-10-17,1923-10-17,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1923-10-17,,https://shakespeareandco.princeton.edu/members/nienaber/,Allison Nienaber,"Nienaber, Allison",,20.00,,,,,1923-10-17,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1923-10-17,1923-10-17,https://shakespeareandco.princeton.edu/members/allen/,Mrs. Allen,"Allen, Mrs.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-10-18,1931-01-30,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Returned,2661,,,https://shakespeareandco.princeton.edu/books/colum-castle-conquer/,Castle Conquer,,"Colum, Padraic",1923,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Subscription,1923-10-18,1923-11-18,https://shakespeareandco.princeton.edu/members/martin-marietta/,Marietta Martin,"Martin, Marietta",16.00,40.00,1 month,31,2,,1923-10-18,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-10-18,1931-01-10,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Returned,2641,,,https://shakespeareandco.princeton.edu/books/doughty-travels-arabia-deserta/,Travels in Arabia Deserta,2 vols.,"Doughty, Charles Montagu",1883,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Renewal,1923-10-19,1923-11-19,https://shakespeareandco.princeton.edu/members/laughlin-mr/;https://shakespeareandco.princeton.edu/members/laughlin/,Mr. Laughlin;Mrs. Laughlin,"Laughlin, Mr.;Laughlin, Mrs.",12.00,,1 month,31,1,,1923-10-19,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-10-19,1923-10-27,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/dane-regiment-women/,Regiment of Women,,"Dane, Clemence",1917,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/44%2F3e%2F23%2F443e23d2272a4436913610d2befac4ad%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-10-19,1923-10-27,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/hudson-green-mansions-romance/,Green Mansions: A Romance of the Tropical Forest,,"Hudson, W. H.",1904,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/44%2F3e%2F23%2F443e23d2272a4436913610d2befac4ad%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1923-10-20,1924-01-20,https://shakespeareandco.princeton.edu/members/lanux-eyre-de/,Eyre de Lanux / Mrs. Pierre de Lanux,"de Lanux, Eyre",30.00,,3 months,92,1,,1923-10-20,,,,,FRF,,,,,,,Logbook;Lending Library Card;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Eyre de Lanux Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/83ffbc32-6c8f-4f6b-9086-3cb10c47e667/manifest;,;https://iiif.princeton.edu/loris/figgy_prod/c5%2F5e%2F64%2Fc55e64e4948a444680596f37654b3dcf%2Fintermediate_file.jp2/full/full/0/default.jpg;
+Borrow,1923-10-20,1923-11-28,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,39,,,https://shakespeareandco.princeton.edu/books/cather-one/,One of Ours,,"Cather, Willa",1922,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0e%2F11%2F22%2F0e112265b86349fcb3817e711b264d0a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-10-20,1923-12-08,https://shakespeareandco.princeton.edu/members/joyce-lucia/,Lucia Joyce,"Joyce, Lucia",,,,,,,,,Returned,49,,,https://shakespeareandco.princeton.edu/books/goldsmith-vicar-wakefield/,The Vicar of Wakefield,,"Goldsmith, Oliver",1766,,Lending Library Card,"Lucia Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1923-10-20,1923-11-13,https://shakespeareandco.princeton.edu/members/rhys/,Mr. Rhys,"Rhys, Mr.",,,,,,,,,Returned,24,,,https://shakespeareandco.princeton.edu/books/dostoyevsky-possessed/,The Possessed,,"Dostoyevsky, Fyodor",1872,,Lending Library Card,"Sylvia Beach, Rhys Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0fcf5eb6-f872-481c-a304-e45a0c9fe472/manifest,https://iiif.princeton.edu/loris/figgy_prod/d9%2F94%2Fe4%2Fd994e47f098b4633a08d651483db361c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-10-20,1923-10-27,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/figgis-return-hero/,The Return of the Hero,,"Figgis, Darrell",1923,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0e%2F11%2F22%2F0e112265b86349fcb3817e711b264d0a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1923-10-20,1924-10-20,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",48.00,,1 year,366,1,,1923-10-06,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1923-10-20,1923-10-20,https://shakespeareandco.princeton.edu/members/savy/,Alice Savy,"Savy, Alice",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-10-20,1923-10-30,https://shakespeareandco.princeton.edu/members/lanux-eyre-de/,Eyre de Lanux / Mrs. Pierre de Lanux,"de Lanux, Eyre",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/woolf-jacobs-room/,Jacob's Room,,"Woolf, Virginia",1922,,Lending Library Card,"Sylvia Beach, Eyre de Lanux Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/83ffbc32-6c8f-4f6b-9086-3cb10c47e667/manifest,https://iiif.princeton.edu/loris/figgy_prod/c5%2F5e%2F64%2Fc55e64e4948a444680596f37654b3dcf%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1923-10-20,1923-10-20,https://shakespeareandco.princeton.edu/members/lee-3/,Miss Lee,"Lee, Miss",,,,,,,,7.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-10-20,1923-10-30,https://shakespeareandco.princeton.edu/members/lanux-eyre-de/,Eyre de Lanux / Mrs. Pierre de Lanux,"de Lanux, Eyre",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/garnett-lady-fox/,Lady into Fox,,"Garnett, David",1922,,Lending Library Card,"Sylvia Beach, Eyre de Lanux Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/83ffbc32-6c8f-4f6b-9086-3cb10c47e667/manifest,https://iiif.princeton.edu/loris/figgy_prod/c5%2F5e%2F64%2Fc55e64e4948a444680596f37654b3dcf%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-10-20,1923-10-30,https://shakespeareandco.princeton.edu/members/lanux-eyre-de/,Eyre de Lanux / Mrs. Pierre de Lanux,"de Lanux, Eyre",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/woolf-monday-tuesday/,Monday or Tuesday,,"Woolf, Virginia",1921,,Lending Library Card,"Sylvia Beach, Eyre de Lanux Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/83ffbc32-6c8f-4f6b-9086-3cb10c47e667/manifest,https://iiif.princeton.edu/loris/figgy_prod/c5%2F5e%2F64%2Fc55e64e4948a444680596f37654b3dcf%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1923-10-20,1923-10-20,https://shakespeareandco.princeton.edu/members/jaffe-p/,P. Jaffe,"Jaffe, P.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1923-10-22,1923-11-22,https://shakespeareandco.princeton.edu/members/dighton-w/,W. Dighton,"Dighton, W.",16.00,40.00,1 month,31,2,,1923-10-22,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1923-10-22,1924-01-22,https://shakespeareandco.princeton.edu/members/bishop-john-peale/,John Peale Bishop,"Bishop, John Peale",40.00,40.00,3 months,92,2,,1923-10-22,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-10-23,1923-11-27,https://shakespeareandco.princeton.edu/members/schereck/,Mildred Schereck,"Schereck, Mildred",,,,,,,,,Returned,35,,,https://shakespeareandco.princeton.edu/books/galsworthy-country-house/,The Country House,,"Galsworthy, John",1907,,Lending Library Card,"Sylvia Beach, Mildred Schereck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3b15ea0c-ed8d-4b41-80f3-33485620b12c/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2F91%2Fb3%2F5e91b3031c4d49a5a9df2b18e73d411d%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1923-10-23,1923-11-23,https://shakespeareandco.princeton.edu/members/anderson/,Mr. Anderson,"Anderson, Mr.",16.00,40.00,1 month,31,2,,1923-10-23,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-10-23,1923-10-24,https://shakespeareandco.princeton.edu/members/solano/,Solita Solano,"Solano, Solita",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/scott-bewilderment/,Bewilderment,,"Scott, Evelyn",1922,,Lending Library Card,"Sylvia Beach, Solita Solano Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ae91e41-ccc0-4df6-9150-63a893d8d633/manifest,https://iiif.princeton.edu/loris/figgy_prod/bd%2Fba%2F13%2Fbdba1387593646bc9191e31037922558%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1923-10-23,1924-01-23,https://shakespeareandco.princeton.edu/members/solano/,Solita Solano,"Solano, Solita",30.00,20.00,3 months,92,1,,1923-10-23,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Solita Solano Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/1ae91e41-ccc0-4df6-9150-63a893d8d633/manifest,;https://iiif.princeton.edu/loris/figgy_prod/bd%2Fba%2F13%2Fbdba1387593646bc9191e31037922558%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1923-10-24,1923-11-24,https://shakespeareandco.princeton.edu/members/bauerberg/,Lida Bauerberg,"Bauerberg, Lida",12.00,20.00,1 month,31,1,,1923-10-24,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-10-24,,https://shakespeareandco.princeton.edu/members/solano/,Solita Solano,"Solano, Solita",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/van-vechten-blind-bow-boy/,The Blind Bow-Boy,,"Van Vechten, Carl",1923,,Lending Library Card,"Sylvia Beach, Solita Solano Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ae91e41-ccc0-4df6-9150-63a893d8d633/manifest,https://iiif.princeton.edu/loris/figgy_prod/bd%2Fba%2F13%2Fbdba1387593646bc9191e31037922558%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-10-24,1923-10-30,https://shakespeareandco.princeton.edu/members/solano/,Solita Solano,"Solano, Solita",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/campbell-life-letters/,My Life and Some Letters,,"Campbell, Mrs. Patrick",1922,,Lending Library Card,"Sylvia Beach, Solita Solano Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ae91e41-ccc0-4df6-9150-63a893d8d633/manifest,https://iiif.princeton.edu/loris/figgy_prod/bd%2Fba%2F13%2Fbdba1387593646bc9191e31037922558%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1923-10-24,1923-10-24,https://shakespeareandco.princeton.edu/members/juta-henry/,Henry Juta,"Juta, Henry",,,,,,,,40.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1923-10-25,1923-11-25,https://shakespeareandco.princeton.edu/members/lack-gladys/,Gladys Lack,"Lack, Gladys",12.00,20.00,1 month,31,1,,1923-10-25,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-10-25,1923-11-06,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/garnett-lady-fox/,Lady into Fox,,"Garnett, David",1922,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/18%2F8a%2F2d%2F188a2d5b46c44e5e96b6cdaf585e9dd1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1923-10-25,1924-01-25,https://shakespeareandco.princeton.edu/members/darrell-edward/,Edward Darrell,"Darrell, Edward",30.00,20.00,3 months,92,1,,1923-10-25,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-10-25,1923-11-03,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/adams-mont-saint-michel/,Mont-Saint-Michel and Chartres,,"Adams, Henry",1904,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/17%2Fb9%2F97%2F17b9978f259f49b9af0ed3a0d27a1e18%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-10-26,1923-10-30,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/gibbs-middle-road/,The Middle of the Road,,"Gibbs, Philip",1922,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/c6%2F3f%2F1a%2Fc63f1a7a5fda4a1d8c3c23faa72fecc8%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1923-10-26,1923-11-09,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",8.00,,2 weeks,14,2,,1923-10-26,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,;https://iiif-cloud.princeton.edu/iiif/2/c6%2F3f%2F1a%2Fc63f1a7a5fda4a1d8c3c23faa72fecc8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-10-26,1923-10-27,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/macaulay-mystery-geneva-improbable/,Mystery at Geneva: An Improbable Tale of Singular Happenings,,"Macaulay, Rose",1922,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/c6%2F3f%2F1a%2Fc63f1a7a5fda4a1d8c3c23faa72fecc8%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1923-10-26,1924-10-26,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",64.00,,1 year,366,2,AdL,1923-10-26,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-10-26,1923-10-27,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/garnett-lady-fox/,Lady into Fox,,"Garnett, David",1922,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/c6%2F3f%2F1a%2Fc63f1a7a5fda4a1d8c3c23faa72fecc8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-10-26,1924-02-16,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,113,,,https://shakespeareandco.princeton.edu/books/hearn-japan-attempt-interpretation/,Japan: An Attempt at Interpretation,,"Hearn, Lafcadio",1904,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/e0%2Fae%2F6b%2Fe0ae6bec54324349b412353650ee6dab%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1923-10-27,1923-11-27,https://shakespeareandco.princeton.edu/members/maccormack-gilson/;https://shakespeareandco.princeton.edu/members/mccormack-mrs/,Gilson MacCormack;Mrs. MacCormack,"MacCormack, Gilson;MacCormack, Mrs.",16.00,40.00,1 month,31,2,,1923-10-27,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-10-27,1923-10-30,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/swinnerton-chaste-wife/,The Chaste Wife,,"Swinnerton, Frank",1916,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/c6%2F3f%2F1a%2Fc63f1a7a5fda4a1d8c3c23faa72fecc8%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1923-10-27,1923-11-27,https://shakespeareandco.princeton.edu/members/solome/,Mme de SolomΓ©,"de SolomΓ©, Mme",8.00,,1 month,31,1,,1923-10-05,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-10-27,1923-11-05,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/goldring-nobody-knows/,Nobody Knows,,"Goldring, Douglas",1923,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0e%2F11%2F22%2F0e112265b86349fcb3817e711b264d0a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-10-27,1923-11-05,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/scott-poems-plays-sir/,The Poems and Plays of Sir Walter Scott,Vol. 1 Lyrics and Shorter Poems,"Scott, Walter",1911,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/44%2F3e%2F23%2F443e23d2272a4436913610d2befac4ad%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-10-27,1923-11-05,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/galsworthy-captures/,Captures,,"Galsworthy, John",1923,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/44%2F3e%2F23%2F443e23d2272a4436913610d2befac4ad%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1923-10-27,1923-11-27,https://shakespeareandco.princeton.edu/members/solome/,Mme de SolomΓ©,"de SolomΓ©, Mme",8.00,,1 month,31,1,,1923-10-23,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1923-10-27,1923-11-27,https://shakespeareandco.princeton.edu/members/henderson-elsie/,Elsie Henderson,"Henderson, Elsie",12.00,20.00,1 month,31,1,,1923-10-27,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1923-10-29,1923-11-29,https://shakespeareandco.princeton.edu/members/chambrun/,Comtesse de Chambrun,"de Chambrun, Comtesse",12.00,20.00,1 month,31,1,,1923-10-29,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1923-10-29,1924-01-29,https://shakespeareandco.princeton.edu/members/beach-2/,Joseph Beach,"Beach, Joseph",40.00,40.00,3 months,92,2,,1923-10-29,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1923-10-29,1923-11-29,https://shakespeareandco.princeton.edu/members/ash/,Joyce Ash,"Ash, Joyce",12.00,20.00,1 month,31,1,,1923-10-29,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-10-29,1923-11-06,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/butler-erewhon-revisited-twenty/,"Erewhon Revisited: Twenty Years Later, Both by the Original Discoverer of the Country and by His Son",,"Butler, Samuel",1901,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/dd%2Fd4%2Fc5%2Fddd4c51b44084836ab3bd7e8ebc808fd%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-10-30,1923-11-16,https://shakespeareandco.princeton.edu/members/solano/,Solita Solano,"Solano, Solita",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/lawrence-aarons-rod/,Aaron's Rod,,"Lawrence, D. H.",1922,,Lending Library Card,"Sylvia Beach, Solita Solano Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ae91e41-ccc0-4df6-9150-63a893d8d633/manifest,https://iiif.princeton.edu/loris/figgy_prod/bd%2Fba%2F13%2Fbdba1387593646bc9191e31037922558%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1923-10-30,1924-01-30,https://shakespeareandco.princeton.edu/members/flanner-janet/,Janet Flanner,"Flanner, Janet",30.00,20.00,3 months,92,1,,1923-10-30,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-10-30,1924-03,https://shakespeareandco.princeton.edu/members/lanux-eyre-de/,Eyre de Lanux / Mrs. Pierre de Lanux,"de Lanux, Eyre",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/ford-best-plays-john/,The Best Plays of John Ford,,"Ford, John",1888,From the [Mermaid Series](https://seriesofseries.owu.edu/mermaid-series/).,Lending Library Card,"Sylvia Beach, Eyre de Lanux Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/83ffbc32-6c8f-4f6b-9086-3cb10c47e667/manifest,https://iiif.princeton.edu/loris/figgy_prod/c5%2F5e%2F64%2Fc55e64e4948a444680596f37654b3dcf%2Fintermediate_file.jp2/full/full/0/default.jpg
+Crossed out,1923-10-30,,https://shakespeareandco.princeton.edu/members/lanux-eyre-de/,Eyre de Lanux / Mrs. Pierre de Lanux,"de Lanux, Eyre",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/richardson-pointed-roofs/,Pointed Roofs (Pilgrimage 1),,"Richardson, Dorothy M.",1915,,Lending Library Card,"Sylvia Beach, Eyre de Lanux Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/83ffbc32-6c8f-4f6b-9086-3cb10c47e667/manifest,https://iiif.princeton.edu/loris/figgy_prod/c5%2F5e%2F64%2Fc55e64e4948a444680596f37654b3dcf%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1923-10-30,1924-10-30,https://shakespeareandco.princeton.edu/members/deniau/,M. Deniau,"Deniau, M.",60.00,,1 year,366,1,,1923-10-09,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-10-30,1923-11-02,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/ponsonby-english-diaries/,English Diaries,,"Ponsonby, Arthur",1923,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/c6%2F3f%2F1a%2Fc63f1a7a5fda4a1d8c3c23faa72fecc8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-10-30,1923-11-02,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/ellis-kanga-creek-australian/,Kanga Creek: An Australian Idyll,,"Ellis, Havelock",1923,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/c6%2F3f%2F1a%2Fc63f1a7a5fda4a1d8c3c23faa72fecc8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-10-30,1923-11-02,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/lewis-babbitt/,Babbitt,,"Lewis, Sinclair",1922,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/c6%2F3f%2F1a%2Fc63f1a7a5fda4a1d8c3c23faa72fecc8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-10-30,,https://shakespeareandco.princeton.edu/members/lanux-eyre-de/,Eyre de Lanux / Mrs. Pierre de Lanux,"de Lanux, Eyre",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/loeb-broom/,Broom,,,,,Lending Library Card,"Sylvia Beach, Eyre de Lanux Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/83ffbc32-6c8f-4f6b-9086-3cb10c47e667/manifest,https://iiif.princeton.edu/loris/figgy_prod/c5%2F5e%2F64%2Fc55e64e4948a444680596f37654b3dcf%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-10-30,,https://shakespeareandco.princeton.edu/members/lanux-eyre-de/,Eyre de Lanux / Mrs. Pierre de Lanux,"de Lanux, Eyre",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/munson-secession/,Secession,,,,,Lending Library Card,"Sylvia Beach, Eyre de Lanux Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/83ffbc32-6c8f-4f6b-9086-3cb10c47e667/manifest,https://iiif.princeton.edu/loris/figgy_prod/c5%2F5e%2F64%2Fc55e64e4948a444680596f37654b3dcf%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1923-10-31,1923-11-30,https://shakespeareandco.princeton.edu/members/fry-c-d/,C. D. Fry,"Fry, C. D.",16.00,40.00,1 month,30,2,,1923-10-31,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1923-11-01,1924-05-01,https://shakespeareandco.princeton.edu/members/schereck/,Mildred Schereck,"Schereck, Mildred",35.00,,6 months,182,1,,1923-12-15,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Mildred Schereck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/3b15ea0c-ed8d-4b41-80f3-33485620b12c/manifest,;https://iiif-cloud.princeton.edu/iiif/2/5e%2F91%2Fb3%2F5e91b3031c4d49a5a9df2b18e73d411d%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1923-11-02,1923-12-02,https://shakespeareandco.princeton.edu/members/hayes/,Mrs. E. C. Hayes,"Hayes, Mrs. E. C.",16.00,40.00,1 month,30,2,,1923-11-02,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-11-02,1923-11-07,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/mansfield-garden-party-stories/,The Garden Party and Other Stories,,"Mansfield, Katherine",1922,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/c6%2F3f%2F1a%2Fc63f1a7a5fda4a1d8c3c23faa72fecc8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-11-02,1923-11-07,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/hudson-little-boy-lost/,A Little Boy Lost,,"Hudson, W. H.",1905,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/c6%2F3f%2F1a%2Fc63f1a7a5fda4a1d8c3c23faa72fecc8%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1923-11-02,1923-11-02,https://shakespeareandco.princeton.edu/members/clark-elizabeth/,Elizabeth Clark,"Clark, Elizabeth",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1923-11-03,1924-05-03,https://shakespeareandco.princeton.edu/members/stafford-jane/,Jane Stafford,"Stafford, Jane",52.00,,6 months,182,1,,1923-11-03,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-11-03,1923-11-20,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/chaucer-complete-works-geoffrey-chaucer/,The Complete Works of Geoffrey Chaucer,Vol. 4 The Canterbury Tales,"Chaucer, Geoffrey",1894,"Published by Clarendon Press, Oxford University Press.",Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/17%2Fb9%2F97%2F17b9978f259f49b9af0ed3a0d27a1e18%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1923-11-03,1923-12-03,https://shakespeareandco.princeton.edu/members/goodridge-e-r/,E. R. Goodridge,"Goodridge, E. R.",16.00,40.00,1 month,30,2,,1923-11-03,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1923-11-03,1923-12-03,https://shakespeareandco.princeton.edu/members/didisheim/,Frank Didisheim,"Didisheim, Frank",12.00,20.00,1 month,30,1,,1923-11-03,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-11-05,1923-11-24,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/stephens-crock-gold/,The Crock of Gold,,"Stephens, James",1912,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/44%2F3e%2F23%2F443e23d2272a4436913610d2befac4ad%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1923-11-05,1924-05-05,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",50.00,,6 months,182,2,AdL,1923-11-05,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,;https://iiif-cloud.princeton.edu/iiif/2/30%2Fa6%2F5a%2F30a65ae6db3342ceb750d3757815324e%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1923-11-05,1923-12-17,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",18.00,,6 weeks,42,,,1923-11-05,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,;https://iiif.princeton.edu/loris/figgy_prod/98%2F09%2F76%2F980976167b584583a3c8a45d687bb5ca%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-11-05,1923-11-07,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/lawrence-ladybird/,The Ladybird,,"Lawrence, D. H.",1923,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/98%2F09%2F76%2F980976167b584583a3c8a45d687bb5ca%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-11-05,1923-11-13,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/oneill-beyond-horizon/,Beyond the Horizon,,"O'Neill, Eugene",1920,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/98%2F09%2F76%2F980976167b584583a3c8a45d687bb5ca%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-11-05,1923-11-16,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/moore-lewis-seymour-women/,Lewis Seymour and Some Women,,"Moore, George",1916,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/30%2Fa6%2F5a%2F30a65ae6db3342ceb750d3757815324e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-11-05,1923-11-09,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/bennett-things-interested/,Things That Have Interested Me,,"Bennett, Arnold",1921,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/30%2Fa6%2F5a%2F30a65ae6db3342ceb750d3757815324e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-11-05,1923-11-24,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/west-judge/,The Judge,,"West, Rebecca",1922,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/44%2F3e%2F23%2F443e23d2272a4436913610d2befac4ad%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-11-06,1923-11-22,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/moore-esther-waters/,Esther Waters,,"Moore, George",1894,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/18%2F8a%2F2d%2F188a2d5b46c44e5e96b6cdaf585e9dd1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1923-11-06,1924-02-06,https://shakespeareandco.princeton.edu/members/huban-lily/,Lily Huban,"Huban, Lily",40.00,40.00,3 months,92,2,,1923-11-06,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-11-06,,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/gosse-books-table-2/,More Books on the Table,,"Gosse, Edmund",1923,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/dd%2Fd4%2Fc5%2Fddd4c51b44084836ab3bd7e8ebc808fd%2Fintermediate_file/full/full/0/default.jpg
+Separate Payment,1923-11-06,1923-11-06,https://shakespeareandco.princeton.edu/members/stafford-jane/,Jane Stafford,"Stafford, Jane",,20.00,,,,,1923-11-06,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Crossed out,1923-11-06,,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/three-plays/,Three Plays,,,,"Unidentified. Padraic Colum's *Three Plays) (1917), Luigi Pirandello's *Three Plays* (1922), or William Archer's *Three Plays* (1927), etc.",Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/18%2F8a%2F2d%2F188a2d5b46c44e5e96b6cdaf585e9dd1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1923-11-07,1923-11-07,https://shakespeareandco.princeton.edu/members/dyer-mildred/,Mildred Dyer,"Dyer, Mildred",,,,,,,,14.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-11-07,,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/hudson-far-away-long/,Far Away and Long Ago,,"Hudson, W. H.",1918,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/c6%2F3f%2F1a%2Fc63f1a7a5fda4a1d8c3c23faa72fecc8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-11-07,1923-11-13,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/lawrence-fantasia-unconscious/,Fantasia of the Unconscious,,"Lawrence, D. H.",1922,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/98%2F09%2F76%2F980976167b584583a3c8a45d687bb5ca%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-11-07,1923-11-09,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/landmark/,Landmark,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/98%2F09%2F76%2F980976167b584583a3c8a45d687bb5ca%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1923-11-07,1923-11-07,https://shakespeareandco.princeton.edu/members/lieper-r-m-c/,R. M. C. Lieper,"Lieper, R. M. C.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-11-07,1923-11-09,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/thayer-dial/,The Dial,,,,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/98%2F09%2F76%2F980976167b584583a3c8a45d687bb5ca%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1923-11-08,1924-02-08,https://shakespeareandco.princeton.edu/members/kennedy-agnes/,Agnes Kennedy,"Kennedy, Agnes",30.00,20.00,3 months,92,1,,1923-11-08,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1923-11-08,1923-12-08,https://shakespeareandco.princeton.edu/members/ghose/,Mr. Ghose,"Ghose, Mr.",12.00,20.00,1 month,30,1,,1923-11-08,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-11-09,1923-11-20,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/ellis-dance-life/,The Dance of Life,,"Ellis, Havelock",1923,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/98%2F09%2F76%2F980976167b584583a3c8a45d687bb5ca%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-11-09,1923-11-13,https://shakespeareandco.princeton.edu/members/savy/,Alice Savy,"Savy, Alice",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/pater-imaginary-portraits/,Imaginary Portraits,,"Pater, Walter",1896,,Lending Library Card,"Sylvia Beach, Alice Savy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6bff5a62-eced-4f79-a6f3-649cab124b38/manifest,https://iiif.princeton.edu/loris/figgy_prod/e4%2F77%2F6d%2Fe4776d9e1d694824804a09dfddc43004%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-11-09,1923-11-16,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/fovitzky-moscow-art-theatre/,The Moscow Art Theatre and Its Distinguishing Characteristics,,"Fovitzky, A. L.",1922,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/30%2Fa6%2F5a%2F30a65ae6db3342ceb750d3757815324e%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1923-11-09,1923-12-09,https://shakespeareandco.princeton.edu/members/savy/,Alice Savy,"Savy, Alice",12.00,20.00,1 month,30,1,,1923-11-09,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Alice Savy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/6bff5a62-eced-4f79-a6f3-649cab124b38/manifest,;https://iiif.princeton.edu/loris/figgy_prod/e4%2F77%2F6d%2Fe4776d9e1d694824804a09dfddc43004%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1923-11-10,1923-12-10,https://shakespeareandco.princeton.edu/members/meesters/,Miss Meesters,"Meesters, Miss",12.00,,1 month,30,1,,1923-11-10,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-11-10,1923-11-20,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/jackson-eighteen-nineties/,The Eighteen Nineties,,"Jackson, George Holbrook",1913,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0e%2F11%2F22%2F0e112265b86349fcb3817e711b264d0a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-11-10,1923-12-08,https://shakespeareandco.princeton.edu/members/joyce-lucia/,Lucia Joyce,"Joyce, Lucia",,,,,,,,,Returned,28,,,https://shakespeareandco.princeton.edu/books/gaskell-cranford/,Cranford,,"Gaskell, Elizabeth",1853,,Lending Library Card,"Lucia Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1923-11-10,1923-12-08,https://shakespeareandco.princeton.edu/members/joyce-lucia/,Lucia Joyce,"Joyce, Lucia",,,,,,,,,Returned,28,,,https://shakespeareandco.princeton.edu/books/andreyev-gets-slapped-play/,He Who Gets Slapped: A Play in Four Acts,,"Andreyev, Leonid",1922,,Lending Library Card,"Lucia Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Renewal,1923-11-11,1923-12-11,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",12.00,,1 month,30,1,,1923-11-03,,,,,FRF,,,,,,,Lending Library Card;Logbook,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest;,https://iiif.princeton.edu/loris/figgy_prod/17%2Fb9%2F97%2F17b9978f259f49b9af0ed3a0d27a1e18%2Fintermediate_file.jp2/full/full/0/default.jpg;
+Subscription,1923-11-12,1924-02-12,https://shakespeareandco.princeton.edu/members/holt-kate/,Kate Holt,"Holt, Kate",30.00,20.00,3 months,92,1,,1923-11-12,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Crossed out,1923-11-12,,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/huxley-limbo/,Limbo,,"Huxley, Aldous",1920,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/dd%2Fd4%2Fc5%2Fddd4c51b44084836ab3bd7e8ebc808fd%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-11-13,1923-11-20,https://shakespeareandco.princeton.edu/members/service/,Robert W. Service / Mr. R. W. Service,"Service, Robert W.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/bennett-things-interested/,Things That Have Interested Me,,"Bennett, Arnold",1921,,Lending Library Card,"Sylvia Beach, Robert Service Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/102d8619-7160-464b-8967-ca771c0c29f6/manifest,https://iiif.princeton.edu/loris/figgy_prod/53%2F09%2F2b%2F53092b965bc944c783c7ec0d7f2e9c0d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1923-11-13,1924-02-13,https://shakespeareandco.princeton.edu/members/gallagher-dorothy/,Dorothy Gallagher,"Gallagher, Dorothy",40.00,40.00,3 months,92,2,,1923-11-13,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-11-13,1923-11-26,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/strachey-books-characters-french/,"Books and Characters, French and English",,"Strachey, Giles Lytton",1922,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/98%2F09%2F76%2F980976167b584583a3c8a45d687bb5ca%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-11-13,1923-11-23,https://shakespeareandco.princeton.edu/members/savy/,Alice Savy,"Savy, Alice",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/strachey-books-characters-french/,"Books and Characters, French and English",,"Strachey, Giles Lytton",1922,,Lending Library Card,"Sylvia Beach, Alice Savy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6bff5a62-eced-4f79-a6f3-649cab124b38/manifest,https://iiif.princeton.edu/loris/figgy_prod/e4%2F77%2F6d%2Fe4776d9e1d694824804a09dfddc43004%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-11-13,1923-11-20,https://shakespeareandco.princeton.edu/members/service/,Robert W. Service / Mr. R. W. Service,"Service, Robert W.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/garnett-friday-nights-literary/,Friday Nights: Literary Criticisms and Appreciations,,"Garnett, Edward",1922,,Lending Library Card,"Sylvia Beach, Robert Service Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/102d8619-7160-464b-8967-ca771c0c29f6/manifest,https://iiif.princeton.edu/loris/figgy_prod/53%2F09%2F2b%2F53092b965bc944c783c7ec0d7f2e9c0d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-11-13,1923-11-26,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/myers-modern-music-aims/,Modern Music: Its Aims and Tendencies,,"Myers, Rollo",1923,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/98%2F09%2F76%2F980976167b584583a3c8a45d687bb5ca%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1923-11-14,1924-02-14,https://shakespeareandco.princeton.edu/members/bornand-odette/,Odette Bornand,"Bornand, Odette",30.00,,3 months,92,2,,1923-11-14,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1923-11-14,1923-12-14,https://shakespeareandco.princeton.edu/members/gardner-mabel/,Mabel Gardner,"Gardner, Mabel",12.00,,1 month,30,1,,1923-11-14,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1923-11-14,1923-12-14,https://shakespeareandco.princeton.edu/members/harvey-grace/,Grace Harvey,"Harvey, Grace",12.00,20.00,1 month,30,1,,1923-11-14,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1923-11-14,1923-12-14,https://shakespeareandco.princeton.edu/members/liebman-carl/,Carl Liebman,"Liebman, Carl",12.00,20.00,1 month,30,1,,1923-11-14,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-11-15,1923-12-01,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/coventry-patmore/,Coventry Patmore,,,,Unidentified. By or about Patmore.,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/dd%2Fd4%2Fc5%2Fddd4c51b44084836ab3bd7e8ebc808fd%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1923-11-15,1923-12-15,https://shakespeareandco.princeton.edu/members/desplanques/,Mme Desplanques,"Desplanques, Mme",12.00,,1 month,30,1,,1923-11-14,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1923-11-16,1924-02-16,https://shakespeareandco.princeton.edu/members/ringwald/,Mr. Ringwald,"Ringwald, Mr.",30.00,,3 months,92,1,,1923-11-16,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-11-16,1923-11-21,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/george-saintsbury/,George Saintsbury,,,,Unidentified. By or about George Saintsbury.,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/30%2Fa6%2F5a%2F30a65ae6db3342ceb750d3757815324e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-11-16,1923-11-23,https://shakespeareandco.princeton.edu/members/solano/,Solita Solano,"Solano, Solita",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/firbank-flower-beneath-foot/,The Flower Beneath the Foot: Being a Record of the Early Life of St. Laura de Nazianzi and the Times in Which She Lived,,"Firbank, Ronald",1923,,Lending Library Card,"Sylvia Beach, Solita Solano Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ae91e41-ccc0-4df6-9150-63a893d8d633/manifest,https://iiif.princeton.edu/loris/figgy_prod/bd%2Fba%2F13%2Fbdba1387593646bc9191e31037922558%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-11-16,1923-11-21,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/phantasia/,Phantasia,,,,Unidentified. Likely D. H. Lawrence's *Fantasia of the Unconscious* (1922).,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/30%2Fa6%2F5a%2F30a65ae6db3342ceb750d3757815324e%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1923-11-17,1924-05-17,https://shakespeareandco.princeton.edu/members/lemierre-m-j/,M. J. Lemierre,"Lemierre, Mr. M. J.",50.00,,6 months,182,2,,1923-11-10,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1923-11-17,1923-12-17,https://shakespeareandco.princeton.edu/members/martin-maud/,Maud Martin,"Martin, Maud",16.00,,1 month,30,2,,1923-11-06,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1923-11-19,1923-11-19,https://shakespeareandco.princeton.edu/members/martin-marietta/,Marietta Martin,"Martin, Marietta",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-11-20,1924-01-02,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,43,,,https://shakespeareandco.princeton.edu/books/chaucer-complete-works-geoffrey-chaucer/,The Complete Works of Geoffrey Chaucer,Vol. 4 The Canterbury Tales,"Chaucer, Geoffrey",1894,"Published by Clarendon Press, Oxford University Press.",Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/17%2Fb9%2F97%2F17b9978f259f49b9af0ed3a0d27a1e18%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-11-20,,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/croce-aesthetic-science-expression/,Aesthetic: As Science of Expression and General Linguistic,,"Croce, Benedetto",1909,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/17%2Fb9%2F97%2F17b9978f259f49b9af0ed3a0d27a1e18%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-11-20,1923-11-27,https://shakespeareandco.princeton.edu/members/service/,Robert W. Service / Mr. R. W. Service,"Service, Robert W.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/hecht-thousand-one-afternoons/,A Thousand and One Afternoons in Chicago,,"Hecht, Ben",1922,,Lending Library Card,"Sylvia Beach, Robert Service Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/102d8619-7160-464b-8967-ca771c0c29f6/manifest,https://iiif.princeton.edu/loris/figgy_prod/53%2F09%2F2b%2F53092b965bc944c783c7ec0d7f2e9c0d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-11-20,1923-12-12,https://shakespeareandco.princeton.edu/members/service/,Robert W. Service / Mr. R. W. Service,"Service, Robert W.",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/lawrence-sea-sardinia/,Sea and Sardinia,,"Lawrence, D. H.",1921,,Lending Library Card,"Sylvia Beach, Robert Service Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/102d8619-7160-464b-8967-ca771c0c29f6/manifest,https://iiif.princeton.edu/loris/figgy_prod/53%2F09%2F2b%2F53092b965bc944c783c7ec0d7f2e9c0d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1923-11-20,1923-12-20,https://shakespeareandco.princeton.edu/members/archer/,Mrs. J. W. Archer,"Archer, Mrs. J. W.",16.00,,1 month,30,2,,1923-10-19,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1923-11-21,1924-02-21,https://shakespeareandco.princeton.edu/members/king-flora/,Flora King,"King, Flora",40.00,40.00,3 months,92,2,,1923-11-21,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-11-21,1923-11-22,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/thayer-dial/,The Dial,,,,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/30%2Fa6%2F5a%2F30a65ae6db3342ceb750d3757815324e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-11-21,1923-11-28,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/dostoyevsky-brothers-karamazov/,The Brothers Karamazov,,"Dostoyevsky, Fyodor",1880,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/30%2Fa6%2F5a%2F30a65ae6db3342ceb750d3757815324e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-11-21,1923-11-28,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/moore-confessions-young-man/,The Confessions of a Young Man,,"Moore, George",1886,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/30%2Fa6%2F5a%2F30a65ae6db3342ceb750d3757815324e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-11-22,1923-12-17,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,25,,,https://shakespeareandco.princeton.edu/books/gaskell-cranford/,Cranford,,"Gaskell, Elizabeth",1853,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/18%2F8a%2F2d%2F188a2d5b46c44e5e96b6cdaf585e9dd1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-11-23,1923-12-08,https://shakespeareandco.princeton.edu/members/savy/,Alice Savy,"Savy, Alice",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/moore-esther-waters/,Esther Waters,,"Moore, George",1894,,Lending Library Card,"Sylvia Beach, Alice Savy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6bff5a62-eced-4f79-a6f3-649cab124b38/manifest,https://iiif.princeton.edu/loris/figgy_prod/e4%2F77%2F6d%2Fe4776d9e1d694824804a09dfddc43004%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-11-23,1923-11-26,https://shakespeareandco.princeton.edu/members/solano/,Solita Solano,"Solano, Solita",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/woolf-voyage/,The Voyage Out,,"Woolf, Virginia",1915,,Lending Library Card,"Sylvia Beach, Solita Solano Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ae91e41-ccc0-4df6-9150-63a893d8d633/manifest,https://iiif.princeton.edu/loris/figgy_prod/bd%2Fba%2F13%2Fbdba1387593646bc9191e31037922558%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1923-11-23,1923-12-23,https://shakespeareandco.princeton.edu/members/edwards-4/,Mrs. Edwards,"Edwards, Mrs.",12.00,20.00,1 month,30,1,,1923-11-23,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-11-24,1923-12-20,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,26,,,https://shakespeareandco.princeton.edu/books/sandburg-chicago-poems/,Chicago Poems,,"Sandburg, Carl",1916,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/44%2F3e%2F23%2F443e23d2272a4436913610d2befac4ad%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1923-11-24,1923-12-24,https://shakespeareandco.princeton.edu/members/rowe-2/,Mrs. Rowe,"Rowe, Mrs.",8.00,,1 month,30,1,,1923-11-24,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-11-24,1923-12-20,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,26,,,https://shakespeareandco.princeton.edu/books/sinclair-mary-olivier-life/,Mary Olivier: A Life,,"Sinclair, May",1919,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/44%2F3e%2F23%2F443e23d2272a4436913610d2befac4ad%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1923-11-26,1924-11-26,https://shakespeareandco.princeton.edu/members/campbell-d-m/,D. M. Campbell,"Campbell, D. M.",110.00,40.00,1 year,366,2,,1923-11-26,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-11-26,1923-12-12,https://shakespeareandco.princeton.edu/members/solano/,Solita Solano,"Solano, Solita",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/douglas-south-wind/,South Wind,,"Douglas, Norman",1917,,Lending Library Card,"Sylvia Beach, Solita Solano Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ae91e41-ccc0-4df6-9150-63a893d8d633/manifest,https://iiif.princeton.edu/loris/figgy_prod/bd%2Fba%2F13%2Fbdba1387593646bc9191e31037922558%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1923-11-26,1923-11-26,https://shakespeareandco.princeton.edu/members/maccormack-gilson/;https://shakespeareandco.princeton.edu/members/mccormack-mrs/,Gilson MacCormack;Mrs. MacCormack,"MacCormack, Gilson;MacCormack, Mrs.",,,,,,,,,,,,,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-11-26,1923-12-14,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/untermeyer-modern-american-poetry/,Modern American Poetry: An Introduction,,,1919,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/98%2F09%2F76%2F980976167b584583a3c8a45d687bb5ca%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-11-26,1923-12-14,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/goethe/,Goethe,,,,Unidentified. Dolly Wilde borrowed volumes 1 and 2 of an unspecified edition.,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/98%2F09%2F76%2F980976167b584583a3c8a45d687bb5ca%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1923-11-26,1923-12-26,https://shakespeareandco.princeton.edu/members/macelwee-h-k/,H. K. MacElwee,"MacElwee, H. K.",12.00,20.00,1 month,30,1,,1923-11-26,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-11-26,1923-11-30,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/thayer-dial/,The Dial,,,,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/98%2F09%2F76%2F980976167b584583a3c8a45d687bb5ca%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1923-11-27,1924-02-27,https://shakespeareandco.princeton.edu/members/davis-mary/,Mary Davis / Mrs. N. D. Davis,"Davis, Mary",40.00,,3 months,92,2,,1923-11-27,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-11-27,1923-12-15,https://shakespeareandco.princeton.edu/members/schereck/,Mildred Schereck,"Schereck, Mildred",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/wells-tales-unexpected/,Tales of the Unexpected,,"Wells, H. G.",1900,,Lending Library Card,"Sylvia Beach, Mildred Schereck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3b15ea0c-ed8d-4b41-80f3-33485620b12c/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2F91%2Fb3%2F5e91b3031c4d49a5a9df2b18e73d411d%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1923-11-27,1924-02-27,https://shakespeareandco.princeton.edu/members/boiteau/,Mme Boiteau,"Boiteau, Mme",30.00,,3 months,92,1,,1923-11-27,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1923-11-27,1923-12-27,https://shakespeareandco.princeton.edu/members/solome/,Mme de SolomΓ©,"de SolomΓ©, Mme",8.00,,1 month,30,1,,1923-11-23,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-11-27,1923-12-12,https://shakespeareandco.princeton.edu/members/service/,Robert W. Service / Mr. R. W. Service,"Service, Robert W.",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/o-henry-memorial/,O. Henry Memorial Award Prize Stories,,,,"Unidentified edition. Year unknown: likely 1919, 1920, 1921, or 1922.",Lending Library Card,"Sylvia Beach, Robert Service Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/102d8619-7160-464b-8967-ca771c0c29f6/manifest,https://iiif.princeton.edu/loris/figgy_prod/53%2F09%2F2b%2F53092b965bc944c783c7ec0d7f2e9c0d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-11-28,1923-12-03,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/macaulay-told-idiot/,Told by an Idiot,,"Macaulay, Rose",1923,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0e%2F11%2F22%2F0e112265b86349fcb3817e711b264d0a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1923-11-29,1923-11-29,https://shakespeareandco.princeton.edu/members/fry-c-d/,C. D. Fry,"Fry, C. D.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-11-29,1923-12-07,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/archer-old-drama-new/,The Old Drama and the New,,"Archer, William",1923,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/30%2Fa6%2F5a%2F30a65ae6db3342ceb750d3757815324e%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1923-11-29,1923-12-29,https://shakespeareandco.princeton.edu/members/hunt-peter/,Peter Hunt,"Hunt, Peter",12.00,20.00,1 month,30,1,,1923-11-29,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1923-11-29,1923-12-29,https://shakespeareandco.princeton.edu/members/moynihan-a/,A. Moynihan,"Moynihan, A.",12.00,20.00,1 month,30,1,,1923-11-29,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1923-11-30,1924-02-29,https://shakespeareandco.princeton.edu/members/borie/,Mme Adolphe Borie,"Borie, Mme Adolphe",40.00,40.00,3 months,91,2,,1923-11-30,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-11-30,1924-01-15,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,46,,,https://shakespeareandco.princeton.edu/books/moore-mummers-wife/,A Mummer's Wife,,"Moore, George",1885,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/7e%2F89%2Fd9%2F7e89d956d66e4e2893ae3ae67b1b5fa6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1923-11-30,1923-12-30,https://shakespeareandco.princeton.edu/members/fry-c-d/,C. D. Fry,"Fry, C. D.",12.00,,1 month,30,1,,1923-11-29,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-12-01,1923-12-10,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/seven-deadly-sins/,The Seven Deadly Sins,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/dd%2Fd4%2Fc5%2Fddd4c51b44084836ab3bd7e8ebc808fd%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1923-12-01,1924-01-01,https://shakespeareandco.princeton.edu/members/hunter-2/,Miss Hunter,"Hunter, Miss",12.00,,1 month,31,1,,1923-12-01,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1923-12-01,1923-12-01,https://shakespeareandco.princeton.edu/members/chairing/,Mr. Chairing,"Chairing, Mr.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-12-03,1923-12-27,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,24,,,https://shakespeareandco.princeton.edu/books/de-la-mare-riddle/,The Riddle,,"De la Mare, Walter",1923,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0e%2F11%2F22%2F0e112265b86349fcb3817e711b264d0a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1923-12-04,1923-12-04,https://shakespeareandco.princeton.edu/members/henderson-elsie/,Elsie Henderson,"Henderson, Elsie",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1923-12-05,1924-01-05,https://shakespeareandco.princeton.edu/members/viele-mary-wharton/,Mary (Wharton) VielΓ© / Mrs. H. K. VielΓ© / Mrs. VielΓ© Griffin,"VielΓ©, Mary",12.00,20.00,1 month,31,1,,1923-12-05,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Mary VielΓ© Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/e2ab8b31-bc39-4cb6-98d6-467e78ecb3be/manifest,;https://iiif.princeton.edu/loris/figgy_prod/63%2F1b%2F61%2F631b6148029840b7895b70ccf207e650%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1923-12-05,1923-12-19,https://shakespeareandco.princeton.edu/members/roger-cornaz-frederic/,FrΓ©dΓ©ric Roger-Cornaz,"Roger-Cornaz, FrΓ©dΓ©ric",4.00,,2 weeks,14,,,1923-12-04,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-12-05,,https://shakespeareandco.princeton.edu/members/viele-mary-wharton/,Mary (Wharton) VielΓ© / Mrs. H. K. VielΓ© / Mrs. VielΓ© Griffin,"VielΓ©, Mary",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/nugent-grand-tour/,The Grand Tour,,"Nugent, Thomas",1749,,Lending Library Card,"Sylvia Beach, Mary VielΓ© Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e2ab8b31-bc39-4cb6-98d6-467e78ecb3be/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F1b%2F61%2F631b6148029840b7895b70ccf207e650%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1923-12-06,1924-01-06,https://shakespeareandco.princeton.edu/members/ketchum-m-l/,M. L. Ketcham,"Ketcham, M. L.",12.00,20.00,1 month,31,1,,1923-12-06,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-12-07,1923-12-11,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/richardson-revolving-lights-pilgrimage/,Revolving Lights (Pilgrimage 7),,"Richardson, Dorothy M.",1923,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/30%2Fa6%2F5a%2F30a65ae6db3342ceb750d3757815324e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-12-07,1923-12-11,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/wheeler-six-plays-contemporaries/,Six Plays by Contemporaries of Shakespeare,,"Dekker, Thomas;Webster, John;Beaumont, Francis;Fletcher, John;Massinger, Philip",1915,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/30%2Fa6%2F5a%2F30a65ae6db3342ceb750d3757815324e%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1923-12-07,1924-06-07,https://shakespeareandco.princeton.edu/members/beaudains/,Mlle Beaudains,"Beaudains, Mlle",41.60,,6 months,183,1,AdL,1923-12-07,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-12-07,1924-01-07,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,31,,,https://shakespeareandco.princeton.edu/books/stevenson-merry-men-tales/,The Merry Men and Other Tales and Fables,,"Stevenson, Robert Louis",1882,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/a9%2F51%2F55%2Fa951550798fc4d8e99cdd187d8c34ff0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-12-08,1924-10-25,https://shakespeareandco.princeton.edu/members/joyce-lucia/,Lucia Joyce,"Joyce, Lucia",,,,,,,,,Returned,322,,,https://shakespeareandco.princeton.edu/books/oneill-hairy-ape/,The Hairy Ape,,"O'Neill, Eugene",1923,,Lending Library Card,"Lucia Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Subscription,1923-12-08,1924-03-08,https://shakespeareandco.princeton.edu/members/merrell-elinor/,Elinor Merrell,"Merrell, Elinor",30.00,20.00,3 months,91,1,,1923-12-08,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-12-08,1924-01-07,https://shakespeareandco.princeton.edu/members/joyce-lucia/,Lucia Joyce,"Joyce, Lucia",,,,,,,,,Returned,30,,,https://shakespeareandco.princeton.edu/books/barrie-admirable-crichton/,The Admirable Crichton,,"Barrie, J. M.",1902,,Lending Library Card,"Lucia Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Reimbursement,1923-12-08,1923-12-08,https://shakespeareandco.princeton.edu/members/savy/,Alice Savy,"Savy, Alice",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-12-08,1924-01-07,https://shakespeareandco.princeton.edu/members/joyce-lucia/,Lucia Joyce,"Joyce, Lucia",,,,,,,,,Returned,30,,,https://shakespeareandco.princeton.edu/books/barrie-half-hours/,Half Hours,,"Barrie, J. M.",1914,,Lending Library Card,"Lucia Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Crossed out,1923-12-09,,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/mr-mrs-unclear/,Mr. and Mrs. [unclear],,,,Unidentified. Handwriting unclear.,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/30%2Fa6%2F5a%2F30a65ae6db3342ceb750d3757815324e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-12-10,,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/richardson-pointed-roofs/,Pointed Roofs (Pilgrimage 1),,"Richardson, Dorothy M.",1915,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/18%2F8a%2F2d%2F188a2d5b46c44e5e96b6cdaf585e9dd1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-12-10,1924-01-02,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/moore-confessions-young-man/,The Confessions of a Young Man,,"Moore, George",1886,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/dd%2Fd4%2Fc5%2Fddd4c51b44084836ab3bd7e8ebc808fd%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-12-11,1923-12-12,https://shakespeareandco.princeton.edu/members/rhys/,Mr. Rhys,"Rhys, Mr.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/harrison-english-review/,The English Review,,,,,Lending Library Card,"Sylvia Beach, Rhys Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0fcf5eb6-f872-481c-a304-e45a0c9fe472/manifest,https://iiif.princeton.edu/loris/figgy_prod/67%2F3d%2F21%2F673d211972284e099df1c89a348719ce%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-12-11,1923-12-12,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/mansfield-doves-nest-stories/,The Doves' Nest and Other Stories,,"Mansfield, Katherine",1923,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/30%2Fa6%2F5a%2F30a65ae6db3342ceb750d3757815324e%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1923-12-11,1923-12-11,https://shakespeareandco.princeton.edu/members/fry-c-d/,C. D. Fry,"Fry, C. D.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1923-12-11,1924-01-11,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",12.00,,1 month,31,1,,1923-12-12,,,,,FRF,,,,,,,Lending Library Card;Logbook,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest;,https://iiif.princeton.edu/loris/figgy_prod/17%2Fb9%2F97%2F17b9978f259f49b9af0ed3a0d27a1e18%2Fintermediate_file.jp2/full/full/0/default.jpg;
+Borrow,1923-12-11,1923-12-19,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/jackson-eighteen-nineties/,The Eighteen Nineties,,"Jackson, George Holbrook",1913,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/30%2Fa6%2F5a%2F30a65ae6db3342ceb750d3757815324e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-12-11,1923-12-19,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/swinnerton-three-lovers/,The Three Lovers,,"Swinnerton, Frank",1922,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/30%2Fa6%2F5a%2F30a65ae6db3342ceb750d3757815324e%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1923-12-12,1923-12-12,https://shakespeareandco.princeton.edu/members/dighton-w/,W. Dighton,"Dighton, W.",,,,,,,,60.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-12-12,1924-01-05,https://shakespeareandco.princeton.edu/members/solano/,Solita Solano,"Solano, Solita",,,,,,,,,Returned,24,,,https://shakespeareandco.princeton.edu/books/pater-gaston-latour-unfinished/,Gaston de Latour: An Unfinished Romance,,"Pater, Walter",1896,,Lending Library Card,"Sylvia Beach, Solita Solano Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ae91e41-ccc0-4df6-9150-63a893d8d633/manifest,https://iiif.princeton.edu/loris/figgy_prod/bd%2Fba%2F13%2Fbdba1387593646bc9191e31037922558%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1923-12-12,1923-12-12,https://shakespeareandco.princeton.edu/members/moynihan-a/,A. Moynihan,"Moynihan, A.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1923-12-13,1923-12-13,https://shakespeareandco.princeton.edu/members/hunt-peter/,Peter Hunt,"Hunt, Peter",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-12-14,1923-12-19,https://shakespeareandco.princeton.edu/members/viele-mary-wharton/,Mary (Wharton) VielΓ© / Mrs. H. K. VielΓ© / Mrs. VielΓ© Griffin,"VielΓ©, Mary",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/anderson-many-marriages/,Many Marriages,,"Anderson, Sherwood",1923,,Lending Library Card,"Sylvia Beach, Mary VielΓ© Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e2ab8b31-bc39-4cb6-98d6-467e78ecb3be/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F1b%2F61%2F631b6148029840b7895b70ccf207e650%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-12-14,1923-12-19,https://shakespeareandco.princeton.edu/members/viele-mary-wharton/,Mary (Wharton) VielΓ© / Mrs. H. K. VielΓ© / Mrs. VielΓ© Griffin,"VielΓ©, Mary",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/scott-bewilderment/,Bewilderment,,"Scott, Evelyn",1922,,Lending Library Card,"Sylvia Beach, Mary VielΓ© Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e2ab8b31-bc39-4cb6-98d6-467e78ecb3be/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F1b%2F61%2F631b6148029840b7895b70ccf207e650%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-12-14,1923-12-19,https://shakespeareandco.princeton.edu/members/viele-mary-wharton/,Mary (Wharton) VielΓ© / Mrs. H. K. VielΓ© / Mrs. VielΓ© Griffin,"VielΓ©, Mary",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/hecht-thousand-one-afternoons/,A Thousand and One Afternoons in Chicago,,"Hecht, Ben",1922,,Lending Library Card,"Sylvia Beach, Mary VielΓ© Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e2ab8b31-bc39-4cb6-98d6-467e78ecb3be/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F1b%2F61%2F631b6148029840b7895b70ccf207e650%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1923-12-14,1923-12-14,https://shakespeareandco.princeton.edu/members/goodridge-e-r/,E. R. Goodridge,"Goodridge, E. R.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1923-12-14,1923-12-14,https://shakespeareandco.princeton.edu/members/harvey-grace/,Grace Harvey,"Harvey, Grace",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-12-14,1923-12-31,https://shakespeareandco.princeton.edu/members/viele-mary-wharton/,Mary (Wharton) VielΓ© / Mrs. H. K. VielΓ© / Mrs. VielΓ© Griffin,"VielΓ©, Mary",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/baring-triangle-passages-three/,A Triangle: Passages from Three Notebooks,,"Baring, Maurice",1923,,Lending Library Card,"Sylvia Beach, Mary VielΓ© Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e2ab8b31-bc39-4cb6-98d6-467e78ecb3be/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F1b%2F61%2F631b6148029840b7895b70ccf207e650%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-12-14,1923-12-27,https://shakespeareandco.princeton.edu/members/viele-mary-wharton/,Mary (Wharton) VielΓ© / Mrs. H. K. VielΓ© / Mrs. VielΓ© Griffin,"VielΓ©, Mary",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/mallarme-house-enemy/,The House of the Enemy,,"MallarmΓ©, Camille",1922,,Lending Library Card,"Sylvia Beach, Mary VielΓ© Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e2ab8b31-bc39-4cb6-98d6-467e78ecb3be/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F1b%2F61%2F631b6148029840b7895b70ccf207e650%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-12-15,1924-01-15,https://shakespeareandco.princeton.edu/members/schereck/,Mildred Schereck,"Schereck, Mildred",,,,,,,,,Returned,31,,,https://shakespeareandco.princeton.edu/books/west-judge/,The Judge,,"West, Rebecca",1922,,Lending Library Card,"Sylvia Beach, Mildred Schereck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3b15ea0c-ed8d-4b41-80f3-33485620b12c/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2F91%2Fb3%2F5e91b3031c4d49a5a9df2b18e73d411d%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1923-12-17,1924-01-17,https://shakespeareandco.princeton.edu/members/mims-edwin/,Edwin Mims,"Mims, Edwin",12.00,20.00,1 month,31,1,,1923-12-17,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-12-17,1924-01-07,https://shakespeareandco.princeton.edu/members/joyce-lucia/,Lucia Joyce,"Joyce, Lucia",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/andreyev-samson-chains-posthumous/,Samson in Chains: Posthumous Tragedy,,"Andreyev, Leonid",1923,,Lending Library Card,"Lucia Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Subscription,1923-12-18,1924-01-18,https://shakespeareandco.princeton.edu/members/barns/,Barbara Barns,"Barns, Barbara",16.00,20.00,1 month,31,2,,1923-12-18,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1923-12-19,1924-01-19,https://shakespeareandco.princeton.edu/members/pougaud/,M. Pougaud,"Pougaud, M.",8.00,,1 month,31,1,,1923-12-10,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-12-19,1923-12-22,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/galsworthy-country-house/,The Country House,,"Galsworthy, John",1907,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/cc%2F0c%2Ffe%2Fcc0cfeb942f9432c8de54dbd5caffbcc%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1923-12-19,1923-12-19,https://shakespeareandco.princeton.edu/members/anderson/,Mr. Anderson,"Anderson, Mr.",,,,,,,,40.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Request,1923-12-20,,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/hobman-westminster-gazette/,The Westminster Gazette,,,,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/44%2F3e%2F23%2F443e23d2272a4436913610d2befac4ad%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-12-20,1924-01-16,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,27,,,https://shakespeareandco.princeton.edu/books/yeats-plays-prose-verse/,Plays in Prose and Verse,,"Yeats, William Butler",1922,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/44%2F3e%2F23%2F443e23d2272a4436913610d2befac4ad%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-12-20,1923-12-22,https://shakespeareandco.princeton.edu/members/viele-mary-wharton/,Mary (Wharton) VielΓ© / Mrs. H. K. VielΓ© / Mrs. VielΓ© Griffin,"VielΓ©, Mary",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/squire-london-mercury/,The London Mercury,,,,,Lending Library Card,"Sylvia Beach, Mary VielΓ© Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e2ab8b31-bc39-4cb6-98d6-467e78ecb3be/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F1b%2F61%2F631b6148029840b7895b70ccf207e650%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-12-20,1923-12-22,https://shakespeareandco.princeton.edu/members/viele-mary-wharton/,Mary (Wharton) VielΓ© / Mrs. H. K. VielΓ© / Mrs. VielΓ© Griffin,"VielΓ©, Mary",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/harrison-english-review/,The English Review,,,,,Lending Library Card,"Sylvia Beach, Mary VielΓ© Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e2ab8b31-bc39-4cb6-98d6-467e78ecb3be/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F1b%2F61%2F631b6148029840b7895b70ccf207e650%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-12-20,1924-01-16,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,27,,,https://shakespeareandco.princeton.edu/books/yeats-poems/,Poems,,"Yeats, William Butler",,Unidentified edition or editions.,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/44%2F3e%2F23%2F443e23d2272a4436913610d2befac4ad%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1923-12-21,1924-03-21,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",16.00,,3 months,91,1,,1924-02-16,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/e0%2Fae%2F6b%2Fe0ae6bec54324349b412353650ee6dab%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1923-12-21,1923-12-21,https://shakespeareandco.princeton.edu/members/fierst/,Mme Fierst,"Fierst, Mme",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Supplement,1923-12-21,1924-03-08,https://shakespeareandco.princeton.edu/members/merrell-elinor/,Elinor Merrell,"Merrell, Elinor",10.00,20.00,"2 months, 16 days",78,1,,1923-12-21,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1923-12-22,1924-01-22,https://shakespeareandco.princeton.edu/members/fabre-luce-alfred/,Alfred Fabre-Luce,"Fabre-Luce, Alfred",12.00,20.00,1 month,31,1,,1923-12-22,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1923-12-22,1924-01-22,https://shakespeareandco.princeton.edu/members/irving-arthur/,Arthur Irving,"Irving, Arthur",12.00,20.00,1 month,31,1,,1923-12-22,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-12-22,1923-12-24,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/beresford-imperturbable-duchess-stories/,The Imperturbable Duchess and Other Stories,,"Beresford, J. D.",1923,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/cc%2F0c%2Ffe%2Fcc0cfeb942f9432c8de54dbd5caffbcc%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-12-22,1924-01-22,https://shakespeareandco.princeton.edu/members/service/,Robert W. Service / Mr. R. W. Service,"Service, Robert W.",,,,,,,,,Returned,31,,,https://shakespeareandco.princeton.edu/books/douglas-old-calabria/,Old Calabria,,"Douglas, Norman",1915,,Lending Library Card,"Sylvia Beach, Robert Service Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/102d8619-7160-464b-8967-ca771c0c29f6/manifest,https://iiif.princeton.edu/loris/figgy_prod/15%2Fd8%2Fe9%2F15d8e9e91dca4f9faeaa5ea2b538fc5f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-12-22,1924-01-22,https://shakespeareandco.princeton.edu/members/service/,Robert W. Service / Mr. R. W. Service,"Service, Robert W.",,,,,,,,,Returned,31,,,https://shakespeareandco.princeton.edu/books/chekhov-letters-tchehov-family/,Letters of Tchehov to His Family and Friends,,"Chekhov, Anton",1920,,Lending Library Card,"Sylvia Beach, Robert Service Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/102d8619-7160-464b-8967-ca771c0c29f6/manifest,https://iiif.princeton.edu/loris/figgy_prod/15%2Fd8%2Fe9%2F15d8e9e91dca4f9faeaa5ea2b538fc5f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1923-12-23,1924-03-23,https://shakespeareandco.princeton.edu/members/philip-terence/,Terence Philip,"Philip, Terence",20.00,,3 months,91,1,,1923-03-02,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Terence Philip Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/880ae6be-2806-4c0e-abb5-8ae7f939b057/manifest,;https://iiif.princeton.edu/loris/figgy_prod/88%2F0b%2F9e%2F880b9e079efd46a69f55bf9aa031317e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1923-12-23,1924-01-23,https://shakespeareandco.princeton.edu/members/edwards-4/,Mrs. Edwards,"Edwards, Mrs.",12.00,,1 month,31,2,,1923-12-21,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1923-12-24,1924-01-24,https://shakespeareandco.princeton.edu/members/ford-1/,Mrs. Ford,"Ford, Mrs.",16.00,,1 month,31,2,,1923-12-24,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1923-12-24,1924-01-24,https://shakespeareandco.princeton.edu/members/rowe-2/,Mrs. Rowe,"Rowe, Mrs.",8.00,,1 month,31,1,,1923-12-20,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-12-24,1923-12-29,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/dreiser-sister-carrie/,Sister Carrie,,"Dreiser, Theodore",1900,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/cc%2F0c%2Ffe%2Fcc0cfeb942f9432c8de54dbd5caffbcc%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1923-12-24,1923-12-24,https://shakespeareandco.princeton.edu/members/chambrun/,Comtesse de Chambrun,"de Chambrun, Comtesse",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1923-12-24,1924-01-24,https://shakespeareandco.princeton.edu/members/goodridge-mary/,Mary Goodridge,"Goodridge, Mary",12.00,20.00,1 month,31,1,,1923-12-24,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1923-12-26,1924-06-26,https://shakespeareandco.princeton.edu/members/hereford-w/,W. Hereford,"Hereford, W.",52.00,,6 months,183,1,,1923-12-26,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1923-12-27,1924-03-27,https://shakespeareandco.princeton.edu/members/lowenfeld/,Mme Lowenfeld,"Lowenfeld, Mme",60.00,,3 months,91,4,,1923-12-08,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1923-12-27,1924-01-27,https://shakespeareandco.princeton.edu/members/solome/,Mme de SolomΓ©,"de SolomΓ©, Mme",8.00,,1 month,31,1,,1923-12-12,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Supplement,1923-12-27,1924-03-27,https://shakespeareandco.princeton.edu/members/lowenfeld/,Mme Lowenfeld,"Lowenfeld, Mme",20.00,,3 months,91,5,,1923-12-19,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-12-27,1923-12-31,https://shakespeareandco.princeton.edu/members/viele-mary-wharton/,Mary (Wharton) VielΓ© / Mrs. H. K. VielΓ© / Mrs. VielΓ© Griffin,"VielΓ©, Mary",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/firbank-flower-beneath-foot/,The Flower Beneath the Foot: Being a Record of the Early Life of St. Laura de Nazianzi and the Times in Which She Lived,,"Firbank, Ronald",1923,,Lending Library Card,"Sylvia Beach, Mary VielΓ© Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e2ab8b31-bc39-4cb6-98d6-467e78ecb3be/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F1b%2F61%2F631b6148029840b7895b70ccf207e650%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-12-27,1923-12-29,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/anderson-horses-men-tales/,"Horses and Men: Tales, Long and Short, from Our American Life",,"Anderson, Sherwood",1923,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0e%2F11%2F22%2F0e112265b86349fcb3817e711b264d0a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1923-12-28,1924-01-28,https://shakespeareandco.princeton.edu/members/goldstein-2/,Mr. Goldstein,"Goldstein, Mr.",12.00,100.00,1 month,31,1,,1923-12-28,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1923-12-29,1923-12-31,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/mansfield-bliss-short-stories/,Bliss and Other Stories,,"Mansfield, Katherine",1920,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/cc%2F0c%2Ffe%2Fcc0cfeb942f9432c8de54dbd5caffbcc%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1923-12-29,1924-03-29,https://shakespeareandco.princeton.edu/members/louriau-camille/,Camille Louriau,"Louriau, Camille",20.00,,3 months,91,1,,1923-12-15,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-12-29,1923-12-31,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/craig-theatre-advancing/,The Theatre Advancing,,"Craig, Edward Gordon",1919,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/cc%2F0c%2Ffe%2Fcc0cfeb942f9432c8de54dbd5caffbcc%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1923-12-29,1923-12-29,https://shakespeareandco.princeton.edu/members/didisheim/,Frank Didisheim,"Didisheim, Frank",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1923-12-29,1924-01-29,https://shakespeareandco.princeton.edu/members/harrison-10/,Mrs. Harrison,"Harrison, Mrs.",16.00,40.00,1 month,31,2,,1923-12-29,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1923-12-29,1924-01-07,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/stephens-demi-gods/,The Demi-Gods,,"Stephens, James",1914,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0e%2F11%2F22%2F0e112265b86349fcb3817e711b264d0a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-12-31,1924-01-03,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/bennett-riceyman-steps/,Riceyman Steps,,"Bennett, Arnold",1923,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/cc%2F0c%2Ffe%2Fcc0cfeb942f9432c8de54dbd5caffbcc%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1923-12-31,1924-01-03,https://shakespeareandco.princeton.edu/members/viele-mary-wharton/,Mary (Wharton) VielΓ© / Mrs. H. K. VielΓ© / Mrs. VielΓ© Griffin,"VielΓ©, Mary",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/woolf-night-day/,Night and Day,,"Woolf, Virginia",1919,,Lending Library Card,"Sylvia Beach, Mary VielΓ© Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e2ab8b31-bc39-4cb6-98d6-467e78ecb3be/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F1b%2F61%2F631b6148029840b7895b70ccf207e650%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-12-31,1924-01-03,https://shakespeareandco.princeton.edu/members/viele-mary-wharton/,Mary (Wharton) VielΓ© / Mrs. H. K. VielΓ© / Mrs. VielΓ© Griffin,"VielΓ©, Mary",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/tatchell-happy-traveller-book/,The Happy Traveller: A Book for Poor Men,,"Tatchell, Frank",1923,,Lending Library Card,"Sylvia Beach, Mary VielΓ© Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e2ab8b31-bc39-4cb6-98d6-467e78ecb3be/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F1b%2F61%2F631b6148029840b7895b70ccf207e650%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1923-12-31,1924-01-09,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/zangwill-children-ghetto-study/,Children of the Ghetto: A Study of a Peculiar People,,"Zangwill, Israel",1892,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/cc%2F0c%2Ffe%2Fcc0cfeb942f9432c8de54dbd5caffbcc%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-01-01,1924-01-28,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,27,,,https://shakespeareandco.princeton.edu/books/yeats-plays/,Plays,,"Yeats, William Butler",,Unidentified edition or editions.,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/a9%2F51%2F55%2Fa951550798fc4d8e99cdd187d8c34ff0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1924-01-01,1924-04-01,https://shakespeareandco.princeton.edu/members/boesmilon/,Mme Tougard de Boesmilon,"de Boesmilon, Mme Tougard",20.00,,3 months,91,1,,1923-12-31,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-01-02,1924-01-17,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/japanese-fairy-tales/,Japanese Fairy Tales,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/dd%2Fd4%2Fc5%2Fddd4c51b44084836ab3bd7e8ebc808fd%2Fintermediate_file/full/full/0/default.jpg
+Crossed out,1924-01-02,,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/gregory-three-wonder-plays/,Three Wonder Plays,,"Gregory, Lady",1922,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/fa%2F62%2F32%2Ffa6232e0788b4f6b91b39355b374306a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-01-02,1924-01-17,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/howard-surrey-poems/,Poems,,"Howard, Henry, Earl of Surrey",,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/17%2Fb9%2F97%2F17b9978f259f49b9af0ed3a0d27a1e18%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-01-02,1924-01-22,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/pound-pavannes-divisions/,Pavannes and Divisions,,"Pound, Ezra",1918,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/17%2Fb9%2F97%2F17b9978f259f49b9af0ed3a0d27a1e18%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-01-03,1924-01-05,https://shakespeareandco.princeton.edu/members/viele-mary-wharton/,Mary (Wharton) VielΓ© / Mrs. H. K. VielΓ© / Mrs. VielΓ© Griffin,"VielΓ©, Mary",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/joyce-dubliners/,Dubliners,,"Joyce, James",1914,,Lending Library Card,"Sylvia Beach, Mary VielΓ© Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e2ab8b31-bc39-4cb6-98d6-467e78ecb3be/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F1b%2F61%2F631b6148029840b7895b70ccf207e650%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-01-03,1924-01-09,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/pater-marius-epicurean/,Marius the Epicurean,,"Pater, Walter",1885,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/cc%2F0c%2Ffe%2Fcc0cfeb942f9432c8de54dbd5caffbcc%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1924-01-04,1924-07-04,https://shakespeareandco.princeton.edu/members/johnstone-g-e/,G. E. Johnstone,"Johnstone, G. E.",67.00,40.00,6 months,182,2,,1924-01-04,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1924-01-05,1924-02-05,https://shakespeareandco.princeton.edu/members/viele-mary-wharton/,Mary (Wharton) VielΓ© / Mrs. H. K. VielΓ© / Mrs. VielΓ© Griffin,"VielΓ©, Mary",12.00,,1 month,31,1,,1924-01-05,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Mary VielΓ© Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/e2ab8b31-bc39-4cb6-98d6-467e78ecb3be/manifest,;https://iiif.princeton.edu/loris/figgy_prod/63%2F1b%2F61%2F631b6148029840b7895b70ccf207e650%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1924-01-05,1924-01-05,https://shakespeareandco.princeton.edu/members/fabre-luce-alfred/,Alfred Fabre-Luce,"Fabre-Luce, Alfred",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1924-01-05,1924-01-05,https://shakespeareandco.princeton.edu/members/hewitt-helen/,Helen Hewitt,"Hewitt, Helen",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-01-05,1924-01-07,https://shakespeareandco.princeton.edu/members/viele-mary-wharton/,Mary (Wharton) VielΓ© / Mrs. H. K. VielΓ© / Mrs. VielΓ© Griffin,"VielΓ©, Mary",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/scott-escapade/,Escapade,,"Scott, Evelyn",1923,,Lending Library Card,"Sylvia Beach, Mary VielΓ© Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e2ab8b31-bc39-4cb6-98d6-467e78ecb3be/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F1b%2F61%2F631b6148029840b7895b70ccf207e650%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1924-01-06,1924-02-06,https://shakespeareandco.princeton.edu/members/service/,Robert W. Service / Mr. R. W. Service,"Service, Robert W.",16.00,,1 month,31,2,,1924-01-22,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Robert Service Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/102d8619-7160-464b-8967-ca771c0c29f6/manifest,;https://iiif.princeton.edu/loris/figgy_prod/15%2Fd8%2Fe9%2F15d8e9e91dca4f9faeaa5ea2b538fc5f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1924-01-07,1924-01-07,https://shakespeareandco.princeton.edu/members/koop/,Miss Koop,"Koop, Miss",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1924-01-07,1924-02-07,https://shakespeareandco.princeton.edu/members/doerr/,Mme Doerr / Mme Duer,"Doerr, Mme",8.00,,1 month,31,1,,1923-12-24,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-01-07,1924-01-11,https://shakespeareandco.princeton.edu/members/viele-mary-wharton/,Mary (Wharton) VielΓ© / Mrs. H. K. VielΓ© / Mrs. VielΓ© Griffin,"VielΓ©, Mary",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/richardson-revolving-lights-pilgrimage/,Revolving Lights (Pilgrimage 7),,"Richardson, Dorothy M.",1923,,Lending Library Card,"Sylvia Beach, Mary VielΓ© Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e2ab8b31-bc39-4cb6-98d6-467e78ecb3be/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F1b%2F61%2F631b6148029840b7895b70ccf207e650%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-01-07,1924-01-11,https://shakespeareandco.princeton.edu/members/viele-mary-wharton/,Mary (Wharton) VielΓ© / Mrs. H. K. VielΓ© / Mrs. VielΓ© Griffin,"VielΓ©, Mary",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/oriordan-adam-caroline/,Adam and Caroline,,"O'Riordan, Conal",1921,,Lending Library Card,"Sylvia Beach, Mary VielΓ© Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e2ab8b31-bc39-4cb6-98d6-467e78ecb3be/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F1b%2F61%2F631b6148029840b7895b70ccf207e650%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-01-07,1924-01-28,https://shakespeareandco.princeton.edu/members/joyce-lucia/,Lucia Joyce,"Joyce, Lucia",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/ibsen-emperor-galilean-world/,Emperor and Galilean: A World-Historic Drama,,"Ibsen, Henrik",1904,,Lending Library Card,"Lucia Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1924-01-07,1924-01-15,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/mackenzie-early-life-adventures/,The Early Life and Adventures of Sylvia Scarlett,2 vols.,"Mackenzie, Compton",1918,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/a9%2F51%2F55%2Fa951550798fc4d8e99cdd187d8c34ff0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-01-07,1924-01-15,https://shakespeareandco.princeton.edu/members/solano/,Solita Solano,"Solano, Solita",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/cather-lost-lady/,A Lost Lady,,"Cather, Willa",1923,,Lending Library Card,"Sylvia Beach, Solita Solano Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ae91e41-ccc0-4df6-9150-63a893d8d633/manifest,https://iiif.princeton.edu/loris/figgy_prod/bd%2Fba%2F13%2Fbdba1387593646bc9191e31037922558%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-01-07,1924-01-11,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/huxley-antic-hay/,Antic Hay,,"Huxley, Aldous",1923,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0e%2F11%2F22%2F0e112265b86349fcb3817e711b264d0a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1924-01-08,1924-01-08,https://shakespeareandco.princeton.edu/members/beach-2/,Joseph Beach,"Beach, Joseph",,,,,,,,40.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1924-01-08,1924-01-15,https://shakespeareandco.princeton.edu/members/homer-5/,Mr. Homer,"Homer, Mr.",3.00,,1 week,7,,,1924-01-08,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1924-01-09,1924-02-09,https://shakespeareandco.princeton.edu/members/lloyd-joella/,Joella Lloyd,"Lloyd, Joella",12.00,,1 month,31,2,,1924-01-09,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-01-09,1924-01-11,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/honore-de-balzac-celibates/,The Celibates,,"Balzac, HonorΓ© de",1897,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/cc%2F0c%2Ffe%2Fcc0cfeb942f9432c8de54dbd5caffbcc%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-01-09,,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/pater-marius-epicurean/,Marius the Epicurean,Vol. 2,"Pater, Walter",1885,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/cc%2F0c%2Ffe%2Fcc0cfeb942f9432c8de54dbd5caffbcc%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-01-11,1924-01-17,https://shakespeareandco.princeton.edu/members/rhys/,Mr. Rhys,"Rhys, Mr.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/lewis-babbitt/,Babbitt,,"Lewis, Sinclair",1922,,Lending Library Card,"Sylvia Beach, Rhys Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0fcf5eb6-f872-481c-a304-e45a0c9fe472/manifest,https://iiif.princeton.edu/loris/figgy_prod/67%2F3d%2F21%2F673d211972284e099df1c89a348719ce%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1924-01-11,1924-01-11,https://shakespeareandco.princeton.edu/members/vardy/,Mr. Vardy,"Vardy, Mr.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-01-11,1924-01-19,https://shakespeareandco.princeton.edu/members/viele-mary-wharton/,Mary (Wharton) VielΓ© / Mrs. H. K. VielΓ© / Mrs. VielΓ© Griffin,"VielΓ©, Mary",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/macaulay-told-idiot/,Told by an Idiot,,"Macaulay, Rose",1923,,Lending Library Card,"Sylvia Beach, Mary VielΓ© Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e2ab8b31-bc39-4cb6-98d6-467e78ecb3be/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F1b%2F61%2F631b6148029840b7895b70ccf207e650%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-01-11,1924-01-26,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/joyce-portrait-artist-young/,A Portrait of the Artist as a Young Man,,"Joyce, James",1916,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0e%2F11%2F22%2F0e112265b86349fcb3817e711b264d0a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1924-01-11,1924-02-11,https://shakespeareandco.princeton.edu/members/sutton-vane/,Miss Sutton-Vane,"Sutton-Vane, Miss",16.00,,1 month,31,2,,1924-01-07,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-01-11,1924-01-14,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/huxley-antic-hay/,Antic Hay,,"Huxley, Aldous",1923,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/cc%2F0c%2Ffe%2Fcc0cfeb942f9432c8de54dbd5caffbcc%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1924-01-11,1925-01-11,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",64.00,,1 year,366,2,,1924-01-11,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,;https://iiif-cloud.princeton.edu/iiif/2/fa%2F62%2F32%2Ffa6232e0788b4f6b91b39355b374306a%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1924-01-11,1924-02-11,https://shakespeareandco.princeton.edu/members/trasher-mrs/,Mrs. Trasher,"Trasher, Mrs.",12.00,20.00,1 month,31,1,,1924-01-11,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1924-01-12,1924-02-12,https://shakespeareandco.princeton.edu/members/jabotinsky/,Vladimir Jabotinsky / Ze'ev Jabotinsky / Mr. Jabotinsky,"Jabotinsky, Ze'ev",16.00,40.00,1 month,31,2,,1924-01-12,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1924-01-14,1924-02-14,https://shakespeareandco.princeton.edu/members/chauvel/,Jean Chauvel,"Chauvel, Jean",16.00,40.00,1 month,31,2,,1924-01-14,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1924-01-14,1925-01-14,https://shakespeareandco.princeton.edu/members/rieder/,M. Rieder,"Rieder, M.",72.00,,1 year,366,1,AdL,1924-01-14,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Rieder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/559c8919-8881-40ad-b027-67dbf1b23611/manifest,;https://iiif.princeton.edu/loris/figgy_prod/6b%2Ffd%2F99%2F6bfd992bb8e742da8b7377869c34b3c2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1924-01-14,1924-04-14,https://shakespeareandco.princeton.edu/members/hodge/,Lucy Hodge,"Hodge, Lucy",30.00,,3 months,91,1,,1924-01-14,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-01-14,1924-01-18,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/gogol-overcoat-stories/,The Overcoat and Other Stories,,"Gogol, Nikolai",1923,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/cc%2F0c%2Ffe%2Fcc0cfeb942f9432c8de54dbd5caffbcc%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-01-14,1924-06-28,https://shakespeareandco.princeton.edu/members/rieder/,M. Rieder,"Rieder, M.",,,,,,,,,Returned,166,,,https://shakespeareandco.princeton.edu/books/russell-prospects-industrial-civilization/,The Prospects of Industrial Civilization,,"Russell, Bertrand",1923,,Lending Library Card,"Sylvia Beach, Rieder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/559c8919-8881-40ad-b027-67dbf1b23611/manifest,https://iiif.princeton.edu/loris/figgy_prod/6b%2Ffd%2F99%2F6bfd992bb8e742da8b7377869c34b3c2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Generic,1924-01-14,,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/a-e-interpreters-2/,The Interpreters,,Γ,1922,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/cc%2F0c%2Ffe%2Fcc0cfeb942f9432c8de54dbd5caffbcc%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-01-15,1924-02-12,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,28,,,https://shakespeareandco.princeton.edu/books/give-take/,Give and Take,,,,Unidentified. Amber Reeves's *Give and Take: A Novel of Intrigue* (1923) or Aaron Hoffman's *Give and Talk* (1926).,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/7e%2F89%2Fd9%2F7e89d956d66e4e2893ae3ae67b1b5fa6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1924-01-15,1924-01-15,https://shakespeareandco.princeton.edu/members/macelwee-h-k/,H. K. MacElwee,"MacElwee, H. K.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1924-01-15,1924-04-15,https://shakespeareandco.princeton.edu/members/embrie-margaret-train/,Margaret Train Embrie,"Embrie, Margaret Train",20.00,40.00,3 months,91,2,,1924-01-15,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-01-16,1924-01-29,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/frank-rahab/,Rahab,,"Frank, Waldo",1922,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/44%2F3e%2F23%2F443e23d2272a4436913610d2befac4ad%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-01-16,1924-01-29,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/mansfield-doves-nest-stories/,The Doves' Nest and Other Stories,,"Mansfield, Katherine",1923,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/44%2F3e%2F23%2F443e23d2272a4436913610d2befac4ad%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1924-01-16,1924-01-16,https://shakespeareandco.princeton.edu/members/irving-arthur/,Arthur Irving,"Irving, Arthur",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1924-01-16,1924-02-16,https://shakespeareandco.princeton.edu/members/vardy/,Mr. Vardy,"Vardy, Mr.",12.00,,1 month,31,1,,1924-01-07,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1924-01-17,1924-02-17,https://shakespeareandco.princeton.edu/members/dempwolf-helen/,Helen Dempwolf,"Dempwolf, Helen",12.00,20.00,1 month,31,1,,1924-01-17,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Request,1924-01-17,,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/moore-poems/,Poems,,"Moore, Marianne",1921,The borrows for *Poems* after 1935 are likely for Moore's [*Selected Poems*](https://shakespeareandco.princeton.edu/books/moore-selected-poems-marianne/) (1935).,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/17%2Fb9%2F97%2F17b9978f259f49b9af0ed3a0d27a1e18%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-01-17,1924-02-04,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/dickensian-magazine-dickens/,The Dickensian: A Magazine for Dickens Lovers,,,,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/dd%2Fd4%2Fc5%2Fddd4c51b44084836ab3bd7e8ebc808fd%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1924-01-17,1924-04-17,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",40.00,40.00,3 months,91,2,,1924-01-17,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Separate Payment,1924-01-17,1924-01-17,https://shakespeareandco.princeton.edu/members/embrie-margaret-train/,Margaret Train Embrie,"Embrie, Margaret Train",,20.00,,,,,1924-01-17,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-01-18,,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/thayer-dial/,The Dial,,,,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/cc%2F0c%2Ffe%2Fcc0cfeb942f9432c8de54dbd5caffbcc%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-01-18,1924-01-21,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/dreiser-jennie-gerhardt/,Jennie Gerhardt,,"Dreiser, Theodore",1911,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/cc%2F0c%2Ffe%2Fcc0cfeb942f9432c8de54dbd5caffbcc%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1924-01-18,1924-02-18,https://shakespeareandco.princeton.edu/members/ghose/,Mr. Ghose,"Ghose, Mr.",12.00,,1 month,31,1,,1924-01-07,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1924-01-19,1924-02-19,https://shakespeareandco.princeton.edu/members/harrison-a/,A. Harrison,"Harrison, A.",30.00,,1 month,31,2,,1924-01-19,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1924-01-19,1924-07-19,https://shakespeareandco.princeton.edu/members/nairn-sylvia/,Sylvia Nairn,"Nairn, Sylvia",52.00,,6 months,182,1,,1924-01-19,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-01-19,1924-01-28,https://shakespeareandco.princeton.edu/members/viele-mary-wharton/,Mary (Wharton) VielΓ© / Mrs. H. K. VielΓ© / Mrs. VielΓ© Griffin,"VielΓ©, Mary",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/lawrence-ladybird/,The Ladybird,,"Lawrence, D. H.",1923,,Lending Library Card,"Sylvia Beach, Mary VielΓ© Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e2ab8b31-bc39-4cb6-98d6-467e78ecb3be/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F1b%2F61%2F631b6148029840b7895b70ccf207e650%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1924-01-19,1924-02-19,https://shakespeareandco.princeton.edu/members/holmes-johns/,John Holmes,"Holmes, John",12.00,20.00,1 month,31,1,,1924-01-19,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1924-01-19,1924-04-19,https://shakespeareandco.princeton.edu/members/henderson-2/,Mrs. Henderson,"Henderson, Mrs.",52.00,,3 months,91,3,,1924-01-19,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1924-01-19,1924-02-19,https://shakespeareandco.princeton.edu/members/chin/,Mr. Chin,"Chin, Mr.",12.00,20.00,1 month,31,1,,1924-01-19,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1924-01-19,1924-04-19,https://shakespeareandco.princeton.edu/members/lomax/,Mr. Lomax,"Lomax, Mr.",20.00,,3 months,91,1,,1924-01-15,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-01-19,1924-01-24,https://shakespeareandco.princeton.edu/members/linossier-raymonde/,Raymonde Linossier,"Linossier, Raymonde",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/conrad-nigger-narcissus/,The Nigger of the Narcissus,,"Conrad, Joseph",1897,,Lending Library Card,"Sylvia Beach, Raymonde Linossier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/53ede5bf-939d-44f5-9ddb-4dd39363bd20/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2F3a%2F9c%2F233a9cb20f834e619e82f1ecdce098fd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1924-01-19,1924-02-19,https://shakespeareandco.princeton.edu/members/pougaud/,M. Pougaud,"Pougaud, M.",8.00,,1 month,31,1,,1924-01-04,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-01-21,1924-01-31,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/frazier-golden-bough-study/,The Golden Bough: A Study in Comparative Religion,,"Frazer, James George",1890,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/cc%2F0c%2Ffe%2Fcc0cfeb942f9432c8de54dbd5caffbcc%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1924-01-21,1924-02-21,https://shakespeareandco.princeton.edu/members/kuo/,Mr. Kuo,"Kuo, Mr.",12.00,20.00,1 month,31,1,,1924-01-21,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1924-01-21,1924-01-21,https://shakespeareandco.princeton.edu/members/edwards-4/,Mrs. Edwards,"Edwards, Mrs.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1924-01-21,1924-02-21,https://shakespeareandco.princeton.edu/members/shostac-2/,Miss Shostac,"Shostac, Miss",8.00,,1 month,31,1,,1924-01-19,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-01-21,1924-01-28,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/dreiser-genius/,"The ""Genius""",,"Dreiser, Theodore",1915,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/cc%2F0c%2Ffe%2Fcc0cfeb942f9432c8de54dbd5caffbcc%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-01-22,1924-01-28,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/yeats-responsibilities-poems/,Responsibilities and Other Poems,,"Yeats, William Butler",1916,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/17%2Fb9%2F97%2F17b9978f259f49b9af0ed3a0d27a1e18%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-01-23,1924-02-05,https://shakespeareandco.princeton.edu/members/solano/,Solita Solano,"Solano, Solita",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/wright-life-walter-pater/,The Life of Walter Pater,,"Wright, Thomas",1907,,Lending Library Card,"Sylvia Beach, Solita Solano Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ae91e41-ccc0-4df6-9150-63a893d8d633/manifest,https://iiif.princeton.edu/loris/figgy_prod/bd%2Fba%2F13%2Fbdba1387593646bc9191e31037922558%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1924-01-23,1924-04-23,https://shakespeareandco.princeton.edu/members/solano/,Solita Solano,"Solano, Solita",30.00,,3 months,91,1,,1924-01-23,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Solita Solano Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ae91e41-ccc0-4df6-9150-63a893d8d633/manifest,https://iiif.princeton.edu/loris/figgy_prod/bd%2Fba%2F13%2Fbdba1387593646bc9191e31037922558%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1924-01-24,1924-02-24,https://shakespeareandco.princeton.edu/members/rowe-2/,Mrs. Rowe,"Rowe, Mrs.",8.00,,1 month,31,1,,1924-01-10,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1924-01-24,1924-02-24,https://shakespeareandco.princeton.edu/members/manesse/,Mr. Manesse,"Manesse, Mr.",16.00,40.00,1 month,31,2,,1924-01-24,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-01-24,,https://shakespeareandco.princeton.edu/members/linossier-raymonde/,Raymonde Linossier,"Linossier, Raymonde",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/conrad-lord-jim/,Lord Jim,,"Conrad, Joseph",1900,,Lending Library Card,"Sylvia Beach, Raymonde Linossier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/53ede5bf-939d-44f5-9ddb-4dd39363bd20/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2F3a%2F9c%2F233a9cb20f834e619e82f1ecdce098fd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1924-01-24,1924-02-24,https://shakespeareandco.princeton.edu/members/barlett/,Jessie Bartlett,"Bartlett, Jessie",16.00,40.00,1 month,31,2,,1924-01-24,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1924-01-25,1924-04-25,https://shakespeareandco.princeton.edu/members/goodridge-mary/,Mary Goodridge,"Goodridge, Mary",30.00,,3 months,91,1,,1924-01-25,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1924-01-26,1924-02-26,https://shakespeareandco.princeton.edu/members/bernhard/,Andrew Bernhard,"Bernhard, Andrew",12.00,20.00,1 month,31,1,,1924-01-26,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1924-01-26,1924-02-26,https://shakespeareandco.princeton.edu/members/lucas-j-w/,Mrs. J. W. Lucas,"Lucas, Mrs. J. W.",12.00,20.00,1 month,31,1,,1924-01-26,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1924-01-26,1924-02-26,https://shakespeareandco.princeton.edu/members/clapp/,Mrs. F. M. Clapp,"Clapp, Mrs. F. M.",16.00,,1 month,31,2,,1924-01-26,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-01-26,1924-02-04,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/cather-lost-lady/,A Lost Lady,,"Cather, Willa",1923,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0e%2F11%2F22%2F0e112265b86349fcb3817e711b264d0a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1924-01-27,1924-02-27,https://shakespeareandco.princeton.edu/members/solome/,Mme de SolomΓ©,"de SolomΓ©, Mme",8.00,,1 month,31,1,,1924-01-15,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1924-01-27,1925-01-27,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",72.00,,1 year,366,1,,1924-04-19,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,;https://iiif-cloud.princeton.edu/iiif/2/f0%2F4d%2F03%2Ff04d03669cc04077855d41ff251737a6%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-01-28,1924-02-01,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/yeats-cutting-agate/,The Cutting of an Agate,,"Yeats, William Butler",1912,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/17%2Fb9%2F97%2F17b9978f259f49b9af0ed3a0d27a1e18%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-01-28,1924-04-14,https://shakespeareandco.princeton.edu/members/joyce-lucia/,Lucia Joyce,"Joyce, Lucia",,,,,,,,,Returned,77,,,https://shakespeareandco.princeton.edu/books/galsworthy-windows-comedy-three/,Windows: A Comedy in Three Acts for Idealists and Others,,"Galsworthy, John",1922,,Lending Library Card,"Lucia Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1924-01-28,1924-02-22,https://shakespeareandco.princeton.edu/members/joyce-lucia/,Lucia Joyce,"Joyce, Lucia",,,,,,,,,Returned,25,,,https://shakespeareandco.princeton.edu/books/flecker-hassan/,Hassan,,"Flecker, James Elroy",1922,,Lending Library Card,"Lucia Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Crossed out,1924-01-28,,https://shakespeareandco.princeton.edu/members/joyce-lucia/,Lucia Joyce,"Joyce, Lucia",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/galsworthy-justice/,Justice,,"Galsworthy, John",1910,,Lending Library Card,"Lucia Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1924-01-28,1924-01-31,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/james-golden-bowl/,The Golden Bowl,,"James, Henry",1904,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/cc%2F0c%2Ffe%2Fcc0cfeb942f9432c8de54dbd5caffbcc%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1924-01-28,1924-01-28,https://shakespeareandco.princeton.edu/members/bakshy-alex/,Alex Bakshy,"Bakshy, Alex",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-01-28,1924-02-01,https://shakespeareandco.princeton.edu/members/viele-mary-wharton/,Mary (Wharton) VielΓ© / Mrs. H. K. VielΓ© / Mrs. VielΓ© Griffin,"VielΓ©, Mary",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/bennett-riceyman-steps/,Riceyman Steps,,"Bennett, Arnold",1923,,Lending Library Card,"Sylvia Beach, Mary VielΓ© Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e2ab8b31-bc39-4cb6-98d6-467e78ecb3be/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F1b%2F61%2F631b6148029840b7895b70ccf207e650%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-01-28,1924-02-22,https://shakespeareandco.princeton.edu/members/joyce-lucia/,Lucia Joyce,"Joyce, Lucia",,,,,,,,,Returned,25,,,https://shakespeareandco.princeton.edu/books/shaw-plays-pleasant-unpleasant/,Plays: Pleasant and Unpleasant,Vol. 2 Pleasant Plays,"Shaw, George Bernard",1898,,Lending Library Card,"Lucia Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1924-01-28,1924-02-13,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/hardy-lifes-little-ironies/,"Life's Little Ironies: A Set of Tales, with Some Colloquial Sketches, Entitled, A Few Crusted Characters",,"Hardy, Thomas",1894,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/a9%2F51%2F55%2Fa951550798fc4d8e99cdd187d8c34ff0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-01-29,1924-02-09,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/borrow-lavengro-scholar-gypsy/,"Lavengro: The Scholar, the Gypsy, the Priest",,"Borrow, George Henry",1851,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/44%2F3e%2F23%2F443e23d2272a4436913610d2befac4ad%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1924-01-29,1924-02-29,https://shakespeareandco.princeton.edu/members/boccara/,Mlle Boccara,"Boccara, Mlle",8.00,,1 month,31,1,,1924-01-29,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-01-29,1924-02-09,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/rossetti-family-letters-christina/,Family Letters of Christina Rossetti,,"Rossetti, Dante Gabriel",1908,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/44%2F3e%2F23%2F443e23d2272a4436913610d2befac4ad%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-01-30,1924-02-02,https://shakespeareandco.princeton.edu/members/rhys/,Mr. Rhys,"Rhys, Mr.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/bradley-story-flamenca/,The Story of Flamenca,,"Bradley, William Aspenwall",1923,,Lending Library Card,"Sylvia Beach, Rhys Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0fcf5eb6-f872-481c-a304-e45a0c9fe472/manifest,https://iiif.princeton.edu/loris/figgy_prod/67%2F3d%2F21%2F673d211972284e099df1c89a348719ce%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1924-01-30,1924-04-30,https://shakespeareandco.princeton.edu/members/flanner-janet/,Janet Flanner,"Flanner, Janet",30.00,,3 months,91,1,,1924-01-25,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-01-30,1924-01-31,https://shakespeareandco.princeton.edu/members/rhys/,Mr. Rhys,"Rhys, Mr.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/mansfield-garden-party-stories/,The Garden Party and Other Stories,,"Mansfield, Katherine",1922,,Lending Library Card,"Sylvia Beach, Rhys Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0fcf5eb6-f872-481c-a304-e45a0c9fe472/manifest,https://iiif.princeton.edu/loris/figgy_prod/67%2F3d%2F21%2F673d211972284e099df1c89a348719ce%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1924-01-31,1924-07-31,https://shakespeareandco.princeton.edu/members/gilliam/,Miss Gilliam,"Gilliam, Miss",35.00,,6 months,182,1,,1924-01-15,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1924-01-31,1924-02-29,https://shakespeareandco.princeton.edu/members/kiang/,Mr. Kiang / Mr. Kiong,"Kiang, Mr.",16.00,40.00,1 month,29,2,,1924-01-31,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-01-31,1924-02-02,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/smith-dictionary-greek-roman/,Dictionary of Greek and Roman Biography and Mythology,,"Smith, William",1849,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/cc%2F0c%2Ffe%2Fcc0cfeb942f9432c8de54dbd5caffbcc%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-01-31,1924-02-02,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/kaye-smith-end-house-alard/,The End of the House of Alard,,"Kaye-Smith, Sheila",1923,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/cc%2F0c%2Ffe%2Fcc0cfeb942f9432c8de54dbd5caffbcc%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-02-01,1924-02-05,https://shakespeareandco.princeton.edu/members/viele-mary-wharton/,Mary (Wharton) VielΓ© / Mrs. H. K. VielΓ© / Mrs. VielΓ© Griffin,"VielΓ©, Mary",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/cannan-annette-bennett/,Annette and Bennett,,"Cannan, Gilbert",1923,,Lending Library Card,"Sylvia Beach, Mary VielΓ© Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e2ab8b31-bc39-4cb6-98d6-467e78ecb3be/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F1b%2F61%2F631b6148029840b7895b70ccf207e650%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1924-02-01,1924-03-01,https://shakespeareandco.princeton.edu/members/barrie-jean/,Jean Barrie,"Barrie, Jean",12.00,20.00,1 month,29,1,,1924-02-01,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-02-01,1924-02-12,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/morris-specimens-early-english/,Specimens of Early English,,,1867,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/17%2Fb9%2F97%2F17b9978f259f49b9af0ed3a0d27a1e18%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1924-02-02,1924-03-02,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",16.00,,1 month,29,2,,1924-02-02,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,;https://iiif.princeton.edu/loris/figgy_prod/46%2F5b%2F11%2F465b116cf8854264a7635ed938d2cce6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-02-02,,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/saintsbury-collected-essays-papers/,"The Collected Essays and Papers of George Saintsbury, 1875 β 1920",Vol. 1 Essays in English Literature,"Saintsbury, George",1923,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/46%2F5b%2F11%2F465b116cf8854264a7635ed938d2cce6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1924-02-02,1924-03-02,https://shakespeareandco.princeton.edu/members/mitchell-john/,John Mitchell,"Mitchell, John",12.00,20.00,1 month,29,1,,1924-02-02,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-02-02,1924-02-06,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/symons-loves-cruelty/,Love's Cruelty,,"Symons, Arthur",1923,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/cc%2F0c%2Ffe%2Fcc0cfeb942f9432c8de54dbd5caffbcc%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-02-02,1924-02-06,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/murry-still-life/,Still Life,,"Murry, John Middleton",1916,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/cc%2F0c%2Ffe%2Fcc0cfeb942f9432c8de54dbd5caffbcc%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1924-02-02,1924-04-02,https://shakespeareandco.princeton.edu/members/yartley/,Miss Yartley / Yardley,"Yartley, Miss",56.00,,2 months,60,3,,1924-02-02,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-02-02,,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/russell-abc-atoms/,The ABC of Atoms,,"Russell, Bertrand",1923,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/46%2F5b%2F11%2F465b116cf8854264a7635ed938d2cce6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-02-04,1924-02-13,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/machen-house-souls/,The House of Souls,,"Machen, Arthur",1906,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/dd%2Fd4%2Fc5%2Fddd4c51b44084836ab3bd7e8ebc808fd%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-02-04,1924-03-03,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,28,,,https://shakespeareandco.princeton.edu/books/scott-escapade/,Escapade,,"Scott, Evelyn",1923,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0e%2F11%2F22%2F0e112265b86349fcb3817e711b264d0a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-02-04,1924-02-10,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/dreiser-genius/,"The ""Genius""",,"Dreiser, Theodore",1915,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0e%2F11%2F22%2F0e112265b86349fcb3817e711b264d0a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-02-05,1924-02-23,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/huxley-essays-biologist/,Essays of a Biologist,,"Huxley, Julian",1923,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/46%2F5b%2F11%2F465b116cf8854264a7635ed938d2cce6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-02-05,1924-02-11,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/carritt-theory-beauty/,The Theory of Beauty,,"Carritt, E. F.",1914,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/46%2F5b%2F11%2F465b116cf8854264a7635ed938d2cce6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1924-02-05,1925-02-05,https://shakespeareandco.princeton.edu/members/flecker/,Mrs. Flecker,"Flecker, Mrs.",48.00,,1 year,366,1,,1924-02-05,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1924-02-05,1924-02-20,https://shakespeareandco.princeton.edu/members/viele-mary-wharton/,Mary (Wharton) VielΓ© / Mrs. H. K. VielΓ© / Mrs. VielΓ© Griffin,"VielΓ©, Mary",6.00,,15 days,15,1,,1924-02-20,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Mary VielΓ© Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/e2ab8b31-bc39-4cb6-98d6-467e78ecb3be/manifest,;https://iiif.princeton.edu/loris/figgy_prod/63%2F1b%2F61%2F631b6148029840b7895b70ccf207e650%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-02-05,1924-02-09,https://shakespeareandco.princeton.edu/members/viele-mary-wharton/,Mary (Wharton) VielΓ© / Mrs. H. K. VielΓ© / Mrs. VielΓ© Griffin,"VielΓ©, Mary",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/lawrence-england-england-stories/,"England, My England and Other Stories",,"Lawrence, D. H.",1922,,Lending Library Card,"Sylvia Beach, Mary VielΓ© Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e2ab8b31-bc39-4cb6-98d6-467e78ecb3be/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F1b%2F61%2F631b6148029840b7895b70ccf207e650%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-02-05,1924-02-13,https://shakespeareandco.princeton.edu/members/solano/,Solita Solano,"Solano, Solita",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/benson-walter-pater/,Walter Pater,,"Benson, Arthur Christopher",1906,,Lending Library Card,"Sylvia Beach, Solita Solano Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ae91e41-ccc0-4df6-9150-63a893d8d633/manifest,https://iiif.princeton.edu/loris/figgy_prod/bd%2Fba%2F13%2Fbdba1387593646bc9191e31037922558%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-02-06,1924-02-20,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/thayer-dial/,The Dial,"Vol. 75, no. 6, Dec 1923",,,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/cc%2F0c%2Ffe%2Fcc0cfeb942f9432c8de54dbd5caffbcc%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-02-06,1924-03-03,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,26,,,https://shakespeareandco.princeton.edu/books/dekker-seven-deadly-sinnes/,The Seven Deadly Sinnes of London,,"Dekker, Thomas",,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/cc%2F0c%2Ffe%2Fcc0cfeb942f9432c8de54dbd5caffbcc%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-02-06,1924-03-03,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,26,,,https://shakespeareandco.princeton.edu/books/padelford-early-sixteenth-century/,Early Sixteenth Century Lyrics,,,1907,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/cc%2F0c%2Ffe%2Fcc0cfeb942f9432c8de54dbd5caffbcc%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-02-06,1924-02-19,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/oneill-emperor-jones/,The Emperor Jones,,"O'Neill, Eugene",1921,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/cc%2F0c%2Ffe%2Fcc0cfeb942f9432c8de54dbd5caffbcc%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1924-02-06,1924-05-06,https://shakespeareandco.princeton.edu/members/huban-lily/,Lily Huban,"Huban, Lily",40.00,,3 months,90,2,,1924-02-05,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1924-02-07,1924-02-07,https://shakespeareandco.princeton.edu/members/macpherson/,Mrs. MacPherson,"MacPherson, Mrs.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1924-02-07,1924-03-07,https://shakespeareandco.princeton.edu/members/ford-1/,Mrs. Ford,"Ford, Mrs.",16.00,,1 month,29,2,,1924-02-07,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-02-07,1924-03-29,https://shakespeareandco.princeton.edu/members/lanux-eyre-de/,Eyre de Lanux / Mrs. Pierre de Lanux,"de Lanux, Eyre",,,,,,,,,Returned,51,,,https://shakespeareandco.princeton.edu/books/milton/,Milton,,,,Unidentified. By or about Milton. Mme Mazon borrows volume 1.,Lending Library Card,"Sylvia Beach, Eyre de Lanux Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/83ffbc32-6c8f-4f6b-9086-3cb10c47e667/manifest,https://iiif.princeton.edu/loris/figgy_prod/c5%2F5e%2F64%2Fc55e64e4948a444680596f37654b3dcf%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1924-02-07,1924-03-07,https://shakespeareandco.princeton.edu/members/johnson-merle/,Mrs. Merle Johnson,"Johnson, Mrs. Merle",16.00,40.00,1 month,29,2,,1924-02-07,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1924-02-08,1924-03-08,https://shakespeareandco.princeton.edu/members/jewett/,[unclear] Jewett,"Jewett, [unclear]",16.00,40.00,1 month,29,2,,1924-02-08,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1924-02-08,1924-05-08,https://shakespeareandco.princeton.edu/members/richards-2/,Miss Richards,"Richards, Miss",30.00,,3 months,90,1,,1924-02-08,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Supplement,1924-02-09,1924-06-26,https://shakespeareandco.princeton.edu/members/hereford-w/,W. Hereford,"Hereford, W.",15.00,,"4 months, 17 days",138,1,,1924-02-09,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-02-09,1924-02-23,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/woolf-night-day/,Night and Day,,"Woolf, Virginia",1919,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/44%2F3e%2F23%2F443e23d2272a4436913610d2befac4ad%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-02-09,1924-02-23,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/gregory-three-wonder-plays/,Three Wonder Plays,,"Gregory, Lady",1922,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/44%2F3e%2F23%2F443e23d2272a4436913610d2befac4ad%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-02-09,1924-02-16,https://shakespeareandco.princeton.edu/members/viele-mary-wharton/,Mary (Wharton) VielΓ© / Mrs. H. K. VielΓ© / Mrs. VielΓ© Griffin,"VielΓ©, Mary",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/lawrence-women-love/,Women in Love,,"Lawrence, D. H.",1920,,Lending Library Card,"Sylvia Beach, Mary VielΓ© Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e2ab8b31-bc39-4cb6-98d6-467e78ecb3be/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F1b%2F61%2F631b6148029840b7895b70ccf207e650%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1924-02-09,1924-03-09,https://shakespeareandco.princeton.edu/members/mendelsohn-isidor/,Isidor Mendelsohn,"Mendelsohn, Isidor",12.00,20.00,1 month,29,1,,1924-02-09,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1924-02-09,1924-03-09,https://shakespeareandco.princeton.edu/members/burges/,Cyril Burges,"Burges, Cyril",12.00,20.00,1 month,29,1,,1924-02-09,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-02-11,1925-03-04,https://shakespeareandco.princeton.edu/members/murphy-dudley/,Dudley Murphy,"Murphy, Dudley",,,,,,,,,Returned,387,,,https://shakespeareandco.princeton.edu/books/wassermann-goose-man/,The Goose-Man,,"Wassermann, Jakob",1922,,Lending Library Card,"Sylvia Beach, Dudley Murphy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/27faf612-885d-4f4f-8cd1-06943be5a377/manifest,https://iiif.princeton.edu/loris/figgy_prod/80%2F0f%2Fff%2F800fffad1a804dbb8f455b8928285039%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-02-11,1924-02-15,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/harris-contemporary-portraits/,Contemporary Portraits,,"Harris, Frank",1915,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/46%2F5b%2F11%2F465b116cf8854264a7635ed938d2cce6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1924-02-11,1924-02-11,https://shakespeareandco.princeton.edu/members/trasher-mrs/,Mrs. Trasher,"Trasher, Mrs.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1924-02-11,1924-03-11,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",12.00,,1 month,29,1,,1924-02-12,,,,,FRF,,,,,,,Lending Library Card;Logbook,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest;,https://iiif.princeton.edu/loris/figgy_prod/17%2Fb9%2F97%2F17b9978f259f49b9af0ed3a0d27a1e18%2Fintermediate_file.jp2/full/full/0/default.jpg;
+Borrow,1924-02-12,1924-04-08,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,56,,,https://shakespeareandco.princeton.edu/books/mais-books-writers/,Books and Their Writers,,"Mais, S. P. B.",1920,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/7e%2F89%2Fd9%2F7e89d956d66e4e2893ae3ae67b1b5fa6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-02-12,1924-02-27,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/poems-2/,Poems,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/17%2Fb9%2F97%2F17b9978f259f49b9af0ed3a0d27a1e18%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-02-12,,https://shakespeareandco.princeton.edu/members/rhys/,Mr. Rhys,"Rhys, Mr.",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/garnett-lady-fox/,Lady into Fox,,"Garnett, David",1922,,Lending Library Card,"Sylvia Beach, Rhys Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0fcf5eb6-f872-481c-a304-e45a0c9fe472/manifest,https://iiif.princeton.edu/loris/figgy_prod/67%2F3d%2F21%2F673d211972284e099df1c89a348719ce%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1924-02-13,1924-03-13,https://shakespeareandco.princeton.edu/members/choate-n/,N. Choate,"Choate, N.",16.00,40.00,1 month,29,2,,1924-02-13,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-02-13,1924-02-21,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/bennett-things-interested/,Things That Have Interested Me,,"Bennett, Arnold",1921,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/dd%2Fd4%2Fc5%2Fddd4c51b44084836ab3bd7e8ebc808fd%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1924-02-13,1924-02-13,https://shakespeareandco.princeton.edu/members/gallagher-dorothy/,Dorothy Gallagher,"Gallagher, Dorothy",,,,,,,,40.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-02-14,1924-03-10,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,25,,,https://shakespeareandco.princeton.edu/books/lawrence-kangaroo/,Kangaroo,,"Lawrence, D. H.",1923,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/a9%2F51%2F55%2Fa951550798fc4d8e99cdd187d8c34ff0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-02-14,1924-02-28,https://shakespeareandco.princeton.edu/members/murphy-dudley/,Dudley Murphy,"Murphy, Dudley",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/mansfield-doves-nest-stories/,The Doves' Nest and Other Stories,,"Mansfield, Katherine",1923,,Lending Library Card,"Sylvia Beach, Dudley Murphy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/27faf612-885d-4f4f-8cd1-06943be5a377/manifest,https://iiif.princeton.edu/loris/figgy_prod/80%2F0f%2Fff%2F800fffad1a804dbb8f455b8928285039%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1924-02-14,1924-03-14,https://shakespeareandco.princeton.edu/members/murphy-dudley/,Dudley Murphy,"Murphy, Dudley",12.00,20.00,1 month,29,1,,1924-02-14,,,,,FRF,,,,,,,Logbook;Lending Library Card;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Dudley Murphy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/27faf612-885d-4f4f-8cd1-06943be5a377/manifest;,;https://iiif.princeton.edu/loris/figgy_prod/80%2F0f%2Fff%2F800fffad1a804dbb8f455b8928285039%2Fintermediate_file.jp2/full/full/0/default.jpg;
+Borrow,1924-02-15,1924-02-26,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/millay-poems/,Poems,,"Millay, Edna St. Vincent",1923,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/46%2F5b%2F11%2F465b116cf8854264a7635ed938d2cce6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1924-02-16,1924-03-16,https://shakespeareandco.princeton.edu/members/thiery/,Mlle Thiery,"Thiery, Mlle",12.00,20.00,1 month,29,1,,1924-02-16,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-02-16,1924-03-11,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,24,,,https://shakespeareandco.princeton.edu/books/walpole-jeremy-hamlet/,Jeremy and Hamlet,,"Walpole, Hugh",1923,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/e0%2Fae%2F6b%2Fe0ae6bec54324349b412353650ee6dab%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-02-16,1924-02-20,https://shakespeareandco.princeton.edu/members/viele-mary-wharton/,Mary (Wharton) VielΓ© / Mrs. H. K. VielΓ© / Mrs. VielΓ© Griffin,"VielΓ©, Mary",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/kaye-smith-end-house-alard/,The End of the House of Alard,,"Kaye-Smith, Sheila",1923,,Lending Library Card,"Sylvia Beach, Mary VielΓ© Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e2ab8b31-bc39-4cb6-98d6-467e78ecb3be/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F1b%2F61%2F631b6148029840b7895b70ccf207e650%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1924-02-18,1924-03-18,https://shakespeareandco.princeton.edu/members/ghose/,Mr. Ghose,"Ghose, Mr.",12.00,,1 month,29,1,,1924-02-12,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1924-02-18,1924-02-18,https://shakespeareandco.princeton.edu/members/hayes/,Mrs. E. C. Hayes,"Hayes, Mrs. E. C.",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1924-02-18,1924-05-18,https://shakespeareandco.princeton.edu/members/miller/,S. Miller,"Miller, S.",30.00,20.00,3 months,90,1,,1924-02-18,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1924-02-19,1924-03-19,https://shakespeareandco.princeton.edu/members/harmon/,Thomas Harmon,"Harmon, Thomas",16.00,40.00,1 month,29,2,,1924-02-19,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1924-02-19,1924-03-19,https://shakespeareandco.princeton.edu/members/chin/,Mr. Chin,"Chin, Mr.",12.00,,1 month,29,1,,1924-02-19,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1924-02-19,1924-03-19,https://shakespeareandco.princeton.edu/members/pougaud/,M. Pougaud,"Pougaud, M.",8.00,,1 month,29,1,,1924-02-15,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1924-02-20,1924-02-20,https://shakespeareandco.princeton.edu/members/kuo/,Mr. Kuo,"Kuo, Mr.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1924-02-20,1924-03-20,https://shakespeareandco.princeton.edu/members/brahan-margaret/,Margaret Brahan,"Brahan, Margaret",16.00,40.00,1 month,29,2,,1924-02-20,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1924-02-21,1924-03-21,https://shakespeareandco.princeton.edu/members/hogan-james/,James Hogan,"Hogan, James",12.00,,1 month,29,1,,1924-02-21,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-02-21,1924-03-07,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/baring-triangle-passages-three/,A Triangle: Passages from Three Notebooks,,"Baring, Maurice",1923,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/dd%2Fd4%2Fc5%2Fddd4c51b44084836ab3bd7e8ebc808fd%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-02-21,,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/haldane-daedalus-science-future/,"Daedalus; Or, Science and the Future",,"Haldane, J. B. S.",1924,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Subscription,1924-02-21,1924-05-21,https://shakespeareandco.princeton.edu/members/maurel-jean/,Jean Maurel,"Maurel, Jean",30.00,,3 months,90,1,,1924-02-21,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-02-22,,https://shakespeareandco.princeton.edu/members/joyce-lucia/,Lucia Joyce,"Joyce, Lucia",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/shaw-back-methuselah-metabiological/,Back to Methuselah (A Metabiological Pentateuch),,"Shaw, George Bernard",1921,,Lending Library Card,"Lucia Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1924-02-22,,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/bacot-three-tibetan-mysteries/,"Three Tibetan Mysteries: Tchrimekundan, Nasal, Djroazanmo, as Performed in the Tibetan Monasteries",,"Bacot, Jacques",1924,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Reimbursement,1924-02-22,1924-02-22,https://shakespeareandco.princeton.edu/members/dempwolf-helen/,Helen Dempwolf,"Dempwolf, Helen",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1924-02-22,1924-03-22,https://shakespeareandco.princeton.edu/members/maynard/,Barbara Maynard,"Maynard, Barbara",12.00,20.00,1 month,29,1,,1924-02-22,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-02-23,1924-02-26,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/kaye-smith-end-house-alard/,The End of the House of Alard,,"Kaye-Smith, Sheila",1923,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/46%2F5b%2F11%2F465b116cf8854264a7635ed938d2cce6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-02-23,1924-03-01,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/frank-america/,Our America,,"Frank, Waldo",1919,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/fa%2F62%2F32%2Ffa6232e0788b4f6b91b39355b374306a%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1924-02-23,1924-03-23,https://shakespeareandco.princeton.edu/members/elwell-g-n/,G. N. Elwell,"Elwell, G. N.",12.00,20.00,1 month,29,1,,1924-02-23,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-02-23,1924-03-01,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/wells-story-great-schoolmaster/,The Story of a Great Schoolmaster,,"Wells, H. G.",1924,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/fa%2F62%2F32%2Ffa6232e0788b4f6b91b39355b374306a%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1924-02-24,1924-03-24,https://shakespeareandco.princeton.edu/members/rowe-2/,Mrs. Rowe,"Rowe, Mrs.",8.00,,1 month,29,1,,1924-02-09,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1924-02-24,1924-03-24,https://shakespeareandco.princeton.edu/members/romagne/,Mlle RomagnΓ©,"RomagnΓ©, Mlle",12.00,,1 month,29,1,,1924-02-23,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-02-26,1924-02-29,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/white-revolution-tanners-lane/,The Revolution in Tanner's Lane,,"Rutherford, Mark",1887,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/46%2F5b%2F11%2F465b116cf8854264a7635ed938d2cce6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1924-02-26,1924-02-26,https://shakespeareandco.princeton.edu/members/choate-n/,N. Choate,"Choate, N.",,,,,,,,40.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-02-26,1924-03-03,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/white-miriams-schooling-papers/,Miriam's Schooling and Other Papers,,"Rutherford, Mark",1890,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/46%2F5b%2F11%2F465b116cf8854264a7635ed938d2cce6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1924-02-27,1924-03-27,https://shakespeareandco.princeton.edu/members/solome/,Mme de SolomΓ©,"de SolomΓ©, Mme",8.00,,1 month,29,1,,1924-02-15,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1924-02-27,1924-03-27,https://shakespeareandco.princeton.edu/members/jaffe-w/,W. Jaffe,"Jaffe, W.",12.00,20.00,1 month,29,1,,1924-02-27,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-02-27,1924-03-10,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/pound-instigations-ezra-pound/,"Instigations of Ezra Pound: Together with an Essay on the Chinese Written Character, by Ernest Fenollosa",,"Pound, Ezra;Fenollosa, Ernest",1920,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/17%2Fb9%2F97%2F17b9978f259f49b9af0ed3a0d27a1e18%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1924-02-27,1924-03-12,https://shakespeareandco.princeton.edu/members/davis-mary/,Mary Davis / Mrs. N. D. Davis,"Davis, Mary",8.00,,2 weeks,14,2,,1924-02-27,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1924-02-28,1924-03-28,https://shakespeareandco.princeton.edu/members/beede/,Ivan Beede,"Beede, Ivan",12.00,20.00,1 month,29,1,,1924-02-28,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-02-28,1924-05-19,https://shakespeareandco.princeton.edu/members/murphy-dudley/,Dudley Murphy,"Murphy, Dudley",,,,,,,,,Returned,81,,,https://shakespeareandco.princeton.edu/books/van-vechten-blind-bow-boy/,The Blind Bow-Boy,,"Van Vechten, Carl",1923,,Lending Library Card,"Sylvia Beach, Dudley Murphy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/27faf612-885d-4f4f-8cd1-06943be5a377/manifest,https://iiif.princeton.edu/loris/figgy_prod/80%2F0f%2Fff%2F800fffad1a804dbb8f455b8928285039%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1924-02-29,1924-03-14,https://shakespeareandco.princeton.edu/members/boccara/,Mlle Boccara,"Boccara, Mlle",4.00,,2 weeks,14,1,,1924-02-29,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-02-29,1924-03-01,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/lawrence-kangaroo/,Kangaroo,,"Lawrence, D. H.",1923,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/46%2F5b%2F11%2F465b116cf8854264a7635ed938d2cce6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1924-03-01,1924-03-01,https://shakespeareandco.princeton.edu/members/kiang/,Mr. Kiang / Mr. Kiong,"Kiang, Mr.",,,,,,,,40.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-03-01,1924-03-03,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/machen-house-souls/,The House of Souls,,"Machen, Arthur",1906,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/46%2F5b%2F11%2F465b116cf8854264a7635ed938d2cce6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-03-01,1924-06-28,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,119,,,https://shakespeareandco.princeton.edu/books/ruskin-stones-venice/,The Stones of Venice,,"Ruskin, John",1851,"The lending library cards of Mlle Ottocar and Pierre Vogein indicate that they borrowed ""2 vols"" of *The Stones of Venice,* but do not specify which 2 volumes.",Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/e0%2Fae%2F6b%2Fe0ae6bec54324349b412353650ee6dab%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-03-01,1924-03-03,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/dane-way-things-happen/,The Way Things Happen: A Story in Three Acts,,"Dane, Clemence",1924,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/fa%2F62%2F32%2Ffa6232e0788b4f6b91b39355b374306a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-03-01,1924-03-10,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/masters-spoon-river-anthology/,Spoon River Anthology,,"Masters, Edgar Lee",1914,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/fa%2F62%2F32%2Ffa6232e0788b4f6b91b39355b374306a%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1924-03-01,1924-03-01,https://shakespeareandco.princeton.edu/members/barrie-jean/,Jean Barrie,"Barrie, Jean",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1924-03-02,1924-03-02,https://shakespeareandco.princeton.edu/members/burges/,Cyril Burges,"Burges, Cyril",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1924-03-02,1924-06-02,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",40.00,,3 months,92,2,,1924-02-29,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,;https://iiif.princeton.edu/loris/figgy_prod/46%2F5b%2F11%2F465b116cf8854264a7635ed938d2cce6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-03-03,1924-04-03,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,31,,,https://shakespeareandco.princeton.edu/books/dreiser-hey-rub-dub/,Hey Rub-a-Dub-Dub: A Book of the Mystery and Wonder and Terror of Life,,"Dreiser, Theodore",1920,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/fa%2F62%2F32%2Ffa6232e0788b4f6b91b39355b374306a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-03-03,1924-03-15,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/machen-house-souls/,The House of Souls,,"Machen, Arthur",1906,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/18%2Fa8%2F9f%2F18a89fea352842338a91e028989f25d2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-03-03,1924-03-29,https://shakespeareandco.princeton.edu/members/pottecher-therese/,Therèse Pottecher,"Pottecher, Therèse",,,,,,,,,Returned,26,,,https://shakespeareandco.princeton.edu/books/butler-way-flesh/,The Way of All Flesh,,"Butler, Samuel",1903,,Lending Library Card,"Sylvia Beach, Therèse Pottecher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/69b82696-3801-41ff-b1fd-c792179c5b98/manifest,https://iiif-cloud.princeton.edu/iiif/2/c0%2F05%2Fa6%2Fc005a6b8d76241a98262cea0f950c728%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1924-03-03,1925-03-03,https://shakespeareandco.princeton.edu/members/pottecher-therese/,TherΓ¨se Pottecher,"Pottecher, TherΓ¨se",48.00,,1 year,365,1,,1924-03-02,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, TherΓ¨se Pottecher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/69b82696-3801-41ff-b1fd-c792179c5b98/manifest,;https://iiif-cloud.princeton.edu/iiif/2/c0%2F05%2Fa6%2Fc005a6b8d76241a98262cea0f950c728%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-03-03,1924-03-11,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/woolf-voyage/,The Voyage Out,,"Woolf, Virginia",1915,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/cc%2F0c%2Ffe%2Fcc0cfeb942f9432c8de54dbd5caffbcc%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-03-03,1924-03-22,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/rutherford-clara-hopgood/,Clara Hopgood,,"Rutherford, Mark",,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/46%2F5b%2F11%2F465b116cf8854264a7635ed938d2cce6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-03-03,,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/austen-emma/,Emma,,"Austen, Jane",1815,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/46%2F5b%2F11%2F465b116cf8854264a7635ed938d2cce6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-03-03,1924-03-17,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/waley-plays-japan/,The NΕ Plays of Japan,,"Waley, Arthur",,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/cc%2F0c%2Ffe%2Fcc0cfeb942f9432c8de54dbd5caffbcc%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-03-03,1924-03-08,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/walpole-jeremy-hamlet/,Jeremy and Hamlet,,"Walpole, Hugh",1923,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/fa%2F62%2F32%2Ffa6232e0788b4f6b91b39355b374306a%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1924-03-04,1924-03-04,https://shakespeareandco.princeton.edu/members/chavare/,Mr. Chavare,"Chavare, Mr.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1924-03-05,1924-04-05,https://shakespeareandco.princeton.edu/members/eversole/,Mrs. H. O. Eversole,"Eversole, Mrs. H. O.",12.00,20.00,1 month,31,1,,1924-03-05,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1924-03-06,1924-03-06,https://shakespeareandco.princeton.edu/members/bauerberg/,Lida Bauerberg,"Bauerberg, Lida",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-03-07,1924-03-12,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/shanks-richest-man/,The Richest Man,,"Shanks, Edward",1924,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/dd%2Fd4%2Fc5%2Fddd4c51b44084836ab3bd7e8ebc808fd%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1924-03-08,1924-04-08,https://shakespeareandco.princeton.edu/members/chamberlain/,Julia Chamberlain,"Chamberlain, Julia",12.00,20.00,1 month,31,1,,1924-03-08,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-03-08,1924-03-10,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/austen-pride-prejudice/,Pride and Prejudice,,"Austen, Jane",1813,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/02%2Fc0%2F2c%2F02c02ca286b046a3a7198d4240671de9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1924-03-08,1924-04-08,https://shakespeareandco.princeton.edu/members/harvey-f/,F. Harvey,"Harvey, F.",16.00,40.00,1 month,31,2,,1924-03-08,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1924-03-10,1924-05-10,https://shakespeareandco.princeton.edu/members/hesse/,Mrs. Hesse,"Hesse, Mrs.",32.00,,2 months,61,2,,1924-02-29,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1924-03-10,,https://shakespeareandco.princeton.edu/members/slivinski/,Mr. Slivinski,"Slivinski, Mr.",24.00,,,,,,1924-03-10,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-03-10,1924-03-24,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/yeats-plays-controversies/,Plays and Controversies,,"Yeats, William Butler",1923,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/17%2Fb9%2F97%2F17b9978f259f49b9af0ed3a0d27a1e18%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-03-10,1924-04-03,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,24,,,https://shakespeareandco.princeton.edu/books/dane-legend/,Legend,,"Dane, Clemence",1919,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/fa%2F62%2F32%2Ffa6232e0788b4f6b91b39355b374306a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-03-10,1924-03-14,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/macaulay-told-idiot/,Told by an Idiot,,"Macaulay, Rose",1923,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/02%2Fc0%2F2c%2F02c02ca286b046a3a7198d4240671de9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1924-03-10,1924-04-10,https://shakespeareandco.princeton.edu/members/cahn/,Miss Cahn,"Cahn, Miss",12.00,20.00,1 month,31,1,,1924-03-10,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1924-03-11,1924-04-11,https://shakespeareandco.princeton.edu/members/viele-mary-wharton/,Mary (Wharton) VielΓ© / Mrs. H. K. VielΓ© / Mrs. VielΓ© Griffin,"VielΓ©, Mary",16.00,,1 month,31,2,,1924-03-11,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Mary VielΓ© Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/e2ab8b31-bc39-4cb6-98d6-467e78ecb3be/manifest,;https://iiif.princeton.edu/loris/figgy_prod/69%2F36%2Ffb%2F6936fb4e49724ed5a2beab6c3f7d4c50%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-03-11,1924-03-18,https://shakespeareandco.princeton.edu/members/viele-mary-wharton/,Mary (Wharton) VielΓ© / Mrs. H. K. VielΓ© / Mrs. VielΓ© Griffin,"VielΓ©, Mary",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/bramah-eyes-max-carrados/,The Eyes of Max Carrados,,"Bramah, Ernest",1923,,Lending Library Card,"Sylvia Beach, Mary VielΓ© Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e2ab8b31-bc39-4cb6-98d6-467e78ecb3be/manifest,https://iiif.princeton.edu/loris/figgy_prod/69%2F36%2Ffb%2F6936fb4e49724ed5a2beab6c3f7d4c50%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-03-11,1924-03-19,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/spens-elizabethan-drama/,Elizabethan Drama,,"Spens, Janet",1922,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/cc%2F0c%2Ffe%2Fcc0cfeb942f9432c8de54dbd5caffbcc%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1924-03-11,1924-04-11,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",12.00,,1 month,31,1,,1924-03-10,,,,,FRF,,,,,,,Lending Library Card;Logbook,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest;,https://iiif.princeton.edu/loris/figgy_prod/17%2Fb9%2F97%2F17b9978f259f49b9af0ed3a0d27a1e18%2Fintermediate_file.jp2/full/full/0/default.jpg;
+Borrow,1924-03-11,1924-03-13,https://shakespeareandco.princeton.edu/members/viele-mary-wharton/,Mary (Wharton) VielΓ© / Mrs. H. K. VielΓ© / Mrs. VielΓ© Griffin,"VielΓ©, Mary",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/huxley-essays-biologist/,Essays of a Biologist,,"Huxley, Julian",1923,,Lending Library Card,"Sylvia Beach, Mary VielΓ© Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e2ab8b31-bc39-4cb6-98d6-467e78ecb3be/manifest,https://iiif.princeton.edu/loris/figgy_prod/69%2F36%2Ffb%2F6936fb4e49724ed5a2beab6c3f7d4c50%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-03-11,1924-03-12,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/thayer-dial/,The Dial,,,,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/cc%2F0c%2Ffe%2Fcc0cfeb942f9432c8de54dbd5caffbcc%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-03-12,1924-03-17,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/thayer-dial/,The Dial,"Vol. 76, no. 1, Jan 1924",,,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/cc%2F0c%2Ffe%2Fcc0cfeb942f9432c8de54dbd5caffbcc%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-03-13,1924-03-18,https://shakespeareandco.princeton.edu/members/viele-mary-wharton/,Mary (Wharton) VielΓ© / Mrs. H. K. VielΓ© / Mrs. VielΓ© Griffin,"VielΓ©, Mary",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/hunt-tales-uneasy-2/,Tales of the Uneasy,,"Hunt, Violet",1911,,Lending Library Card,"Sylvia Beach, Mary VielΓ© Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e2ab8b31-bc39-4cb6-98d6-467e78ecb3be/manifest,https://iiif.princeton.edu/loris/figgy_prod/69%2F36%2Ffb%2F6936fb4e49724ed5a2beab6c3f7d4c50%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-03-13,1924-03-18,https://shakespeareandco.princeton.edu/members/viele-mary-wharton/,Mary (Wharton) VielΓ© / Mrs. H. K. VielΓ© / Mrs. VielΓ© Griffin,"VielΓ©, Mary",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/oscar-wilde/,Oscar Wilde,Vol. 1,,,Unidentified. By or about Oscar Wilde. An unspecified 2 volume edition.,Lending Library Card,"Sylvia Beach, Mary VielΓ© Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e2ab8b31-bc39-4cb6-98d6-467e78ecb3be/manifest,https://iiif.princeton.edu/loris/figgy_prod/69%2F36%2Ffb%2F6936fb4e49724ed5a2beab6c3f7d4c50%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1924-03-13,1924-04-13,https://shakespeareandco.princeton.edu/members/avery/,Miss Avery,"Avery, Miss",12.00,,1 month,31,1,,1924-03-13,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Supplement,1924-03-13,1924-04-10,https://shakespeareandco.princeton.edu/members/theron/,Miss ThΓ©ron,"ThΓ©ron, Miss",4.00,,28 days,28,2,,1924-03-13,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-03-13,1924-05-02,https://shakespeareandco.princeton.edu/members/murphy-dudley/,Dudley Murphy,"Murphy, Dudley",,,,,,,,,Returned,50,,,https://shakespeareandco.princeton.edu/books/james-wings-dove/,The Wings of the Dove,Vol. 2,"James, Henry",1902,,Lending Library Card,"Sylvia Beach, Dudley Murphy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/27faf612-885d-4f4f-8cd1-06943be5a377/manifest,https://iiif.princeton.edu/loris/figgy_prod/80%2F0f%2Fff%2F800fffad1a804dbb8f455b8928285039%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1924-03-14,1924-09-14,https://shakespeareandco.princeton.edu/members/bullitt/,M. H. Bullitt,"Bullitt, M. H.",67.00,140.00,6 months,184,2,,1924-03-14,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-03-14,1924-04-14,https://shakespeareandco.princeton.edu/members/joyce-lucia/,Lucia Joyce,"Joyce, Lucia",,,,,,,,,Returned,31,,,https://shakespeareandco.princeton.edu/books/campbell-life-letters/,My Life and Some Letters,,"Campbell, Mrs. Patrick",1922,,Lending Library Card,"Lucia Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1924-03-15,1924-04-05,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/boyd-wheat/,Through the Wheat,,"Boyd, Thomas",1923,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/18%2Fa8%2F9f%2F18a89fea352842338a91e028989f25d2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1924-03-15,1924-03-15,https://shakespeareandco.princeton.edu/members/boccara/,Mlle Boccara,"Boccara, Mlle",,,,,,,,17.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1924-03-15,1924-04-15,https://shakespeareandco.princeton.edu/members/ford-7/,Mrs. Ford,"Ford, Mrs.",12.00,20.00,1 month,31,1,,1924-03-15,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-03-15,1924-03-17,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/dickens-david-copperfield/,David Copperfield,,"Dickens, Charles",1850,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/02%2Fc0%2F2c%2F02c02ca286b046a3a7198d4240671de9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-03-17,1924-03-19,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/dane-way-things-happen/,The Way Things Happen: A Story in Three Acts,,"Dane, Clemence",1924,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/cc%2F0c%2Ffe%2Fcc0cfeb942f9432c8de54dbd5caffbcc%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1924-03-17,1924-09-17,https://shakespeareandco.princeton.edu/members/garreta/,Mme Garreta,"Garreta, Mme",35.00,,6 months,184,1,,1924-03-17,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-03-17,1924-03-25,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/swift-tale-tub/,A Tale of a Tub,,"Swift, Jonathan",1704,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/02%2Fc0%2F2c%2F02c02ca286b046a3a7198d4240671de9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-03-18,1924-03-24,https://shakespeareandco.princeton.edu/members/viele-mary-wharton/,Mary (Wharton) VielΓ© / Mrs. H. K. VielΓ© / Mrs. VielΓ© Griffin,"VielΓ©, Mary",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/oscar-wilde/,Oscar Wilde,Vol. 2,,,Unidentified. By or about Oscar Wilde. An unspecified 2 volume edition.,Lending Library Card,"Sylvia Beach, Mary VielΓ© Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e2ab8b31-bc39-4cb6-98d6-467e78ecb3be/manifest,https://iiif.princeton.edu/loris/figgy_prod/69%2F36%2Ffb%2F6936fb4e49724ed5a2beab6c3f7d4c50%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-03-18,1924-03-24,https://shakespeareandco.princeton.edu/members/viele-mary-wharton/,Mary (Wharton) VielΓ© / Mrs. H. K. VielΓ© / Mrs. VielΓ© Griffin,"VielΓ©, Mary",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/masters-nuptial-flight/,The Nuptial Flight,,"Masters, Edgar Lee",1923,,Lending Library Card,"Sylvia Beach, Mary VielΓ© Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e2ab8b31-bc39-4cb6-98d6-467e78ecb3be/manifest,https://iiif.princeton.edu/loris/figgy_prod/69%2F36%2Ffb%2F6936fb4e49724ed5a2beab6c3f7d4c50%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-03-19,1924-03-22,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/mackenzie-rich-relatives/,Rich Relatives,,"Mackenzie, Compton",1921,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/13%2Fbc%2F95%2F13bc95fa15b0498ba62b9bda6a2c39d7%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1924-03-19,1924-04-19,https://shakespeareandco.princeton.edu/members/chin/,Mr. Chin,"Chin, Mr.",12.00,,1 month,31,1,,1924-03-19,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1924-03-19,1924-04-19,https://shakespeareandco.princeton.edu/members/berdanier/,Paul Frederick Berdanier,"Berdanier, Paul Frederick",12.00,,1 month,31,1,,1924-03-19,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1924-03-20,1924-05-20,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",32.00,,2 months,61,2,,1924-03-20,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,;https://iiif.princeton.edu/loris/figgy_prod/62%2F65%2F88%2F6265888991ca456585f42e7f58d1a034%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-03-20,1924-03-25,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/lawrence-kangaroo/,Kangaroo,,"Lawrence, D. H.",1923,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/62%2F65%2F88%2F6265888991ca456585f42e7f58d1a034%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-03-20,1924-03-25,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/joyce-chamber-music/,Chamber Music,,"Joyce, James",1907,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/62%2F65%2F88%2F6265888991ca456585f42e7f58d1a034%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1924-03-21,1924-04-21,https://shakespeareandco.princeton.edu/members/salinger/,Mr. Salinger,"Salinger, Mr.",12.00,,1 month,31,1,,1924-03-21,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-03-22,1924-04-05,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/lee-great-englishmen-sixteenth/,Great Englishmen of the Sixteenth Century,,"Lee, Sidney",1904,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/13%2Fbc%2F95%2F13bc95fa15b0498ba62b9bda6a2c39d7%2Fintermediate_file/full/full/0/default.jpg
+Borrow,,1924-03-22,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/murry-evolution-intellectual/,The Evolution of an Intellectual,,"Murry, John Middleton",1920,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/13%2Fbc%2F95%2F13bc95fa15b0498ba62b9bda6a2c39d7%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1924-03-22,1924-09-22,https://shakespeareandco.princeton.edu/members/delorne/,Mlle Delorne,"Delorne, Mlle",35.00,,6 months,184,1,,1923-12-05,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-03-22,1924-03-25,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/stelling-yea-nay-series/,Yea and Nay: A Series of Lectures and Counter-lectures,,,1923,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/02%2Fc0%2F2c%2F02c02ca286b046a3a7198d4240671de9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-03-22,1924-03-28,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/mackenzie-vanity-girl/,The Vanity Girl,,"Mackenzie, Compton",1920,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/13%2Fbc%2F95%2F13bc95fa15b0498ba62b9bda6a2c39d7%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-03-23,,https://shakespeareandco.princeton.edu/members/joyce-lucia/,Lucia Joyce,"Joyce, Lucia",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/strindberg-plays-august-strindberg-first/,Plays by August Strindberg: First Series,,"Strindberg, August",1912,,Lending Library Card,"Lucia Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1924-03-23,,https://shakespeareandco.princeton.edu/members/joyce-lucia/,Lucia Joyce,"Joyce, Lucia",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/gay-beggars-opera/,The Beggar's Opera,,"Gay, John",1728,,Lending Library Card,"Lucia Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1924-03-24,1924-04-11,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/stevenson-travels-donkey-vennes/,Travels with a Donkey in the CΓ©vennes,,"Stevenson, Robert Louis",1879,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/dd%2Fd4%2Fc5%2Fddd4c51b44084836ab3bd7e8ebc808fd%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1924-03-24,1924-03-24,https://shakespeareandco.princeton.edu/members/hogan-james/,James Hogan,"Hogan, James",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1924-03-24,1924-04-24,https://shakespeareandco.princeton.edu/members/rowe-2/,Mrs. Rowe,"Rowe, Mrs.",8.00,,1 month,31,1,,1924-03-15,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1924-03-24,1924-04-24,https://shakespeareandco.princeton.edu/members/ferguson-frank/,Frank Ferguson,"Ferguson, Frank",12.00,20.00,1 month,31,1,,1924-03-24,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1924-03-24,1924-04-24,https://shakespeareandco.princeton.edu/members/bing/,Mme Bing,"Bing, Mme",12.00,,1 month,31,1,,1924-03-24,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1924-03-24,1924-04-24,https://shakespeareandco.princeton.edu/members/foreman/,Crack Foreman,"Foreman, Crack",12.00,20.00,1 month,31,1,,1924-03-24,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1924-03-24,1924-03-24,https://shakespeareandco.princeton.edu/members/manesse/,Mr. Manesse,"Manesse, Mr.",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-03-24,1924-03-25,https://shakespeareandco.princeton.edu/members/viele-mary-wharton/,Mary (Wharton) VielΓ© / Mrs. H. K. VielΓ© / Mrs. VielΓ© Griffin,"VielΓ©, Mary",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/morand-open-night/,Open All Night,,"Morand, Paul",1923,,Lending Library Card,"Sylvia Beach, Mary VielΓ© Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e2ab8b31-bc39-4cb6-98d6-467e78ecb3be/manifest,https://iiif.princeton.edu/loris/figgy_prod/69%2F36%2Ffb%2F6936fb4e49724ed5a2beab6c3f7d4c50%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-03-24,1924-04-15,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/russell-analysis-mind/,The Analysis of Mind,,"Russell, Bertrand",1921,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/17%2Fb9%2F97%2F17b9978f259f49b9af0ed3a0d27a1e18%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-03-24,1924-03-25,https://shakespeareandco.princeton.edu/members/viele-mary-wharton/,Mary (Wharton) VielΓ© / Mrs. H. K. VielΓ© / Mrs. VielΓ© Griffin,"VielΓ©, Mary",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/steuart-romance-paris-streets/,The Romance of the Paris Streets,,"Steuart, Mary D.",1923,,Lending Library Card,"Sylvia Beach, Mary VielΓ© Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e2ab8b31-bc39-4cb6-98d6-467e78ecb3be/manifest,https://iiif.princeton.edu/loris/figgy_prod/69%2F36%2Ffb%2F6936fb4e49724ed5a2beab6c3f7d4c50%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-03-25,1924-04-08,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/piccoli-benedetto-croce-introduction/,Benedetto Croce: An Introduction to His Philosophy,,"Piccoli, Raffaello",1922,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/62%2F65%2F88%2F6265888991ca456585f42e7f58d1a034%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-03-25,1924-04-04,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/hardy-collected-poems-thomas/,Collected Poems of Thomas Hardy,,"Hardy, Thomas",1919,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/02%2Fc0%2F2c%2F02c02ca286b046a3a7198d4240671de9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-03-25,1924-04-08,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/croce-aesthetic-science-expression/,Aesthetic: As Science of Expression and General Linguistic,,"Croce, Benedetto",1909,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/02%2Fc0%2F2c%2F02c02ca286b046a3a7198d4240671de9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-03-25,1924-04-08,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/graves-english-poetry-irregular/,"On English Poetry: Being an Irregular Approach to the Psychology of This Art, from Evidence Mainly Subjective",,"Graves, Robert",1922,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/62%2F65%2F88%2F6265888991ca456585f42e7f58d1a034%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-03-26,1924-03-29,https://shakespeareandco.princeton.edu/members/viele-mary-wharton/,Mary (Wharton) VielΓ© / Mrs. H. K. VielΓ© / Mrs. VielΓ© Griffin,"VielΓ©, Mary",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/bennett-riceyman-steps/,Riceyman Steps,,"Bennett, Arnold",1923,,Lending Library Card,"Sylvia Beach, Mary VielΓ© Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e2ab8b31-bc39-4cb6-98d6-467e78ecb3be/manifest,https://iiif.princeton.edu/loris/figgy_prod/69%2F36%2Ffb%2F6936fb4e49724ed5a2beab6c3f7d4c50%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1924-03-26,1924-03-26,https://shakespeareandco.princeton.edu/members/elwell-g-n/,G. N. Elwell,"Elwell, G. N.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-03-26,1924-04-10,https://shakespeareandco.princeton.edu/members/schereck/,Mildred Schereck,"Schereck, Mildred",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/wilde-ideal-husband/,An Ideal Husband,,"Wilde, Oscar",1899,,Lending Library Card,"Sylvia Beach, Mildred Schereck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3b15ea0c-ed8d-4b41-80f3-33485620b12c/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2F91%2Fb3%2F5e91b3031c4d49a5a9df2b18e73d411d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-03-26,1924-04-10,https://shakespeareandco.princeton.edu/members/schereck/,Mildred Schereck,"Schereck, Mildred",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/wilde-lady-windermeres-fan/,Lady Windermere's Fan: A Play about a Good Woman,,"Wilde, Oscar",1893,,Lending Library Card,"Sylvia Beach, Mildred Schereck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3b15ea0c-ed8d-4b41-80f3-33485620b12c/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2F91%2Fb3%2F5e91b3031c4d49a5a9df2b18e73d411d%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1924-03-26,1924-04-26,https://shakespeareandco.princeton.edu/members/de-caro-anita/;https://shakespeareandco.princeton.edu/members/de-caro-1/,Anita de Caro;Mr. de Caro,"de Caro, Anita;de Caro, Mr.",12.00,20.00,1 month,31,1,,1924-03-26,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1924-03-27,1924-04-27,https://shakespeareandco.princeton.edu/members/solome/,Mme de SolomΓ©,"de SolomΓ©, Mme",12.00,,1 month,31,1,,1924-03-28,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1924-03-28,1925-03-28,https://shakespeareandco.princeton.edu/members/richardson-hadley/,Hadley Richardson / Mrs. Hemingway,"Richardson, Hadley",,,1 year,365,,,1924-03-28,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1924-03-28,1924-04-28,https://shakespeareandco.princeton.edu/members/stephan/,Lincoln Steffens / Mr. Lincoln Stephan,"Steffens, Lincoln",12.00,,1 month,31,1,,1924-03-20,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-03-28,,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/sterne-works-sterne-life/,"The Works of Sterne: The Life and Opinions of Tristram Shandy, Gentleman & A Sentimental Journey through France and Italy","Vol. 1 The Life and Opinions of Tristram Shandy, Gentleman","Sterne, Laurence",1900,"For additional borrows, see [*Tristram Shandy*](https://shakespeareandco.princeton.edu/books/sterne-life-opinions-tristram/) and [*A Sentimental Journey*](https://shakespeareandco.princeton.edu/books/sterne-sentimental-journey-france/).",Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/13%2Fbc%2F95%2F13bc95fa15b0498ba62b9bda6a2c39d7%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-03-28,1924-04-04,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/croce-poetry-dante/,The Poetry of Dante,,"Croce, Benedetto",1922,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/02%2Fc0%2F2c%2F02c02ca286b046a3a7198d4240671de9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-03-28,1924-05,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/carritt-theory-beauty/,The Theory of Beauty,,"Carritt, E. F.",1914,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/02%2Fc0%2F2c%2F02c02ca286b046a3a7198d4240671de9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1924-03-28,1924-03-28,https://shakespeareandco.princeton.edu/members/jewett/,[unclear] Jewett,"Jewett, [unclear]",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1924-03-28,1924-04-28,https://shakespeareandco.princeton.edu/members/beede/,Ivan Beede,"Beede, Ivan",12.00,,1 month,31,1,,1924-03-25,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1924-03-28,1924-03-28,https://shakespeareandco.princeton.edu/members/jaffe-w/,W. Jaffe,"Jaffe, W.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-03-29,1924-04-05,https://shakespeareandco.princeton.edu/members/viele-mary-wharton/,Mary (Wharton) VielΓ© / Mrs. H. K. VielΓ© / Mrs. VielΓ© Griffin,"VielΓ©, Mary",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/toomer-cane/,Cane,,"Toomer, Jean",1923,,Lending Library Card,"Sylvia Beach, Mary VielΓ© Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e2ab8b31-bc39-4cb6-98d6-467e78ecb3be/manifest,https://iiif.princeton.edu/loris/figgy_prod/69%2F36%2Ffb%2F6936fb4e49724ed5a2beab6c3f7d4c50%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-03-29,1924-04-01,https://shakespeareandco.princeton.edu/members/pottecher-therese/,Therèse Pottecher,"Pottecher, Therèse",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/stephens-ladies/,Here Are Ladies,,"Stephens, James",1913,,Lending Library Card,"Sylvia Beach, Therèse Pottecher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/69b82696-3801-41ff-b1fd-c792179c5b98/manifest,https://iiif-cloud.princeton.edu/iiif/2/c0%2F05%2Fa6%2Fc005a6b8d76241a98262cea0f950c728%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-03-29,1924-03-31,https://shakespeareandco.princeton.edu/members/viele-mary-wharton/,Mary (Wharton) VielΓ© / Mrs. H. K. VielΓ© / Mrs. VielΓ© Griffin,"VielΓ©, Mary",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/harris-yellow-ticket-stories/,The Yellow Ticket and Other Stories,,"Harris, Frank",1914,,Lending Library Card,"Sylvia Beach, Mary VielΓ© Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e2ab8b31-bc39-4cb6-98d6-467e78ecb3be/manifest,https://iiif.princeton.edu/loris/figgy_prod/69%2F36%2Ffb%2F6936fb4e49724ed5a2beab6c3f7d4c50%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1924-03-31,1924-03-31,https://shakespeareandco.princeton.edu/members/theron/,Miss ThΓ©ron,"ThΓ©ron, Miss",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-04-01,1924-04-12,https://shakespeareandco.princeton.edu/members/pottecher-therese/,Therèse Pottecher,"Pottecher, Therèse",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/synge-aran-islands/,The Aran Islands,,"Synge, John Millington",1906,,Lending Library Card,"Sylvia Beach, Therèse Pottecher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/69b82696-3801-41ff-b1fd-c792179c5b98/manifest,https://iiif-cloud.princeton.edu/iiif/2/c0%2F05%2Fa6%2Fc005a6b8d76241a98262cea0f950c728%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-04-01,1924-04-14,https://shakespeareandco.princeton.edu/members/savy/,Alice Savy,"Savy, Alice",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/tagore-reminiscences/,My Reminiscences,,"Tagore, Rabindranath",1916,,Lending Library Card,"Sylvia Beach, Alice Savy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6bff5a62-eced-4f79-a6f3-649cab124b38/manifest,https://iiif.princeton.edu/loris/figgy_prod/e4%2F77%2F6d%2Fe4776d9e1d694824804a09dfddc43004%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1924-04-01,1924-05-01,https://shakespeareandco.princeton.edu/members/savy/,Alice Savy,"Savy, Alice",12.00,20.00,1 month,30,1,,1924-04-01,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Alice Savy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/6bff5a62-eced-4f79-a6f3-649cab124b38/manifest,;https://iiif.princeton.edu/loris/figgy_prod/e4%2F77%2F6d%2Fe4776d9e1d694824804a09dfddc43004%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1924-04-01,1924-05-01,https://shakespeareandco.princeton.edu/members/garman-douglas/,Douglas Garman,"Garman, Douglas",12.00,20.00,1 month,30,1,,1924-04-01,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1924-04-01,1925-04-01,https://shakespeareandco.princeton.edu/members/huddleston-sisley/,Sisley Huddleston,"Huddleston, Sisley",88.00,,1 year,365,2,,1924-04-01,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1924-04-01,1924-04-01,https://shakespeareandco.princeton.edu/members/murphy-n/,Nan Murphy,"Murphy, Nan",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1924-04-02,1924-05-02,https://shakespeareandco.princeton.edu/members/goddard-a-l/,A. L. Goddard,"Goddard, A. L.",12.00,20.00,1 month,30,1,,1924-04-02,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-04-03,1924-04-12,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/macaulay-told-idiot/,Told by an Idiot,,"Macaulay, Rose",1923,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/fa%2F62%2F32%2Ffa6232e0788b4f6b91b39355b374306a%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1924-04-03,1924-04-03,https://shakespeareandco.princeton.edu/members/fenner-mary/,Mary Fenner,"Fenner, Mary",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-04-03,1924-04-05,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/bennett-riceyman-steps/,Riceyman Steps,,"Bennett, Arnold",1923,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/fa%2F62%2F32%2Ffa6232e0788b4f6b91b39355b374306a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-04-04,1924-04-08,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/wells-outline-history/,The Outline of History,,"Wells, H. G.",1920,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/02%2Fc0%2F2c%2F02c02ca286b046a3a7198d4240671de9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-04-04,1924-04-11,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/frank-rahab/,Rahab,,"Frank, Waldo",1922,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/02%2Fc0%2F2c%2F02c02ca286b046a3a7198d4240671de9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Crossed out,1924-04-05,,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/boyd-contemporary-drama-ireland/,The Contemporary Drama of Ireland,,"Boyd, Ernest Augustus",1917,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/13%2Fbc%2F95%2F13bc95fa15b0498ba62b9bda6a2c39d7%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-04-05,1924-04-07,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/gorman-james-joyce-first/,"James Joyce, His First Forty Years",,"Gorman, Herbert Sherman",1924,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/13%2Fbc%2F95%2F13bc95fa15b0498ba62b9bda6a2c39d7%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1924-04-05,1924-05-05,https://shakespeareandco.princeton.edu/members/ford-6/,Mrs. M. B. Ford,"Ford, Mrs. M. B.",12.00,20.00,1 month,30,1,,1924-04-05,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Generic,1924-04-05,,https://shakespeareandco.princeton.edu/members/viele-mary-wharton/,Mary (Wharton) VielΓ© / Mrs. H. K. VielΓ© / Mrs. VielΓ© Griffin,"VielΓ©, Mary",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/armstrong-bazaar-stories/,The Bazaar and Other Stories,,"Armstrong, Martin",1924,,Lending Library Card,"Sylvia Beach, Mary VielΓ© Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e2ab8b31-bc39-4cb6-98d6-467e78ecb3be/manifest,https://iiif.princeton.edu/loris/figgy_prod/69%2F36%2Ffb%2F6936fb4e49724ed5a2beab6c3f7d4c50%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-04-05,1924-04-12,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/poe-works-edgar-allan/,The Works of Edgar Allan Poe,,"Poe, Edgar Allan",,"Volumes from at least two sets of Poeβs works circulated in the lending library: the 10-volume *The Complete Works of Edgar Allan Poe* (Putnam, 1902) and the 8-volume *The Works of Edgar Allan Poe* (Lippincott, 1906). On April 4, 1924, Mlle Valerio borrowed volume 10 (*Miscellany*) from *The Complete Works,* and on January 21, 1925, volumes 1 and 3 from an unspecified set. M. Rieder borrowed volumes 7 and 8 from an unspecified set. On May 1, 1926, Nathalie Sarraute borrowed *Poeβs Tales.* Anatole Rivoallan borrowed volume 5 (*Poems*) from the *The Works.* Emilienne Gosse borrowed volume 1 from an unspecific set. Natalie Walker borrowed volume 1 (*Tales*) from the *The Works.* Eric Culley borrowed an unspecified volume from an unspecified set. Jeanine (Delpech) Teissier borrowed volumes 2 and 4 (both *Tales*) from *The Works.* On October 18, 1938, Sarraute purchased *Poeβs Tales.* Bianca (Bienenfeld) Lamblin borrowed *Poeβs Poems.*",Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/fa%2F62%2F32%2Ffa6232e0788b4f6b91b39355b374306a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-04-05,1924-04-11,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/langland-piers-ploughman/,Piers Ploughman,,"Langland, William",,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/13%2Fbc%2F95%2F13bc95fa15b0498ba62b9bda6a2c39d7%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-04-05,1924-05-12,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,37,,,https://shakespeareandco.princeton.edu/books/huxley-limbo/,Limbo,,"Huxley, Aldous",1920,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/18%2Fa8%2F9f%2F18a89fea352842338a91e028989f25d2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-04-05,1924-05-12,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,37,,,https://shakespeareandco.princeton.edu/books/shanks-richest-man/,The Richest Man,,"Shanks, Edward",1924,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/18%2Fa8%2F9f%2F18a89fea352842338a91e028989f25d2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-04-05,1924-05-01,https://shakespeareandco.princeton.edu/members/viele-mary-wharton/,Mary (Wharton) VielΓ© / Mrs. H. K. VielΓ© / Mrs. VielΓ© Griffin,"VielΓ©, Mary",,,,,,,,,Returned,26,,,https://shakespeareandco.princeton.edu/books/wells-dream-novel/,The Dream: A Novel,,"Wells, H. G.",1924,,Lending Library Card,"Sylvia Beach, Mary VielΓ© Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e2ab8b31-bc39-4cb6-98d6-467e78ecb3be/manifest,https://iiif.princeton.edu/loris/figgy_prod/69%2F36%2Ffb%2F6936fb4e49724ed5a2beab6c3f7d4c50%2Fintermediate_file.jp2/full/full/0/default.jpg
+Crossed out,1924-04-05,,https://shakespeareandco.princeton.edu/members/viele-mary-wharton/,Mary (Wharton) VielΓ© / Mrs. H. K. VielΓ© / Mrs. VielΓ© Griffin,"VielΓ©, Mary",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/lewis-free-air/,Free Air,,"Lewis, Sinclair",1919,,Lending Library Card,"Sylvia Beach, Mary VielΓ© Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e2ab8b31-bc39-4cb6-98d6-467e78ecb3be/manifest,https://iiif.princeton.edu/loris/figgy_prod/69%2F36%2Ffb%2F6936fb4e49724ed5a2beab6c3f7d4c50%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1924-04-05,1925-04-05,https://shakespeareandco.princeton.edu/members/le-verrier-2/,M. Le Verrier,"Le Verrier, M.",64.00,,1 year,365,2,,1924-03-29,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-04-05,1924-05-01,https://shakespeareandco.princeton.edu/members/viele-mary-wharton/,Mary (Wharton) VielΓ© / Mrs. H. K. VielΓ© / Mrs. VielΓ© Griffin,"VielΓ©, Mary",,,,,,,,,Returned,26,,,https://shakespeareandco.princeton.edu/books/long-swedish-woman/,The Swedish Woman,,"Long, R. E. C.",1924,,Lending Library Card,"Sylvia Beach, Mary VielΓ© Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e2ab8b31-bc39-4cb6-98d6-467e78ecb3be/manifest,https://iiif.princeton.edu/loris/figgy_prod/69%2F36%2Ffb%2F6936fb4e49724ed5a2beab6c3f7d4c50%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1924-04-07,1924-05-07,https://shakespeareandco.princeton.edu/members/hofsten-f-von/,F. von Hofsten,"Hofsten, F. von",16.00,40.00,1 month,30,2,,1924-04-07,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1924-04-07,1924-05-07,https://shakespeareandco.princeton.edu/members/ingalls-c-l/,C. L. Ingalls,"Ingalls, C. L.",16.00,,1 month,30,2,,1924-04-07,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-04-07,1924-04-09,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/scott-escapade/,Escapade,,"Scott, Evelyn",1923,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/13%2Fbc%2F95%2F13bc95fa15b0498ba62b9bda6a2c39d7%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-04-08,1924-04-23,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/chekhov-letters-tchehov-family/,Letters of Tchehov to His Family and Friends,,"Chekhov, Anton",1920,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/62%2F65%2F88%2F6265888991ca456585f42e7f58d1a034%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-04-08,1924-05-02,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,24,,,https://shakespeareandco.princeton.edu/books/conrad-arrow-gold/,The Arrow of Gold,,"Conrad, Joseph",1919,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/02%2Fc0%2F2c%2F02c02ca286b046a3a7198d4240671de9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-04-08,1924-04-16,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/harris-undreamd-shores/,Undream'd of Shores,,"Harris, Frank",1924,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/02%2Fc0%2F2c%2F02c02ca286b046a3a7198d4240671de9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1924-04-08,1924-04-08,https://shakespeareandco.princeton.edu/members/ghose/,Mr. Ghose,"Ghose, Mr.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1924-04-08,1924-04-08,https://shakespeareandco.princeton.edu/members/mills-heyworth/;https://shakespeareandco.princeton.edu/members/mills-mariette/,"Lawrence Heyworth Mills, Jr. / Heyworth Mills;Mariette Benedict (Thompson) Mills / Mrs. Heyworth Mills","Mills Jr., Lawrence Heyworth;Mills, Mariette Benedict",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1924-04-08,1924-05-08,https://shakespeareandco.princeton.edu/members/deotte-l/,L. Deotte,"Deotte, L.",12.00,20.00,1 month,30,1,,1924-04-08,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-04-08,1924-04-28,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/mackenzie-passionate-elopement/,The Passionate Elopement,,"Mackenzie, Compton",1911,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/7e%2F89%2Fd9%2F7e89d956d66e4e2893ae3ae67b1b5fa6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-04-08,1924-04-23,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/dreiser-color-great-city/,The Color of a Great City,,"Dreiser, Theodore",1923,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/62%2F65%2F88%2F6265888991ca456585f42e7f58d1a034%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-04-09,1924-04-11,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/criterion/,The Criterion,"Vol. 1, no. 3, Apr 1923",,,"Renamed *The New Criterion* from January 1926 to January 1927, and *The Monthly Criterion* from May 1927 to March 1928.",Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/13%2Fbc%2F95%2F13bc95fa15b0498ba62b9bda6a2c39d7%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-04-09,1924-04-11,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/lee-handling-words-studies/,The Handling of Words and Other Studies in Literary Psychology,,"Lee, Vernon",1923,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/13%2Fbc%2F95%2F13bc95fa15b0498ba62b9bda6a2c39d7%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1924-04-10,1924-04-10,https://shakespeareandco.princeton.edu/members/harvey-f/,F. Harvey,"Harvey, F.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-04-10,1924-04-28,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/wilde-selected-prose-oscar/,Selected Prose of Oscar Wilde,,"Wilde, Oscar",1914,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/a9%2F51%2F55%2Fa951550798fc4d8e99cdd187d8c34ff0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1924-04-10,1924-05-10,https://shakespeareandco.princeton.edu/members/harvey-f/,F. Harvey,"Harvey, F.",12.00,,1 month,30,1,,1924-04-10,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1924-04-10,1924-05-10,https://shakespeareandco.princeton.edu/members/sheldon-2/,Mrs. Sheldon,"Sheldon, Mrs.",12.00,,1 month,30,1,,1924-04-09,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-04-10,1924-04-25,https://shakespeareandco.princeton.edu/members/joyce-lucia/,Lucia Joyce,"Joyce, Lucia",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/molnar-fashions-men-swan/,"Fashions for Men, and The Swan: Two Plays",,"MolnΓ‘r, Ferenc",1922,,Lending Library Card,"Lucia Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Subscription,1924-04-11,1924-05-11,https://shakespeareandco.princeton.edu/members/hamilton-mrs-james-k/,Mrs. James K. Hamilton,"Hamilton, Mrs. James K.",12.00,20.00,1 month,30,1,,1924-04-11,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-04-11,1924-05-05,https://shakespeareandco.princeton.edu/members/schereck/,Mildred Schereck,"Schereck, Mildred",,,,,,,,,Returned,24,,,https://shakespeareandco.princeton.edu/books/bennett-things-interested-second/,Things That Have Interested Me: Second Series,,"Bennett, Arnold",1923,,Lending Library Card,"Sylvia Beach, Mildred Schereck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3b15ea0c-ed8d-4b41-80f3-33485620b12c/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2F91%2Fb3%2F5e91b3031c4d49a5a9df2b18e73d411d%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1924-04-11,1924-05-11,https://shakespeareandco.princeton.edu/members/mitchell-john/,John Mitchell,"Mitchell, John",12.00,,1 month,30,1,,1924-04-11,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-04-11,1924-05-07,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,26,,,https://shakespeareandco.princeton.edu/books/jung-psychology-unconscious/,The Psychology of the Unconscious,,"Jung, Carl Gustav",1916,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/02%2Fc0%2F2c%2F02c02ca286b046a3a7198d4240671de9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-04-11,1924-05-05,https://shakespeareandco.princeton.edu/members/schereck/,Mildred Schereck,"Schereck, Mildred",,,,,,,,,Returned,24,,,https://shakespeareandco.princeton.edu/books/joyce-portrait-artist-young/,A Portrait of the Artist as a Young Man,,"Joyce, James",1916,,Lending Library Card,"Sylvia Beach, Mildred Schereck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3b15ea0c-ed8d-4b41-80f3-33485620b12c/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2F91%2Fb3%2F5e91b3031c4d49a5a9df2b18e73d411d%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1924-04-11,1924-04-11,https://shakespeareandco.princeton.edu/members/jabotinsky/,Vladimir Jabotinsky / Ze'ev Jabotinsky / Mr. Jabotinsky,"Jabotinsky, Ze'ev",,,,,,,,40.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1924-04-11,1924-05-11,https://shakespeareandco.princeton.edu/members/macinnes-william-a/,Captain William A. MacInnes,"MacInnes, Captain William A.",16.00,,1 month,30,2,,1924-04-03,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-04-11,,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/joyce-dubliners/,Dubliners,,"Joyce, James",1914,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/13%2Fbc%2F95%2F13bc95fa15b0498ba62b9bda6a2c39d7%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1924-04-11,1924-05-11,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",12.00,,1 month,30,1,,1924-04-15,,,,,FRF,,,,,,,Lending Library Card;Logbook,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest;,https://iiif.princeton.edu/loris/figgy_prod/17%2Fb9%2F97%2F17b9978f259f49b9af0ed3a0d27a1e18%2Fintermediate_file.jp2/full/full/0/default.jpg;
+Borrow,1924-04-11,1924-05-05,https://shakespeareandco.princeton.edu/members/schereck/,Mildred Schereck,"Schereck, Mildred",,,,,,,,,Returned,24,,,https://shakespeareandco.princeton.edu/books/hardy-far-madding-crowd/,Far from the Madding Crowd,,"Hardy, Thomas",1874,,Lending Library Card,"Sylvia Beach, Mildred Schereck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3b15ea0c-ed8d-4b41-80f3-33485620b12c/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2F91%2Fb3%2F5e91b3031c4d49a5a9df2b18e73d411d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-04-11,1924-04-14,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/norris-bread/,Bread,,"Norris, Charles Gilman",1923,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/13%2Fbc%2F95%2F13bc95fa15b0498ba62b9bda6a2c39d7%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-04-11,1924-04-19,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/sinclair-uncanny-stories/,Uncanny Stories,,"Sinclair, May",1923,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/dd%2Fd4%2Fc5%2Fddd4c51b44084836ab3bd7e8ebc808fd%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1924-04-11,1924-04-11,https://shakespeareandco.princeton.edu/members/mitchell-john/,John Mitchell,"Mitchell, John",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-04-12,1924-05-15,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,33,,,https://shakespeareandco.princeton.edu/books/meredith-one-conquerors/,One of Our Conquerors,,"Meredith, George",1891,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/fa%2F62%2F32%2Ffa6232e0788b4f6b91b39355b374306a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-04-12,1924-05-28,https://shakespeareandco.princeton.edu/members/pottecher-therese/,Therèse Pottecher,"Pottecher, Therèse",,,,,,,,,Returned,46,,,https://shakespeareandco.princeton.edu/books/defoe-moll-flanders-roxana/,Moll Flanders and Roxana,,"Defoe, Daniel",1724,,Lending Library Card,"Sylvia Beach, Therèse Pottecher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/69b82696-3801-41ff-b1fd-c792179c5b98/manifest,https://iiif-cloud.princeton.edu/iiif/2/c0%2F05%2Fa6%2Fc005a6b8d76241a98262cea0f950c728%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1924-04-12,1924-04-12,https://shakespeareandco.princeton.edu/members/stephanaides-2/,Mr. Stephanaides,"Stephanaides, Mr.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-04-12,1924-05-15,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,33,,,https://shakespeareandco.princeton.edu/books/gissing-demos-story-english/,Demos: A Story of English Socialism,,"Gissing, George Robert",1886,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/fa%2F62%2F32%2Ffa6232e0788b4f6b91b39355b374306a%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1924-04-12,1924-07-12,https://shakespeareandco.princeton.edu/members/anderson-hilda/,Hilda Anderson,"Anderson, Hilda",40.00,40.00,3 months,91,2,,1924-04-12,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-04-14,1924-04-25,https://shakespeareandco.princeton.edu/members/savy/,Alice Savy,"Savy, Alice",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/pater-imaginary-portraits/,Imaginary Portraits,,"Pater, Walter",1896,,Lending Library Card,"Sylvia Beach, Alice Savy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6bff5a62-eced-4f79-a6f3-649cab124b38/manifest,https://iiif.princeton.edu/loris/figgy_prod/e4%2F77%2F6d%2Fe4776d9e1d694824804a09dfddc43004%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1924-04-14,1924-05-14,https://shakespeareandco.princeton.edu/members/allen-2/,Miss Allen,"Allen, Miss",12.00,20.00,1 month,30,1,,1924-04-14,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-04-14,1924-04-16,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/gosse-books-table-2/,More Books on the Table,,"Gosse, Edmund",1923,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/13%2Fbc%2F95%2F13bc95fa15b0498ba62b9bda6a2c39d7%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1924-04-14,1924-04-14,https://shakespeareandco.princeton.edu/members/de-caro-anita/;https://shakespeareandco.princeton.edu/members/de-caro-1/,Anita de Caro;Mr. de Caro,"de Caro, Anita;de Caro, Mr.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1924-04-14,1924-04-28,https://shakespeareandco.princeton.edu/members/heath-elizabeth/,Elizabeth Heath,"Heath, Elizabeth",6.00,20.00,2 weeks,14,1,,1924-04-14,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1924-04-15,1924-07-15,https://shakespeareandco.princeton.edu/members/ash/,Joyce Ash,"Ash, Joyce",30.00,,3 months,91,1,,1924-04-05,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-04-15,1924-04-25,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/pound-poems-1918-21/,Poems 1918 β 21: Including Three Portraits and Four Cantos,,"Pound, Ezra",1921,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/17%2Fb9%2F97%2F17b9978f259f49b9af0ed3a0d27a1e18%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-04-16,1924-04-22,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/carr-philosophy-benedetto-croce/,The Philosophy of Benedetto Croce: The Problem of Art and History,,"Carr, Herbert Wildon",1917,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/02%2Fc0%2F2c%2F02c02ca286b046a3a7198d4240671de9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-04-16,1924-04-23,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/strachey-books-characters-french/,"Books and Characters, French and English",,"Strachey, Giles Lytton",1922,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/13%2Fbc%2F95%2F13bc95fa15b0498ba62b9bda6a2c39d7%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-04-16,1924-04-18,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/obrien-best-short-stories/,The Best Short Stories,,,,Unidentified edition. Year unknown.,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/13%2Fbc%2F95%2F13bc95fa15b0498ba62b9bda6a2c39d7%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-04-17,1924-05-07,https://shakespeareandco.princeton.edu/members/loon/,Mme van Loon,"Loon, Mme van",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/mansfield-bliss-short-stories/,Bliss and Other Stories,,"Mansfield, Katherine",1920,,Lending Library Card,"Sylvia Beach, Madame van Loon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd8a896d-f610-4251-9431-eb12d9c54df8/manifest,https://iiif.princeton.edu/loris/figgy_prod/47%2F02%2Fbc%2F4702bc2e194a46d5bdd7ca4af24467fe%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1924-04-17,1924-04-17,https://shakespeareandco.princeton.edu/members/bullitt/,M. H. Bullitt,"Bullitt, M. H.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1924-04-17,1924-05-17,https://shakespeareandco.princeton.edu/members/loon/,Mme van Loon,"Loon, Mme van",12.00,,1 month,30,1,AdL,1924-04-17,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Madame van Loon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/cd8a896d-f610-4251-9431-eb12d9c54df8/manifest,;https://iiif.princeton.edu/loris/figgy_prod/47%2F02%2Fbc%2F4702bc2e194a46d5bdd7ca4af24467fe%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1924-04-17,1924-05-17,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",16.00,,1 month,30,2,,1924-04-17,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-04-18,1924-04-23,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/meredith-lord-ormont-aminta/,Lord Ormont and His Aminta,,"Meredith, George",1894,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/13%2Fbc%2F95%2F13bc95fa15b0498ba62b9bda6a2c39d7%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1924-04-18,1924-05-18,https://shakespeareandco.princeton.edu/members/gabain-marjorie/,Marjorie Gabain,"Gabain, Marjorie",12.00,,1 month,30,1,,1924-04-18,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1924-04-19,1924-04-19,https://shakespeareandco.princeton.edu/members/huban-lily/,Lily Huban,"Huban, Lily",,,,,,,,40.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1924-04-19,1924-05-19,https://shakespeareandco.princeton.edu/members/brown-j-m/,J. M. Brown,"Brown, J. M.",12.00,20.00,1 month,30,1,,1924-04-19,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1924-04-19,1924-05-19,https://shakespeareandco.princeton.edu/members/chin/,Mr. Chin,"Chin, Mr.",12.00,,1 month,30,1,,1924-04-22,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-04-19,1924-05-03,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/swinnerton-casement/,The Casement,,"Swinnerton, Frank",1911,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/dd%2Fd4%2Fc5%2Fddd4c51b44084836ab3bd7e8ebc808fd%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1924-04-19,1924-05-19,https://shakespeareandco.princeton.edu/members/barbet-massin/,Jan Barbet-Massin,"Barbet-Massin, Jan",16.00,40.00,1 month,30,2,,1924-04-19,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1924-04-19,1924-07-19,https://shakespeareandco.princeton.edu/members/lomax/,Mr. Lomax,"Lomax, Mr.",20.00,,3 months,91,1,,1924-03-18,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1924-04-19,1924-05-19,https://shakespeareandco.princeton.edu/members/meyere-cyprian/,Cyprian MΓ©yΓ¨re,"MΓ©yΓ¨re, Cyprian",12.00,20.00,1 month,30,1,,1924-04-19,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1924-04-22,1924-04-22,https://shakespeareandco.princeton.edu/members/harvey-8/,Miss Harvey,"Harvey, Miss",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-04-22,1924-04-24,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/montague-right-place-book/,The Right Place: A Book of Pleasures,,"Montague, C. E.",1924,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/02%2Fc0%2F2c%2F02c02ca286b046a3a7198d4240671de9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-04-23,1924-04-30,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/gregory-irish-theatre-chapter/,Our Irish Theatre: A Chapter of Autobiography,,"Gregory, Lady",1913,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/13%2Fbc%2F95%2F13bc95fa15b0498ba62b9bda6a2c39d7%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-04-23,1924-05-06,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/lewis-babbitt/,Babbitt,,"Lewis, Sinclair",1922,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/62%2F65%2F88%2F6265888991ca456585f42e7f58d1a034%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-04-23,1924-05-06,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/goldring-reputations-essays-criticism/,Reputations: Essays in Criticism,,"Goldring, Douglas",1920,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/62%2F65%2F88%2F6265888991ca456585f42e7f58d1a034%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-04-23,1924-04-26,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/mackenzie-poor-relations/,Poor Relations,,"Mackenzie, Compton",1919,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/13%2Fbc%2F95%2F13bc95fa15b0498ba62b9bda6a2c39d7%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-04-24,1924-04-28,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/cannan-house-prophecy/,The House of Prophecy,,"Cannan, Gilbert",1924,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/02%2Fc0%2F2c%2F02c02ca286b046a3a7198d4240671de9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1924-04-24,1924-05-24,https://shakespeareandco.princeton.edu/members/dighton-w/,W. Dighton,"Dighton, W.",16.00,40.00,1 month,30,2,,1924-04-24,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1924-04-24,1924-07-24,https://shakespeareandco.princeton.edu/members/campbell-5/,Mrs. Campbell,"Campbell, Mrs.",40.00,40.00,3 months,91,2,,1924-04-24,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-04-25,1924-05-02,https://shakespeareandco.princeton.edu/members/savy/,Alice Savy,"Savy, Alice",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/jerome-diary-pilgrimage/,Diary of a Pilgrimage,,"Jerome, Jerome K.",1891,,Lending Library Card,"Sylvia Beach, Alice Savy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6bff5a62-eced-4f79-a6f3-649cab124b38/manifest,https://iiif.princeton.edu/loris/figgy_prod/e4%2F77%2F6d%2Fe4776d9e1d694824804a09dfddc43004%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-04-25,,https://shakespeareandco.princeton.edu/members/joyce-lucia/,Lucia Joyce,"Joyce, Lucia",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/oneill-emperor-jones/,The Emperor Jones,,"O'Neill, Eugene",1921,,Lending Library Card,"Lucia Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Reimbursement,1924-04-25,1924-04-25,https://shakespeareandco.princeton.edu/members/kennedy-agnes/,Agnes Kennedy,"Kennedy, Agnes",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-04-25,1924-05-12,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/webster-webster-tourneur/,The Best Plays of Webster and Tourneur,,"Webster, John;Tourneur, Cyril",1888,From the [Mermaid Series](https://seriesofseries.owu.edu/mermaid-series/).,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/17%2Fb9%2F97%2F17b9978f259f49b9af0ed3a0d27a1e18%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1924-04-25,1924-05-25,https://shakespeareandco.princeton.edu/members/creswick-margaret/,Margaret Creswick,"Creswick, Margaret",12.00,20.00,1 month,30,1,,1924-04-25,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1924-04-26,1924-05-26,https://shakespeareandco.princeton.edu/members/hill-bettina/,Bettina Hill,"Hill, Bettina",12.00,20.00,1 month,30,1,,1924-04-26,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1924-04-26,1924-05-26,https://shakespeareandco.princeton.edu/members/mendelsohn-isidor/,Isidor Mendelsohn,"Mendelsohn, Isidor",12.00,,1 month,30,1,,1924-04-26,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-04-26,1924-04-28,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/richardson-backwater-pilgrimage-2/,Backwater (Pilgrimage 2),,"Richardson, Dorothy M.",1916,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/13%2Fbc%2F95%2F13bc95fa15b0498ba62b9bda6a2c39d7%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1924-04-26,1924-05-26,https://shakespeareandco.princeton.edu/members/white-mrs/,Mrs. White,"White, Mrs.",12.00,20.00,1 month,30,1,,1924-04-26,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-04-28,1924-04-30,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/swinnerton-young-felix/,Young Felix,,"Swinnerton, Frank",1923,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/02%2Fc0%2F2c%2F02c02ca286b046a3a7198d4240671de9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1924-04-28,1924-04-28,https://shakespeareandco.princeton.edu/members/foreman/,Crack Foreman,"Foreman, Crack",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1924-04-28,1924-04-28,https://shakespeareandco.princeton.edu/members/milward-3/,Mr. Milward,"Milward, Mr.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-04-28,1924-05-13,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/wharton-house-mirth/,The House of Mirth,Vol. 1,"Wharton, Edith",1905,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/a9%2F51%2F55%2Fa951550798fc4d8e99cdd187d8c34ff0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-04-28,1924-04-30,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/richardson-honeycomb-pilgrimage-3/,Honeycomb (Pilgrimage 3),,"Richardson, Dorothy M.",1917,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/13%2Fbc%2F95%2F13bc95fa15b0498ba62b9bda6a2c39d7%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-04-28,1924-05-13,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/note-books/,The Note Books,,,,"Unidentified. Samuel Butler's *The Note-Books of Samuel Butler* (1912) or Anton Chekhov's *The Note-books of Anton Tchekhov* (1921), etc.",Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/7e%2F89%2Fd9%2F7e89d956d66e4e2893ae3ae67b1b5fa6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-04-28,1924-04-30,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/squire-london-mercury/,The London Mercury,"Vol. 9, no. 54, Apr 1924",,,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/13%2Fbc%2F95%2F13bc95fa15b0498ba62b9bda6a2c39d7%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1924-04-28,1924-05-28,https://shakespeareandco.princeton.edu/members/hewitt-jeanne/,Jeanne Hewitt,"Hewitt, Jeanne",16.00,40.00,1 month,30,2,,1924-04-28,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1924-04-29,1924-07-29,https://shakespeareandco.princeton.edu/members/conlan/,Barnett D. Conlan,"Conlan, Barnett D.",20.00,,3 months,91,1,,1924-04-02,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1924-04-29,1924-05-29,https://shakespeareandco.princeton.edu/members/obrien/,Miss O'Brien,"O'Brien, Miss",12.00,,1 month,30,1,,1924-04-29,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1924-04-29,1924-04-29,https://shakespeareandco.princeton.edu/members/goddard-a-l/,A. L. Goddard,"Goddard, A. L.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1924-04-30,1925-04-30,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",60.00,,1 year,365,1,,1924-05-12,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,;https://iiif.princeton.edu/loris/figgy_prod/18%2Fa8%2F9f%2F18a89fea352842338a91e028989f25d2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-04-30,,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/gabriel-harvey/,Gabriel Harvey,,,,"Unidentified. By or about Gabriel Harvey. Likely Harvey's *Fovre Letters and Certeine Sonnets* (1592, 1922).",Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/13%2Fbc%2F95%2F13bc95fa15b0498ba62b9bda6a2c39d7%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-04-30,,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/richardson-tunnel-pilgrimage-4/,The Tunnel (Pilgrimage 4),,"Richardson, Dorothy M.",1919,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/13%2Fbc%2F95%2F13bc95fa15b0498ba62b9bda6a2c39d7%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1924-04-30,1924-04-30,https://shakespeareandco.princeton.edu/members/salinger/,Mr. Salinger,"Salinger, Mr.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-04-30,1924-05-02,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/frank-holiday/,Holiday,,"Frank, Waldo",1923,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/02%2Fc0%2F2c%2F02c02ca286b046a3a7198d4240671de9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1924-05-01,1924-06-01,https://shakespeareandco.princeton.edu/members/thackeray-2/,Colonel Thackeray,"Thackeray, Colonel",48.00,,1 month,31,6,,1924-05-01,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1924-05-01,1924-06-01,https://shakespeareandco.princeton.edu/members/chapman/,Doris Chapman,"Chapman, Doris",16.00,40.00,1 month,31,2,,1924-05-01,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1924-05-02,1924-05-02,https://shakespeareandco.princeton.edu/members/deotte-l/,L. Deotte,"Deotte, L.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-05-02,1924-05-07,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/austen-sense-sensibility/,Sense and Sensibility,,"Austen, Jane",1811,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/02%2Fc0%2F2c%2F02c02ca286b046a3a7198d4240671de9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1924-05-02,1924-05-02,https://shakespeareandco.princeton.edu/members/savy/,Alice Savy,"Savy, Alice",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1924-05-03,1924-06-03,https://shakespeareandco.princeton.edu/members/hansen/,Mr. Hansen,"Hansen, Mr.",12.00,20.00,1 month,31,1,,1924-05-03,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1924-05-03,1924-05-03,https://shakespeareandco.princeton.edu/members/hofsten-f-von/,F. von Hofsten,"Hofsten, F. von",,,,,,,,40.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-05-03,1924-05-21,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/carpenter-loves-coming-age/,Love's Coming of Age,,"Carpenter, Edward",1896,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/f0%2F4d%2F03%2Ff04d03669cc04077855d41ff251737a6%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-05-03,1924-05-05,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/borden-jane-stranger/,JaneβOur Stranger,,"Borden, Mary",1924,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/13%2Fbc%2F95%2F13bc95fa15b0498ba62b9bda6a2c39d7%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1924-05-03,1925-05-03,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",72.00,,1 year,365,1,AdL,1924-05-03,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,;https://iiif-cloud.princeton.edu/iiif/2/13%2Fbc%2F95%2F13bc95fa15b0498ba62b9bda6a2c39d7%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1924-05-04,1924-08-04,https://shakespeareandco.princeton.edu/members/meesters/,Miss Meesters,"Meesters, Miss",30.00,,3 months,92,1,,1924-03-10,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1924-05-05,1924-06-05,https://shakespeareandco.princeton.edu/members/glasgow-paul/,Paul Glasgow,"Glasgow, Paul",16.00,40.00,1 month,31,2,,1924-05-05,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1924-05-05,1924-05-05,https://shakespeareandco.princeton.edu/members/ford-6/,Mrs. M. B. Ford,"Ford, Mrs. M. B.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1924-05-05,1924-06-05,https://shakespeareandco.princeton.edu/members/hazeltine/,Mme Hazeltine,"Hazeltine, Mme",16.00,20.00,1 month,31,2,,1924-05-05,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-05-05,1924-05-07,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/richardson-interim-pilgrimage-5/,Interim (Pilgrimage 5),,"Richardson, Dorothy M.",1920,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/13%2Fbc%2F95%2F13bc95fa15b0498ba62b9bda6a2c39d7%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-05-05,1924-05-07,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/criterion/,The Criterion,"Vol. 2, no. 7, Apr 1924",,,"Renamed *The New Criterion* from January 1926 to January 1927, and *The Monthly Criterion* from May 1927 to March 1928.",Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/13%2Fbc%2F95%2F13bc95fa15b0498ba62b9bda6a2c39d7%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-05-06,1924-05-22,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/borden-jane-stranger/,JaneβOur Stranger,,"Borden, Mary",1924,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/62%2F65%2F88%2F6265888991ca456585f42e7f58d1a034%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1924-05-06,1924-06-06,https://shakespeareandco.princeton.edu/members/harrison/,Mrs. Harrison,"Harrison, Mrs.",12.00,,1 month,31,1,,1924-04-26,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-05-07,1924-05-10,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/guedalla-second-empire/,The Second Empire,,"Guedalla, Phillip",1922,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/02%2Fc0%2F2c%2F02c02ca286b046a3a7198d4240671de9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-05-07,1924-05-23,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/philip-massinger/,Philip Massinger,,,,Unidentified. By or about Massinger.,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/13%2Fbc%2F95%2F13bc95fa15b0498ba62b9bda6a2c39d7%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-05-07,1924-05-20,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/untermeyer-american-poetry-since/,American Poetry since 1900,,"Untermeyer, Louis",1923,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/02%2Fc0%2F2c%2F02c02ca286b046a3a7198d4240671de9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-05-07,1924-05-10,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/huxley-antic-hay/,Antic Hay,,"Huxley, Aldous",1923,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/02%2Fc0%2F2c%2F02c02ca286b046a3a7198d4240671de9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1924-05-08,1924-06-08,https://shakespeareandco.princeton.edu/members/cope/,Mrs. Cope,"Cope, Mrs.",12.00,20.00,1 month,31,1,,1924-05-08,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1924-05-08,1924-05-08,https://shakespeareandco.princeton.edu/members/winkler/,Mr. Winkler,"Winkler, Mr.",,,,,,,,,,,,,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1924-05-08,1924-05-08,https://shakespeareandco.princeton.edu/members/rowe-2/,Mrs. Rowe,"Rowe, Mrs.",,,,,,,,7.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Supplement,1924-05-08,1924-05-19,https://shakespeareandco.princeton.edu/members/brown-j-m/,J. M. Brown,"Brown, J. M.",4.00,20.00,11 days,11,1,,1924-05-08,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1924-05-08,1924-08-08,https://shakespeareandco.princeton.edu/members/mainsard-j/,J. Mainsard,"Mainsard, J.",40.00,,3 months,92,2,,1924-05-07,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1924-05-09,1924-06-09,https://shakespeareandco.princeton.edu/members/winkler/,Mr. Winkler,"Winkler, Mr.",12.00,,1 month,31,1,,1924-05-08,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1924-05-09,1924-06-09,https://shakespeareandco.princeton.edu/members/snider/,Mrs. Snider,"Snider, Mrs.",16.00,40.00,1 month,31,2,,1924-05-09,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1924-05-10,1924-11-10,https://shakespeareandco.princeton.edu/members/hervey-mr/;https://shakespeareandco.princeton.edu/members/hervey-2/,Mr. Hervey;Mrs. Hervey,"Hervey, Mr.;Hervey, Mrs.",100.50,,6 months,184,3,,1924-05-10,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-05-10,1924-05-13,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/huxley-crome-yellow/,Crome Yellow,,"Huxley, Aldous",1921,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/02%2Fc0%2F2c%2F02c02ca286b046a3a7198d4240671de9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1924-05-10,1924-05-10,https://shakespeareandco.princeton.edu/members/sheldon-2/,Mrs. Sheldon,"Sheldon, Mrs.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-05-10,1924-05-13,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/fry-sampler-castile/,A Sampler of Castile,,"Fry, Roger Eliot",1923,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/02%2Fc0%2F2c%2F02c02ca286b046a3a7198d4240671de9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-05-12,1924-05-22,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/criterion/,The Criterion,,,,"Renamed *The New Criterion* from January 1926 to January 1927, and *The Monthly Criterion* from May 1927 to March 1928.",Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/17%2Fb9%2F97%2F17b9978f259f49b9af0ed3a0d27a1e18%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1924-05-12,1924-05-12,https://shakespeareandco.princeton.edu/members/lorach/,Mme Lorach,"Lorach, Mme",,,,,,,,7.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1924-05-12,1924-05-12,https://shakespeareandco.princeton.edu/members/borie/,Mme Adolphe Borie,"Borie, Mme Adolphe",,,,,,,,40.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-05-12,1924-05-22,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/abercrombie-principles-english-prosody/,Principles of English Prosody,,"Abercrombie, Lascelles",1923,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/17%2Fb9%2F97%2F17b9978f259f49b9af0ed3a0d27a1e18%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1924-05-12,1924-05-12,https://shakespeareandco.princeton.edu/members/hamilton-mrs-james-k/,Mrs. James K. Hamilton,"Hamilton, Mrs. James K.",,,,,,,,,,,,,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-05-12,1924-05-19,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/sinclair-cure-souls/,A Cure of Souls,,"Sinclair, May",1924,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/18%2Fa8%2F9f%2F18a89fea352842338a91e028989f25d2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-05-13,1924-06-02,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/gosse-aspects-impressions/,Aspects and Impressions,,"Gosse, Edmund",1922,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/7e%2F89%2Fd9%2F7e89d956d66e4e2893ae3ae67b1b5fa6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-05-13,1924-05-20,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/wharton-house-mirth/,The House of Mirth,Vol. 2,"Wharton, Edith",1905,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/a9%2F51%2F55%2Fa951550798fc4d8e99cdd187d8c34ff0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1924-05-13,1924-05-13,https://shakespeareandco.princeton.edu/members/harmon/,Thomas Harmon,"Harmon, Thomas",,,,,,,,40.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1924-05-13,1924-05-13,https://shakespeareandco.princeton.edu/members/darrell-edward/,Edward Darrell,"Darrell, Edward",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1924-05-13,1924-05-13,https://shakespeareandco.princeton.edu/members/chamberlain/,Julia Chamberlain,"Chamberlain, Julia",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-05-13,1924-06-25,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,43,,,https://shakespeareandco.princeton.edu/books/graves-english-poetry-irregular/,"On English Poetry: Being an Irregular Approach to the Psychology of This Art, from Evidence Mainly Subjective",,"Graves, Robert",1922,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/02%2Fc0%2F2c%2F02c02ca286b046a3a7198d4240671de9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1924-05-13,1924-07-28,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",40.00,,"2 months, 15 days",76,2,,1924-05-13,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,;https://iiif.princeton.edu/loris/figgy_prod/02%2Fc0%2F2c%2F02c02ca286b046a3a7198d4240671de9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-05-13,1924-05-28,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/fletcher-preludes-symphonies/,Preludes and Symphonies,,"Fletcher, John Gould",1922,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/02%2Fc0%2F2c%2F02c02ca286b046a3a7198d4240671de9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-05-13,1924-05-28,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/conrad-victory-island-tale/,Victory: An Island Tale,,"Conrad, Joseph",1915,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/02%2Fc0%2F2c%2F02c02ca286b046a3a7198d4240671de9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-05-15,1924-06-05,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/moore-lake-2/,The Lake,,"Moore, George",1905,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/fa%2F62%2F32%2Ffa6232e0788b4f6b91b39355b374306a%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1924-05-16,1924-06-16,https://shakespeareandco.princeton.edu/members/thayer-woodbridge/,Mrs. Woodbridge Thayer,"Thayer, Mrs. Woodbridge",12.00,,1 month,31,1,,1924-05-07,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1924-05-16,1924-06-16,https://shakespeareandco.princeton.edu/members/koenig-fidele/,FidΓ¨le Koenig,"Koenig, FidΓ¨le",12.00,20.00,1 month,31,1,,1924-05-16,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1924-05-17,1924-06-17,https://shakespeareandco.princeton.edu/members/richards-2/,Miss Richards,"Richards, Miss",12.00,,1 month,31,1,,1924-05-17,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1924-05-17,1924-05-17,https://shakespeareandco.princeton.edu/members/miller/,S. Miller,"Miller, S.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1924-05-17,1924-11-17,https://shakespeareandco.princeton.edu/members/lemierre-m-j/,M. J. Lemierre,"Lemierre, Mr. M. J.",35.00,,6 months,184,1,,1924-05-17,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1924-05-18,1925-05-18,https://shakespeareandco.princeton.edu/members/lang-netter-3/,Mme Lang-Netter,"Lang-Netter, Mme",48.00,,1 year,365,1,,1924-01-24,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1924-05-19,1924-05-19,https://shakespeareandco.princeton.edu/members/barbet-massin/,Jan Barbet-Massin,"Barbet-Massin, Jan",,,,,,,,40.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1924-05-19,1924-06-19,https://shakespeareandco.princeton.edu/members/brown-j-m/,J. M. Brown,"Brown, J. M.",16.00,,1 month,31,2,,1924-05-26,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-05-19,1924-05-20,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/borden-romantic-woman/,The Romantic Woman,,"Borden, Mary",1916,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/18%2Fa8%2F9f%2F18a89fea352842338a91e028989f25d2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1924-05-19,1924-09-19,https://shakespeareandco.princeton.edu/members/elsmie/,Mrs. G. Elsmie,"Elsmie, Mrs. G.",56.00,,4 months,123,2,,1924-05-19,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1924-05-19,1924-05-19,https://shakespeareandco.princeton.edu/members/murphy-dudley/,Dudley Murphy,"Murphy, Dudley",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1924-05-19,1924-06-19,https://shakespeareandco.princeton.edu/members/chin/,Mr. Chin,"Chin, Mr.",12.00,,1 month,31,1,,1924-05-19,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-05-20,1924-06-11,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/housman-shropshire-lad/,A Shropshire Lad,,"Housman, A. E.",1896,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/76%2F29%2F11%2F762911abf8aa4e75890775e78befc083%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-05-20,1924-06-16,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,27,,,https://shakespeareandco.princeton.edu/books/lawrence-women-love/,Women in Love,,"Lawrence, D. H.",1920,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/a9%2F51%2F55%2Fa951550798fc4d8e99cdd187d8c34ff0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-05-20,1924-05-30,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/borden-jane-stranger/,JaneβOur Stranger,,"Borden, Mary",1924,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/18%2Fa8%2F9f%2F18a89fea352842338a91e028989f25d2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1924-05-20,1924-05-20,https://shakespeareandco.princeton.edu/members/dighton-w/,W. Dighton,"Dighton, W.",,,,,,,,40.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1924-05-21,1924-05-21,https://shakespeareandco.princeton.edu/members/creswick-margaret/,Margaret Creswick,"Creswick, Margaret",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1924-05-21,1924-06-21,https://shakespeareandco.princeton.edu/members/clark-catherine/,Catherine Clark,"Clark, Catherine",12.00,20.00,1 month,31,1,,1924-05-21,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-05-21,1924-05-24,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/galsworthy-saints-progress/,Saint's Progress,,"Galsworthy, John",1919,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/f0%2F4d%2F03%2Ff04d03669cc04077855d41ff251737a6%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1924-05-22,1924-08-22,https://shakespeareandco.princeton.edu/members/beadle/,Mrs. Beadle,"Beadle, Mrs.",30.00,,3 months,92,1,,1924-01-29,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-05-22,1924-06-27,https://shakespeareandco.princeton.edu/members/tery/,Simone TΓ©ry,"TΓ©ry, Simone",,,,,,,,,Returned,36,,,https://shakespeareandco.princeton.edu/books/joyce-dubliners/,Dubliners,,"Joyce, James",1914,,Lending Library Card,"Sylvia Beach, Mlle Simone Tery Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/73d98e0e-ef4c-420e-ae77-1f51ebf786e0/manifest,https://iiif.princeton.edu/loris/figgy_prod/c2%2F27%2F79%2Fc22779e2a7da4fdba034295a4241dfbb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1924-05-22,1924-06-22,https://shakespeareandco.princeton.edu/members/orr-f/,Miss F. Orr,"Orr, Miss F.",12.00,20.00,1 month,31,1,,1924-05-22,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1924-05-22,1924-06-22,https://shakespeareandco.princeton.edu/members/lambert-c-a/,C. A. Lambert,"Lambert, C. A.",12.00,20.00,1 month,31,1,,1924-05-22,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-05-22,1924-06-27,https://shakespeareandco.princeton.edu/members/tery/,Simone TΓ©ry,"TΓ©ry, Simone",,,,,,,,,Returned,36,,,https://shakespeareandco.princeton.edu/books/joyce-chamber-music/,Chamber Music,,"Joyce, James",1907,,Lending Library Card,"Sylvia Beach, Mlle Simone Tery Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/73d98e0e-ef4c-420e-ae77-1f51ebf786e0/manifest,https://iiif.princeton.edu/loris/figgy_prod/c2%2F27%2F79%2Fc22779e2a7da4fdba034295a4241dfbb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1924-05-22,1924-05-22,https://shakespeareandco.princeton.edu/members/stafford-jane/,Jane Stafford,"Stafford, Jane",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1924-05-23,1924-06-23,https://shakespeareandco.princeton.edu/members/gruenberg-louis/,Louis Gruenberg,"Gruenberg, Louis",12.00,20.00,1 month,31,1,,1924-05-23,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-05-23,1924-05-30,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/nashe-unfortunate-traveller-life/,"The Unfortunate Traveller; Or, The Life of Jacke Wilton",,"Nashe, Thomas",,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/13%2Fbc%2F95%2F13bc95fa15b0498ba62b9bda6a2c39d7%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-05-24,1924-05-30,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/johnson-contemporary-novelists-women/,Some Contemporary Novelists (Women),,"Johnson, R. Brimley",1920,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/f0%2F4d%2F03%2Ff04d03669cc04077855d41ff251737a6%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1924-05-24,1924-06-24,https://shakespeareandco.princeton.edu/members/little/,Beatrice Little,"Little, Beatrice",16.00,40.00,1 month,31,2,,1924-05-24,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1924-05-24,1924-08-24,https://shakespeareandco.princeton.edu/members/jessel-robert-3/,Robert Jessel,"Jessel, Robert",40.00,40.00,3 months,92,2,,1924-05-24,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1924-05-24,1924-05-24,https://shakespeareandco.princeton.edu/members/brouse/,Paul Brouse,"Brouse, Paul",,,,,,,,40.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1924-05-24,1924-05-24,https://shakespeareandco.princeton.edu/members/meyere-cyprian/,Cyprian MΓ©yΓ¨re,"MΓ©yΓ¨re, Cyprian",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-05-26,1924-06-11,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/yeats-later-poems/,Later Poems,,"Yeats, William Butler",1922,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/17%2Fb9%2F97%2F17b9978f259f49b9af0ed3a0d27a1e18%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1924-05-26,1924-05-26,https://shakespeareandco.princeton.edu/members/gabain-marjorie/,Marjorie Gabain,"Gabain, Marjorie",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1924-05-26,1924-05-26,https://shakespeareandco.princeton.edu/members/bishop-john-peale/,John Peale Bishop,"Bishop, John Peale",,,,,,,,40.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1924-05-26,1924-06-26,https://shakespeareandco.princeton.edu/members/hill-bettina/,Bettina Hill,"Hill, Bettina",12.00,,1 month,31,1,,1924-05-26,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1924-05-27,1924-06-27,https://shakespeareandco.princeton.edu/members/higgins/,B. Higgins,"Higgins, B.",16.00,40.00,1 month,31,2,,1924-05-27,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1924-05-27,1924-06-27,https://shakespeareandco.princeton.edu/members/choate-n/,N. Choate,"Choate, N.",16.00,40.00,1 month,31,2,,1924-05-27,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-05-28,1924-05-30,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/rosenfeld-port-new-york/,Port of New York: Essays on Fourteen American Moderns,,"Rosenfeld, Paul",1924,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/76%2F29%2F11%2F762911abf8aa4e75890775e78befc083%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-05-28,1924-07-11,https://shakespeareandco.princeton.edu/members/pottecher-therese/,Therèse Pottecher,"Pottecher, Therèse",,,,,,,,,Returned,44,,,https://shakespeareandco.princeton.edu/books/frank-rahab/,Rahab,,"Frank, Waldo",1922,,Lending Library Card,"Sylvia Beach, Therèse Pottecher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/69b82696-3801-41ff-b1fd-c792179c5b98/manifest,https://iiif-cloud.princeton.edu/iiif/2/c0%2F05%2Fa6%2Fc005a6b8d76241a98262cea0f950c728%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-05-30,1924-05-31,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/white-gold/,Gold,,"White, Stewart Edward",1913,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/79%2F06%2Ffa%2F7906fa028b834bcf95f9e271b6e09af6%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1924-05-30,1924-05-30,https://shakespeareandco.princeton.edu/members/hansen/,Mr. Hansen,"Hansen, Mr.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1924-05-30,1924-06-13,https://shakespeareandco.princeton.edu/members/shostac-2/,Miss Shostac,"Shostac, Miss",8.00,,2 weeks,14,2,,1924-05-13,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1924-05-30,1924-06-13,https://shakespeareandco.princeton.edu/members/shostac-2/,Miss Shostac,"Shostac, Miss",8.00,,2 weeks,14,,,1924-05-30,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-05-30,1924-06-11,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/babbitt-criticism-america-function/,Criticism in America: Its Function and Status,,,1924,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/76%2F29%2F11%2F762911abf8aa4e75890775e78befc083%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-05-30,1924-06-11,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/gaskell-cranford/,Cranford,,"Gaskell, Elizabeth",1853,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/76%2F29%2F11%2F762911abf8aa4e75890775e78befc083%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-05-30,1924-06-07,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/dane-first-blade-comedy/,First the Blade: A Comedy of Growth,,"Dane, Clemence",1918,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/18%2Fa8%2F9f%2F18a89fea352842338a91e028989f25d2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-05-30,1924-05-31,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/lawrence-lost-girl/,The Lost Girl,,"Lawrence, D. H.",1920,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/f0%2F4d%2F03%2Ff04d03669cc04077855d41ff251737a6%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-05-31,1924-06-19,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/city-dreadful-night/,The City of Dreadful Night,,,,"Unidentified. James Thomson's *The City of Dreadful Night and Other Poems* (1874), Rudyard Kipling's *The City of Dreadful Night* (1899), or Ben Ames Williams's [*The Dreadful Night*](https://shakespeareandco.princeton.edu/books/williams-dreadful-night/) (1928).",Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/f0%2F4d%2F03%2Ff04d03669cc04077855d41ff251737a6%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-05-31,1924-06-03,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/smollett-adventures-peregrine-pickle/,The Adventures of Peregrine Pickle,Vol. 1,"Smollett, Tobias",1751,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/79%2F06%2Ffa%2F7906fa028b834bcf95f9e271b6e09af6%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1924-05-31,1924-05-31,https://shakespeareandco.princeton.edu/members/allen-2/,Miss Allen,"Allen, Miss",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1924-05-31,1924-05-31,https://shakespeareandco.princeton.edu/members/obrien/,Miss O'Brien,"O'Brien, Miss",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1924-06-02,1924-09-02,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",40.00,,3 months,92,2,,1924-07-04,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,;https://iiif.princeton.edu/loris/figgy_prod/76%2F29%2F11%2F762911abf8aa4e75890775e78befc083%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-06-02,1924-06-14,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/september/,September,,,,Unidentified. Likely Frank Swinnerton's *September* (1919).,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/7e%2F89%2Fd9%2F7e89d956d66e4e2893ae3ae67b1b5fa6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-06-03,1924-06-13,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/smollett-adventures-peregrine-pickle/,The Adventures of Peregrine Pickle,Vol. 2,"Smollett, Tobias",1751,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/79%2F06%2Ffa%2F7906fa028b834bcf95f9e271b6e09af6%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1924-06-03,1924-07-03,https://shakespeareandco.princeton.edu/members/davis-mary/,Mary Davis / Mrs. N. D. Davis,"Davis, Mary",12.00,,1 month,30,1,,1924-06-03,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1924-06-04,1924-07-04,https://shakespeareandco.princeton.edu/members/hinrichs/,Paul Hinrichs,"Hinrichs, Paul",12.00,20.00,1 month,30,1,,1924-06-04,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-06-05,1924-06-16,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/wells-dream-novel/,The Dream: A Novel,,"Wells, H. G.",1924,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/fa%2F62%2F32%2Ffa6232e0788b4f6b91b39355b374306a%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1924-06-05,1924-06-05,https://shakespeareandco.princeton.edu/members/hazeltine/,Mme Hazeltine,"Hazeltine, Mme",,,,,,,,40.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1924-06-05,1924-12-05,https://shakespeareandco.princeton.edu/members/beaudains/,Mlle Beaudains,"Beaudains, Mlle",41.00,,6 months,183,1,AdL,1924-06-21,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1924-06-05,1924-07-05,https://shakespeareandco.princeton.edu/members/gilbert-marion/,Marion Gilbert,"Gilbert, Marion",12.00,,1 month,30,1,AdL,1924-06-05,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-06-05,1924-06-19,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/woolf-voyage/,The Voyage Out,,"Woolf, Virginia",1915,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/fa%2F62%2F32%2Ffa6232e0788b4f6b91b39355b374306a%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1924-06-06,1924-07-06,https://shakespeareandco.princeton.edu/members/harrison/,Mrs. Harrison,"Harrison, Mrs.",12.00,,1 month,30,1,,1924-06-04,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1924-06-06,1924-06-06,https://shakespeareandco.princeton.edu/members/mendelsohn-isidor/,Isidor Mendelsohn,"Mendelsohn, Isidor",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1924-06-06,1924-07-06,https://shakespeareandco.princeton.edu/members/mendelsohn-isidor/,Isidor Mendelsohn,"Mendelsohn, Isidor",12.00,,1 month,30,1,,1924-06-06,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-06-07,1924-06-21,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/dane-wandering-stars/,Wandering Stars,,"Dane, Clemence",1924,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/18%2Fa8%2F9f%2F18a89fea352842338a91e028989f25d2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1924-06-10,1924-07-10,https://shakespeareandco.princeton.edu/members/lenglet/,Miss Lenglet,"Lenglet, Miss",12.00,,1 month,30,1,,1924-06-10,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1924-06-10,1924-07-10,https://shakespeareandco.princeton.edu/members/crane/,Clarkson Crane,"Crane, Clarkson",12.00,20.00,1 month,30,1,,1924-06-10,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-06-11,1924-06-25,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/moore-lewis-seymour-women/,Lewis Seymour and Some Women,,"Moore, George",1916,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/76%2F29%2F11%2F762911abf8aa4e75890775e78befc083%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1924-06-11,1924-09-11,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",30.00,,3 months,92,1,,1924-06-11,,,,,FRF,,,,,,,Lending Library Card;Logbook,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest;,https://iiif.princeton.edu/loris/figgy_prod/eb%2F08%2F9d%2Feb089ddbcf314523baaa9fbccb485801%2Fintermediate_file.jp2/full/full/0/default.jpg;
+Borrow,1924-06-11,1924-06-17,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/romains-eyeless-sight-study/,Eyeless Sight: A Study of Exra-Retinal Vision and the Paroptic Sense,,"Romains, Jules",1924,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/76%2F29%2F11%2F762911abf8aa4e75890775e78befc083%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1924-06-11,1925-06-11,https://shakespeareandco.princeton.edu/members/burt-maud/,Maud Burt,"Burt, Maud",88.00,,1 year,365,2,AdL,1924-06-13,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-06-11,1924-08-11,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,61,,,https://shakespeareandco.princeton.edu/books/gaskell-wives-daughters/,Wives and Daughters,,"Gaskell, Elizabeth",1864,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/76%2F29%2F11%2F762911abf8aa4e75890775e78befc083%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1924-06-12,1924-06-12,https://shakespeareandco.princeton.edu/members/cope/,Mrs. Cope,"Cope, Mrs.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1924-06-12,1924-06-12,https://shakespeareandco.princeton.edu/members/glasgow-paul/,Paul Glasgow,"Glasgow, Paul",,,,,,,,40.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-06-13,1924-06-17,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/smollett-adventures-roderick-random/,The Adventures of Roderick Random,,"Smollett, Tobias",1748,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/79%2F06%2Ffa%2F7906fa028b834bcf95f9e271b6e09af6%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-06-13,1924-06-30,https://shakespeareandco.princeton.edu/members/marsland/,Harriet Marsland,"Marsland, Harriet",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/gosse-books-table-2/,More Books on the Table,,"Gosse, Edmund",1923,,Lending Library Card,"Sylvia Beach, Harriet Marsland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/34833978-1579-4eb9-a196-73e566a04a2c/manifest,https://iiif.princeton.edu/loris/figgy_prod/0e%2F5f%2F7e%2F0e5f7e89c2f245379135db69fa99da3a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-06-13,1924-06-19,https://shakespeareandco.princeton.edu/members/marsland/,Harriet Marsland,"Marsland, Harriet",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/neville-fourth-dimension/,The Fourth Dimension,,"Neville, Eric Harold",1921,,Lending Library Card,"Sylvia Beach, Harriet Marsland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/34833978-1579-4eb9-a196-73e566a04a2c/manifest,https://iiif.princeton.edu/loris/figgy_prod/0e%2F5f%2F7e%2F0e5f7e89c2f245379135db69fa99da3a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Supplement,1924-06-13,1924-06-27,https://shakespeareandco.princeton.edu/members/smith-7/,Mr. Smith,"Smith, Mr.",6.00,,2 weeks,14,1,,1924-06-13,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1924-06-13,1924-07-13,https://shakespeareandco.princeton.edu/members/marsland/,Harriet Marsland,"Marsland, Harriet",16.00,40.00,1 month,30,2,,1924-06-13,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Harriet Marsland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/34833978-1579-4eb9-a196-73e566a04a2c/manifest,;https://iiif.princeton.edu/loris/figgy_prod/0e%2F5f%2F7e%2F0e5f7e89c2f245379135db69fa99da3a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1924-06-13,1924-06-27,https://shakespeareandco.princeton.edu/members/bornand/,Mlle Bornand,"Bornand, Mlle",6.00,20.00,2 weeks,14,1,,1924-06-13,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1924-06-13,1924-06-13,https://shakespeareandco.princeton.edu/members/hill-bettina/,Bettina Hill,"Hill, Bettina",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-06-14,1924-06-21,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/james-maisie-knew/,What Maisie Knew,,"James, Henry",1897,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/18%2Fa8%2F9f%2F18a89fea352842338a91e028989f25d2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1924-06-14,1924-06-14,https://shakespeareandco.princeton.edu/members/macdougall-g/,G. MacDougall,"MacDougall, G.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1924-06-14,1924-07-14,https://shakespeareandco.princeton.edu/members/jennings-mrs/;https://shakespeareandco.princeton.edu/members/jennings-o/,Mrs. Jennings;O. Jennings,"Jennings, Mrs.;Jennings, O.",16.00,40.00,1 month,30,2,,1924-06-14,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-06-14,1924-07-12,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,28,,,https://shakespeareandco.princeton.edu/books/chesterton-george-bernard-shaw/,George Bernard Shaw,,"Chesterton, G. K.",1909,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/7e%2F89%2Fd9%2F7e89d956d66e4e2893ae3ae67b1b5fa6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1924-06-16,1924-06-16,https://shakespeareandco.princeton.edu/members/struve/,Mr. Struve,"Struve, Mr.",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-06-16,,https://shakespeareandco.princeton.edu/members/joyce-lucia/,Lucia Joyce,"Joyce, Lucia",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/scott-poems-walter-scott/,Poems of Walter Scott,,"Scott, Walter",,,Lending Library Card,"Lucia Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Reimbursement,1924-06-16,1924-06-16,https://shakespeareandco.princeton.edu/members/higgins/,B. Higgins,"Higgins, B.",,,,,,,,40.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1924-06-16,1924-06-16,https://shakespeareandco.princeton.edu/members/anderson-hilda/,Hilda Anderson,"Anderson, Hilda",,,,,,,,40.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-06-16,1924-06-30,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/wharton-greater-inclination/,The Greater Inclination,,"Wharton, Edith",1899,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/a9%2F51%2F55%2Fa951550798fc4d8e99cdd187d8c34ff0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1924-06-16,1924-06-16,https://shakespeareandco.princeton.edu/members/koenig-fidele/,FidΓ¨le Koenig,"Koenig, FidΓ¨le",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1924-06-16,1924-06-16,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-06-16,1924-06-19,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/deirdre/,Deirdre,,,,"Unidentified. Robert Dwyer Joyce's *DeirdreΜ* (1877), A. E.'s *Deirdre* (1902), or W. B. Yeats's *Deirdre* (1907), etc.",Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/fa%2F62%2F32%2Ffa6232e0788b4f6b91b39355b374306a%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1924-06-16,1924-08-25,https://shakespeareandco.princeton.edu/members/struve/,Mr. Struve,"Struve, Mr.",40.00,,10 weeks,70,2,,1924-06-16,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-06-17,1924-06-20,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/modern-painting/,Modern Painting,,,,Unidentified. George Moore's *Modern Painting* (1893) or Williard Huntington Wright's *Modern Painting: Its Tendency and Meaning* (1915).,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/76%2F29%2F11%2F762911abf8aa4e75890775e78befc083%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1924-06-17,1924-06-17,https://shakespeareandco.princeton.edu/members/gruenberg-louis/,Louis Gruenberg,"Gruenberg, Louis",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-06-17,1924-06-20,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/dostoyevsky-eternal-husband-stories/,The Eternal Husband and Other Stories,,"Dostoyevsky, Fyodor",1917,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/79%2F06%2Ffa%2F7906fa028b834bcf95f9e271b6e09af6%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1924-06-18,1925-06-18,https://shakespeareandco.princeton.edu/members/lorsignol/,Mme Lorsignol,"Lorsignol, Mme",88.00,,1 year,365,2,AdL,1924-05-13,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-06-19,1924-06-27,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/lost-carrick/,Lost [unclear],,,,Unidentified. Handwriting unclear.,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/fa%2F62%2F32%2Ffa6232e0788b4f6b91b39355b374306a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-06-19,1924-06-27,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/frank-holiday/,Holiday,,"Frank, Waldo",1923,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/fa%2F62%2F32%2Ffa6232e0788b4f6b91b39355b374306a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-06-19,1924-06-23,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/galsworthy-plays/,Plays,,"Galsworthy, John",,Unidentified. Series unknown.,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/f0%2F4d%2F03%2Ff04d03669cc04077855d41ff251737a6%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1924-06-19,1924-06-19,https://shakespeareandco.princeton.edu/members/hinrichs/,Paul Hinrichs,"Hinrichs, Paul",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1924-06-19,1924-07-19,https://shakespeareandco.princeton.edu/members/brown-j-m/,J. M. Brown,"Brown, J. M.",16.00,,1 month,30,2,,1924-06-24,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-06-19,1924-06-30,https://shakespeareandco.princeton.edu/members/marsland/,Harriet Marsland,"Marsland, Harriet",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/pirandello-three-plays/,Three Plays,,"Pirandello, Luigi",1922,,Lending Library Card,"Sylvia Beach, Harriet Marsland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/34833978-1579-4eb9-a196-73e566a04a2c/manifest,https://iiif.princeton.edu/loris/figgy_prod/0e%2F5f%2F7e%2F0e5f7e89c2f245379135db69fa99da3a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1924-06-19,1924-07-19,https://shakespeareandco.princeton.edu/members/chin/,Mr. Chin,"Chin, Mr.",12.00,,1 month,30,1,,1924-06-20,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-06-20,1924-07-04,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/oneill-gods-chillun-got/,All God's Chillun Got Wings,,"O'Neill, Eugene",1924,Some editions of *All God's Chillun Got Wings* include O'Neill's *Welded* (1924) and [*Desire under the Elms*](https://shakespeareandco.princeton.edu/books/oneill-desire-elms-play/) (1924). [M. Villars](https://shakespeareandco.princeton.edu/members/villars/) purchased an edition that includes *Desire under the Elms.*,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/76%2F29%2F11%2F762911abf8aa4e75890775e78befc083%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-06-20,1924-06-25,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/saintsbury-collected-essays-papers/,"The Collected Essays and Papers of George Saintsbury, 1875 β 1920",Vol. 1 Essays in English Literature,"Saintsbury, George",1923,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/79%2F06%2Ffa%2F7906fa028b834bcf95f9e271b6e09af6%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1924-06-21,1924-07-05,https://shakespeareandco.princeton.edu/members/nathan/,Adele Gutman Nathan,"Nathan, Adele Gutman",6.00,20.00,2 weeks,14,1,,1924-06-21,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-06-21,1924-06-30,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/ponsonby-english-diaries/,English Diaries,,"Ponsonby, Arthur",1923,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/18%2Fa8%2F9f%2F18a89fea352842338a91e028989f25d2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1924-06-21,1924-06-21,https://shakespeareandco.princeton.edu/members/ormsbee/,Miss Ormsbee,"Ormsbee, Miss",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-06-23,1924-06-24,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/galsworthy-windows-comedy-three/,Windows: A Comedy in Three Acts for Idealists and Others,,"Galsworthy, John",1922,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/f0%2F4d%2F03%2Ff04d03669cc04077855d41ff251737a6%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1924-06-24,1924-07-24,https://shakespeareandco.princeton.edu/members/beckman/,Mrs. R. W. Beckman,"Beckman, Mrs. R. W.",12.00,20.00,1 month,30,1,,1924-06-24,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1924-06-24,1924-09-24,https://shakespeareandco.princeton.edu/members/casrouge/,Mme Casrouge,"Casrouge, Mme",30.00,10.00,3 months,92,1,,1924-06-24,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1924-06-24,1924-07-24,https://shakespeareandco.princeton.edu/members/helie-2/,Mlle Helie,"Helie, Mlle",12.00,20.00,1 month,30,1,,1924-06-24,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1924-06-24,1924-06-24,https://shakespeareandco.princeton.edu/members/little/,Beatrice Little,"Little, Beatrice",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1924-06-24,1924-07-24,https://shakespeareandco.princeton.edu/members/kitamura/,Mr. Kitamura,"Kitamura, Mr.",12.00,20.00,1 month,30,1,,1924-06-24,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-06-24,1924-06-28,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/akins-declassee-daddys-gone/,DΓ©classΓ©e: Daddy's Gone A-Hunting: and GreatnessβA Comedy,,"Akins, ZoΓ«",1923,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/f0%2F4d%2F03%2Ff04d03669cc04077855d41ff251737a6%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1924-06-24,1924-09-02,https://shakespeareandco.princeton.edu/members/price/,Mr. Price,"Price, Mr.",40.00,,10 weeks,70,2,,1924-06-24,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-06-25,1924-07-02,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/hazlitt-table-talk/,Table-Talk,,"Hazlitt, William",1822,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/79%2F06%2Ffa%2F7906fa028b834bcf95f9e271b6e09af6%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-06-25,1924-06-28,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/huxley-little-mexican-stories/,Little Mexican and Other Stories,,"Huxley, Aldous",1924,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/76%2F29%2F11%2F762911abf8aa4e75890775e78befc083%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-06-25,1924-06-28,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/h-d-heliodora-poems/,Heliodora and Other Poems,,H. D.,1924,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/76%2F29%2F11%2F762911abf8aa4e75890775e78befc083%2Fintermediate_file.jp2/full/full/0/default.jpg
+Separate Payment,1924-06-25,1924-06-25,https://shakespeareandco.princeton.edu/members/cody/;https://shakespeareandco.princeton.edu/members/cody-morrill/,Frances Cody;Morrill Cody,"Cody, Frances;Cody, Morrill",25.00,,,,,,1924-06-25,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-06-25,1924-07-15,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/proust-swanns-way/,Swann's Way (Γ la recherche du temps perdu 1),2 vols.,"Proust, Marcel",1922,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/eb%2F08%2F9d%2Feb089ddbcf314523baaa9fbccb485801%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1924-06-26,1924-09-26,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",20.00,,3 months,92,2,,1924-06-26,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,;https://iiif-cloud.princeton.edu/iiif/2/9f%2F8f%2Fad%2F9f8fad0b96e34650ae551e3c229b2cf7%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-06-26,1924-07-24,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,28,,,https://shakespeareandco.princeton.edu/books/strachey-queen-victoria/,Queen Victoria,,"Strachey, Giles Lytton",1921,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/9f%2F8f%2Fad%2F9f8fad0b96e34650ae551e3c229b2cf7%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-06-26,1924-07-24,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,28,,,https://shakespeareandco.princeton.edu/books/joyce-portrait-artist-young/,A Portrait of the Artist as a Young Man,,"Joyce, James",1916,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/9f%2F8f%2Fad%2F9f8fad0b96e34650ae551e3c229b2cf7%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-06-27,1924-07-15,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/newman-verses-various-occasions/,Verses on Various Occasions,,"Newman, John-Henry",1867,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/fa%2F62%2F32%2Ffa6232e0788b4f6b91b39355b374306a%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1924-06-27,1924-06-27,https://shakespeareandco.princeton.edu/members/unnamed-member-8/,[unnamed member],[unnamed member],,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Crossed out,1924-06-27,,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/frank-dark-mother/,The Dark Mother,,"Frank, Waldo",1920,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/fa%2F62%2F32%2Ffa6232e0788b4f6b91b39355b374306a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-06-27,1924-07-15,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/russell-abc-atoms/,The ABC of Atoms,,"Russell, Bertrand",1923,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/7b%2Fd0%2F1f%2F7bd01f8bb8e348b49e9ee3952883396c%2Fintermediate_file/full/full/0/default.jpg
+Supplement,1924-06-27,1924-07-26,https://shakespeareandco.princeton.edu/members/reswick/,Mrs. Reswick,"Reswick, Mrs.",4.00,20.00,29 days,29,,,1924-06-27,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-06-28,1924-07-03,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/ford-some-do-not/,Some Do Not... (Parade's End 1),,"Ford, Ford Madox",1924,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/f0%2F4d%2F03%2Ff04d03669cc04077855d41ff251737a6%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-06-28,1924-07-15,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/millay-harp-weaver-poems/,The Harp-Weaver and Other Poems,,"Millay, Edna St. Vincent",1923,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/76%2F29%2F11%2F762911abf8aa4e75890775e78befc083%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1924-06-28,1924-07-28,https://shakespeareandco.princeton.edu/members/goodwin-melvin/,Melvin Goodwin,"Goodwin, Melvin",12.00,20.00,1 month,30,1,,1924-06-28,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1924-06-28,1924-09-28,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",20.00,,3 months,92,1,,1924-06-28,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,;https://iiif-cloud.princeton.edu/iiif/2/e0%2Fae%2F6b%2Fe0ae6bec54324349b412353650ee6dab%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1924-06-28,1924-06-28,https://shakespeareandco.princeton.edu/members/lucas-j-w/,Mrs. J. W. Lucas,"Lucas, Mrs. J. W.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1924-06-28,1924-06-28,https://shakespeareandco.princeton.edu/members/helie-2/,Mlle Helie,"Helie, Mlle",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-06-28,1924-07-04,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/wilson-able-mclaughlins/,The Able McLaughlins,,"Wilson, Margaret",1923,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/76%2F29%2F11%2F762911abf8aa4e75890775e78befc083%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-06-28,1924-07-12,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/dreiser-color-great-city/,The Color of a Great City,,"Dreiser, Theodore",1923,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/e0%2Fae%2F6b%2Fe0ae6bec54324349b412353650ee6dab%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-06-28,1924-07-05,https://shakespeareandco.princeton.edu/members/rieder/,M. Rieder,"Rieder, M.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/cabell-jurgen-comedy-justice/,Jurgen: A Comedy of Justice,,"Cabell, James Branch",1919,,Lending Library Card,"Sylvia Beach, Rieder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/559c8919-8881-40ad-b027-67dbf1b23611/manifest,https://iiif.princeton.edu/loris/figgy_prod/6b%2Ffd%2F99%2F6bfd992bb8e742da8b7377869c34b3c2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-06-30,1924-07-18,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/douglas-south-wind/,South Wind,,"Douglas, Norman",1917,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/a9%2F51%2F55%2Fa951550798fc4d8e99cdd187d8c34ff0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-06-30,1924-07-08,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/huxley-little-mexican-stories/,Little Mexican and Other Stories,,"Huxley, Aldous",1924,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/18%2Fa8%2F9f%2F18a89fea352842338a91e028989f25d2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1924-06-30,1924-07-30,https://shakespeareandco.princeton.edu/members/coe/,Mr. Coe,"Coe, Mr.",12.00,20.00,1 month,30,1,,1924-06-30,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-06-30,1924-07-07,https://shakespeareandco.princeton.edu/members/marsland/,Harriet Marsland,"Marsland, Harriet",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/lawrence-sea-sardinia/,Sea and Sardinia,,"Lawrence, D. H.",1921,,Lending Library Card,"Sylvia Beach, Harriet Marsland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/34833978-1579-4eb9-a196-73e566a04a2c/manifest,https://iiif.princeton.edu/loris/figgy_prod/0e%2F5f%2F7e%2F0e5f7e89c2f245379135db69fa99da3a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-06-30,1924-07-07,https://shakespeareandco.princeton.edu/members/marsland/,Harriet Marsland,"Marsland, Harriet",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/jung-psychology-unconscious/,The Psychology of the Unconscious,,"Jung, Carl Gustav",1916,,Lending Library Card,"Sylvia Beach, Harriet Marsland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/34833978-1579-4eb9-a196-73e566a04a2c/manifest,https://iiif.princeton.edu/loris/figgy_prod/0e%2F5f%2F7e%2F0e5f7e89c2f245379135db69fa99da3a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-07-01,1924-07-15,https://shakespeareandco.princeton.edu/members/stevens-george/,George Stevens,"Stevens, George",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/freud-introductory-lectures-psycho/,Introductory Lectures on Psycho-Analysis,,"Freud, Sigmund",1917,,Lending Library Card,"Sylvia Beach, George Stevens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2eadc899-f67d-4a18-83cf-a42712ac85c2/manifest,https://iiif.princeton.edu/loris/figgy_prod/53%2Fc6%2F2c%2F53c62c97666a4d9a809c0cb5db20ec6b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1924-07-01,1924-10-01,https://shakespeareandco.princeton.edu/members/stevens-george/,George Stevens,"Stevens, George",40.00,40.00,3 months,92,2,,1924-07-01,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, George Stevens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/2eadc899-f67d-4a18-83cf-a42712ac85c2/manifest,;https://iiif.princeton.edu/loris/figgy_prod/53%2Fc6%2F2c%2F53c62c97666a4d9a809c0cb5db20ec6b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1924-07-01,1924-08-01,https://shakespeareandco.princeton.edu/members/acheson-sam/,Sam Acheson,"Acheson, Sam",12.00,20.00,1 month,31,1,,1924-07-01,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-07-01,1924-07-15,https://shakespeareandco.princeton.edu/members/stevens-george/,George Stevens,"Stevens, George",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/freud-psychopathology-everyday-life/,The Psychopathology of Everyday Life,,"Freud, Sigmund",1914,,Lending Library Card,"Sylvia Beach, George Stevens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2eadc899-f67d-4a18-83cf-a42712ac85c2/manifest,https://iiif.princeton.edu/loris/figgy_prod/53%2Fc6%2F2c%2F53c62c97666a4d9a809c0cb5db20ec6b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-07-02,1924-07-08,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/swift-tale-tub/,A Tale of a Tub,,"Swift, Jonathan",1704,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/79%2F06%2Ffa%2F7906fa028b834bcf95f9e271b6e09af6%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-07-03,1924-07-05,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/mansfield-bliss-short-stories/,Bliss and Other Stories,,"Mansfield, Katherine",1920,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/f0%2F4d%2F03%2Ff04d03669cc04077855d41ff251737a6%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1924-07-04,1924-08-04,https://shakespeareandco.princeton.edu/members/ketchum-l-b/,L. B. Ketchum,"Ketchum, L. B.",12.00,20.00,1 month,31,1,,1924-07-04,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1924-07-04,1924-08-04,https://shakespeareandco.princeton.edu/members/lucas-j-w/,Mrs. J. W. Lucas,"Lucas, Mrs. J. W.",12.00,,1 month,31,1,,1924-05-27,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1924-07-04,1924-07-04,https://shakespeareandco.princeton.edu/members/goodwin-melvin/,Melvin Goodwin,"Goodwin, Melvin",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-07-04,1924-07-28,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,24,,,https://shakespeareandco.princeton.edu/books/landor-hellenics/,The Hellenics,,"Landor, Walter Savage",1847,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/76%2F29%2F11%2F762911abf8aa4e75890775e78befc083%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-07-04,1924-07-15,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/meredith-diana-crossways/,Diana of the Crossways,,"Meredith, George",1885,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/76%2F29%2F11%2F762911abf8aa4e75890775e78befc083%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1924-07-05,1924-10-05,https://shakespeareandco.princeton.edu/members/freedley-durr/,Durr Freedley,"Freedley, Durr",40.00,40.00,3 months,92,2,,1924-07-05,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-07-05,1924-08-02,https://shakespeareandco.princeton.edu/members/rieder/,M. Rieder,"Rieder, M.",,,,,,,,,Returned,28,,,https://shakespeareandco.princeton.edu/books/ashford-young-visiters-mister/,"The Young Visiters, or Mister Salteena's Plan",,"Ashford, Daisy",1919,,Lending Library Card,"Sylvia Beach, Rieder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/559c8919-8881-40ad-b027-67dbf1b23611/manifest,https://iiif.princeton.edu/loris/figgy_prod/6b%2Ffd%2F99%2F6bfd992bb8e742da8b7377869c34b3c2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-07-05,1924-07-07,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/armstrong-bazaar-stories/,The Bazaar and Other Stories,,"Armstrong, Martin",1924,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/f0%2F4d%2F03%2Ff04d03669cc04077855d41ff251737a6%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1924-07-05,1925-07-05,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",60.00,,1 year,365,1,,1924-07-01,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,;https://iiif.princeton.edu/loris/figgy_prod/7e%2F89%2Fd9%2F7e89d956d66e4e2893ae3ae67b1b5fa6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1924-07-06,1924-08-06,https://shakespeareandco.princeton.edu/members/harrison/,Mrs. Harrison,"Harrison, Mrs.",12.00,,1 month,31,1,,1924-07-05,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-07-07,1924-07-12,https://shakespeareandco.princeton.edu/members/marsland/,Harriet Marsland,"Marsland, Harriet",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/moore-lake-2/,The Lake,,"Moore, George",1905,,Lending Library Card,"Sylvia Beach, Harriet Marsland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/34833978-1579-4eb9-a196-73e566a04a2c/manifest,https://iiif.princeton.edu/loris/figgy_prod/0e%2F5f%2F7e%2F0e5f7e89c2f245379135db69fa99da3a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-07-07,1924-09-22,https://shakespeareandco.princeton.edu/members/marsland/,Harriet Marsland,"Marsland, Harriet",,,,,,,,,Returned,77,,,https://shakespeareandco.princeton.edu/books/nietzsche-nietzsche-wagner-correspondence/,The Nietzsche-Wagner Correspondence,,"Nietzsche, Friedrich;Wagner, Richard",1921,,Lending Library Card,"Sylvia Beach, Harriet Marsland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/34833978-1579-4eb9-a196-73e566a04a2c/manifest,https://iiif.princeton.edu/loris/figgy_prod/0e%2F5f%2F7e%2F0e5f7e89c2f245379135db69fa99da3a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1924-07-07,1925-01-07,https://shakespeareandco.princeton.edu/members/cody/;https://shakespeareandco.princeton.edu/members/cody-morrill/,Frances Cody;Morrill Cody,"Cody, Frances;Cody, Morrill",52.00,,6 months,184,1,,1924-07-07,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1924-07-07,1924-08-07,https://shakespeareandco.princeton.edu/members/clark-catherine/,Catherine Clark,"Clark, Catherine",12.00,,1 month,31,1,,1924-07-07,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1924-07-07,1924-08-07,https://shakespeareandco.princeton.edu/members/pougaud/,M. Pougaud,"Pougaud, M.",8.00,,1 month,31,1,,1924-07-07,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-07-07,1924-07-23,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/huddleston-poincare-biographical-portrait/,PoincarΓ©: A Biographical Portrait,,"Huddleston, Sisley",1914,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/f0%2F4d%2F03%2Ff04d03669cc04077855d41ff251737a6%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1924-07-08,1924-08-08,https://shakespeareandco.princeton.edu/members/buchanan-2/,Mr. Buchanan,"Buchanan, Mr.",12.00,20.00,1 month,31,1,,1924-07-08,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-07-08,1924-07-15,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/freud-delusion-dream-interpretation/,"Delusion and Dream: An Interpretation in the Light of Psychoanalysis of Gradiva, a Novel, by Wilhelm Jensen",,"Freud, Sigmund",1921,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/79%2F06%2Ffa%2F7906fa028b834bcf95f9e271b6e09af6%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-07-08,1924-08-01,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,24,,,https://shakespeareandco.princeton.edu/books/gilchrist-life-william-blake/,The Life of William Blake,,"Gilchrist, Alexander",1863,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/18%2Fa8%2F9f%2F18a89fea352842338a91e028989f25d2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1924-07-09,1924-08-09,https://shakespeareandco.princeton.edu/members/jones-sidney/,Sidney Jones,"Jones, Sidney",12.00,20.00,1 month,31,1,,1924-07-09,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1924-07-09,1924-07-09,https://shakespeareandco.princeton.edu/members/acheson-sam/,Sam Acheson,"Acheson, Sam",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1924-07-10,1924-08-10,https://shakespeareandco.princeton.edu/members/lenglet/,Miss Lenglet,"Lenglet, Miss",12.00,,1 month,31,1,,1924-07-08,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-07-11,1924-09-23,https://shakespeareandco.princeton.edu/members/proix/,Troise Proix,"Proix, Troise",,,,,,,,,Returned,74,,,https://shakespeareandco.princeton.edu/books/gregory-three-wonder-plays/,Three Wonder Plays,,"Gregory, Lady",1922,,Lending Library Card,"Sylvia Beach, Troise Proix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b7152822-4421-406d-9472-740daf9b84e0/manifest,https://iiif.princeton.edu/loris/figgy_prod/bf%2F69%2F17%2Fbf69172c77194c8aa1c3b3e2c751d558%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1924-07-11,1924-07-11,https://shakespeareandco.princeton.edu/members/bornand/,Mlle Bornand,"Bornand, Mlle",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1924-07-11,1924-08-11,https://shakespeareandco.princeton.edu/members/proix/,Troise Proix,"Proix, Troise",16.00,40.00,1 month,31,2,,1924-07-11,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Troise Proix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/b7152822-4421-406d-9472-740daf9b84e0/manifest,;https://iiif.princeton.edu/loris/figgy_prod/bf%2F69%2F17%2Fbf69172c77194c8aa1c3b3e2c751d558%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1924-07-11,1925-07-11,https://shakespeareandco.princeton.edu/members/cerf/,Colette Cerf,"Cerf, Colette",72.00,,1 year,365,1,,1924-03-20,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-07-11,1924-08-01,https://shakespeareandco.princeton.edu/members/proix/,Troise Proix,"Proix, Troise",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/baker-modern-american-plays/,Modern American Plays,,"Baker, George Pierce",1920,,Lending Library Card,"Sylvia Beach, Troise Proix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b7152822-4421-406d-9472-740daf9b84e0/manifest,https://iiif.princeton.edu/loris/figgy_prod/bf%2F69%2F17%2Fbf69172c77194c8aa1c3b3e2c751d558%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-07-11,1924-08-18,https://shakespeareandco.princeton.edu/members/pottecher-therese/,Therèse Pottecher,"Pottecher, Therèse",,,,,,,,,Returned,38,,,https://shakespeareandco.princeton.edu/books/russell-practice-theory-bolshevism/,The Practice and Theory of Bolshevism,,"Russell, Bertrand",1920,,Lending Library Card,"Sylvia Beach, Therèse Pottecher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/69b82696-3801-41ff-b1fd-c792179c5b98/manifest,https://iiif-cloud.princeton.edu/iiif/2/c0%2F05%2Fa6%2Fc005a6b8d76241a98262cea0f950c728%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1924-07-12,1924-08-12,https://shakespeareandco.princeton.edu/members/miller-2/,Stanley Miller,"Miller, Stanley",16.00,40.00,1 month,31,2,,1924-07-12,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-07-12,1924-08-02,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/merrick-lynchs-daughter/,Lynch's Daughter,,"Merrick, Leonard",1908,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/7e%2F89%2Fd9%2F7e89d956d66e4e2893ae3ae67b1b5fa6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-07-12,1924-07-19,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/bennett-riceyman-steps/,Riceyman Steps,,"Bennett, Arnold",1923,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/e0%2Fae%2F6b%2Fe0ae6bec54324349b412353650ee6dab%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-07-12,1924-09-22,https://shakespeareandco.princeton.edu/members/marsland/,Harriet Marsland,"Marsland, Harriet",,,,,,,,,Returned,72,,,https://shakespeareandco.princeton.edu/books/cannan-house-prophecy/,The House of Prophecy,,"Cannan, Gilbert",1924,,Lending Library Card,"Sylvia Beach, Harriet Marsland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/34833978-1579-4eb9-a196-73e566a04a2c/manifest,https://iiif.princeton.edu/loris/figgy_prod/0e%2F5f%2F7e%2F0e5f7e89c2f245379135db69fa99da3a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1924-07-12,1924-10-12,https://shakespeareandco.princeton.edu/members/grant-e-w/,E. W. Grant,"Grant, E. W.",30.00,20.00,3 months,92,1,,1924-07-12,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1924-07-12,1924-07-12,https://shakespeareandco.princeton.edu/members/johnson-merle/,Mrs. Merle Johnson,"Johnson, Mrs. Merle",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-07-15,1924-09-10,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,57,,,https://shakespeareandco.princeton.edu/books/russell-problem-china/,The Problem of China,,"Russell, Bertrand",1922,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/fa%2F62%2F32%2Ffa6232e0788b4f6b91b39355b374306a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-07-15,1924-07-18,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/coppard-black-dog-stories/,The Black Dog and Other Stories,,"Coppard, A. E.",1923,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/79%2F06%2Ffa%2F7906fa028b834bcf95f9e271b6e09af6%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-07-15,1924-07-28,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/conrad-shadow-line-confession/,The Shadow Line: A Confession,,"Conrad, Joseph",1917,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/76%2F29%2F11%2F762911abf8aa4e75890775e78befc083%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1924-07-15,1924-08-15,https://shakespeareandco.princeton.edu/members/sargent/,Mr. Sargent,"Sargent, Mr.",16.00,,1 month,31,2,,1924-07-15,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Mr Sargent Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/bd817648-39a7-4e94-8569-055719ecd661/manifest,
+Subscription,1924-07-15,1924-10-15,https://shakespeareandco.princeton.edu/members/bazalgette-leon/,LeΓ³n Bazalgette,"Bazalgette, LeΓ³n",30.00,,3 months,92,,,1924-07-15,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-07-15,1924-09-04,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,51,,,https://shakespeareandco.princeton.edu/books/thoreau-essays-writings-henry/,Essays and Other Writings of Henry Thoreau,,"Thoreau, Henry David",1895,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/fa%2F62%2F32%2Ffa6232e0788b4f6b91b39355b374306a%2Fintermediate_file/full/full/0/default.jpg
+Crossed out,1924-07-15,,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/woolf-jacobs-room/,Jacob's Room,,"Woolf, Virginia",1922,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/76%2F29%2F11%2F762911abf8aa4e75890775e78befc083%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-07-15,1924-09-04,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,51,,,https://shakespeareandco.princeton.edu/books/beerbohm-zuleika-dobson/,Zuleika Dobson,,"Beerbohm, Max",1911,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/fa%2F62%2F32%2Ffa6232e0788b4f6b91b39355b374306a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-07-15,1924-09-10,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,57,,,https://shakespeareandco.princeton.edu/books/melville-moby-dick-whale/,"Moby-Dick; Or, the Whale",,"Melville, Herman",1851,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/fa%2F62%2F32%2Ffa6232e0788b4f6b91b39355b374306a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-07-15,1924-07-19,https://shakespeareandco.princeton.edu/members/sargent/,Mr. Sargent,"Sargent, Mr.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/galsworthy-saints-progress/,Saint's Progress,,"Galsworthy, John",1919,,Lending Library Card,"Sylvia Beach, Mr Sargent Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd817648-39a7-4e94-8569-055719ecd661/manifest,https://iiif.princeton.edu/loris/figgy_prod/b5%2F60%2Fd6%2Fb560d6c0509d4ed29ec6cb18603a6cf7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-07-15,1924-07-29,https://shakespeareandco.princeton.edu/members/sargent/,Mr. Sargent,"Sargent, Mr.",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/johnston-mrs-warrens-daughter/,Mrs. Warren's Daughter,,"Johnston, Harry Hamilton",1920,,Lending Library Card,"Sylvia Beach, Mr Sargent Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd817648-39a7-4e94-8569-055719ecd661/manifest,https://iiif.princeton.edu/loris/figgy_prod/b5%2F60%2Fd6%2Fb560d6c0509d4ed29ec6cb18603a6cf7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-07-15,1924-07-24,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/joyce-portrait-artist-young/,A Portrait of the Artist as a Young Man,,"Joyce, James",1916,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/eb%2F08%2F9d%2Feb089ddbcf314523baaa9fbccb485801%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-07-16,1924-07-26,https://shakespeareandco.princeton.edu/members/stevens-george/,George Stevens,"Stevens, George",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/freud-delusion-dream-interpretation/,"Delusion and Dream: An Interpretation in the Light of Psychoanalysis of Gradiva, a Novel, by Wilhelm Jensen",,"Freud, Sigmund",1921,,Lending Library Card,"Sylvia Beach, George Stevens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2eadc899-f67d-4a18-83cf-a42712ac85c2/manifest,https://iiif.princeton.edu/loris/figgy_prod/53%2Fc6%2F2c%2F53c62c97666a4d9a809c0cb5db20ec6b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-07-16,1924-08-08,https://shakespeareandco.princeton.edu/members/stevens-george/,George Stevens,"Stevens, George",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/freud-totem-taboo/,Totem and Taboo,,"Freud, Sigmund",1919,,Lending Library Card,"Sylvia Beach, George Stevens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2eadc899-f67d-4a18-83cf-a42712ac85c2/manifest,https://iiif.princeton.edu/loris/figgy_prod/53%2Fc6%2F2c%2F53c62c97666a4d9a809c0cb5db20ec6b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1924-07-16,1924-08-16,https://shakespeareandco.princeton.edu/members/allen-ned/,Ned Allen,"Allen, Ned",12.00,20.00,1 month,31,1,,1924-07-16,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Crossed out,1924-07-16,,https://shakespeareandco.princeton.edu/members/stevens-george/,George Stevens,"Stevens, George",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/freud-dream-psychology/,Dream Psychology: Psychoanalysis for Beginners,,"Freud, Sigmund",1920,,Lending Library Card,"Sylvia Beach, George Stevens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2eadc899-f67d-4a18-83cf-a42712ac85c2/manifest,https://iiif.princeton.edu/loris/figgy_prod/53%2Fc6%2F2c%2F53c62c97666a4d9a809c0cb5db20ec6b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1924-07-17,1924-08-17,https://shakespeareandco.princeton.edu/members/avery/,Miss Avery,"Avery, Miss",12.00,,1 month,31,1,,1924-06-24,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-07-18,1924-10-10,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,84,,,https://shakespeareandco.princeton.edu/books/cather-antonia/,My Antonia,,"Cather, Willa",1918,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/a9%2F51%2F55%2Fa951550798fc4d8e99cdd187d8c34ff0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1924-07-18,1924-08-18,https://shakespeareandco.princeton.edu/members/miller-marie/,Marie Miller,"Miller, Marie",16.00,40.00,1 month,31,2,,1924-07-18,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-07-18,1924-07-21,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/sidgwick-london-mixture/,London Mixture,,"Sidgwick, Cecily",1924,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/79%2F06%2Ffa%2F7906fa028b834bcf95f9e271b6e09af6%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1924-07-18,1924-10-18,https://shakespeareandco.princeton.edu/members/glaninger/,Mrs. A. B. Glaninger,"Glaninger, Mrs. A. B.",30.00,20.00,3 months,92,1,,1924-07-18,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-07-18,1924-10-10,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,84,,,https://shakespeareandco.princeton.edu/books/james-princess-casamassima/,The Princess Casamassima,,"James, Henry",1886,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/a9%2F51%2F55%2Fa951550798fc4d8e99cdd187d8c34ff0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1924-07-18,1924-07-18,https://shakespeareandco.princeton.edu/members/lenglet/,Miss Lenglet,"Lenglet, Miss",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-07-18,1924-10-10,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,84,,,https://shakespeareandco.princeton.edu/books/moore-evelyn-inness/,Evelyn Innes,,"Moore, George",1898,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/a9%2F51%2F55%2Fa951550798fc4d8e99cdd187d8c34ff0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-07-19,1924-07-24,https://shakespeareandco.princeton.edu/members/sargent/,Mr. Sargent,"Sargent, Mr.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/mencken-prejudices-third-series/,Prejudices: Third Series,,"Mencken, H. L.",1922,,Lending Library Card,"Sylvia Beach, Mr Sargent Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd817648-39a7-4e94-8569-055719ecd661/manifest,https://iiif.princeton.edu/loris/figgy_prod/b5%2F60%2Fd6%2Fb560d6c0509d4ed29ec6cb18603a6cf7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-07-19,1924-08-07,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/snaith-van-roon/,The Van Roon,,"Snaith, J. C.",1922,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/e0%2Fae%2F6b%2Fe0ae6bec54324349b412353650ee6dab%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1924-07-19,1924-08-19,https://shakespeareandco.princeton.edu/members/chin/,Mr. Chin,"Chin, Mr.",12.00,,1 month,31,1,,1924-07-18,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1924-07-19,1924-10-19,https://shakespeareandco.princeton.edu/members/lomax/,Mr. Lomax,"Lomax, Mr.",20.00,,3 months,92,1,,1924-07-17,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1924-07-19,1924-07-19,https://shakespeareandco.princeton.edu/members/guilde-internationale/,Guilde Internationale / Miss Metford,Guilde Internationale,,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1924-07-19,1924-10-19,https://shakespeareandco.princeton.edu/members/mandy/,Mrs. Mandy,"Mandy, Mrs.",30.00,20.00,3 months,92,1,,1924-07-19,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-07-21,1924-07-26,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/huxley-little-mexican-stories/,Little Mexican and Other Stories,,"Huxley, Aldous",1924,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/79%2F06%2Ffa%2F7906fa028b834bcf95f9e271b6e09af6%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1924-07-22,1924-08-22,https://shakespeareandco.princeton.edu/members/slivinski/,Mr. Slivinski,"Slivinski, Mr.",12.00,,1 month,31,1,,1924-07-22,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-07-23,1924-07-26,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/marsh-georgian-poetry-1920/,Georgian Poetry 1920 β 22,,,1922,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/f0%2F4d%2F03%2Ff04d03669cc04077855d41ff251737a6%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1924-07-23,1924-07-23,https://shakespeareandco.princeton.edu/members/ketchum-l-b/,L. B. Ketchum,"Ketchum, L. B.",,,,,,,,120.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1924-07-23,1924-10-23,https://shakespeareandco.princeton.edu/members/jones-miss/,Miss Jones,"Jones, Miss",30.00,20.00,3 months,92,1,,1924-07-23,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-07-24,1924-08-25,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,32,,,https://shakespeareandco.princeton.edu/books/strachey-books-characters-french/,"Books and Characters, French and English",,"Strachey, Giles Lytton",1922,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/9f%2F8f%2Fad%2F9f8fad0b96e34650ae551e3c229b2cf7%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-07-24,1924-07-29,https://shakespeareandco.princeton.edu/members/sargent/,Mr. Sargent,"Sargent, Mr.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/mencken-prejudices-first-series/,Prejudices: First Series,,"Mencken, H. L.",1919,,Lending Library Card,"Sylvia Beach, Mr Sargent Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd817648-39a7-4e94-8569-055719ecd661/manifest,https://iiif.princeton.edu/loris/figgy_prod/b5%2F60%2Fd6%2Fb560d6c0509d4ed29ec6cb18603a6cf7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-07-24,,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/rosenfeld-musical-chronicle-1917/,Musical Chronicle 1917 β 1923,,"Rosenfeld, Paul",1923,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/eb%2F08%2F9d%2Feb089ddbcf314523baaa9fbccb485801%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1924-07-24,1924-08-24,https://shakespeareandco.princeton.edu/members/davis-mary/,Mary Davis / Mrs. N. D. Davis,"Davis, Mary",12.00,,1 month,31,1,,1924-07-24,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1924-07-24,1924-08-24,https://shakespeareandco.princeton.edu/members/beckman/,Mrs. R. W. Beckman,"Beckman, Mrs. R. W.",12.00,,1 month,31,1,,1924-07-23,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-07-24,1924-08-25,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,32,,,https://shakespeareandco.princeton.edu/books/cather-youth-bright-medusa/,Youth and the Bright Medusa,,"Cather, Willa",1920,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/9f%2F8f%2Fad%2F9f8fad0b96e34650ae551e3c229b2cf7%2Fintermediate_file/full/full/0/default.jpg
+Supplement,1924-07-25,1924-08-24,https://shakespeareandco.princeton.edu/members/slivinski/,Mr. Slivinski,"Slivinski, Mr.",4.00,,30 days,30,1,,1924-07-25,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-07-26,1924-07-29,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/bergman-gods-orchid/,God's Orchid,,"Bergman, Hjalmar",1924,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/79%2F06%2Ffa%2F7906fa028b834bcf95f9e271b6e09af6%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-07-26,1924-07-28,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/eliot-sacred-wood-essays/,The Sacred Wood: Essays on Poetry and Criticism,,"Eliot, T. S.",1920,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/76%2F29%2F11%2F762911abf8aa4e75890775e78befc083%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-07-26,1924-08-01,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/ford-marsden-case-romance/,The Marsden Case: A Romance,,"Ford, Ford Madox",1923,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/f0%2F4d%2F03%2Ff04d03669cc04077855d41ff251737a6%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-07-26,1924-07-30,https://shakespeareandco.princeton.edu/members/stevens-george/,George Stevens,"Stevens, George",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/leonardo-da-vinci/,Leonardo da Vinci,,,,Unidentified. By or about Leonardo da Vinci.,Lending Library Card,"Sylvia Beach, George Stevens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2eadc899-f67d-4a18-83cf-a42712ac85c2/manifest,https://iiif.princeton.edu/loris/figgy_prod/53%2Fc6%2F2c%2F53c62c97666a4d9a809c0cb5db20ec6b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-07-28,1924-08-30,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,33,,,https://shakespeareandco.princeton.edu/books/babbitt-criticism-america-function/,Criticism in America: Its Function and Status,,,1924,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/76%2F29%2F11%2F762911abf8aa4e75890775e78befc083%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1924-07-28,1924-08-28,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",16.00,,1 month,31,2,,1924-08-06,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,;https://iiif.princeton.edu/loris/figgy_prod/76%2F29%2F11%2F762911abf8aa4e75890775e78befc083%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1924-07-28,1924-07-28,https://shakespeareandco.princeton.edu/members/heath-elizabeth/,Elizabeth Heath,"Heath, Elizabeth",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1924-07-28,1924-08-28,https://shakespeareandco.princeton.edu/members/jennings-mrs/;https://shakespeareandco.princeton.edu/members/jennings-o/,Mrs. Jennings;O. Jennings,"Jennings, Mrs.;Jennings, O.",16.00,,1 month,31,2,,1924-07-28,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-07-28,1924-08-30,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,33,,,https://shakespeareandco.princeton.edu/books/pound-instigations-ezra-pound/,"Instigations of Ezra Pound: Together with an Essay on the Chinese Written Character, by Ernest Fenollosa",,"Pound, Ezra;Fenollosa, Ernest",1920,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/76%2F29%2F11%2F762911abf8aa4e75890775e78befc083%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1924-07-28,1924-07-28,https://shakespeareandco.princeton.edu/members/jennings-mrs/;https://shakespeareandco.princeton.edu/members/jennings-o/,Mrs. Jennings;O. Jennings,"Jennings, Mrs.;Jennings, O.",,,,,,,,40.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-07-29,1924-08-02,https://shakespeareandco.princeton.edu/members/sargent/,Mr. Sargent,"Sargent, Mr.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/conrad-western-eyes/,Under Western Eyes,,"Conrad, Joseph",1911,,Lending Library Card,"Sylvia Beach, Mr Sargent Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd817648-39a7-4e94-8569-055719ecd661/manifest,https://iiif.princeton.edu/loris/figgy_prod/b5%2F60%2Fd6%2Fb560d6c0509d4ed29ec6cb18603a6cf7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1924-07-29,1925-07-29,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",72.00,,1 year,365,1,AdL,1924-07-18,,,,,FRF,,,,,,,Lending Library Card;Logbook,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest;,https://iiif.princeton.edu/loris/figgy_prod/a9%2F51%2F55%2Fa951550798fc4d8e99cdd187d8c34ff0%2Fintermediate_file.jp2/full/full/0/default.jpg;
+Subscription,1924-07-29,1924-08-29,https://shakespeareandco.princeton.edu/members/macmillan-c-h/,C. H. Macmillan,"Macmillan, C. H.",12.00,20.00,1 month,31,1,,1924-07-29,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-07-29,1924-08-02,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/colum-castle-conquer/,Castle Conquer,,"Colum, Padraic",1923,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/79%2F06%2Ffa%2F7906fa028b834bcf95f9e271b6e09af6%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-07-29,1924-07-30,https://shakespeareandco.princeton.edu/members/sargent/,Mr. Sargent,"Sargent, Mr.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/mencken-american-language/,The American Language,,"Mencken, H. L.",1919,,Lending Library Card,"Sylvia Beach, Mr Sargent Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd817648-39a7-4e94-8569-055719ecd661/manifest,https://iiif.princeton.edu/loris/figgy_prod/b5%2F60%2Fd6%2Fb560d6c0509d4ed29ec6cb18603a6cf7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-07-30,1924-08-08,https://shakespeareandco.princeton.edu/members/stevens-george/,George Stevens,"Stevens, George",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/jung-psychological-types/,"Psychological Types: Or, The Psychology of Individuation",,"Jung, Carl Gustav",1923,,Lending Library Card,"Sylvia Beach, George Stevens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2eadc899-f67d-4a18-83cf-a42712ac85c2/manifest,https://iiif.princeton.edu/loris/figgy_prod/53%2Fc6%2F2c%2F53c62c97666a4d9a809c0cb5db20ec6b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-08-01,1924-08-04,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/fisher-home-maker/,The Home-Maker,,"Fisher, Dorothy Canfield",1924,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/18%2Fa8%2F9f%2F18a89fea352842338a91e028989f25d2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-08-01,1924-08-13,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/jonson-best-plays-ben/,The Best Plays of Ben Jonson,"Vol. 2, 1903 Bartholomew Fair; Cynthia's Revels, or the Fountain of Self-Love; Sejanus His Fall","Jonson, Ben",1903,From the [Mermaid Series](https://seriesofseries.owu.edu/mermaid-series/).,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/eb%2F08%2F9d%2Feb089ddbcf314523baaa9fbccb485801%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1924-08-01,1924-08-01,https://shakespeareandco.princeton.edu/members/brown-j-m/,J. M. Brown,"Brown, J. M.",,,,,,,,40.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-08-01,1924-09-23,https://shakespeareandco.princeton.edu/members/proix/,Troise Proix,"Proix, Troise",,,,,,,,,Returned,53,,,https://shakespeareandco.princeton.edu/books/barrie-kiss-cinderella/,A Kiss for Cinderella: A Comedy,,"Barrie, J. M.",1920,,Lending Library Card,"Sylvia Beach, Troise Proix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b7152822-4421-406d-9472-740daf9b84e0/manifest,https://iiif.princeton.edu/loris/figgy_prod/bf%2F69%2F17%2Fbf69172c77194c8aa1c3b3e2c751d558%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-08-02,1924-08-05,https://shakespeareandco.princeton.edu/members/sargent/,Mr. Sargent,"Sargent, Mr.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/dreiser-twelve-men/,Twelve Men,,"Dreiser, Theodore",1919,,Lending Library Card,"Sylvia Beach, Mr Sargent Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd817648-39a7-4e94-8569-055719ecd661/manifest,https://iiif.princeton.edu/loris/figgy_prod/b5%2F60%2Fd6%2Fb560d6c0509d4ed29ec6cb18603a6cf7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-08-02,1924-08-04,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/rosenfeld-musical-chronicle-1917/,Musical Chronicle 1917 β 1923,,"Rosenfeld, Paul",1923,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/79%2F06%2Ffa%2F7906fa028b834bcf95f9e271b6e09af6%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-08-02,1924-10-09,https://shakespeareandco.princeton.edu/members/rieder/,M. Rieder,"Rieder, M.",,,,,,,,,Returned,68,,,https://shakespeareandco.princeton.edu/books/russell-introduction-mathematical-philosophy/,Introduction to Mathematical Philosophy,,"Russell, Bertrand",1919,,Lending Library Card,"Sylvia Beach, Rieder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/559c8919-8881-40ad-b027-67dbf1b23611/manifest,https://iiif.princeton.edu/loris/figgy_prod/6b%2Ffd%2F99%2F6bfd992bb8e742da8b7377869c34b3c2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-08-02,1924-08-08,https://shakespeareandco.princeton.edu/members/sargent/,Mr. Sargent,"Sargent, Mr.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/douglas-south-wind/,South Wind,,"Douglas, Norman",1917,,Lending Library Card,"Sylvia Beach, Mr Sargent Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd817648-39a7-4e94-8569-055719ecd661/manifest,https://iiif.princeton.edu/loris/figgy_prod/b5%2F60%2Fd6%2Fb560d6c0509d4ed29ec6cb18603a6cf7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-08-02,1924-08-06,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/sitwell-triple-fugue/,Triple Fugue,,"Sitwell, Osbert",1924,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/79%2F06%2Ffa%2F7906fa028b834bcf95f9e271b6e09af6%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-08-02,1924-10-07,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,66,,,https://shakespeareandco.princeton.edu/books/mirrlees-counterplot/,The Counterplot,,"Mirrlees, Hope",1924,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/7e%2F89%2Fd9%2F7e89d956d66e4e2893ae3ae67b1b5fa6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1924-08-04,1924-09-04,https://shakespeareandco.princeton.edu/members/homer-warren/,Warren Homer,"Homer, Warren",12.00,20.00,1 month,31,1,,1924-08-04,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-08-04,1924-08-06,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/coyle-widows-house-novel/,The Widow's House: A Novel,,"Coyle, Kathleen",1924,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/18%2Fa8%2F9f%2F18a89fea352842338a91e028989f25d2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1924-08-05,1924-08-05,https://shakespeareandco.princeton.edu/members/clark-catherine/,Catherine Clark,"Clark, Catherine",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-08-05,1924-08-08,https://shakespeareandco.princeton.edu/members/sargent/,Mr. Sargent,"Sargent, Mr.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/dreiser-sister-carrie/,Sister Carrie,,"Dreiser, Theodore",1900,,Lending Library Card,"Sylvia Beach, Mr Sargent Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd817648-39a7-4e94-8569-055719ecd661/manifest,https://iiif.princeton.edu/loris/figgy_prod/b5%2F60%2Fd6%2Fb560d6c0509d4ed29ec6cb18603a6cf7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1924-08-06,1924-08-06,https://shakespeareandco.princeton.edu/members/buchanan-2/,Mr. Buchanan,"Buchanan, Mr.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-08-06,1924-08-13,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/hurst-lummox/,Lummox,,"Hurst, Fannie",1923,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/18%2Fa8%2F9f%2F18a89fea352842338a91e028989f25d2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-08-06,1924-08-26,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/lewis-tarr/,Tarr,,"Lewis, Wyndham",1918,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/76%2F29%2F11%2F762911abf8aa4e75890775e78befc083%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1924-08-06,1924-08-06,https://shakespeareandco.princeton.edu/members/kitamura/,Mr. Kitamura,"Kitamura, Mr.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1924-08-06,1924-09-06,https://shakespeareandco.princeton.edu/members/harrison/,Mrs. Harrison,"Harrison, Mrs.",12.00,,1 month,31,1,,1924-08-01,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1924-08-07,1924-09-07,https://shakespeareandco.princeton.edu/members/pougaud/,M. Pougaud,"Pougaud, M.",8.00,,1 month,31,1,,1924-07-31,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-08-07,1924-09-12,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,36,,,https://shakespeareandco.princeton.edu/books/lawrence-kangaroo/,Kangaroo,,"Lawrence, D. H.",1923,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/e0%2Fae%2F6b%2Fe0ae6bec54324349b412353650ee6dab%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-08-08,1924-09-02,https://shakespeareandco.princeton.edu/members/stevens-george/,George Stevens,"Stevens, George",,,,,,,,,Returned,25,,,https://shakespeareandco.princeton.edu/books/freud-beyond-pleasure-principle/,Beyond the Pleasure Principle,,"Freud, Sigmund",1922,,Lending Library Card,"Sylvia Beach, George Stevens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2eadc899-f67d-4a18-83cf-a42712ac85c2/manifest,https://iiif.princeton.edu/loris/figgy_prod/53%2Fc6%2F2c%2F53c62c97666a4d9a809c0cb5db20ec6b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-08-08,1924-08-13,https://shakespeareandco.princeton.edu/members/sargent/,Mr. Sargent,"Sargent, Mr.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/dreiser-color-great-city/,The Color of a Great City,,"Dreiser, Theodore",1923,,Lending Library Card,"Sylvia Beach, Mr Sargent Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd817648-39a7-4e94-8569-055719ecd661/manifest,https://iiif.princeton.edu/loris/figgy_prod/b5%2F60%2Fd6%2Fb560d6c0509d4ed29ec6cb18603a6cf7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-08-08,1924-08-13,https://shakespeareandco.princeton.edu/members/sargent/,Mr. Sargent,"Sargent, Mr.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/drummond-greatest-thing-world/,The Greatest Thing in the World,,"Drummond, Henry",1890,,Lending Library Card,"Sylvia Beach, Mr Sargent Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd817648-39a7-4e94-8569-055719ecd661/manifest,https://iiif.princeton.edu/loris/figgy_prod/b5%2F60%2Fd6%2Fb560d6c0509d4ed29ec6cb18603a6cf7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1924-08-08,1924-09-08,https://shakespeareandco.princeton.edu/members/lewes-augusta/,Augusta Lewes,"Lewes, Augusta",12.00,20.00,1 month,31,1,,1924-08-08,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-08-09,1924-09-04,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,26,,,https://shakespeareandco.princeton.edu/books/jonson-best-plays-ben/,The Best Plays of Ben Jonson,"Vol. 1, Vol. 3 Every Man in His Humour; Every Man Out of His Humour; The Poetaster. Volpone, or the Fox; EpicΕne, or the Silent Woman; The Alchemist","Jonson, Ben",1903,From the [Mermaid Series](https://seriesofseries.owu.edu/mermaid-series/).,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/eb%2F08%2F9d%2Feb089ddbcf314523baaa9fbccb485801%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1924-08-09,1924-08-09,https://shakespeareandco.princeton.edu/members/winkler/,Mr. Winkler,"Winkler, Mr.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1924-08-09,1924-08-09,https://shakespeareandco.princeton.edu/members/ash/,Joyce Ash,"Ash, Joyce",,,,,,,,40.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-08-09,1924-08-22,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/raleigh-authors-collection-literary/,"Some Authors: A Collection of Literary Essays, 1896 β 1916",,,1923,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/79%2F06%2Ffa%2F7906fa028b834bcf95f9e271b6e09af6%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1924-08-09,1924-09-09,https://shakespeareandco.princeton.edu/members/jones-sidney/,Sidney Jones,"Jones, Sidney",12.00,,1 month,31,1,,1924-08-04,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-08-09,1924-08-11,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/criterion/,The Criterion,"Vol. 2, no. 8, Jul 1924",,,"Renamed *The New Criterion* from January 1926 to January 1927, and *The Monthly Criterion* from May 1927 to March 1928.",Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/79%2F06%2Ffa%2F7906fa028b834bcf95f9e271b6e09af6%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1924-08-11,1924-09-11,https://shakespeareandco.princeton.edu/members/proix/,Troise Proix,"Proix, Troise",16.00,,1 month,31,2,,1924-09-23,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Troise Proix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/b7152822-4421-406d-9472-740daf9b84e0/manifest,;https://iiif.princeton.edu/loris/figgy_prod/bf%2F69%2F17%2Fbf69172c77194c8aa1c3b3e2c751d558%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-08-11,1924-08-30,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/wells-dream-novel/,The Dream: A Novel,,"Wells, H. G.",1924,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/76%2F29%2F11%2F762911abf8aa4e75890775e78befc083%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1924-08-12,1924-09-12,https://shakespeareandco.princeton.edu/members/morgan-e-p/,Mrs. E. P. Morgan,"Morgan, Mrs. E. P.",12.00,20.00,1 month,31,1,,1924-08-12,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1924-08-12,1924-09-12,https://shakespeareandco.princeton.edu/members/durocher-maurice/,Maurice Durocher,"Durocher, Maurice",12.00,20.00,1 month,31,1,,1924-08-12,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-08-13,1924-09-20,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,38,,,https://shakespeareandco.princeton.edu/books/ruck-subconscious-courtship-novel/,The Subconscious Courtship: A Novel,,"Ruck, Berta",1922,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/18%2Fa8%2F9f%2F18a89fea352842338a91e028989f25d2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-08-13,,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/woolf-jacobs-room/,Jacob's Room,,"Woolf, Virginia",1922,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/eb%2F08%2F9d%2Feb089ddbcf314523baaa9fbccb485801%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-08-13,1924-09-20,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,38,,,https://shakespeareandco.princeton.edu/books/armstrong-groper/,The Groper,,"Aikman, Henry G.",1919,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/18%2Fa8%2F9f%2F18a89fea352842338a91e028989f25d2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-08-13,1924-09-20,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,38,,,https://shakespeareandco.princeton.edu/books/sinclair-mary-olivier-life/,Mary Olivier: A Life,,"Sinclair, May",1919,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/18%2Fa8%2F9f%2F18a89fea352842338a91e028989f25d2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1924-08-14,1924-10-14,https://shakespeareandco.princeton.edu/members/sargent/,Mr. Sargent,"Sargent, Mr.",16.00,,2 months,61,2,,1924-09-16,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Mr Sargent Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/bd817648-39a7-4e94-8569-055719ecd661/manifest,;https://iiif.princeton.edu/loris/figgy_prod/b5%2F60%2Fd6%2Fb560d6c0509d4ed29ec6cb18603a6cf7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-08-14,1924-08-26,https://shakespeareandco.princeton.edu/members/sargent/,Mr. Sargent,"Sargent, Mr.",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/norris-bread/,Bread,,"Norris, Charles Gilman",1923,,Lending Library Card,"Sylvia Beach, Mr Sargent Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd817648-39a7-4e94-8569-055719ecd661/manifest,https://iiif.princeton.edu/loris/figgy_prod/b5%2F60%2Fd6%2Fb560d6c0509d4ed29ec6cb18603a6cf7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-08-14,1924-08-26,https://shakespeareandco.princeton.edu/members/sargent/,Mr. Sargent,"Sargent, Mr.",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/burnett-little-lord-fauntleroy/,Little Lord Fauntleroy,,"Burnett, Frances Hodgson",1886,,Lending Library Card,"Sylvia Beach, Mr Sargent Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd817648-39a7-4e94-8569-055719ecd661/manifest,https://iiif.princeton.edu/loris/figgy_prod/b5%2F60%2Fd6%2Fb560d6c0509d4ed29ec6cb18603a6cf7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1924-08-16,1924-08-16,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,,,20.50,FRF,https://shakespeareandco.princeton.edu/books/french-grammar/,French Grammar,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/eb%2F08%2F9d%2Feb089ddbcf314523baaa9fbccb485801%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1924-08-17,1924-11-17,https://shakespeareandco.princeton.edu/members/louriau-camille/,Camille Louriau,"Louriau, Camille",20.00,,3 months,92,1,,1924-08-02,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1924-08-18,1924-08-18,https://shakespeareandco.princeton.edu/members/miller-2/,Stanley Miller,"Miller, Stanley",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1924-08-19,1924-09-19,https://shakespeareandco.princeton.edu/members/donegan/,John Donegan,"Donegan, John",16.00,40.00,1 month,31,2,,1924-08-19,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1924-08-19,1924-08-19,https://shakespeareandco.princeton.edu/members/jessel-robert-3/,Robert Jessel,"Jessel, Robert",,,,,,,,40.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1924-08-19,1924-08-19,https://shakespeareandco.princeton.edu/members/allen-ned/,Ned Allen,"Allen, Ned",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1924-08-19,1924-08-19,https://shakespeareandco.princeton.edu/members/miller-marie/,Marie Miller,"Miller, Marie",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1924-08-20,1924-09-20,https://shakespeareandco.princeton.edu/members/adams-4/,Mrs. G. Adam,"Adam, Mrs. G.",16.00,40.00,1 month,31,2,,1924-08-20,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1924-08-21,1924-09-04,https://shakespeareandco.princeton.edu/members/merrell-elizabeth/,Elizabeth Merrell,"Merrell, Elizabeth",12.00,40.00,2 weeks,14,2,,1924-08-21,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-08-22,1924-08-25,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/garnett-lady-fox/,Lady into Fox,,"Garnett, David",1922,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/79%2F06%2Ffa%2F7906fa028b834bcf95f9e271b6e09af6%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1924-08-24,1924-09-24,https://shakespeareandco.princeton.edu/members/beckman/,Mrs. R. W. Beckman,"Beckman, Mrs. R. W.",12.00,,1 month,31,1,,1924-08-25,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-08-25,1924-08-27,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/gibbs-little-novels-nowadays/,Little Novels of Nowadays,,"Gibbs, Philip",1924,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/79%2F06%2Ffa%2F7906fa028b834bcf95f9e271b6e09af6%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-08-25,1924-09-30,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,36,,,https://shakespeareandco.princeton.edu/books/conrad-youth-narrative/,Youth: A Narrative,,"Conrad, Joseph",1902,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/9f%2F8f%2Fad%2F9f8fad0b96e34650ae551e3c229b2cf7%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-08-25,1924-09-30,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,36,,,https://shakespeareandco.princeton.edu/books/ellis-dance-life/,The Dance of Life,,"Ellis, Havelock",1923,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/9f%2F8f%2Fad%2F9f8fad0b96e34650ae551e3c229b2cf7%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1924-08-25,1924-08-25,https://shakespeareandco.princeton.edu/members/fitzpatrick-patrick/,Patrick Fitzpatrick,"Fitzpatrick, Patrick",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-08-26,1924-08-27,https://shakespeareandco.princeton.edu/members/sargent/,Mr. Sargent,"Sargent, Mr.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/mencken-prejudices-second-series/,Prejudices: Second Series,,"Mencken, H. L.",1920,,Lending Library Card,"Sylvia Beach, Mr Sargent Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd817648-39a7-4e94-8569-055719ecd661/manifest,https://iiif.princeton.edu/loris/figgy_prod/b5%2F60%2Fd6%2Fb560d6c0509d4ed29ec6cb18603a6cf7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-08-26,1924-08-30,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/somervile-experiences-irish-r/,Further Experiences of an Irish R. M.,,"Somerville, E. Ε.;Ross, Martin",1908,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/76%2F29%2F11%2F762911abf8aa4e75890775e78befc083%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-08-26,1924-09-03,https://shakespeareandco.princeton.edu/members/sargent/,Mr. Sargent,"Sargent, Mr.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/burnett-sara-crewe-happened/,"Sara Crewe: Or, What Happened at Miss Minchin's",,"Burnett, Frances Hodgson",1888,,Lending Library Card,"Sylvia Beach, Mr Sargent Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd817648-39a7-4e94-8569-055719ecd661/manifest,https://iiif.princeton.edu/loris/figgy_prod/b5%2F60%2Fd6%2Fb560d6c0509d4ed29ec6cb18603a6cf7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1924-08-27,1924-08-27,https://shakespeareandco.princeton.edu/members/macmillan-c-h/,C. H. Macmillan,"Macmillan, C. H.",,,,,,,,120.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-08-27,1924-09-02,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/swinnerton-young-felix/,Young Felix,,"Swinnerton, Frank",1923,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/f0%2F4d%2F03%2Ff04d03669cc04077855d41ff251737a6%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-08-27,1924-09-01,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/swinnerton-three-lovers/,The Three Lovers,,"Swinnerton, Frank",1922,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/79%2F06%2Ffa%2F7906fa028b834bcf95f9e271b6e09af6%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1924-08-27,1924-09-27,https://shakespeareandco.princeton.edu/members/kershaw-3/,Mrs. Kershaw,"Kershaw, Mrs.",12.00,,1 month,31,1,,1924-08-27,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1924-08-28,1924-11-28,https://shakespeareandco.princeton.edu/members/worthing/,Mrs. Worthing,"Worthing, Mrs.",30.00,,3 months,92,1,,1924-08-28,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1924-08-29,1924-08-29,https://shakespeareandco.princeton.edu/members/mitchell-john/,John Mitchell,"Mitchell, John",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1924-08-29,1924-09-29,https://shakespeareandco.princeton.edu/members/duncombe/,Ida Duncombe,"Duncombe, Ida",12.00,20.00,1 month,31,1,,1924-08-29,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1924-08-30,1924-09-30,https://shakespeareandco.princeton.edu/members/richardson-marian/,Marian Richardson,"Richardson, Marian",12.00,20.00,1 month,31,1,,1924-08-30,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Marian Richardson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/888422b0-42ae-41da-862f-14946bfb472a/manifest,;https://iiif.princeton.edu/loris/figgy_prod/ae%2F99%2Ff6%2Fae99f63cae2c4adba46efad916b26962%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-08-30,,https://shakespeareandco.princeton.edu/members/richardson-marian/,Marian Richardson,"Richardson, Marian",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/sandburg-chicago-poems/,Chicago Poems,,"Sandburg, Carl",1916,,Lending Library Card,"Sylvia Beach, Marian Richardson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/888422b0-42ae-41da-862f-14946bfb472a/manifest,https://iiif.princeton.edu/loris/figgy_prod/ae%2F99%2Ff6%2Fae99f63cae2c4adba46efad916b26962%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1924-08-30,1924-08-30,https://shakespeareandco.princeton.edu/members/renault/,Mlle Renault,"Renault, Mlle",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-08-30,1924-09-01,https://shakespeareandco.princeton.edu/members/sargent/,Mr. Sargent,"Sargent, Mr.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/dreiser-hey-rub-dub/,Hey Rub-a-Dub-Dub: A Book of the Mystery and Wonder and Terror of Life,,"Dreiser, Theodore",1920,,Lending Library Card,"Sylvia Beach, Mr Sargent Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd817648-39a7-4e94-8569-055719ecd661/manifest,https://iiif.princeton.edu/loris/figgy_prod/b5%2F60%2Fd6%2Fb560d6c0509d4ed29ec6cb18603a6cf7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-09-01,1924-09-12,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/seldes-seven-lively-arts/,The Seven Lively Arts,,"Seldes, Gilbert",1924,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/eb%2F08%2F9d%2Feb089ddbcf314523baaa9fbccb485801%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-09-01,1924-09-02,https://shakespeareandco.princeton.edu/members/sargent/,Mr. Sargent,"Sargent, Mr.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/mencken-book-prefaces/,A Book of Prefaces,,"Mencken, H. L.",1917,,Lending Library Card,"Sylvia Beach, Mr Sargent Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd817648-39a7-4e94-8569-055719ecd661/manifest,https://iiif.princeton.edu/loris/figgy_prod/b5%2F60%2Fd6%2Fb560d6c0509d4ed29ec6cb18603a6cf7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-09-01,1924-09-03,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/pirandello-three-plays/,Three Plays,,"Pirandello, Luigi",1922,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/79%2F06%2Ffa%2F7906fa028b834bcf95f9e271b6e09af6%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1924-09-02,1924-10-02,https://shakespeareandco.princeton.edu/members/kelley/,Mrs. Kelley,"Kelley, Mrs.",12.00,20.00,1 month,30,1,,1924-09-02,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-09-02,1924-09-18,https://shakespeareandco.princeton.edu/members/stevens-george/,George Stevens,"Stevens, George",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/james-sense-past/,The Sense of the Past,,"James, Henry",1917,,Lending Library Card,"Sylvia Beach, George Stevens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2eadc899-f67d-4a18-83cf-a42712ac85c2/manifest,https://iiif.princeton.edu/loris/figgy_prod/53%2Fc6%2F2c%2F53c62c97666a4d9a809c0cb5db20ec6b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-09-02,1924-09-10,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/shaw-saint-joan-chronicle/,Saint Joan: A Chronicle Play in Six Scenes and an Epilogue,,"Shaw, George Bernard",1924,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/f0%2F4d%2F03%2Ff04d03669cc04077855d41ff251737a6%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-09-02,1924-10-16,https://shakespeareandco.princeton.edu/members/stevens-george/,George Stevens,"Stevens, George",,,,,,,,,Returned,44,,,https://shakespeareandco.princeton.edu/books/james-golden-bowl/,The Golden Bowl,2 vols.,"James, Henry",1904,,Lending Library Card,"Sylvia Beach, George Stevens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2eadc899-f67d-4a18-83cf-a42712ac85c2/manifest,https://iiif.princeton.edu/loris/figgy_prod/53%2Fc6%2F2c%2F53c62c97666a4d9a809c0cb5db20ec6b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-09-03,1924-09-05,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/cannan-pink-roses/,Pink Roses,,"Cannan, Gilbert",1919,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/79%2F06%2Ffa%2F7906fa028b834bcf95f9e271b6e09af6%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-09-04,1924-09-16,https://shakespeareandco.princeton.edu/members/sargent/,Mr. Sargent,"Sargent, Mr.",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/wiggin-rebecca-sunnybrook-farm/,Rebecca of Sunnybrook Farm,,"Wiggin, Kate Douglas Smith",1903,,Lending Library Card,"Sylvia Beach, Mr Sargent Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd817648-39a7-4e94-8569-055719ecd661/manifest,https://iiif.princeton.edu/loris/figgy_prod/b5%2F60%2Fd6%2Fb560d6c0509d4ed29ec6cb18603a6cf7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1924-09-04,1925-09-04,https://shakespeareandco.princeton.edu/members/hibbard/,Miss Hibbard / Hubbard,"Hibbard, Miss",110.00,,1 year,365,2,,1924-08-29,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1924-09-04,1924-10-04,https://shakespeareandco.princeton.edu/members/corstavel/,Emma Corstavet,"Corstavet, Emma",12.00,20.00,1 month,30,1,,1924-09-04,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1924-09-04,1924-10-04,https://shakespeareandco.princeton.edu/members/allen-s-r/,S. R. Allen,"Allen, S. R.",16.00,40.00,1 month,30,2,,1924-09-04,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-09-04,1924-09-16,https://shakespeareandco.princeton.edu/members/sargent/,Mr. Sargent,"Sargent, Mr.",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/newell-footprints-spain/,Footprints in Spain,,"Newell, Herbert Andrews",1922,,Lending Library Card,"Sylvia Beach, Mr Sargent Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd817648-39a7-4e94-8569-055719ecd661/manifest,https://iiif.princeton.edu/loris/figgy_prod/b5%2F60%2Fd6%2Fb560d6c0509d4ed29ec6cb18603a6cf7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1924-09-05,1924-09-05,https://shakespeareandco.princeton.edu/members/merrell-elizabeth/,Elizabeth Merrell,"Merrell, Elizabeth",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1924-09-05,1924-10-05,https://shakespeareandco.princeton.edu/members/greene-w/,W. Greene,"Greene, W.",12.00,20.00,1 month,30,1,,1924-09-05,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1924-09-05,1924-10-05,https://shakespeareandco.princeton.edu/members/aveline-claude/,Claude Aveline,"Aveline, Claude",12.00,,1 month,30,1,,1924-09-05,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Supplement,1924-09-05,1925-02-28,https://shakespeareandco.princeton.edu/members/worthing/,Mrs. Worthing,"Worthing, Mrs.",22.00,,"5 months, 23 days",176,,,1924-09-05,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1924-09-05,1924-09-05,https://shakespeareandco.princeton.edu/members/walton/,Mr. Walton,"Walton, Mr.",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-09-05,1924-09-16,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/scott-narrow-house/,The Narrow House,,"Scott, Evelyn",1921,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/79%2F06%2Ffa%2F7906fa028b834bcf95f9e271b6e09af6%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1924-09-06,1924-10-06,https://shakespeareandco.princeton.edu/members/merrell-elizabeth/,Elizabeth Merrell,"Merrell, Elizabeth",12.00,20.00,1 month,30,1,,1924-09-06,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1924-09-06,1924-10-06,https://shakespeareandco.princeton.edu/members/knight-mary/,Mary Knight,"Knight, Mary",12.00,20.00,1 month,30,1,,1924-09-06,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1924-09-06,1924-10-06,https://shakespeareandco.princeton.edu/members/harrison/,Mrs. Harrison,"Harrison, Mrs.",12.00,,1 month,30,1,,1924-09-02,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-09-06,1924-09-26,https://shakespeareandco.princeton.edu/members/solano/,Solita Solano,"Solano, Solita",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/james-joyce/,James Joyce,,,,Unidentified. By or about Joyce.,Lending Library Card,"Sylvia Beach, Solita Solano Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ae91e41-ccc0-4df6-9150-63a893d8d633/manifest,https://iiif.princeton.edu/loris/figgy_prod/62%2Fcb%2Fdc%2F62cbdc49389748219091dcb128da4386%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1924-09-06,1924-10-06,https://shakespeareandco.princeton.edu/members/pulsford-2/,Mr. Pulsford,"Pulsford, Mr.",12.00,,1 month,30,1,,1924-09-05,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-09-06,1924-10-18,https://shakespeareandco.princeton.edu/members/solano/,Solita Solano,"Solano, Solita",,,,,,,,,Returned,42,,,https://shakespeareandco.princeton.edu/books/sullivan-atoms-electrons/,Atoms and Electrons,,"Sullivan, J. W. N.",1924,,Lending Library Card,"Sylvia Beach, Solita Solano Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ae91e41-ccc0-4df6-9150-63a893d8d633/manifest,https://iiif.princeton.edu/loris/figgy_prod/62%2Fcb%2Fdc%2F62cbdc49389748219091dcb128da4386%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-09-06,1924-09-26,https://shakespeareandco.princeton.edu/members/solano/,Solita Solano,"Solano, Solita",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/russell-icarus-future-science/,"Icarus: Or, the Future of Science",,"Russell, Bertrand",1924,,Lending Library Card,"Sylvia Beach, Solita Solano Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ae91e41-ccc0-4df6-9150-63a893d8d633/manifest,https://iiif.princeton.edu/loris/figgy_prod/62%2Fcb%2Fdc%2F62cbdc49389748219091dcb128da4386%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1924-09-07,1924-10-07,https://shakespeareandco.princeton.edu/members/pougaud/,M. Pougaud,"Pougaud, M.",8.00,,1 month,30,1,,1924-08-27,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1924-09-09,1924-10-09,https://shakespeareandco.princeton.edu/members/bax-de/,Mme de Bax,"de Bax, Mme",12.00,20.00,1 month,30,1,,1924-09-09,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1924-09-09,1924-10-09,https://shakespeareandco.princeton.edu/members/burch/,Mrs. A. T. Burch,"Burch, Mrs. A. T.",12.00,20.00,1 month,30,1,,1924-09-09,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1924-09-09,1924-10-09,https://shakespeareandco.princeton.edu/members/merrick/;https://shakespeareandco.princeton.edu/members/merrick-vaughn/,Mrs. Vaughn Merrick;Vaughn Merrick,"Merrick, Mrs. Vaughn;Merrick, Vaughn",16.00,40.00,1 month,30,2,,1924-09-09,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-09-10,1924-09-11,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/mcneile-third-round/,The Third Round,,"McNeile, H. C.",1924,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/f0%2F4d%2F03%2Ff04d03669cc04077855d41ff251737a6%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-09-10,1924-09-11,https://shakespeareandco.princeton.edu/members/stevens-george/,George Stevens,"Stevens, George",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/shaw-saint-joan-chronicle/,Saint Joan: A Chronicle Play in Six Scenes and an Epilogue,,"Shaw, George Bernard",1924,,Lending Library Card,"Sylvia Beach, George Stevens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2eadc899-f67d-4a18-83cf-a42712ac85c2/manifest,https://iiif.princeton.edu/loris/figgy_prod/53%2Fc6%2F2c%2F53c62c97666a4d9a809c0cb5db20ec6b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1924-09-10,1924-10-10,https://shakespeareandco.princeton.edu/members/frias/,Mlle Frias,"Frias, Mlle",16.00,40.00,1 month,30,2,,1924-09-10,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-09-11,1924-09-19,https://shakespeareandco.princeton.edu/members/stevens-george/,George Stevens,"Stevens, George",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/ellis-evolution-modesty-phenomena/,The Evolution of Modesty; The Phenomena of Sexual Periodicity; Auto-Erotism (Studies in the Psychology of Sex 1),,"Ellis, Havelock",1897,,Lending Library Card,"Sylvia Beach, George Stevens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2eadc899-f67d-4a18-83cf-a42712ac85c2/manifest,https://iiif.princeton.edu/loris/figgy_prod/53%2Fc6%2F2c%2F53c62c97666a4d9a809c0cb5db20ec6b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1924-09-11,1924-12-11,https://shakespeareandco.princeton.edu/members/proix/,Troise Proix,"Proix, Troise",30.00,,3 months,91,1,,1924-09-23,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Troise Proix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b7152822-4421-406d-9472-740daf9b84e0/manifest,https://iiif.princeton.edu/loris/figgy_prod/bf%2F69%2F17%2Fbf69172c77194c8aa1c3b3e2c751d558%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-09-11,1924-09-17,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/hecht-thousand-one-afternoons/,A Thousand and One Afternoons in Chicago,,"Hecht, Ben",1922,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/f0%2F4d%2F03%2Ff04d03669cc04077855d41ff251737a6%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1924-09-11,1924-12-11,https://shakespeareandco.princeton.edu/members/harrison-a/,A. Harrison,"Harrison, A.",40.00,,3 months,91,2,,1924-09-11,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1924-09-11,1924-09-11,https://shakespeareandco.princeton.edu/members/rive/,Mr. Rive,"Rive, Mr.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-09-12,1924-09-19,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/beresford-unity/,Unity,,"Beresford, J. D.",1924,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/e0%2Fae%2F6b%2Fe0ae6bec54324349b412353650ee6dab%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1924-09-13,1924-12-13,https://shakespeareandco.princeton.edu/members/unnamed-member-9/,[unnamed member],[unnamed member],40.00,40.00,3 months,91,2,,1924-09-13,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1924-09-15,1924-09-15,https://shakespeareandco.princeton.edu/members/merrick/;https://shakespeareandco.princeton.edu/members/merrick-vaughn/,Mrs. Vaughn Merrick;Vaughn Merrick,"Merrick, Mrs. Vaughn;Merrick, Vaughn",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1924-09-15,1924-10-15,https://shakespeareandco.princeton.edu/members/moore-miss/,Miss Moore,"Moore, Miss",12.00,20.00,1 month,30,1,,1924-09-15,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1924-09-15,1924-09-15,https://shakespeareandco.princeton.edu/members/donegan/,John Donegan,"Donegan, John",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-09-16,1924-10-12,https://shakespeareandco.princeton.edu/members/marsland/,Harriet Marsland,"Marsland, Harriet",,,,,,,,,Returned,26,,,https://shakespeareandco.princeton.edu/books/scott-escapade/,Escapade,,"Scott, Evelyn",1923,,Lending Library Card,"Sylvia Beach, Harriet Marsland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/34833978-1579-4eb9-a196-73e566a04a2c/manifest,https://iiif.princeton.edu/loris/figgy_prod/0e%2F5f%2F7e%2F0e5f7e89c2f245379135db69fa99da3a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-09-16,1924-09-23,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/walpole-captives-novel-four/,The Captives: A Novel in Four Parts,,"Walpole, Hugh",1920,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/79%2F06%2Ffa%2F7906fa028b834bcf95f9e271b6e09af6%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-09-16,1924-09-26,https://shakespeareandco.princeton.edu/members/solano/,Solita Solano,"Solano, Solita",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/steuart-romance-paris-streets/,The Romance of the Paris Streets,,"Steuart, Mary D.",1923,,Lending Library Card,"Sylvia Beach, Solita Solano Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ae91e41-ccc0-4df6-9150-63a893d8d633/manifest,https://iiif.princeton.edu/loris/figgy_prod/62%2Fcb%2Fdc%2F62cbdc49389748219091dcb128da4386%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1924-09-16,1924-09-16,https://shakespeareandco.princeton.edu/members/stevens-george/,George Stevens,"Stevens, George",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/conrad-nostromo-tale-seaboard/,Nostromo: A Tale of the Seaboard,,"Conrad, Joseph",1904,,Lending Library Card,"Sylvia Beach, George Stevens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2eadc899-f67d-4a18-83cf-a42712ac85c2/manifest,https://iiif.princeton.edu/loris/figgy_prod/53%2Fc6%2F2c%2F53c62c97666a4d9a809c0cb5db20ec6b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-09-17,1924-09-22,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/mackail-majestic-mystery/,The Majestic Mystery,,"Mackail, Denis",1924,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/f0%2F4d%2F03%2Ff04d03669cc04077855d41ff251737a6%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-09-18,1924-09-20,https://shakespeareandco.princeton.edu/members/sargent/,Mr. Sargent,"Sargent, Mr.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/norris-mcteague/,McTeague,,"Norris, Frank",1899,,Lending Library Card,"Sylvia Beach, Mr Sargent Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd817648-39a7-4e94-8569-055719ecd661/manifest,https://iiif.princeton.edu/loris/figgy_prod/b5%2F60%2Fd6%2Fb560d6c0509d4ed29ec6cb18603a6cf7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-09-18,1924-10-03,https://shakespeareandco.princeton.edu/members/sargent/,Mr. Sargent,"Sargent, Mr.",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/norris-pit-story-chicago/,The Pit: A Story of Chicago,,"Norris, Frank",1903,,Lending Library Card,"Sylvia Beach, Mr Sargent Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd817648-39a7-4e94-8569-055719ecd661/manifest,https://iiif.princeton.edu/loris/figgy_prod/b5%2F60%2Fd6%2Fb560d6c0509d4ed29ec6cb18603a6cf7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-09-19,1924-10-07,https://shakespeareandco.princeton.edu/members/sargent/,Mr. Sargent,"Sargent, Mr.",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/gissing-new-grub-street/,New Grub Street,,"Gissing, George Robert",1891,,Lending Library Card,"Sylvia Beach, Mr Sargent Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd817648-39a7-4e94-8569-055719ecd661/manifest,https://iiif.princeton.edu/loris/figgy_prod/b5%2F60%2Fd6%2Fb560d6c0509d4ed29ec6cb18603a6cf7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1924-09-19,1924-12-19,https://shakespeareandco.princeton.edu/members/wight/,Mr. Wight,"Wight, Mr.",30.00,,3 months,91,1,,1924-09-19,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-09-19,1924-09-29,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/bennett-mr-prohack/,Mr. Prohack,,"Bennett, Arnold",1922,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/e0%2Fae%2F6b%2Fe0ae6bec54324349b412353650ee6dab%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-09-20,1924-09-23,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/marmelade/,Marmelade,,,,Unidentified.,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/18%2Fa8%2F9f%2F18a89fea352842338a91e028989f25d2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-09-20,1924-09-27,https://shakespeareandco.princeton.edu/members/rhys/,Mr. Rhys,"Rhys, Mr.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/butler-way-flesh/,The Way of All Flesh,,"Butler, Samuel",1903,,Lending Library Card,"Sylvia Beach, Rhys Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0fcf5eb6-f872-481c-a304-e45a0c9fe472/manifest,https://iiif.princeton.edu/loris/figgy_prod/d9%2F94%2Fe4%2Fd994e47f098b4633a08d651483db361c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-09-22,1924-10-12,https://shakespeareandco.princeton.edu/members/marsland/,Harriet Marsland,"Marsland, Harriet",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/barnes-book/,A Book,,"Barnes, Djuna",1923,,Lending Library Card,"Sylvia Beach, Harriet Marsland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/34833978-1579-4eb9-a196-73e566a04a2c/manifest,https://iiif.princeton.edu/loris/figgy_prod/0e%2F5f%2F7e%2F0e5f7e89c2f245379135db69fa99da3a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1924-09-22,1924-09-22,https://shakespeareandco.princeton.edu/members/coe/,Mr. Coe,"Coe, Mr.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1924-09-22,1924-10-22,https://shakespeareandco.princeton.edu/members/marsland/,Harriet Marsland,"Marsland, Harriet",16.00,,1 month,30,2,,1924-09-22,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Harriet Marsland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/34833978-1579-4eb9-a196-73e566a04a2c/manifest,;https://iiif.princeton.edu/loris/figgy_prod/0e%2F5f%2F7e%2F0e5f7e89c2f245379135db69fa99da3a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-09-22,1924-09-26,https://shakespeareandco.princeton.edu/members/marsland/,Harriet Marsland,"Marsland, Harriet",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/harris-undreamd-shores/,Undream'd of Shores,,"Harris, Frank",1924,,Lending Library Card,"Sylvia Beach, Harriet Marsland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/34833978-1579-4eb9-a196-73e566a04a2c/manifest,https://iiif.princeton.edu/loris/figgy_prod/0e%2F5f%2F7e%2F0e5f7e89c2f245379135db69fa99da3a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-09-22,1924-09-23,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/dell-ever-child/,Were You Ever a Child?,,"Dell, Floyd",1919,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/f0%2F4d%2F03%2Ff04d03669cc04077855d41ff251737a6%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-09-23,1924-09-24,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/mckenna-tomorrow-tomorrow-novel/,Tomorrow and Tomorrow: A Novel,,"McKenna, Stephen",1924,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/79%2F06%2Ffa%2F7906fa028b834bcf95f9e271b6e09af6%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-09-23,,https://shakespeareandco.princeton.edu/members/proix/,Troise Proix,"Proix, Troise",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/shaw-misalliance/,Misalliance,,"Shaw, George Bernard",1919,,Lending Library Card,"Sylvia Beach, Troise Proix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b7152822-4421-406d-9472-740daf9b84e0/manifest,https://iiif.princeton.edu/loris/figgy_prod/bf%2F69%2F17%2Fbf69172c77194c8aa1c3b3e2c751d558%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1924-09-23,1924-09-23,https://shakespeareandco.princeton.edu/members/proix/,Troise Proix,"Proix, Troise",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-09-23,1924-09-27,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/mencken-book-burlesques/,A Book of Burlesques,,"Mencken, H. L.",1923,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/f0%2F4d%2F03%2Ff04d03669cc04077855d41ff251737a6%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1924-09-24,1924-10-24,https://shakespeareandco.princeton.edu/members/flitch/,J. E. L. Flitch,"Flitch, J. E. L.",12.00,20.00,1 month,30,1,,1924-09-24,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-09-24,1924-10-11,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/goodman-taker/,The Taker,,"Goodman, Daniel Carson",1919,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/18%2Fa8%2F9f%2F18a89fea352842338a91e028989f25d2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-09-24,1924-09-30,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/ford-some-do-not/,Some Do Not... (Parade's End 1),,"Ford, Ford Madox",1924,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/18%2Fa8%2F9f%2F18a89fea352842338a91e028989f25d2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-09-24,1924-10-23,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,29,,,https://shakespeareandco.princeton.edu/books/van-vechten-blind-bow-boy/,The Blind Bow-Boy,,"Van Vechten, Carl",1923,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/18%2Fa8%2F9f%2F18a89fea352842338a91e028989f25d2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-09-24,1924-09-27,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/trollope-claverings/,The Claverings,,"Trollope, Anthony",1866,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/79%2F06%2Ffa%2F7906fa028b834bcf95f9e271b6e09af6%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-09-26,1924-10-18,https://shakespeareandco.princeton.edu/members/solano/,Solita Solano,"Solano, Solita",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/haldane-daedalus-science-future/,"Daedalus; Or, Science and the Future",,"Haldane, J. B. S.",1924,,Lending Library Card,"Sylvia Beach, Solita Solano Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ae91e41-ccc0-4df6-9150-63a893d8d633/manifest,https://iiif.princeton.edu/loris/figgy_prod/62%2Fcb%2Fdc%2F62cbdc49389748219091dcb128da4386%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-09-26,1924-10-18,https://shakespeareandco.princeton.edu/members/solano/,Solita Solano,"Solano, Solita",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/rimbaud/,Rimbaud,,,,Unidentified. By or about Arthur Rimbaud.,Lending Library Card,"Sylvia Beach, Solita Solano Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ae91e41-ccc0-4df6-9150-63a893d8d633/manifest,https://iiif.princeton.edu/loris/figgy_prod/62%2Fcb%2Fdc%2F62cbdc49389748219091dcb128da4386%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-09-26,1924-10-18,https://shakespeareandco.princeton.edu/members/solano/,Solita Solano,"Solano, Solita",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/joyce-dubliners/,Dubliners,,"Joyce, James",1914,,Lending Library Card,"Sylvia Beach, Solita Solano Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ae91e41-ccc0-4df6-9150-63a893d8d633/manifest,https://iiif.princeton.edu/loris/figgy_prod/62%2Fcb%2Fdc%2F62cbdc49389748219091dcb128da4386%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1924-09-26,1924-09-26,https://shakespeareandco.princeton.edu/members/duncombe/,Ida Duncombe,"Duncombe, Ida",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1924-09-26,1924-12-03,https://shakespeareandco.princeton.edu/members/walton/,Mr. Walton,"Walton, Mr.",36.00,,"2 months, 7 days",68,2,,1924-09-05,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-09-27,1924-10-04,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/hecht-gargoyles/,Gargoyles,,"Hecht, Ben",1922,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/f0%2F4d%2F03%2Ff04d03669cc04077855d41ff251737a6%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-09-27,1924-10-03,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/trollope-bertrams/,The Bertrams,,"Trollope, Anthony",1859,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/79%2F06%2Ffa%2F7906fa028b834bcf95f9e271b6e09af6%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1924-09-27,1924-09-27,https://shakespeareandco.princeton.edu/members/rive/,Mr. Rive,"Rive, Mr.",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1924-09-27,1924-10-27,https://shakespeareandco.princeton.edu/members/bond-h-m/,H. M. Bond,"Bond, H. M.",12.00,20.00,1 month,30,1,,1924-09-27,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1924-09-27,1924-10-27,https://shakespeareandco.princeton.edu/members/kershaw-3/,Mrs. Kershaw,"Kershaw, Mrs.",12.00,,1 month,30,1,,1924-09-27,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1924-09-27,1924-10-27,https://shakespeareandco.princeton.edu/members/beckman/,Mrs. R. W. Beckman,"Beckman, Mrs. R. W.",12.00,,1 month,30,1,,1924-09-27,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-09-27,1924-09-29,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/squire-london-mercury/,The London Mercury,"Vol. 10, no. 59, Sep 1924",,,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/79%2F06%2Ffa%2F7906fa028b834bcf95f9e271b6e09af6%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1924-09-28,1924-12-28,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",20.00,,3 months,91,1,,1924-09-28,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,;https://iiif-cloud.princeton.edu/iiif/2/e0%2Fae%2F6b%2Fe0ae6bec54324349b412353650ee6dab%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-09-29,1924-10-10,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/gibbs-middle-road/,The Middle of the Road,,"Gibbs, Philip",1922,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/e0%2Fae%2F6b%2Fe0ae6bec54324349b412353650ee6dab%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1924-09-30,1924-09-30,https://shakespeareandco.princeton.edu/members/greene-w/,W. Greene,"Greene, W.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1924-09-30,1925-01-01,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",40.00,,"3 months, 2 days",93,2,,1924-09-30,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,;https://iiif-cloud.princeton.edu/iiif/2/9f%2F8f%2Fad%2F9f8fad0b96e34650ae551e3c229b2cf7%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-09-30,1924-11-24,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,55,,,https://shakespeareandco.princeton.edu/books/essays-e-20/,Essays in E. 20 Century Literature,,,,Unidentified.,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/9f%2F8f%2Fad%2F9f8fad0b96e34650ae551e3c229b2cf7%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-09-30,1924-11-24,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,55,,,https://shakespeareandco.princeton.edu/books/george-confession-ursula-trent-2/,The Confession of Ursula Trent,,"George, Walter Lionel",1921,Published in the United States as *Ursula Trent.*,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/9f%2F8f%2Fad%2F9f8fad0b96e34650ae551e3c229b2cf7%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-10-01,1924-10-03,https://shakespeareandco.princeton.edu/members/marsland/,Harriet Marsland,"Marsland, Harriet",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/lewis-free-air/,Free Air,,"Lewis, Sinclair",1919,,Lending Library Card,"Sylvia Beach, Harriet Marsland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/34833978-1579-4eb9-a196-73e566a04a2c/manifest,https://iiif.princeton.edu/loris/figgy_prod/0e%2F5f%2F7e%2F0e5f7e89c2f245379135db69fa99da3a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1924-10-01,1924-11-01,https://shakespeareandco.princeton.edu/members/thackeray/,Mrs. Thackeray,"Thackeray, Mrs.",16.00,,1 month,31,2,,1924-09-24,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-10-01,1924-10-04,https://shakespeareandco.princeton.edu/members/marsland/,Harriet Marsland,"Marsland, Harriet",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/dell-janet-march-novel/,Janet March: A Novel,,"Dell, Floyd",1923,,Lending Library Card,"Sylvia Beach, Harriet Marsland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/34833978-1579-4eb9-a196-73e566a04a2c/manifest,https://iiif.princeton.edu/loris/figgy_prod/0e%2F5f%2F7e%2F0e5f7e89c2f245379135db69fa99da3a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1924-10-01,1925-01-01,https://shakespeareandco.princeton.edu/members/stevens-george/,George Stevens,"Stevens, George",30.00,,3 months,92,1,,1924-10-16,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, George Stevens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/2eadc899-f67d-4a18-83cf-a42712ac85c2/manifest,;https://iiif.princeton.edu/loris/figgy_prod/53%2Fc6%2F2c%2F53c62c97666a4d9a809c0cb5db20ec6b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-10-03,1924-11-20,https://shakespeareandco.princeton.edu/members/marsland/,Harriet Marsland,"Marsland, Harriet",,,,,,,,,Returned,48,,,https://shakespeareandco.princeton.edu/books/croce-aesthetic-science-expression/,Aesthetic: As Science of Expression and General Linguistic,,"Croce, Benedetto",1909,,Lending Library Card,"Sylvia Beach, Harriet Marsland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/34833978-1579-4eb9-a196-73e566a04a2c/manifest,https://iiif.princeton.edu/loris/figgy_prod/0e%2F5f%2F7e%2F0e5f7e89c2f245379135db69fa99da3a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-10-03,1924-10-06,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/machen-london-adventure-essay/,The London Adventure: An Essay in Wandering,,"Machen, Arthur",1924,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/79%2F06%2Ffa%2F7906fa028b834bcf95f9e271b6e09af6%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-10-04,1924-10-07,https://shakespeareandco.princeton.edu/members/vechten/,Ann van Vechten,"Vechten, Ann van",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/dreiser-sister-carrie/,Sister Carrie,,"Dreiser, Theodore",1900,,Lending Library Card,"Sylvia Beach, Mrs. Ann van Vechten Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ddb18782-925b-4085-be72-2084e6ce1ec4/manifest,https://iiif.princeton.edu/loris/figgy_prod/41%2Fc7%2F1d%2F41c71dbc14fd40a1ad466335cad981fb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1924-10-04,1924-10-04,https://shakespeareandco.princeton.edu/members/casrouge/,Mme Casrouge,"Casrouge, Mme",,,,,,,,10.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1924-10-04,1924-10-04,https://shakespeareandco.princeton.edu/members/allen-s-r/,S. R. Allen,"Allen, S. R.",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-10-04,1924-10-06,https://shakespeareandco.princeton.edu/members/marsland/,Harriet Marsland,"Marsland, Harriet",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/powys-black-bryony/,Black Bryony,,"Powys, Theodore Francis",1923,,Lending Library Card,"Sylvia Beach, Harriet Marsland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/34833978-1579-4eb9-a196-73e566a04a2c/manifest,https://iiif.princeton.edu/loris/figgy_prod/0e%2F5f%2F7e%2F0e5f7e89c2f245379135db69fa99da3a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-10-04,1924-10-06,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/dell-moon-calf/,Moon-Calf,,"Dell, Floyd",1920,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/f0%2F4d%2F03%2Ff04d03669cc04077855d41ff251737a6%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1924-10-04,1924-11-04,https://shakespeareandco.princeton.edu/members/vechten/,Ann van Vechten,"Vechten, Ann van",12.00,20.00,1 month,31,1,,1924-10-04,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Mrs. Ann van Vechten Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/ddb18782-925b-4085-be72-2084e6ce1ec4/manifest,;https://iiif.princeton.edu/loris/figgy_prod/41%2Fc7%2F1d%2F41c71dbc14fd40a1ad466335cad981fb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1924-10-04,1924-11-04,https://shakespeareandco.princeton.edu/members/corstavel/,Emma Corstavet,"Corstavet, Emma",12.00,,1 month,31,1,,1924-10-04,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1924-10-04,1924-11-04,https://shakespeareandco.princeton.edu/members/robinson-m/,M. Robinson,"Robinson, M.",12.00,,1 month,31,1,,1924-10-02,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-10-06,1924-10-25,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/dell-briary-bush/,The Briary-Bush,,"Dell, Floyd",1921,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/f0%2F4d%2F03%2Ff04d03669cc04077855d41ff251737a6%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1924-10-06,1924-11-06,https://shakespeareandco.princeton.edu/members/homer-warren/,Warren Homer,"Homer, Warren",12.00,,1 month,31,1,,1924-10-04,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-10-06,1924-10-11,https://shakespeareandco.princeton.edu/members/marsland/,Harriet Marsland,"Marsland, Harriet",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/mckenna-tomorrow-tomorrow-novel/,Tomorrow and Tomorrow: A Novel,,"McKenna, Stephen",1924,,Lending Library Card,"Sylvia Beach, Harriet Marsland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/34833978-1579-4eb9-a196-73e566a04a2c/manifest,https://iiif.princeton.edu/loris/figgy_prod/0e%2F5f%2F7e%2F0e5f7e89c2f245379135db69fa99da3a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1924-10-06,1924-11-06,https://shakespeareandco.princeton.edu/members/knight-mary/,Mary Knight,"Knight, Mary",16.00,,1 month,31,,,1924-09-23,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-10-06,1924-10-08,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/norris-pit-story-chicago/,The Pit: A Story of Chicago,,"Norris, Frank",1903,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/79%2F06%2Ffa%2F7906fa028b834bcf95f9e271b6e09af6%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-10-07,1924-11-18,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,42,,,https://shakespeareandco.princeton.edu/books/coleridge-lectures-notes-shakespeare/,Lectures and Essays on Shakespeare,,"Coleridge, Samuel Taylor",,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/7e%2F89%2Fd9%2F7e89d956d66e4e2893ae3ae67b1b5fa6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1924-10-07,1924-11-07,https://shakespeareandco.princeton.edu/members/pougaud/,M. Pougaud,"Pougaud, M.",8.00,,1 month,31,1,,1924-10-03,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-10-07,1924-10-11,https://shakespeareandco.princeton.edu/members/vechten/,Ann van Vechten,"Vechten, Ann van",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/jackson-eighteen-nineties/,The Eighteen Nineties,,"Jackson, George Holbrook",1913,,Lending Library Card,"Sylvia Beach, Mrs. Ann van Vechten Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ddb18782-925b-4085-be72-2084e6ce1ec4/manifest,https://iiif.princeton.edu/loris/figgy_prod/41%2Fc7%2F1d%2F41c71dbc14fd40a1ad466335cad981fb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1924-10-08,1924-11-08,https://shakespeareandco.princeton.edu/members/harrison/,Mrs. Harrison,"Harrison, Mrs.",12.00,,1 month,31,1,,1924-10-08,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Separate Payment,1924-10-08,1924-10-08,https://shakespeareandco.princeton.edu/members/fenner-mary/,Mary Fenner,"Fenner, Mary",,40.00,,,2,,1924-10-08,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-10-08,1924-10-13,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/mann-buddenbrooks/,Buddenbrooks,2 vols.,"Mann, Thomas",1924,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/79%2F06%2Ffa%2F7906fa028b834bcf95f9e271b6e09af6%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1924-10-09,1925-01-09,https://shakespeareandco.princeton.edu/members/beveridge-3/,Miss Beveridge,"Beveridge, Miss",40.00,,3 months,92,2,,1924-10-08,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-10-09,1924-10-25,https://shakespeareandco.princeton.edu/members/rieder/,M. Rieder,"Rieder, M.",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/poe-works-edgar-allan/,The Works of Edgar Allan Poe,,"Poe, Edgar Allan",,"Volumes from at least two sets of Poeβs works circulated in the lending library: the 10-volume *The Complete Works of Edgar Allan Poe* (Putnam, 1902) and the 8-volume *The Works of Edgar Allan Poe* (Lippincott, 1906). On April 4, 1924, Mlle Valerio borrowed volume 10 (*Miscellany*) from *The Complete Works,* and on January 21, 1925, volumes 1 and 3 from an unspecified set. M. Rieder borrowed volumes 7 and 8 from an unspecified set. On May 1, 1926, Nathalie Sarraute borrowed *Poeβs Tales.* Anatole Rivoallan borrowed volume 5 (*Poems*) from the *The Works.* Emilienne Gosse borrowed volume 1 from an unspecific set. Natalie Walker borrowed volume 1 (*Tales*) from the *The Works.* Eric Culley borrowed an unspecified volume from an unspecified set. Jeanine (Delpech) Teissier borrowed volumes 2 and 4 (both *Tales*) from *The Works.* On October 18, 1938, Sarraute purchased *Poeβs Tales.* Bianca (Bienenfeld) Lamblin borrowed *Poeβs Poems.*",Lending Library Card,"Sylvia Beach, Rieder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/559c8919-8881-40ad-b027-67dbf1b23611/manifest,https://iiif.princeton.edu/loris/figgy_prod/6b%2Ffd%2F99%2F6bfd992bb8e742da8b7377869c34b3c2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-10-10,1924-11-25,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,46,,,https://shakespeareandco.princeton.edu/books/ouspensky-tertium-organum-third/,Tertium Organum: The Third Canon of Thought: A Key to the Enigmas of the World,,"Ouspensky, Pyotr Demianovich",1914,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/e0%2Fae%2F6b%2Fe0ae6bec54324349b412353650ee6dab%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-10-10,,https://shakespeareandco.princeton.edu/members/proix/,Troise Proix,"Proix, Troise",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/henry-strictly-business/,Strictly Business: More Stories of the Four Million,,"Henry, O.",1910,,Lending Library Card,"Sylvia Beach, Troise Proix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b7152822-4421-406d-9472-740daf9b84e0/manifest,https://iiif.princeton.edu/loris/figgy_prod/bf%2F69%2F17%2Fbf69172c77194c8aa1c3b3e2c751d558%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1924-10-11,1924-10-11,https://shakespeareandco.princeton.edu/members/merrell-elizabeth/,Elizabeth Merrell,"Merrell, Elizabeth",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1924-10-11,1924-10-18,https://shakespeareandco.princeton.edu/members/merrell-elizabeth/,Elizabeth Merrell,"Merrell, Elizabeth",3.00,,1 week,7,1,,1924-10-11,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-10-11,1924-10-13,https://shakespeareandco.princeton.edu/members/marsland/,Harriet Marsland,"Marsland, Harriet",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/woolf-voyage/,The Voyage Out,,"Woolf, Virginia",1915,,Lending Library Card,"Sylvia Beach, Harriet Marsland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/34833978-1579-4eb9-a196-73e566a04a2c/manifest,https://iiif.princeton.edu/loris/figgy_prod/0e%2F5f%2F7e%2F0e5f7e89c2f245379135db69fa99da3a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-10-11,1924-10-13,https://shakespeareandco.princeton.edu/members/marsland/,Harriet Marsland,"Marsland, Harriet",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/hardy-famous-tragedy-queen/,The Famous Tragedy of the Queen of Cornwall at Tintagel in Lyonnesse,,"Hardy, Thomas",1923,,Lending Library Card,"Sylvia Beach, Harriet Marsland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/34833978-1579-4eb9-a196-73e566a04a2c/manifest,https://iiif.princeton.edu/loris/figgy_prod/0e%2F5f%2F7e%2F0e5f7e89c2f245379135db69fa99da3a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-10-11,1924-10-14,https://shakespeareandco.princeton.edu/members/vechten/,Ann van Vechten,"Vechten, Ann van",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/harris-undreamd-shores/,Undream'd of Shores,,"Harris, Frank",1924,,Lending Library Card,"Sylvia Beach, Mrs. Ann van Vechten Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ddb18782-925b-4085-be72-2084e6ce1ec4/manifest,https://iiif.princeton.edu/loris/figgy_prod/41%2Fc7%2F1d%2F41c71dbc14fd40a1ad466335cad981fb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1924-10-11,1925-10-11,https://shakespeareandco.princeton.edu/members/harrison-jane/,Jane Ellen Harrison,"Harrison, Jane Ellen",40.00,,1 year,365,2,AdL,1924-10-11,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1924-10-11,1924-11-11,https://shakespeareandco.princeton.edu/members/bastin/,Mme Bastin,"Bastin, Mme",12.00,20.00,1 month,31,1,,1924-10-11,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1924-10-13,1925-01-13,https://shakespeareandco.princeton.edu/members/chromis/,Fred Chromis,"Chromis, Fred",20.00,20.00,3 months,92,1,,1924-10-13,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-10-13,1924-10-17,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/turgenev-plays-ivan/,The Plays of Ivan S. Turgenev,,"Turgenev, Ivan",1924,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/a8%2F0c%2F50%2Fa80c50c8d98c4129a46159108a655456%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-10-13,1924-10-15,https://shakespeareandco.princeton.edu/members/marsland/,Harriet Marsland,"Marsland, Harriet",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/moore-ave-hail-farewell/,Ave (Hail and Farewell!),,"Moore, George",1911,,Lending Library Card,"Sylvia Beach, Harriet Marsland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/34833978-1579-4eb9-a196-73e566a04a2c/manifest,https://iiif.princeton.edu/loris/figgy_prod/0e%2F5f%2F7e%2F0e5f7e89c2f245379135db69fa99da3a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-10-14,1924-10-17,https://shakespeareandco.princeton.edu/members/vechten/,Ann van Vechten,"Vechten, Ann van",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/galsworthy-fraternity/,Fraternity,,"Galsworthy, John",1909,,Lending Library Card,"Sylvia Beach, Mrs. Ann van Vechten Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ddb18782-925b-4085-be72-2084e6ce1ec4/manifest,https://iiif.princeton.edu/loris/figgy_prod/41%2Fc7%2F1d%2F41c71dbc14fd40a1ad466335cad981fb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-10-15,1924-11-20,https://shakespeareandco.princeton.edu/members/marsland/,Harriet Marsland,"Marsland, Harriet",,,,,,,,,Returned,36,,,https://shakespeareandco.princeton.edu/books/moore-salve-hail-farewell/,Salve (Hail and Farewell!),,"Moore, George",1912,,Lending Library Card,"Sylvia Beach, Harriet Marsland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/34833978-1579-4eb9-a196-73e566a04a2c/manifest,https://iiif.princeton.edu/loris/figgy_prod/0e%2F5f%2F7e%2F0e5f7e89c2f245379135db69fa99da3a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1924-10-16,1924-10-16,https://shakespeareandco.princeton.edu/members/mandy/,Mrs. Mandy,"Mandy, Mrs.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1924-10-16,1924-11-16,https://shakespeareandco.princeton.edu/members/gatch-harry/,Harry Gatch,"Gatch, Harry",12.00,20.00,1 month,31,1,,1924-10-16,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-10-16,1925-10-30,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,379,,,https://shakespeareandco.princeton.edu/books/hudson-purple-land/,The Purple Land,,"Hudson, W. H.",1885,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/a9%2F51%2F55%2Fa951550798fc4d8e99cdd187d8c34ff0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1924-10-16,1924-10-16,https://shakespeareandco.princeton.edu/members/morgan-e-p/,Mrs. E. P. Morgan,"Morgan, Mrs. E. P.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-10-16,1924-12-06,https://shakespeareandco.princeton.edu/members/stevens-george/,George Stevens,"Stevens, George",,,,,,,,,Returned,51,,,https://shakespeareandco.princeton.edu/books/dostoyevsky-letters-fyodor-michailovitch/,Letters of Fyodor Michailovitch Dostoevsky to His Family and Friends,,"Dostoyevsky, Fyodor",1914,,Lending Library Card,"Sylvia Beach, George Stevens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2eadc899-f67d-4a18-83cf-a42712ac85c2/manifest,https://iiif.princeton.edu/loris/figgy_prod/53%2Fc6%2F2c%2F53c62c97666a4d9a809c0cb5db20ec6b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1924-10-16,1924-11-16,https://shakespeareandco.princeton.edu/members/murphy-larry/,Larry Murphy,"Murphy, Larry",12.00,20.00,1 month,31,1,,1924-10-16,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1924-10-16,1924-10-16,https://shakespeareandco.princeton.edu/members/frias/,Mlle Frias,"Frias, Mlle",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1924-10-16,1924-11-16,https://shakespeareandco.princeton.edu/members/cann-elizabeth/,Elizabeth Cann,"Cann, Elizabeth",12.00,,1 month,31,1,,1924-10-16,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-10-17,1924-10-25,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/trollope-last-chronicle-barset/,The Last Chronicle of Barset,2 vols.,"Trollope, Anthony",1867,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/a8%2F0c%2F50%2Fa80c50c8d98c4129a46159108a655456%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-10-17,1924-10-20,https://shakespeareandco.princeton.edu/members/vechten/,Ann van Vechten,"Vechten, Ann van",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/conrad-lord-jim/,Lord Jim,,"Conrad, Joseph",1900,,Lending Library Card,"Sylvia Beach, Mrs. Ann van Vechten Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ddb18782-925b-4085-be72-2084e6ce1ec4/manifest,https://iiif.princeton.edu/loris/figgy_prod/41%2Fc7%2F1d%2F41c71dbc14fd40a1ad466335cad981fb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1924-10-17,1924-10-17,https://shakespeareandco.princeton.edu/members/chin/,Mr. Chin,"Chin, Mr.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-10-18,1924-11-15,https://shakespeareandco.princeton.edu/members/solano/,Solita Solano,"Solano, Solita",,,,,,,,,Returned,28,,,https://shakespeareandco.princeton.edu/books/scott-escapade/,Escapade,,"Scott, Evelyn",1923,,Lending Library Card,"Sylvia Beach, Solita Solano Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ae91e41-ccc0-4df6-9150-63a893d8d633/manifest,https://iiif.princeton.edu/loris/figgy_prod/62%2Fcb%2Fdc%2F62cbdc49389748219091dcb128da4386%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-10-18,1924-11-15,https://shakespeareandco.princeton.edu/members/solano/,Solita Solano,"Solano, Solita",,,,,,,,,Returned,28,,,https://shakespeareandco.princeton.edu/books/davies-autobiography-super-tramp/,The Autobiography of a Super-Tramp,,"Davies, W. H.",1908,,Lending Library Card,"Sylvia Beach, Solita Solano Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ae91e41-ccc0-4df6-9150-63a893d8d633/manifest,https://iiif.princeton.edu/loris/figgy_prod/62%2Fcb%2Fdc%2F62cbdc49389748219091dcb128da4386%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-10-18,1924-11-15,https://shakespeareandco.princeton.edu/members/solano/,Solita Solano,"Solano, Solita",,,,,,,,,Returned,28,,,https://shakespeareandco.princeton.edu/books/beer-stephen-crane-study/,Stephen Crane: A Study in American Letters,,"Beer, Thomas",1924,,Lending Library Card,"Sylvia Beach, Solita Solano Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ae91e41-ccc0-4df6-9150-63a893d8d633/manifest,https://iiif.princeton.edu/loris/figgy_prod/62%2Fcb%2Fdc%2F62cbdc49389748219091dcb128da4386%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1924-10-19,1925-01-19,https://shakespeareandco.princeton.edu/members/lomax/,Mr. Lomax,"Lomax, Mr.",20.00,,3 months,92,1,,1924-09-29,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-10-20,1924-10-25,https://shakespeareandco.princeton.edu/members/vechten/,Ann van Vechten,"Vechten, Ann van",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/ford-some-do-not/,Some Do Not... (Parade's End 1),,"Ford, Ford Madox",1924,,Lending Library Card,"Sylvia Beach, Mrs. Ann van Vechten Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ddb18782-925b-4085-be72-2084e6ce1ec4/manifest,https://iiif.princeton.edu/loris/figgy_prod/41%2Fc7%2F1d%2F41c71dbc14fd40a1ad466335cad981fb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-10-20,1924-11-08,https://shakespeareandco.princeton.edu/members/proix/,Troise Proix,"Proix, Troise",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/shaw-doctors-dilemma/,The Doctor's Dilemma,,"Shaw, George Bernard",1911,,Lending Library Card,"Sylvia Beach, Troise Proix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b7152822-4421-406d-9472-740daf9b84e0/manifest,https://iiif.princeton.edu/loris/figgy_prod/bf%2F69%2F17%2Fbf69172c77194c8aa1c3b3e2c751d558%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1924-10-21,1925-01-21,https://shakespeareandco.princeton.edu/members/stewart-w/,W. Stewart / Mr. Stewart-Elsmer,"Stewart, W.",30.00,20.00,3 months,92,1,,1924-10-21,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1924-10-22,1924-10-22,https://shakespeareandco.princeton.edu/members/robertson-william-cowper/,William Cowper Robertson / Rev. W. Cowper Robertson,"Robertson, William Cowper",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1924-10-23,,https://shakespeareandco.princeton.edu/members/rhys/,Mr. Rhys,"Rhys, Mr.",5.00,,,,,,1924-10-23,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Rhys Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/0fcf5eb6-f872-481c-a304-e45a0c9fe472/manifest,;https://iiif.princeton.edu/loris/figgy_prod/d9%2F94%2Fe4%2Fd994e47f098b4633a08d651483db361c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1924-10-23,1924-11-23,https://shakespeareandco.princeton.edu/members/everard/,Mme Everard,"Everard, Mme",12.00,20.00,1 month,31,1,,1924-10-23,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-10-23,1924-12-27,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,65,,,https://shakespeareandco.princeton.edu/books/wescott-apple-eye/,The Apple of the Eye,,"Wescott, Glenway",1924,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/18%2Fa8%2F9f%2F18a89fea352842338a91e028989f25d2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1924-10-23,1925-01-23,https://shakespeareandco.princeton.edu/members/baron/,AmΓ©lie Baron,"Baron, AmΓ©lie",30.00,20.00,3 months,92,1,,1924-10-23,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-10-23,1924-11-15,https://shakespeareandco.princeton.edu/members/rhys/,Mr. Rhys,"Rhys, Mr.",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/butler-way-flesh/,The Way of All Flesh,,"Butler, Samuel",1903,,Lending Library Card,"Sylvia Beach, Rhys Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0fcf5eb6-f872-481c-a304-e45a0c9fe472/manifest,https://iiif.princeton.edu/loris/figgy_prod/d9%2F94%2Fe4%2Fd994e47f098b4633a08d651483db361c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-10-25,1925-12-20,https://shakespeareandco.princeton.edu/members/joyce-lucia/,Lucia Joyce,"Joyce, Lucia",,,,,,,,,Returned,421,,,https://shakespeareandco.princeton.edu/books/loving-ten-minute-plays/,Ten Minute Plays,,,1923,,Lending Library Card,"Lucia Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Reimbursement,1924-10-25,1924-10-25,https://shakespeareandco.princeton.edu/members/gatch-harry/,Harry Gatch,"Gatch, Harry",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-10-25,1924-10-27,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/bennett-married-life/,Married Life,,"Bennett, Arnold",1919,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/a8%2F0c%2F50%2Fa80c50c8d98c4129a46159108a655456%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1924-10-25,1924-10-25,https://shakespeareandco.princeton.edu/members/garman-douglas/,Douglas Garman,"Garman, Douglas",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-10-25,1924-10-27,https://shakespeareandco.princeton.edu/members/vechten/,Ann van Vechten,"Vechten, Ann van",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/mencken-american-mercury/,The American Mercury,"Vol. 3, no. 10, Oct 1924",,,,Lending Library Card,"Sylvia Beach, Mrs. Ann van Vechten Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ddb18782-925b-4085-be72-2084e6ce1ec4/manifest,https://iiif.princeton.edu/loris/figgy_prod/41%2Fc7%2F1d%2F41c71dbc14fd40a1ad466335cad981fb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-10-25,1925-01-02,https://shakespeareandco.princeton.edu/members/joyce-lucia/,Lucia Joyce,"Joyce, Lucia",,,,,,,,,Returned,69,,,https://shakespeareandco.princeton.edu/books/shaw-androcles-lion/,Androcles and the Lion,,"Shaw, George Bernard",1916,,Lending Library Card,"Lucia Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1924-10-25,1924-11-03,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/squire-poems-first-series/,Poems: First Series,,"Squire, J. C.",1918,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/f0%2F4d%2F03%2Ff04d03669cc04077855d41ff251737a6%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1924-10-25,1924-11-25,https://shakespeareandco.princeton.edu/members/kenmore-margaret/,Margaret Kenmore,"Kenmore, Margaret",12.00,,1 month,31,1,,1924-10-25,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-10-25,1924-11-29,https://shakespeareandco.princeton.edu/members/rieder/,M. Rieder,"Rieder, M.",,,,,,,,,Returned,35,,,https://shakespeareandco.princeton.edu/books/russell-problem-china/,The Problem of China,,"Russell, Bertrand",1922,,Lending Library Card,"Sylvia Beach, Rieder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/559c8919-8881-40ad-b027-67dbf1b23611/manifest,https://iiif.princeton.edu/loris/figgy_prod/6b%2Ffd%2F99%2F6bfd992bb8e742da8b7377869c34b3c2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-10-25,1924-10-27,https://shakespeareandco.princeton.edu/members/vechten/,Ann van Vechten,"Vechten, Ann van",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/forster-passage-india/,A Passage to India,,"Forster, E. M.",1924,,Lending Library Card,"Sylvia Beach, Mrs. Ann van Vechten Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ddb18782-925b-4085-be72-2084e6ce1ec4/manifest,https://iiif.princeton.edu/loris/figgy_prod/41%2Fc7%2F1d%2F41c71dbc14fd40a1ad466335cad981fb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1924-10-26,1925-10-26,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",64.00,,1 year,365,2,,1924-10-17,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1924-10-27,1924-10-27,https://shakespeareandco.princeton.edu/members/bond-h-m/,H. M. Bond,"Bond, H. M.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-10-27,1925-02-02,https://shakespeareandco.princeton.edu/members/linossier-raymonde/,Raymonde Linossier,"Linossier, Raymonde",,,,,,,,,Returned,98,,,https://shakespeareandco.princeton.edu/books/keith-sanskrit-drama-origin/,"The Sanskrit Drama in its Origin, Development, Theory and Practice",,"Keith, Arthur Berriedale",1924,,Lending Library Card,"Sylvia Beach, Raymonde Linossier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/53ede5bf-939d-44f5-9ddb-4dd39363bd20/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2F3a%2F9c%2F233a9cb20f834e619e82f1ecdce098fd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-10-27,1924-10-29,https://shakespeareandco.princeton.edu/members/vechten/,Ann van Vechten,"Vechten, Ann van",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/mckenna-tomorrow-tomorrow-novel/,Tomorrow and Tomorrow: A Novel,,"McKenna, Stephen",1924,,Lending Library Card,"Sylvia Beach, Mrs. Ann van Vechten Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ddb18782-925b-4085-be72-2084e6ce1ec4/manifest,https://iiif.princeton.edu/loris/figgy_prod/41%2Fc7%2F1d%2F41c71dbc14fd40a1ad466335cad981fb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-10-27,1924-10-29,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/gould-english-novel-today/,The English Novel of Today,,"Gould, Gerald",1924,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/a8%2F0c%2F50%2Fa80c50c8d98c4129a46159108a655456%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1924-10-28,1924-11-28,https://shakespeareandco.princeton.edu/members/mclaren-s/,S. McLaren,"McLaren, S.",12.00,20.00,1 month,31,1,,1924-10-28,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-10-29,1924-11-20,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/joyce-dubliners/,Dubliners,,"Joyce, James",1914,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/37%2F45%2Fc6%2F3745c6824d204f61a49f848a0e9aa7cc%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-10-29,1924-10-31,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/dunsany-king-elflands-daughter/,The King of Elfland's Daughter,,"Dunsany, Lord",1924,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/a8%2F0c%2F50%2Fa80c50c8d98c4129a46159108a655456%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-10-29,1924-10-31,https://shakespeareandco.princeton.edu/members/vechten/,Ann van Vechten,"Vechten, Ann van",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/george-stiff-lip-novel/,The Stiff Lip: A Novel,,"George, Walter Lionel",1922,,Lending Library Card,"Sylvia Beach, Mrs. Ann van Vechten Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ddb18782-925b-4085-be72-2084e6ce1ec4/manifest,https://iiif.princeton.edu/loris/figgy_prod/41%2Fc7%2F1d%2F41c71dbc14fd40a1ad466335cad981fb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1924-10-29,1924-11-29,https://shakespeareandco.princeton.edu/members/corrigan/,John Corrigan,"Corrigan, John",12.00,20.00,1 month,31,1,,1924-10-29,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1924-10-29,1925-10-29,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",88.00,,1 year,365,2,AdL,1924-10-29,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,;https://iiif-cloud.princeton.edu/iiif/2/37%2F45%2Fc6%2F3745c6824d204f61a49f848a0e9aa7cc%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-10-29,1924-12-02,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,34,,,https://shakespeareandco.princeton.edu/books/walter-mare/,Walter de la Mare,2 vols.,,,Unidentified. By or about de la Mare.,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/37%2F45%2Fc6%2F3745c6824d204f61a49f848a0e9aa7cc%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-10-30,1924-11-24,https://shakespeareandco.princeton.edu/members/pottecher-therese/,Therèse Pottecher,"Pottecher, Therèse",,,,,,,,,Returned,25,,,https://shakespeareandco.princeton.edu/books/meredith-rhoda-fleming/,Rhoda Fleming,,"Meredith, George",1865,,Lending Library Card,"Sylvia Beach, Therèse Pottecher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/69b82696-3801-41ff-b1fd-c792179c5b98/manifest,https://iiif-cloud.princeton.edu/iiif/2/c0%2F05%2Fa6%2Fc005a6b8d76241a98262cea0f950c728%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1924-10-30,1925-10-30,https://shakespeareandco.princeton.edu/members/deniau/,M. Deniau,"Deniau, M.",90.00,,1 year,365,1,,1924-10-02,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-10-31,1924-11-03,https://shakespeareandco.princeton.edu/members/vechten/,Ann van Vechten,"Vechten, Ann van",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/bennett-riceyman-steps/,Riceyman Steps,,"Bennett, Arnold",1923,,Lending Library Card,"Sylvia Beach, Mrs. Ann van Vechten Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ddb18782-925b-4085-be72-2084e6ce1ec4/manifest,https://iiif.princeton.edu/loris/figgy_prod/41%2Fc7%2F1d%2F41c71dbc14fd40a1ad466335cad981fb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-10-31,1924-11-05,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/trollope-small-house-allington/,The Small House at Allington,,"Trollope, Anthony",1864,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/a8%2F0c%2F50%2Fa80c50c8d98c4129a46159108a655456%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1924-10-31,1924-10-31,https://shakespeareandco.princeton.edu/members/robinson-m/,M. Robinson,"Robinson, M.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1924-11-03,1924-11-03,https://shakespeareandco.princeton.edu/members/vechten/,Ann van Vechten,"Vechten, Ann van",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-11-03,1924-11-14,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/flecker-hassan/,Hassan,,"Flecker, James Elroy",1922,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/f0%2F4d%2F03%2Ff04d03669cc04077855d41ff251737a6%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1924-11-04,1925-02-04,https://shakespeareandco.princeton.edu/members/bonner-eugene/,Eugene Bonner,"Bonner, Eugene",30.00,,3 months,92,1,,1924-10-20,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-11-05,1924-11-19,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/masefield-sard-harker/,Sard Harker,,"Masefield, John",1924,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/fa%2F62%2F32%2Ffa6232e0788b4f6b91b39355b374306a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-11-05,1924-11-08,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/gissing-new-grub-street/,New Grub Street,,"Gissing, George Robert",1891,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/a8%2F0c%2F50%2Fa80c50c8d98c4129a46159108a655456%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-11-05,1924-11-19,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/russell-practice-theory-bolshevism/,The Practice and Theory of Bolshevism,,"Russell, Bertrand",1920,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/0a%2F3c%2F31%2F0a3c310a56c84f55bcd05a0f421c705b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-11-06,1924-11-15,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/criterion/,The Criterion,"Vol. 2, no. 8, Jul 1924",,,"Renamed *The New Criterion* from January 1926 to January 1927, and *The Monthly Criterion* from May 1927 to March 1928.",Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/62%2F65%2F88%2F6265888991ca456585f42e7f58d1a034%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1924-11-06,1924-11-06,https://shakespeareandco.princeton.edu/members/pulsford-2/,Mr. Pulsford,"Pulsford, Mr.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1924-11-06,1924-12-20,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",18.00,,"1 month, 14 days",44,1,,1924-11-06,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,;https://iiif.princeton.edu/loris/figgy_prod/62%2F65%2F88%2F6265888991ca456585f42e7f58d1a034%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-11-06,1924-11-15,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/rosenfeld-musical-chronicle-1917/,Musical Chronicle 1917 β 1923,,"Rosenfeld, Paul",1923,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/62%2F65%2F88%2F6265888991ca456585f42e7f58d1a034%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1924-11-07,1924-12-07,https://shakespeareandco.princeton.edu/members/pougaud/,M. Pougaud,"Pougaud, M.",8.00,,1 month,30,1,,1924-11-06,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1924-11-07,1924-12-07,https://shakespeareandco.princeton.edu/members/littlefield-walter/,Walter Littlefield / Mr. W. H. Littlefield,"Littlefield, Walter",16.00,40.00,1 month,30,2,,1924-11-07,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1924-11-07,1924-12-07,https://shakespeareandco.princeton.edu/members/kelley/,Mrs. Kelley,"Kelley, Mrs.",12.00,,1 month,30,1,,1924-11-04,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-11-08,1924-11-22,https://shakespeareandco.princeton.edu/members/proix/,Troise Proix,"Proix, Troise",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/henry-four-million/,The Four Million,,"Henry, O.",1906,,Lending Library Card,"Sylvia Beach, Troise Proix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b7152822-4421-406d-9472-740daf9b84e0/manifest,https://iiif.princeton.edu/loris/figgy_prod/bf%2F69%2F17%2Fbf69172c77194c8aa1c3b3e2c751d558%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-11-08,1924-11-10,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/gissing-odd-women/,The Odd Women,,"Gissing, George Robert",1893,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/a8%2F0c%2F50%2Fa80c50c8d98c4129a46159108a655456%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-11-08,1924-11-10,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/mansfield-something-childish-stories/,Something Childish and Other Stories,,"Mansfield, Katherine",1924,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/18%2Fa8%2F9f%2F18a89fea352842338a91e028989f25d2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1924-11-10,1925-02-10,https://shakespeareandco.princeton.edu/members/hervey-mr/;https://shakespeareandco.princeton.edu/members/hervey-2/,Mr. Hervey;Mrs. Hervey,"Hervey, Mr.;Hervey, Mrs.",55.00,,3 months,92,3,,1924-10-31,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1924-11-10,1925-02-10,https://shakespeareandco.princeton.edu/members/brahan-margaret/,Margaret Brahan,"Brahan, Margaret",40.00,40.00,3 months,92,2,,1924-11-10,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1924-11-10,1925-02-10,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",30.00,,3 months,92,1,,1924-11-10,,,,,FRF,,,,,,,Lending Library Card;Logbook,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest;,https://iiif.princeton.edu/loris/figgy_prod/eb%2F08%2F9d%2Feb089ddbcf314523baaa9fbccb485801%2Fintermediate_file.jp2/full/full/0/default.jpg;
+Subscription,1924-11-10,1925-05-10,https://shakespeareandco.princeton.edu/members/catudal-h-m/,H. M. Catudal,"Catudal, H. M.",67.00,40.00,6 months,181,2,,1924-11-10,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-11-10,1924-11-15,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/sedgwick-little-french-girl/,The Little French Girl,,"Sedgwick, Anne Douglas",1924,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/18%2Fa8%2F9f%2F18a89fea352842338a91e028989f25d2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-11-10,1924-11-14,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/bronte-villette/,Villette,,"BrontΓ«, Charlotte",1853,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/a8%2F0c%2F50%2Fa80c50c8d98c4129a46159108a655456%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-11-10,1924-11-25,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/sinclair-anne-severn-fieldings/,Anne Severn and the Fieldings,,"Sinclair, May",1922,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/eb%2F08%2F9d%2Feb089ddbcf314523baaa9fbccb485801%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1924-11-12,1924-12-12,https://shakespeareandco.princeton.edu/members/fisher-p-r/,P. R. Fisher,"Fisher, P. R.",12.00,20.00,1 month,30,1,,1924-11-12,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1924-11-13,1924-11-13,https://shakespeareandco.princeton.edu/members/cann-elizabeth/,Elizabeth Cann,"Cann, Elizabeth",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1924-11-13,1924-11-13,https://shakespeareandco.princeton.edu/members/grover/,Miss Grover,"Grover, Miss",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1924-11-13,1924-12-13,https://shakespeareandco.princeton.edu/members/chapman-s/,S. Chapman,"Chapman, S.",12.00,20.00,1 month,30,1,,1924-11-13,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1924-11-14,1925-02-14,https://shakespeareandco.princeton.edu/members/service/,Robert W. Service / Mr. R. W. Service,"Service, Robert W.",30.00,,3 months,92,1,,1924-11-14,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Robert Service Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/102d8619-7160-464b-8967-ca771c0c29f6/manifest,;https://iiif.princeton.edu/loris/figgy_prod/15%2Fd8%2Fe9%2F15d8e9e91dca4f9faeaa5ea2b538fc5f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-11-14,1924-11-18,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/shaw-saint-joan-chronicle/,Saint Joan: A Chronicle Play in Six Scenes and an Epilogue,,"Shaw, George Bernard",1924,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/78%2Fd0%2Fa8%2F78d0a879423f47daa1e2a1e4e57e548a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-11-14,1924-11-18,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/dickens-great-expectations/,Great Expectations,,"Dickens, Charles",1861,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/a8%2F0c%2F50%2Fa80c50c8d98c4129a46159108a655456%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1924-11-14,1924-12-14,https://shakespeareandco.princeton.edu/members/mowschine/,Mr. Mowschine,"Mowschine, Mr.",12.00,20.00,1 month,30,1,,1924-11-03,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-11-14,1924-11-19,https://shakespeareandco.princeton.edu/members/service/,Robert W. Service / Mr. R. W. Service,"Service, Robert W.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/jackson-eighteen-nineties/,The Eighteen Nineties,,"Jackson, George Holbrook",1913,,Lending Library Card,"Sylvia Beach, Robert Service Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/102d8619-7160-464b-8967-ca771c0c29f6/manifest,https://iiif.princeton.edu/loris/figgy_prod/15%2Fd8%2Fe9%2F15d8e9e91dca4f9faeaa5ea2b538fc5f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-11-15,1924-11-19,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/lawrence-boy-bush/,The Boy in the Bush,,"Lawrence, D. H.",1924,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/62%2F65%2F88%2F6265888991ca456585f42e7f58d1a034%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1924-11-15,1924-11-15,https://shakespeareandco.princeton.edu/members/prince/;https://shakespeareandco.princeton.edu/members/prince-2/,Miss Prince;Mr. Prince,"Prince, Miss;Prince, Mr.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-11-15,1924-11-25,https://shakespeareandco.princeton.edu/members/solano/,Solita Solano,"Solano, Solita",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/proust-swanns-way/,Swann's Way (Γ la recherche du temps perdu 1),2 vols.,"Proust, Marcel",1922,,Lending Library Card,"Sylvia Beach, Solita Solano Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ae91e41-ccc0-4df6-9150-63a893d8d633/manifest,https://iiif.princeton.edu/loris/figgy_prod/62%2Fcb%2Fdc%2F62cbdc49389748219091dcb128da4386%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-11-15,1924-11-22,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/arlen-green-hat/,The Green Hat: A Romance for a Few People,,"Arlen, Michael",1924,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/18%2Fa8%2F9f%2F18a89fea352842338a91e028989f25d2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1924-11-16,1924-12-16,https://shakespeareandco.princeton.edu/members/moore-miss/,Miss Moore,"Moore, Miss",12.00,,1 month,30,1,,1924-11-14,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1924-11-16,1924-12-16,https://shakespeareandco.princeton.edu/members/frias/,Mlle Frias,"Frias, Mlle",12.00,,1 month,30,1,,1924-11-12,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1924-11-17,1925-11-17,https://shakespeareandco.princeton.edu/members/hanson-5/,Mrs. Hanson,"Hanson, Mrs.",110.00,40.00,1 year,365,2,,1924-11-17,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1924-11-17,1925-02-17,https://shakespeareandco.princeton.edu/members/louriau-camille/,Camille Louriau,"Louriau, Camille",20.00,,3 months,92,1,,1924-10-04,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1924-11-17,1924-11-17,https://shakespeareandco.princeton.edu/members/burch/,Mrs. A. T. Burch,"Burch, Mrs. A. T.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-11-18,1924-12-02,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/bennett-united-states/,Those United States,,"Bennett, Arnold",1912,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/7e%2F89%2Fd9%2F7e89d956d66e4e2893ae3ae67b1b5fa6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-11-18,1924-11-20,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/fletcher-charing-cross-mystery/,The Charing Cross Mystery,,"Fletcher, Joseph Smith",1923,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/78%2Fd0%2Fa8%2F78d0a879423f47daa1e2a1e4e57e548a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-11-18,1924-11-21,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/dickens-oliver-twist/,Oliver Twist,,"Dickens, Charles",1837,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/a8%2F0c%2F50%2Fa80c50c8d98c4129a46159108a655456%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-11-18,1924-11-25,https://shakespeareandco.princeton.edu/members/solano/,Solita Solano,"Solano, Solita",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/forster-passage-india/,A Passage to India,,"Forster, E. M.",1924,,Lending Library Card,"Sylvia Beach, Solita Solano Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ae91e41-ccc0-4df6-9150-63a893d8d633/manifest,https://iiif.princeton.edu/loris/figgy_prod/62%2Fcb%2Fdc%2F62cbdc49389748219091dcb128da4386%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1924-11-19,1924-11-19,https://shakespeareandco.princeton.edu/members/french/,Mrs. E. S. French,"French, Mrs. E. S.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-11-19,1924-12-03,https://shakespeareandco.princeton.edu/members/service/,Robert W. Service / Mr. R. W. Service,"Service, Robert W.",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/ford-joseph-conrad-personal/,Joseph Conrad: A Personal Remembrance,,"Ford, Ford Madox",1924,,Lending Library Card,"Sylvia Beach, Robert Service Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/102d8619-7160-464b-8967-ca771c0c29f6/manifest,https://iiif.princeton.edu/loris/figgy_prod/15%2Fd8%2Fe9%2F15d8e9e91dca4f9faeaa5ea2b538fc5f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-11-19,1924-11-20,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/shaw-saint-joan-chronicle/,Saint Joan: A Chronicle Play in Six Scenes and an Epilogue,,"Shaw, George Bernard",1924,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/0a%2F3c%2F31%2F0a3c310a56c84f55bcd05a0f421c705b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-11-19,1924-11-22,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/shaw-saint-joan-chronicle/,Saint Joan: A Chronicle Play in Six Scenes and an Epilogue,,"Shaw, George Bernard",1924,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/62%2F65%2F88%2F6265888991ca456585f42e7f58d1a034%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-11-19,1924-11-22,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/anatole-france/,Anatole France,,,,Unidentified. By or about Anatole France.,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/62%2F65%2F88%2F6265888991ca456585f42e7f58d1a034%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1924-11-19,1924-12-19,https://shakespeareandco.princeton.edu/members/murphy-larry/,Larry Murphy,"Murphy, Larry",12.00,,1 month,30,1,,1924-11-19,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Crossed out,1924-11-19,,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/practice/,The Practice,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/0a%2F3c%2F31%2F0a3c310a56c84f55bcd05a0f421c705b%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1924-11-19,1924-12-19,https://shakespeareandco.princeton.edu/members/lobstein/,Mr. Lobstein,"Lobstein, Mr.",12.00,,1 month,30,1,AdL,1924-11-19,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1924-11-19,1924-11-19,https://shakespeareandco.princeton.edu/members/mowschine/,Mr. Mowschine,"Mowschine, Mr.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-11-20,1924-12-03,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/frank-dark-mother/,The Dark Mother,,"Frank, Waldo",1920,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/0a%2F3c%2F31%2F0a3c310a56c84f55bcd05a0f421c705b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-11-20,1924-12-02,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/murry-discoveries-essays-literary/,Discoveries: Essays in Literary Criticism,,"Murry, John Middleton",1924,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/37%2F45%2Fc6%2F3745c6824d204f61a49f848a0e9aa7cc%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1924-11-20,1924-12-20,https://shakespeareandco.princeton.edu/members/salinger/,Mr. Salinger,"Salinger, Mr.",12.00,,1 month,30,1,,1924-11-20,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-11-20,1924-12-03,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/anderson-windy-mcphersons/,Windy McPherson's Son,,"Anderson, Sherwood",1916,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/0a%2F3c%2F31%2F0a3c310a56c84f55bcd05a0f421c705b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-11-20,1924-11-26,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/jackson-eighteen-nineties/,The Eighteen Nineties,,"Jackson, George Holbrook",1913,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/78%2Fd0%2Fa8%2F78d0a879423f47daa1e2a1e4e57e548a%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1924-11-21,1925-02-21,https://shakespeareandco.princeton.edu/members/gautier-yvonne/,Yvonne Gautier,"Gautier, Yvonne",30.00,20.00,3 months,92,1,,1924-11-21,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-11-21,1924-11-24,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/squire-london-mercury/,The London Mercury,"Vol. 10, no. 61, Nov 1924",,,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/a8%2F0c%2F50%2Fa80c50c8d98c4129a46159108a655456%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-11-21,1924-12-09,https://shakespeareandco.princeton.edu/members/marsland/,Harriet Marsland,"Marsland, Harriet",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/sitwell-triple-fugue/,Triple Fugue,,"Sitwell, Osbert",1924,,Lending Library Card,"Sylvia Beach, Harriet Marsland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/34833978-1579-4eb9-a196-73e566a04a2c/manifest,https://iiif.princeton.edu/loris/figgy_prod/ae%2F31%2F29%2Fae3129361f424e8a8fe58cb8839b6a40%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-11-21,1924-11-24,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/power-medieval-people/,Medieval People,,"Power, Eileen",1924,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/a8%2F0c%2F50%2Fa80c50c8d98c4129a46159108a655456%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1924-11-21,1924-12-21,https://shakespeareandco.princeton.edu/members/marsland/,Harriet Marsland,"Marsland, Harriet",16.00,,1 month,30,2,,1924-11-21,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Harriet Marsland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/34833978-1579-4eb9-a196-73e566a04a2c/manifest,;https://iiif.princeton.edu/loris/figgy_prod/ae%2F31%2F29%2Fae3129361f424e8a8fe58cb8839b6a40%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-11-21,1924-12-09,https://shakespeareandco.princeton.edu/members/marsland/,Harriet Marsland,"Marsland, Harriet",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/moore-untilled-field/,The Untilled Field,,"Moore, George",1903,,Lending Library Card,"Sylvia Beach, Harriet Marsland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/34833978-1579-4eb9-a196-73e566a04a2c/manifest,https://iiif.princeton.edu/loris/figgy_prod/ae%2F31%2F29%2Fae3129361f424e8a8fe58cb8839b6a40%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1924-11-22,1924-12-22,https://shakespeareandco.princeton.edu/members/hodgkinson/,Ivan Hodgkinson,"Hodgkinson, Ivan",12.00,20.00,1 month,30,1,,1924-11-22,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-11-22,1924-12-03,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/shaw-irrational-knot/,The Irrational Knot,,"Shaw, George Bernard",1905,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/62%2F65%2F88%2F6265888991ca456585f42e7f58d1a034%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-11-22,1924-12-20,https://shakespeareandco.princeton.edu/members/proix/,Troise Proix,"Proix, Troise",,,,,,,,,Returned,28,,,https://shakespeareandco.princeton.edu/books/shaw-john-bulls-island/,John Bull's Other Island,,"Shaw, George Bernard",1907,,Lending Library Card,"Sylvia Beach, Troise Proix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b7152822-4421-406d-9472-740daf9b84e0/manifest,https://iiif.princeton.edu/loris/figgy_prod/bf%2F69%2F17%2Fbf69172c77194c8aa1c3b3e2c751d558%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1924-11-22,1924-12-22,https://shakespeareandco.princeton.edu/members/gruening-martha/,Martha Gruening,"Gruening, Martha",16.00,40.00,1 month,30,2,,1924-11-22,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1924-11-22,1924-12-22,https://shakespeareandco.princeton.edu/members/davis-mary/,Mary Davis / Mrs. N. D. Davis,"Davis, Mary",12.00,,1 month,30,1,,1924-11-22,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-11-22,1924-11-26,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/ford-good-soldier/,The Good Soldier,,"Ford, Ford Madox",1915,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/18%2Fa8%2F9f%2F18a89fea352842338a91e028989f25d2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1924-11-22,1924-12-22,https://shakespeareandco.princeton.edu/members/oelrichs/,Mrs. Oelrichs,"Oelrichs, Mrs.",16.00,,1 month,30,2,,1924-11-21,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-11-24,1925-01-05,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,42,,,https://shakespeareandco.princeton.edu/books/stevenson-letters-robert-louis/,The Letters of Robert Louis Stevenson,2 vols.,"Stevenson, Robert Louis",1899,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/9f%2F8f%2Fad%2F9f8fad0b96e34650ae551e3c229b2cf7%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-11-24,1924-11-28,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/walpole-old-ladies/,The Old Ladies,,"Walpole, Hugh",1924,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/a8%2F0c%2F50%2Fa80c50c8d98c4129a46159108a655456%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-11-24,1924-11-29,https://shakespeareandco.princeton.edu/members/pottecher-therese/,Therèse Pottecher,"Pottecher, Therèse",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/shaw-man-superman/,Man and Superman,,"Shaw, George Bernard",1903,,Lending Library Card,"Sylvia Beach, Therèse Pottecher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/69b82696-3801-41ff-b1fd-c792179c5b98/manifest,https://iiif-cloud.princeton.edu/iiif/2/c0%2F05%2Fa6%2Fc005a6b8d76241a98262cea0f950c728%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-11-24,1925-01-05,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,42,,,https://shakespeareandco.princeton.edu/books/sinclair-cure-souls/,A Cure of Souls,,"Sinclair, May",1924,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/9f%2F8f%2Fad%2F9f8fad0b96e34650ae551e3c229b2cf7%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-11-25,1924-12-03,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/forster-passage-india/,A Passage to India,,"Forster, E. M.",1924,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/eb%2F08%2F9d%2Feb089ddbcf314523baaa9fbccb485801%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-11-25,1924-12-06,https://shakespeareandco.princeton.edu/members/solano/,Solita Solano,"Solano, Solita",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/cronwright-schreiner-life-olive-schreiner/,The Life of Olive Schreiner,,"Cronwright-Schreiner, S. C.",1924,,Lending Library Card,"Sylvia Beach, Solita Solano Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ae91e41-ccc0-4df6-9150-63a893d8d633/manifest,https://iiif.princeton.edu/loris/figgy_prod/62%2Fcb%2Fdc%2F62cbdc49389748219091dcb128da4386%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-11-25,,https://shakespeareandco.princeton.edu/members/solano/,Solita Solano,"Solano, Solita",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/white-gold/,Gold,,"White, Stewart Edward",1913,,Lending Library Card,"Sylvia Beach, Solita Solano Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ae91e41-ccc0-4df6-9150-63a893d8d633/manifest,https://iiif.princeton.edu/loris/figgy_prod/62%2Fcb%2Fdc%2F62cbdc49389748219091dcb128da4386%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1924-11-25,1924-11-25,https://shakespeareandco.princeton.edu/members/maurel-jean/,Jean Maurel,"Maurel, Jean",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-11-25,1924-12-11,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/lewis-free-air/,Free Air,,"Lewis, Sinclair",1919,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/e0%2Fae%2F6b%2Fe0ae6bec54324349b412353650ee6dab%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1924-11-25,1924-11-25,https://shakespeareandco.princeton.edu/members/kenmore-margaret/,Margaret Kenmore,"Kenmore, Margaret",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-11-26,1924-11-28,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/thompson-francis-thompsons-works/,Works of Francis Thompson,Vol. 2 Poems,"Thompson, Francis",1913,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/78%2Fd0%2Fa8%2F78d0a879423f47daa1e2a1e4e57e548a%2Fintermediate_file/full/full/0/default.jpg
+Supplement,1924-11-26,1924-12-22,https://shakespeareandco.princeton.edu/members/hodgkinson/,Ivan Hodgkinson,"Hodgkinson, Ivan",4.00,20.00,26 days,26,1,,1924-11-26,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-11-26,1924-12-02,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/macaulay-orphan-island/,Orphan Island,,"Macaulay, Rose",1924,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/18%2Fa8%2F9f%2F18a89fea352842338a91e028989f25d2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1924-11-27,1925-05-27,https://shakespeareandco.princeton.edu/members/bonamy-2/,Mlle Bonamy,"Bonamy, Mlle",52.00,20.00,6 months,181,1,,1924-11-27,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1924-11-28,1924-12-28,https://shakespeareandco.princeton.edu/members/hetherwick-violet/,Violet Hetherwick,"Hetherwick, Violet",12.00,20.00,1 month,30,1,,1924-11-28,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-11-28,1924-12-05,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/james-ambassadors/,The Ambassadors,,"James, Henry",1903,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/a8%2F0c%2F50%2Fa80c50c8d98c4129a46159108a655456%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-11-28,1924-12-08,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/thompson-francis-thompsons-works/,Works of Francis Thompson,Vol. 3 Prose,"Thompson, Francis",1913,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/78%2Fd0%2Fa8%2F78d0a879423f47daa1e2a1e4e57e548a%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1924-11-28,1924-12-28,https://shakespeareandco.princeton.edu/members/grenfield/,Miss Grenfield / Greenfield,"Grenfield, Miss",12.00,20.00,1 month,30,1,,1924-11-28,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-11-29,,https://shakespeareandco.princeton.edu/members/rieder/,M. Rieder,"Rieder, M.",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/pound-pavannes-divisions/,Pavannes and Divisions,,"Pound, Ezra",1918,,Lending Library Card,"Sylvia Beach, Rieder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/559c8919-8881-40ad-b027-67dbf1b23611/manifest,https://iiif.princeton.edu/loris/figgy_prod/e8%2F10%2F7c%2Fe8107c2c950f411d8ceeb6bb8bdc01c7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1924-11-29,1924-12-29,https://shakespeareandco.princeton.edu/members/mercer/,Mr. Mercer,"Mercer, Mr.",12.00,20.00,1 month,30,1,,1924-11-29,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-11-29,1924-12-23,https://shakespeareandco.princeton.edu/members/pottecher-therese/,Therèse Pottecher,"Pottecher, Therèse",,,,,,,,,Returned,24,,,https://shakespeareandco.princeton.edu/books/stephens-crock-gold/,The Crock of Gold,,"Stephens, James",1912,,Lending Library Card,"Sylvia Beach, Therèse Pottecher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/69b82696-3801-41ff-b1fd-c792179c5b98/manifest,https://iiif-cloud.princeton.edu/iiif/2/c4%2F4e%2F60%2Fc44e600e2d3c4c79ac86e53dfeb373da%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-12-01,1924-12-11,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/merrick-chair-boulevard/,A Chair on the Boulevard,,"Merrick, Leonard",1917,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/a9%2F51%2F55%2Fa951550798fc4d8e99cdd187d8c34ff0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-12-01,1924-12-03,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/babbitt-criticism-america-function/,Criticism in America: Its Function and Status,,,1924,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/62%2F65%2F88%2F6265888991ca456585f42e7f58d1a034%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1924-12-01,1924-12-01,https://shakespeareandco.princeton.edu/members/corrigan/,John Corrigan,"Corrigan, John",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1924-12-01,1925-03-01,https://shakespeareandco.princeton.edu/members/martin-du-gard/,Christiane Martin du Gard,"Martin du Gard, Christiane",30.00,20.00,3 months,90,1,,1924-12-01,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1924-12-02,1925-01-02,https://shakespeareandco.princeton.edu/members/herrick/,Mrs. G. R. Herrick,"Herrick, Mrs. G. R.",16.00,40.00,1 month,31,2,,1924-12-02,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-12-02,1924-12-09,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/bennett-married-life/,Married Life,,"Bennett, Arnold",1919,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/18%2Fa8%2F9f%2F18a89fea352842338a91e028989f25d2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1924-12-02,1925-01-02,https://shakespeareandco.princeton.edu/members/guirlain/,Mme Guislain,"Guislain, Mme",12.00,20.00,1 month,31,1,,1924-12-02,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-12-02,1925-01-02,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,31,,,https://shakespeareandco.princeton.edu/books/galsworthy-plays-fourth-series/,Plays: Fourth Series,,"Galsworthy, John",1920,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/7e%2F89%2Fd9%2F7e89d956d66e4e2893ae3ae67b1b5fa6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-12-02,1924-12-05,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/mackenzie-heavenly-ladder/,The Heavenly Ladder,,"Mackenzie, Compton",1924,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/eb%2F08%2F9d%2Feb089ddbcf314523baaa9fbccb485801%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-12-02,1925-01-08,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,37,,,https://shakespeareandco.princeton.edu/books/joyce-portrait-artist-young/,A Portrait of the Artist as a Young Man,,"Joyce, James",1916,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/37%2F45%2Fc6%2F3745c6824d204f61a49f848a0e9aa7cc%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-12-02,1924-12-16,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/joyce-chamber-music/,Chamber Music,,"Joyce, James",1907,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/37%2F45%2Fc6%2F3745c6824d204f61a49f848a0e9aa7cc%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-12-03,1924-12-11,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/shaw-peace-conference-hints/,Peace Conference Hints,,"Shaw, George Bernard",1919,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/62%2F65%2F88%2F6265888991ca456585f42e7f58d1a034%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-12-03,1924-12-03,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/bennett-elsie-child-stories/,Elsie and the Child and Other Stories,,"Bennett, Arnold",1924,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/0a%2F3c%2F31%2F0a3c310a56c84f55bcd05a0f421c705b%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1924-12-04,1925-01-04,https://shakespeareandco.princeton.edu/members/everard/,Mme Everard,"Everard, Mme",12.00,,1 month,31,1,,1924-12-04,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Supplement,1924-12-04,1925-01-01,https://shakespeareandco.princeton.edu/members/peabody/,Mrs. Peabody,"Peabody, Mrs.",4.00,,28 days,28,1,,1924-12-04,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1924-12-04,1925-03-04,https://shakespeareandco.princeton.edu/members/harshberger-f-m/,F. M. Harshberger,"Harshberger, F. M.",30.00,,3 months,90,1,,1924-11-29,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1924-12-05,1925-03-05,https://shakespeareandco.princeton.edu/members/beaudains/,Mlle Beaudains,"Beaudains, Mlle",30.00,,3 months,90,1,,1924-12-26,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-12-05,1924-12-12,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/woolf-night-day/,Night and Day,,"Woolf, Virginia",1919,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/eb%2F08%2F9d%2Feb089ddbcf314523baaa9fbccb485801%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-12-05,1924-12-06,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/young-cold-harbour/,Cold Harbour,,"Young, Francis Brett",1924,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/a8%2F0c%2F50%2Fa80c50c8d98c4129a46159108a655456%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-12-06,1924-12-15,https://shakespeareandco.princeton.edu/members/solano/,Solita Solano,"Solano, Solita",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/richardson-revolving-lights-pilgrimage/,Revolving Lights (Pilgrimage 7),,"Richardson, Dorothy M.",1923,,Lending Library Card,"Sylvia Beach, Solita Solano Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ae91e41-ccc0-4df6-9150-63a893d8d633/manifest,https://iiif.princeton.edu/loris/figgy_prod/62%2Fcb%2Fdc%2F62cbdc49389748219091dcb128da4386%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-12-06,,https://shakespeareandco.princeton.edu/members/stevens-george/,George Stevens,"Stevens, George",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/freud-collected-papers/,Collected Papers,"Vol. 1, Vol. 2 Early Papers. Clinical Papers.","Freud, Sigmund",,,Lending Library Card,"Sylvia Beach, George Stevens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2eadc899-f67d-4a18-83cf-a42712ac85c2/manifest,https://iiif.princeton.edu/loris/figgy_prod/53%2Fc6%2F2c%2F53c62c97666a4d9a809c0cb5db20ec6b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1924-12-06,1925-03-06,https://shakespeareandco.princeton.edu/members/seurre/,J. Seurre,"Seurre, J.",20.00,,3 months,90,1,,1924-12-06,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1924-12-06,1924-12-06,https://shakespeareandco.princeton.edu/members/mckeon-2/,Mr. McKeon,"McKeon, Mr.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-12-06,1924-12-15,https://shakespeareandco.princeton.edu/members/solano/,Solita Solano,"Solano, Solita",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/larbaud-o-barnabooth-diary/,A. O. Barnabooth: His Diary,,"Larbaud, Valery",1924,,Lending Library Card,"Sylvia Beach, Solita Solano Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ae91e41-ccc0-4df6-9150-63a893d8d633/manifest,https://iiif.princeton.edu/loris/figgy_prod/62%2Fcb%2Fdc%2F62cbdc49389748219091dcb128da4386%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-12-06,1924-12-20,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/scott-bewilderment/,Bewilderment,,"Scott, Evelyn",1922,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/0a%2F3c%2F31%2F0a3c310a56c84f55bcd05a0f421c705b%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1924-12-07,1925-01-07,https://shakespeareandco.princeton.edu/members/pougaud/,M. Pougaud,"Pougaud, M.",8.00,,1 month,31,1,,1924-12-06,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-12-08,1924-12-26,https://shakespeareandco.princeton.edu/members/service/,Robert W. Service / Mr. R. W. Service,"Service, Robert W.",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/james-joyce/,James Joyce,,,,Unidentified. By or about Joyce.,Lending Library Card,"Sylvia Beach, Robert Service Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/102d8619-7160-464b-8967-ca771c0c29f6/manifest,https://iiif.princeton.edu/loris/figgy_prod/15%2Fd8%2Fe9%2F15d8e9e91dca4f9faeaa5ea2b538fc5f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-12-08,1924-12-11,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/gould-english-novel-today/,The English Novel of Today,,"Gould, Gerald",1924,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/78%2Fd0%2Fa8%2F78d0a879423f47daa1e2a1e4e57e548a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-12-08,1925-01-13,https://shakespeareandco.princeton.edu/members/lanux-pierre-de/,Pierre de Lanux,"de Lanux, Pierre",,,,,,,,,Returned,36,,,https://shakespeareandco.princeton.edu/books/channing-united-states-america/,"The United States of America, 1765 β 1865",,"Channing, Edward",1897,,Lending Library Card,"Sylvia Beach, Pierre de Lanux Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e367ba9f-98cf-408d-9281-2c5771c2fa44/manifest,https://iiif.princeton.edu/loris/figgy_prod/ca%2Fda%2Fe8%2Fcadae8b190cd4f708a8e88505a8a3055%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1924-12-09,1925-06-09,https://shakespeareandco.princeton.edu/members/mccann-grace/,Grace McCann / Grace McCann Morley,"McCann, Grace",57.00,40.00,6 months,182,2,,1924-12-09,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-12-09,1924-12-20,https://shakespeareandco.princeton.edu/members/marsland/,Harriet Marsland,"Marsland, Harriet",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/moore-evelyn-inness/,Evelyn Innes,,"Moore, George",1898,,Lending Library Card,"Sylvia Beach, Harriet Marsland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/34833978-1579-4eb9-a196-73e566a04a2c/manifest,https://iiif.princeton.edu/loris/figgy_prod/ae%2F31%2F29%2Fae3129361f424e8a8fe58cb8839b6a40%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-12-09,,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/anderson-many-marriages/,Many Marriages,,"Anderson, Sherwood",1923,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a7%2Ff8%2F3b%2Fa7f83bd97bc94ca8adfabdbb59a143f4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-12-09,1924-12-20,https://shakespeareandco.princeton.edu/members/marsland/,Harriet Marsland,"Marsland, Harriet",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/moore-vale-hail-farewell/,Vale (Hail and Farewell!),,"Moore, George",1914,,Lending Library Card,"Sylvia Beach, Harriet Marsland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/34833978-1579-4eb9-a196-73e566a04a2c/manifest,https://iiif.princeton.edu/loris/figgy_prod/ae%2F31%2F29%2Fae3129361f424e8a8fe58cb8839b6a40%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-12-09,1924-12-16,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/coppard-black-dog-stories/,The Black Dog and Other Stories,,"Coppard, A. E.",1923,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a7%2Ff8%2F3b%2Fa7f83bd97bc94ca8adfabdbb59a143f4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1924-12-10,1925-01-10,https://shakespeareandco.princeton.edu/members/chappell-eve/,Eve Chappell,"Chappell, Eve",12.00,20.00,1 month,31,1,,1924-12-10,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1924-12-10,1924-12-10,https://shakespeareandco.princeton.edu/members/burlin-g/,Paul Burlin / Mr. G. Burlin,"Burlin, Paul",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-12-11,1924-12-16,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/cannan-annette-bennett/,Annette and Bennett,,"Cannan, Gilbert",1923,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/a8%2F0c%2F50%2Fa80c50c8d98c4129a46159108a655456%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-12-11,1925-01-07,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,27,,,https://shakespeareandco.princeton.edu/books/beresford-early-history-jacob/,The Early History of Jacob Stahl,,"Beresford, J. D.",1911,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/78%2Fd0%2Fa8%2F78d0a879423f47daa1e2a1e4e57e548a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-12-11,1924-12-18,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/fisher-home-maker/,The Home-Maker,,"Fisher, Dorothy Canfield",1924,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/e0%2Fae%2F6b%2Fe0ae6bec54324349b412353650ee6dab%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1924-12-12,1924-12-12,https://shakespeareandco.princeton.edu/members/millward-s-q/,S. Q. Millward,"Millward, S. Q.",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-12-12,1925-01-08,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,27,,,https://shakespeareandco.princeton.edu/books/freud-beyond-pleasure-principle/,Beyond the Pleasure Principle,,"Freud, Sigmund",1922,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/eb%2F08%2F9d%2Feb089ddbcf314523baaa9fbccb485801%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1924-12-13,1924-12-13,https://shakespeareandco.princeton.edu/members/lauriol-2/,Mme Lauriol,"Lauriol, Mme",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1924-12-13,1924-12-13,https://shakespeareandco.princeton.edu/members/leech-2/,Mrs. Leech,"Leech, Mrs.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-12-15,1924-12-16,https://shakespeareandco.princeton.edu/members/solano/,Solita Solano,"Solano, Solita",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/callender-windmill-stories-essays/,"The Windmill: Stories, Essays, Poems & Pictures by Authors & Artists Whose Works are Published at the Sign of the Windmill",,,1923,,Lending Library Card,"Sylvia Beach, Solita Solano Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ae91e41-ccc0-4df6-9150-63a893d8d633/manifest,https://iiif.princeton.edu/loris/figgy_prod/62%2Fcb%2Fdc%2F62cbdc49389748219091dcb128da4386%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-12-15,1924-12-16,https://shakespeareandco.princeton.edu/members/solano/,Solita Solano,"Solano, Solita",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/ariel/,Ariel,,,,"Unidentified. Likely AndreΜ Maurois's *Ariel: The Life of Shelley,* translated by Ella D'Arcy (1924).",Lending Library Card,"Sylvia Beach, Solita Solano Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ae91e41-ccc0-4df6-9150-63a893d8d633/manifest,https://iiif.princeton.edu/loris/figgy_prod/62%2Fcb%2Fdc%2F62cbdc49389748219091dcb128da4386%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-12-16,1924-12-19,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/forster-howards-end/,Howards End,,"Forster, E. M.",1910,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a7%2Ff8%2F3b%2Fa7f83bd97bc94ca8adfabdbb59a143f4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-12-16,1924-12-20,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/dickens-barnaby-rudge/,Barnaby Rudge,,"Dickens, Charles",1841,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/a8%2F0c%2F50%2Fa80c50c8d98c4129a46159108a655456%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-12-16,1925-02-11,https://shakespeareandco.princeton.edu/members/murphy-dudley/,Dudley Murphy,"Murphy, Dudley",,,,,,,,,Returned,57,,,https://shakespeareandco.princeton.edu/books/macgowan-continental-stagecraft/,Continental Stagecraft,,"Macgowan, Kenneth",1922,,Lending Library Card,"Sylvia Beach, Dudley Murphy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/27faf612-885d-4f4f-8cd1-06943be5a377/manifest,https://iiif.princeton.edu/loris/figgy_prod/80%2F0f%2Fff%2F800fffad1a804dbb8f455b8928285039%2Fintermediate_file.jp2/full/full/0/default.jpg
+Crossed out,1924-12-16,,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/forster-longest-journey/,The Longest Journey,,"Forster, E. M.",1907,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a7%2Ff8%2F3b%2Fa7f83bd97bc94ca8adfabdbb59a143f4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-12-16,1924-12-27,https://shakespeareandco.princeton.edu/members/solano/,Solita Solano,"Solano, Solita",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/power-medieval-people/,Medieval People,,"Power, Eileen",1924,,Lending Library Card,"Sylvia Beach, Solita Solano Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ae91e41-ccc0-4df6-9150-63a893d8d633/manifest,https://iiif.princeton.edu/loris/figgy_prod/62%2Fcb%2Fdc%2F62cbdc49389748219091dcb128da4386%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-12-16,1924-12-27,https://shakespeareandco.princeton.edu/members/solano/,Solita Solano,"Solano, Solita",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/white-peacock/,The White Peacock,,"Lawrence, D. H.",1911,,Lending Library Card,"Sylvia Beach, Solita Solano Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ae91e41-ccc0-4df6-9150-63a893d8d633/manifest,https://iiif.princeton.edu/loris/figgy_prod/62%2Fcb%2Fdc%2F62cbdc49389748219091dcb128da4386%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-12-16,1925-02-21,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,67,,,https://shakespeareandco.princeton.edu/books/frank-america/,Our America,,"Frank, Waldo",1919,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/37%2F45%2Fc6%2F3745c6824d204f61a49f848a0e9aa7cc%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1924-12-16,1924-12-16,https://shakespeareandco.princeton.edu/members/winner-2/,Miss Winner,"Winner, Miss",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1924-12-16,1925-01-16,https://shakespeareandco.princeton.edu/members/frias/,Mlle Frias,"Frias, Mlle",12.00,,1 month,31,1,,1924-12-16,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1924-12-16,1925-03-16,https://shakespeareandco.princeton.edu/members/murphy-dudley/,Dudley Murphy,"Murphy, Dudley",30.00,110.00,3 months,90,1,,1924-12-16,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Dudley Murphy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/27faf612-885d-4f4f-8cd1-06943be5a377/manifest,;https://iiif.princeton.edu/loris/figgy_prod/80%2F0f%2Fff%2F800fffad1a804dbb8f455b8928285039%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1924-12-17,1925-01-17,https://shakespeareandco.princeton.edu/members/chambaud/,Mlle Chambaud,"Chambaud, Mlle",16.00,40.00,1 month,31,2,,1924-12-17,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1924-12-18,1925-02-02,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,46,,,https://shakespeareandco.princeton.edu/books/james-daisy-miller/,Daisy Miller,,"James, Henry",1879,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/e0%2Fae%2F6b%2Fe0ae6bec54324349b412353650ee6dab%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-12-18,,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/newman-essay-aid-grammar/,An Essay in Aid of a Grammar of Assent,,"Newman, John-Henry",1870,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Reimbursement,1924-12-18,1924-12-18,https://shakespeareandco.princeton.edu/members/salinger/,Mr. Salinger,"Salinger, Mr.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-12-18,1925-02-03,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,47,,,https://shakespeareandco.princeton.edu/books/oppenheim-strange-case-mr/,The Strange Case of Mr. Jocelyn Thew,,"Oppenheim, E. Phillips",1919,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/e0%2Fae%2F6b%2Fe0ae6bec54324349b412353650ee6dab%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-12-19,1924-12-29,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/adams-siege/,Siege,,"Adams, Samuel Hopkins",1924,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a7%2Ff8%2F3b%2Fa7f83bd97bc94ca8adfabdbb59a143f4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1924-12-19,1925-01-19,https://shakespeareandco.princeton.edu/members/wight/,Mr. Wight,"Wight, Mr.",12.00,,1 month,31,1,,1924-09-19,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-12-20,1924-12-23,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/dickens-hard-times/,Hard Times,,"Dickens, Charles",1854,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/a8%2F0c%2F50%2Fa80c50c8d98c4129a46159108a655456%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-12-20,1924-12-29,https://shakespeareandco.princeton.edu/members/marsland/,Harriet Marsland,"Marsland, Harriet",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/moore-sister-teresa/,Sister Teresa,,"Moore, George",1901,,Lending Library Card,"Sylvia Beach, Harriet Marsland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/34833978-1579-4eb9-a196-73e566a04a2c/manifest,https://iiif.princeton.edu/loris/figgy_prod/ae%2F31%2F29%2Fae3129361f424e8a8fe58cb8839b6a40%2Fintermediate_file.jp2/full/full/0/default.jpg
+Crossed out,1924-12-20,,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/conrad-western-eyes/,Under Western Eyes,,"Conrad, Joseph",1911,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/0a%2F3c%2F31%2F0a3c310a56c84f55bcd05a0f421c705b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-12-20,,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/meredith-ordeal-richard-feverel/,The Ordeal of Richard Feverel,,"Meredith, George",1859,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1924-12-20,1924-12-27,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/galsworthy-white-monkey/,The White Monkey (A Modern Comedy),,"Galsworthy, John",1924,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/0a%2F3c%2F31%2F0a3c310a56c84f55bcd05a0f421c705b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-12-20,1925-01-27,https://shakespeareandco.princeton.edu/members/joyce-lucia/,Lucia Joyce,"Joyce, Lucia",,,,,,,,,Returned,38,,,https://shakespeareandco.princeton.edu/books/rohmer-grey-face/,Grey Face,,"Rohmer, Sax",1924,,Lending Library Card,"Lucia Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1924-12-20,1925-01-10,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/anderson-many-marriages/,Many Marriages,,"Anderson, Sherwood",1923,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/0a%2F3c%2F31%2F0a3c310a56c84f55bcd05a0f421c705b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-12-20,1924-12-29,https://shakespeareandco.princeton.edu/members/proix/,Troise Proix,"Proix, Troise",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/henry-rolling-stones/,Rolling Stones,,"Henry, O.",1912,,Lending Library Card,"Sylvia Beach, Troise Proix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b7152822-4421-406d-9472-740daf9b84e0/manifest,https://iiif.princeton.edu/loris/figgy_prod/bf%2F69%2F17%2Fbf69172c77194c8aa1c3b3e2c751d558%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-12-20,1924-12-29,https://shakespeareandco.princeton.edu/members/marsland/,Harriet Marsland,"Marsland, Harriet",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/moore-mummers-wife/,A Mummer's Wife,,"Moore, George",1885,,Lending Library Card,"Sylvia Beach, Harriet Marsland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/34833978-1579-4eb9-a196-73e566a04a2c/manifest,https://iiif.princeton.edu/loris/figgy_prod/ae%2F31%2F29%2Fae3129361f424e8a8fe58cb8839b6a40%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1924-12-22,1925-01-22,https://shakespeareandco.princeton.edu/members/levy-adele/,AdΓ¨le Levy,"Levy, AdΓ¨le",12.00,20.00,1 month,31,1,,1924-12-22,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1924-12-22,1925-01-22,https://shakespeareandco.princeton.edu/members/duncan-mrs/,Mrs. Duncan,"Duncan, Mrs.",12.00,20.00,1 month,31,1,,1924-12-22,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-12-23,1924-12-26,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/sinclair-arnold-waterlow-life/,Arnold Waterlow: A Life,,"Sinclair, May",1924,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/a8%2F0c%2F50%2Fa80c50c8d98c4129a46159108a655456%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-12-23,1925-01-07,https://shakespeareandco.princeton.edu/members/pottecher-therese/,Therèse Pottecher,"Pottecher, Therèse",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/schreiner-story-african-farm/,The Story of an African Farm,,"Schreiner, Olive",1883,,Lending Library Card,"Sylvia Beach, Therèse Pottecher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/69b82696-3801-41ff-b1fd-c792179c5b98/manifest,https://iiif-cloud.princeton.edu/iiif/2/c4%2F4e%2F60%2Fc44e600e2d3c4c79ac86e53dfeb373da%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-12-26,1924-12-31,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/dickens-little-dorrit/,Little Dorrit,4 vols.,"Dickens, Charles",1857,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/a8%2F0c%2F50%2Fa80c50c8d98c4129a46159108a655456%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1924-12-26,1925-01-26,https://shakespeareandco.princeton.edu/members/gruening-martha/,Martha Gruening,"Gruening, Martha",16.00,,1 month,31,2,,1924-12-26,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-12-26,1925-01-20,https://shakespeareandco.princeton.edu/members/service/,Robert W. Service / Mr. R. W. Service,"Service, Robert W.",,,,,,,,,Returned,25,,,https://shakespeareandco.princeton.edu/books/obrien-best-short-stories-1923/,The Best Short Stories 1923,,,1924,,Lending Library Card,"Sylvia Beach, Robert Service Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/102d8619-7160-464b-8967-ca771c0c29f6/manifest,https://iiif.princeton.edu/loris/figgy_prod/15%2Fd8%2Fe9%2F15d8e9e91dca4f9faeaa5ea2b538fc5f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1924-12-26,1925-01-26,https://shakespeareandco.princeton.edu/members/gruening-mary/,Mary Gruening,"Gruening, Mary",16.00,40.00,1 month,31,2,,1924-12-26,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-12-27,1925-01-21,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,25,,,https://shakespeareandco.princeton.edu/books/conrad-western-eyes/,Under Western Eyes,,"Conrad, Joseph",1911,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/0a%2F3c%2F31%2F0a3c310a56c84f55bcd05a0f421c705b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-12-27,1925-01-14,https://shakespeareandco.princeton.edu/members/solano/,Solita Solano,"Solano, Solita",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/anderson-poor-white/,Poor White,,"Anderson, Sherwood",1920,,Lending Library Card,"Sylvia Beach, Solita Solano Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ae91e41-ccc0-4df6-9150-63a893d8d633/manifest,https://iiif.princeton.edu/loris/figgy_prod/62%2Fcb%2Fdc%2F62cbdc49389748219091dcb128da4386%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-12-27,1925-01-14,https://shakespeareandco.princeton.edu/members/solano/,Solita Solano,"Solano, Solita",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/anderson-triumph-egg/,The Triumph of the Egg,,"Anderson, Sherwood",1921,,Lending Library Card,"Sylvia Beach, Solita Solano Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ae91e41-ccc0-4df6-9150-63a893d8d633/manifest,https://iiif.princeton.edu/loris/figgy_prod/62%2Fcb%2Fdc%2F62cbdc49389748219091dcb128da4386%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1924-12-28,1925-01-28,https://shakespeareandco.princeton.edu/members/hetherwick-violet/,Violet Hetherwick,"Hetherwick, Violet",12.00,,1 month,31,1,,1924-12-27,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1924-12-28,1925-03-28,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",20.00,,3 months,90,1,,1925-02-07,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,;https://iiif-cloud.princeton.edu/iiif/2/13%2F65%2Fc3%2F1365c304fdb84e4ba63ac2e5f4f5a3be%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-12-29,1925-01-22,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,24,,,https://shakespeareandco.princeton.edu/books/kaye-smith-joanna-godden/,Joanna Godden,,"Kaye-Smith, Sheila",1921,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/a9%2F51%2F55%2Fa951550798fc4d8e99cdd187d8c34ff0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1924-12-29,1924-12-29,https://shakespeareandco.princeton.edu/members/webster/,Miss Webster,"Webster, Miss",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1924-12-29,1925-01-06,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/sinclair-arnold-waterlow-life/,Arnold Waterlow: A Life,,"Sinclair, May",1924,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a7%2Ff8%2F3b%2Fa7f83bd97bc94ca8adfabdbb59a143f4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-12-29,1925-01-19,https://shakespeareandco.princeton.edu/members/proix/,Troise Proix,"Proix, Troise",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/henry-heart-west/,Heart of the West,,"Henry, O.",1904,,Lending Library Card,"Sylvia Beach, Troise Proix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b7152822-4421-406d-9472-740daf9b84e0/manifest,https://iiif.princeton.edu/loris/figgy_prod/bf%2F69%2F17%2Fbf69172c77194c8aa1c3b3e2c751d558%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-12-29,1925-01-05,https://shakespeareandco.princeton.edu/members/marsland/,Harriet Marsland,"Marsland, Harriet",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/moore-lewis-seymour-women/,Lewis Seymour and Some Women,,"Moore, George",1916,,Lending Library Card,"Sylvia Beach, Harriet Marsland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/34833978-1579-4eb9-a196-73e566a04a2c/manifest,https://iiif.princeton.edu/loris/figgy_prod/ae%2F31%2F29%2Fae3129361f424e8a8fe58cb8839b6a40%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-12-29,1925-01-13,https://shakespeareandco.princeton.edu/members/marsland/,Harriet Marsland,"Marsland, Harriet",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/moore-avowals/,Avowals,,"Moore, George",1919,,Lending Library Card,"Sylvia Beach, Harriet Marsland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/34833978-1579-4eb9-a196-73e566a04a2c/manifest,https://iiif.princeton.edu/loris/figgy_prod/ae%2F31%2F29%2Fae3129361f424e8a8fe58cb8839b6a40%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1924-12-30,1924-12-30,https://shakespeareandco.princeton.edu/members/mcdonald-5/;https://shakespeareandco.princeton.edu/members/mcdonald-mrs/,Mr. McDonald;Mrs. McDonald,"McDonald, Mr.;McDonald, Mrs.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1924-12-30,1925-01-30,https://shakespeareandco.princeton.edu/members/gaussel/,Mr. Gaussel,"Gaussel, Mr.",12.00,20.00,1 month,31,1,,1924-12-30,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1924-12-31,1925-01-31,https://shakespeareandco.princeton.edu/members/martin-maud/,Maud Martin,"Martin, Maud",12.00,,1 month,31,1,,1924-12-31,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Maud Martin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/934c6444-6b2c-4d42-acea-282118c23e5a/manifest,;https://iiif.princeton.edu/loris/figgy_prod/61%2Fbf%2F4d%2F61bf4d7ed29b4aba8e71b515cef04bad%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1924-12-31,1925-01-02,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/bennett-elsie-child-stories/,Elsie and the Child and Other Stories,,"Bennett, Arnold",1924,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/a8%2F0c%2F50%2Fa80c50c8d98c4129a46159108a655456%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1924-12-31,1925-01-09,https://shakespeareandco.princeton.edu/members/martin-maud/,Maud Martin,"Martin, Maud",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/lawrence-kangaroo/,Kangaroo,,"Lawrence, D. H.",1923,,Lending Library Card,"Sylvia Beach, Maud Martin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/934c6444-6b2c-4d42-acea-282118c23e5a/manifest,https://iiif.princeton.edu/loris/figgy_prod/61%2Fbf%2F4d%2F61bf4d7ed29b4aba8e71b515cef04bad%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1925-01-01,1925-04-01,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",40.00,,3 months,90,2,,1925-01-05,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,;https://iiif-cloud.princeton.edu/iiif/2/9f%2F8f%2Fad%2F9f8fad0b96e34650ae551e3c229b2cf7%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1925-01-01,1925-04-01,https://shakespeareandco.princeton.edu/members/stevens-george/,George Stevens,"Stevens, George",30.00,,3 months,90,1,,1925-01-31,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, George Stevens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/2eadc899-f67d-4a18-83cf-a42712ac85c2/manifest,;https://iiif.princeton.edu/loris/figgy_prod/53%2Fc6%2F2c%2F53c62c97666a4d9a809c0cb5db20ec6b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-01-02,1925-01-20,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/santayana-little-essays-drawn/,Little Essays Drawn from the Writings of George Santayana,,"Santayana, George;Smith, Logan Pearsall",1920,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F89%2Fa4%2F5689a4b95685432aa62068f98b57b9df%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1925-01-02,1925-01-02,https://shakespeareandco.princeton.edu/members/arnold-2/,J. O. Arnold,"Arnold, J. O.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1925-01-02,1925-02-02,https://shakespeareandco.princeton.edu/members/grenfield/,Miss Grenfield / Greenfield,"Grenfield, Miss",12.00,,1 month,31,1,,1925-01-02,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-01-02,1925-01-06,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/arlen-piracy/,Piracy,,"Arlen, Michael",1922,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/a8%2F0c%2F50%2Fa80c50c8d98c4129a46159108a655456%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1925-01-02,1925-02-02,https://shakespeareandco.princeton.edu/members/dublansky-j/,J. Dublansky,"Dublansky, J.",12.00,20.00,1 month,31,1,,1925-01-02,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1925-01-02,1925-03-02,https://shakespeareandco.princeton.edu/members/guirlain/,Mme Guislain,"Guislain, Mme",24.00,,2 months,59,1,,1925-01-02,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1925-01-03,1925-02-03,https://shakespeareandco.princeton.edu/members/braxton/,Mrs. Henry Braxton,"Braxton, Mrs. Henry",12.00,20.00,1 month,31,1,,1925-01-03,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1925-01-03,1925-02-03,https://shakespeareandco.princeton.edu/members/chin-mr/,Mr. Chin,"Chin, Mr.",12.00,20.00,1 month,31,1,,1925-01-03,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-01-05,1925-01-10,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/shaw-saint-joan-chronicle/,Saint Joan: A Chronicle Play in Six Scenes and an Epilogue,,"Shaw, George Bernard",1924,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/64%2F86%2F6d%2F64866dd1f8ee4309bc4a3e389fd2938c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1925-01-05,1925-02-05,https://shakespeareandco.princeton.edu/members/hodgkinson/,Ivan Hodgkinson,"Hodgkinson, Ivan",16.00,,1 month,31,2,,1925-01-05,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-01-05,1925-02-02,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,28,,,https://shakespeareandco.princeton.edu/books/walpole-duchess-wrexe-decline/,"The Duchess of Wrexe, Her Decline and Death: A Romantic Commentary",,"Walpole, Hugh",1924,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/9f%2F8f%2Fad%2F9f8fad0b96e34650ae551e3c229b2cf7%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1925-01-05,1926-01-05,https://shakespeareandco.princeton.edu/members/frieseke-sarah/,Sarah Anne Frieseke,"Frieseke, Sarah Anne",110.00,,1 year,365,2,,1925-01-05,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-01-05,1925-01-13,https://shakespeareandco.princeton.edu/members/marsland/,Harriet Marsland,"Marsland, Harriet",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/wescott-apple-eye/,The Apple of the Eye,,"Wescott, Glenway",1924,,Lending Library Card,"Sylvia Beach, Harriet Marsland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/34833978-1579-4eb9-a196-73e566a04a2c/manifest,https://iiif.princeton.edu/loris/figgy_prod/ae%2F31%2F29%2Fae3129361f424e8a8fe58cb8839b6a40%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-01-05,1925-02-02,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,28,,,https://shakespeareandco.princeton.edu/books/sinclair-uncanny-stories/,Uncanny Stories,,"Sinclair, May",1923,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/9f%2F8f%2Fad%2F9f8fad0b96e34650ae551e3c229b2cf7%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1925-01-05,1925-07-05,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",52.00,,6 months,181,1,,1925-01-05,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,;https://iiif.princeton.edu/loris/figgy_prod/64%2F86%2F6d%2F64866dd1f8ee4309bc4a3e389fd2938c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-01-06,1925-01-10,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/samuel-pepys/,Samuel Pepys,,,,Unidentified. By or about Pepys.,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/a8%2F0c%2F50%2Fa80c50c8d98c4129a46159108a655456%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-01-06,1925-01-08,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/barbellion-last-diary/,A Last Diary,,"Barbellion, W. N. P.",1920,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a7%2Ff8%2F3b%2Fa7f83bd97bc94ca8adfabdbb59a143f4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-01-07,,https://shakespeareandco.princeton.edu/members/tery/,Simone TΓ©ry,"TΓ©ry, Simone",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/shaw-saint-joan-chronicle/,Saint Joan: A Chronicle Play in Six Scenes and an Epilogue,,"Shaw, George Bernard",1924,,Lending Library Card,"Sylvia Beach, Mlle Simone Tery Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/73d98e0e-ef4c-420e-ae77-1f51ebf786e0/manifest,https://iiif.princeton.edu/loris/figgy_prod/c2%2F27%2F79%2Fc22779e2a7da4fdba034295a4241dfbb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-01-07,1925-01-17,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/beresford-imperturbable-duchess-stories/,The Imperturbable Duchess and Other Stories,,"Beresford, J. D.",1923,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/78%2Fd0%2Fa8%2F78d0a879423f47daa1e2a1e4e57e548a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-01-07,1925-02-06,https://shakespeareandco.princeton.edu/members/pottecher-therese/,Therèse Pottecher,"Pottecher, Therèse",,,,,,,,,Returned,30,,,https://shakespeareandco.princeton.edu/books/meredith-amazing-marriage/,The Amazing Marriage,,"Meredith, George",1895,,Lending Library Card,"Sylvia Beach, Therèse Pottecher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/69b82696-3801-41ff-b1fd-c792179c5b98/manifest,https://iiif-cloud.princeton.edu/iiif/2/c4%2F4e%2F60%2Fc44e600e2d3c4c79ac86e53dfeb373da%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1925-01-07,1925-04-07,https://shakespeareandco.princeton.edu/members/cody/;https://shakespeareandco.princeton.edu/members/cody-morrill/,Frances Cody;Morrill Cody,"Cody, Frances;Cody, Morrill",40.00,,3 months,90,2,,1924-11-14,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-01-08,1925-02-21,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,44,,,https://shakespeareandco.princeton.edu/books/frank-dark-mother/,The Dark Mother,,"Frank, Waldo",1920,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/37%2F45%2Fc6%2F3745c6824d204f61a49f848a0e9aa7cc%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-01-08,1925-01-14,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/mckenna-soliloquy/,Soliloquy: A Novel,,"McKenna, Stephen",1923,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a7%2Ff8%2F3b%2Fa7f83bd97bc94ca8adfabdbb59a143f4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1925-01-09,1925-04-09,https://shakespeareandco.princeton.edu/members/milliken-3/,Mrs. Milliken,"Milliken, Mrs.",30.00,20.00,3 months,90,1,,1925-01-09,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-01-09,1925-01-17,https://shakespeareandco.princeton.edu/members/linossier-raymonde/,Raymonde Linossier,"Linossier, Raymonde",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/fielding-history-tom-jones/,"The History of Tom Jones, a Foundling",Vol. 1,"Fielding, Henry",1749,,Lending Library Card,"Sylvia Beach, Raymonde Linossier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/53ede5bf-939d-44f5-9ddb-4dd39363bd20/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2F3a%2F9c%2F233a9cb20f834e619e82f1ecdce098fd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1925-01-09,1925-07-09,https://shakespeareandco.princeton.edu/members/linossier-raymonde/,Raymonde Linossier,"Linossier, Raymonde",46.80,,6 months,181,1,AdL,1925-01-09,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Raymonde Linossier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/53ede5bf-939d-44f5-9ddb-4dd39363bd20/manifest,;https://iiif.princeton.edu/loris/figgy_prod/23%2F3a%2F9c%2F233a9cb20f834e619e82f1ecdce098fd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1925-01-09,1925-02-09,https://shakespeareandco.princeton.edu/members/brown-mabel-hurst/,Mabel Hurst Brown,"Brown, Mabel Hurst",12.00,20.00,1 month,31,1,,1925-01-09,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-01-10,1925-02-04,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,25,,,https://shakespeareandco.princeton.edu/books/conrad-victory-island-tale/,Victory: An Island Tale,,"Conrad, Joseph",1915,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/0a%2F3c%2F31%2F0a3c310a56c84f55bcd05a0f421c705b%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1925-01-10,1925-02-10,https://shakespeareandco.princeton.edu/members/gautier-2/,Francis Gautier,"Gautier, Francis",12.00,20.00,1 month,31,1,,1925-01-10,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-01-10,1925-01-21,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/john-donne/,John Donne,,,,Unidentified. By or about John Donne.,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/a8%2F0c%2F50%2Fa80c50c8d98c4129a46159108a655456%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-01-10,1925-01-22,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/woolf-night-day/,Night and Day,,"Woolf, Virginia",1919,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/64%2F86%2F6d%2F64866dd1f8ee4309bc4a3e389fd2938c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1925-01-10,1925-01-10,https://shakespeareandco.princeton.edu/members/chappell-eve/,Eve Chappell,"Chappell, Eve",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1925-01-11,1926-01-11,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",64.00,,1 year,365,2,,1925-01-21,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,;https://iiif-cloud.princeton.edu/iiif/2/0a%2F3c%2F31%2F0a3c310a56c84f55bcd05a0f421c705b%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1925-01-13,1925-02-13,https://shakespeareandco.princeton.edu/members/marsland/,Harriet Marsland,"Marsland, Harriet",16.00,,1 month,31,2,,1925-01-13,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Harriet Marsland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/34833978-1579-4eb9-a196-73e566a04a2c/manifest,;https://iiif.princeton.edu/loris/figgy_prod/ae%2F31%2F29%2Fae3129361f424e8a8fe58cb8839b6a40%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1925-01-13,1925-04-13,https://shakespeareandco.princeton.edu/members/robinson-h/,H. Robinson,"Robinson, H.",30.00,,3 months,90,1,,1924-11-07,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1925-01-13,1925-02-13,https://shakespeareandco.princeton.edu/members/herrenschmitt/,Mlle Herrenschmitt,"Herrenschmitt, Mlle",12.00,,1 month,31,1,,1925-01-13,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-01-13,,https://shakespeareandco.princeton.edu/members/marsland/,Harriet Marsland,"Marsland, Harriet",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/gissing-town-traveller/,The Town Traveller,,"Gissing, George Robert",1898,,Lending Library Card,"Sylvia Beach, Harriet Marsland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/34833978-1579-4eb9-a196-73e566a04a2c/manifest,https://iiif.princeton.edu/loris/figgy_prod/ae%2F31%2F29%2Fae3129361f424e8a8fe58cb8839b6a40%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-01-13,,https://shakespeareandco.princeton.edu/members/marsland/,Harriet Marsland,"Marsland, Harriet",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/gissing-born-exile/,Born in Exile,,"Gissing, George Robert",1892,,Lending Library Card,"Sylvia Beach, Harriet Marsland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/34833978-1579-4eb9-a196-73e566a04a2c/manifest,https://iiif.princeton.edu/loris/figgy_prod/ae%2F31%2F29%2Fae3129361f424e8a8fe58cb8839b6a40%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-01-13,,https://shakespeareandco.princeton.edu/members/marsland/,Harriet Marsland,"Marsland, Harriet",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/gissing-demos-story-english/,Demos: A Story of English Socialism,,"Gissing, George Robert",1886,,Lending Library Card,"Sylvia Beach, Harriet Marsland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/34833978-1579-4eb9-a196-73e566a04a2c/manifest,https://iiif.princeton.edu/loris/figgy_prod/ae%2F31%2F29%2Fae3129361f424e8a8fe58cb8839b6a40%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-01-13,,https://shakespeareandco.princeton.edu/members/marsland/,Harriet Marsland,"Marsland, Harriet",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/gissing-private-papers-henry/,The Private Papers of Henry Ryecroft,,"Gissing, George Robert",1903,,Lending Library Card,"Sylvia Beach, Harriet Marsland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/34833978-1579-4eb9-a196-73e566a04a2c/manifest,https://iiif.princeton.edu/loris/figgy_prod/ae%2F31%2F29%2Fae3129361f424e8a8fe58cb8839b6a40%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-01-13,,https://shakespeareandco.princeton.edu/members/marsland/,Harriet Marsland,"Marsland, Harriet",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/gissing-house-cobwebs/,The House of Cobwebs,,"Gissing, George Robert",1906,,Lending Library Card,"Sylvia Beach, Harriet Marsland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/34833978-1579-4eb9-a196-73e566a04a2c/manifest,https://iiif.princeton.edu/loris/figgy_prod/ae%2F31%2F29%2Fae3129361f424e8a8fe58cb8839b6a40%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-01-14,1925-02-10,https://shakespeareandco.princeton.edu/members/solano/,Solita Solano,"Solano, Solita",,,,,,,,,Returned,27,,,https://shakespeareandco.princeton.edu/books/melville-moby-dick-whale/,"Moby-Dick; Or, the Whale",,"Melville, Herman",1851,,Lending Library Card,"Sylvia Beach, Solita Solano Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ae91e41-ccc0-4df6-9150-63a893d8d633/manifest,https://iiif.princeton.edu/loris/figgy_prod/62%2Fcb%2Fdc%2F62cbdc49389748219091dcb128da4386%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-01-14,1925-01-19,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/mckenna-tomorrow-tomorrow-novel/,Tomorrow and Tomorrow: A Novel,,"McKenna, Stephen",1924,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a7%2Ff8%2F3b%2Fa7f83bd97bc94ca8adfabdbb59a143f4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-01-14,1925-02-10,https://shakespeareandco.princeton.edu/members/solano/,Solita Solano,"Solano, Solita",,,,,,,,,Returned,27,,,https://shakespeareandco.princeton.edu/books/wescott-apple-eye/,The Apple of the Eye,,"Wescott, Glenway",1924,,Lending Library Card,"Sylvia Beach, Solita Solano Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ae91e41-ccc0-4df6-9150-63a893d8d633/manifest,https://iiif.princeton.edu/loris/figgy_prod/62%2Fcb%2Fdc%2F62cbdc49389748219091dcb128da4386%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1925-01-14,1926-01-14,https://shakespeareandco.princeton.edu/members/rieder/,M. Rieder,"Rieder, M.",72.00,,1 year,365,1,AdL,1925-04-04,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Rieder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/559c8919-8881-40ad-b027-67dbf1b23611/manifest,;https://iiif.princeton.edu/loris/figgy_prod/e8%2F10%2F7c%2Fe8107c2c950f411d8ceeb6bb8bdc01c7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1925-01-15,1925-02-15,https://shakespeareandco.princeton.edu/members/murphy-larry/,Larry Murphy,"Murphy, Larry",12.00,,1 month,31,1,,1925-01-15,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1925-01-15,1925-07-15,https://shakespeareandco.princeton.edu/members/harrison-a/,A. Harrison,"Harrison, A.",67.00,,6 months,181,2,,1925-01-15,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1925-01-16,1925-02-16,https://shakespeareandco.princeton.edu/members/frias/,Mlle Frias,"Frias, Mlle",12.00,,1 month,31,1,,1925-01-16,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-01-17,1925-01-24,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/eaton-famous-poison-trials/,Famous Poison Trials,,"Eaton, Harold",1923,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/78%2Fd0%2Fa8%2F78d0a879423f47daa1e2a1e4e57e548a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-01-17,1925-02-02,https://shakespeareandco.princeton.edu/members/linossier-raymonde/,Raymonde Linossier,"Linossier, Raymonde",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/fielding-history-tom-jones/,"The History of Tom Jones, a Foundling",Vol. 2,"Fielding, Henry",1749,,Lending Library Card,"Sylvia Beach, Raymonde Linossier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/53ede5bf-939d-44f5-9ddb-4dd39363bd20/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2F3a%2F9c%2F233a9cb20f834e619e82f1ecdce098fd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1925-01-17,1925-02-17,https://shakespeareandco.princeton.edu/members/gazul-g/,G. Gazul,"Gazul, G.",12.00,,1 month,31,1,,1925-01-17,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-01-17,1925-02-27,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,41,,,https://shakespeareandco.princeton.edu/books/jesperson-language-nature-development/,"Language: Its Nature, Development, and Origin",,"Jesperson, Otto",1922,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/78%2Fd0%2Fa8%2F78d0a879423f47daa1e2a1e4e57e548a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-01-19,1925-02-16,https://shakespeareandco.princeton.edu/members/proix/,Troise Proix,"Proix, Troise",,,,,,,,,Returned,28,,,https://shakespeareandco.princeton.edu/books/oneill-hairy-ape/,The Hairy Ape,,"O'Neill, Eugene",1923,,Lending Library Card,"Sylvia Beach, Troise Proix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b7152822-4421-406d-9472-740daf9b84e0/manifest,https://iiif.princeton.edu/loris/figgy_prod/bf%2F69%2F17%2Fbf69172c77194c8aa1c3b3e2c751d558%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1925-01-19,1925-04-19,https://shakespeareandco.princeton.edu/members/duncan-2/,Miss Duncan,"Duncan, Miss",30.00,20.00,3 months,90,1,,1925-01-19,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-01-19,1925-01-26,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/burney-diary-letters-madame/,The Diary and Letters of Madame D'Arblay,Vol. 1,"Burney, Fanny",1842,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a7%2Ff8%2F3b%2Fa7f83bd97bc94ca8adfabdbb59a143f4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-01-20,1925-02-17,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,28,,,https://shakespeareandco.princeton.edu/books/conrad-lord-jim/,Lord Jim,,"Conrad, Joseph",1900,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F89%2Fa4%2F5689a4b95685432aa62068f98b57b9df%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1925-01-20,1925-02-20,https://shakespeareandco.princeton.edu/members/luciani-georges/,Georges Luciani,"Luciani, Georges",12.00,20.00,1 month,31,1,,1925-01-20,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1925-01-21,1925-04-21,https://shakespeareandco.princeton.edu/members/taylor-l/,L. Taylor,"Taylor, L.",40.00,40.00,3 months,90,2,,1925-01-21,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-01-21,1925-02-04,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/poe-works-edgar-allan/,The Works of Edgar Allan Poe,,"Poe, Edgar Allan",,"Volumes from at least two sets of Poeβs works circulated in the lending library: the 10-volume *The Complete Works of Edgar Allan Poe* (Putnam, 1902) and the 8-volume *The Works of Edgar Allan Poe* (Lippincott, 1906). On April 4, 1924, Mlle Valerio borrowed volume 10 (*Miscellany*) from *The Complete Works,* and on January 21, 1925, volumes 1 and 3 from an unspecified set. M. Rieder borrowed volumes 7 and 8 from an unspecified set. On May 1, 1926, Nathalie Sarraute borrowed *Poeβs Tales.* Anatole Rivoallan borrowed volume 5 (*Poems*) from the *The Works.* Emilienne Gosse borrowed volume 1 from an unspecific set. Natalie Walker borrowed volume 1 (*Tales*) from the *The Works.* Eric Culley borrowed an unspecified volume from an unspecified set. Jeanine (Delpech) Teissier borrowed volumes 2 and 4 (both *Tales*) from *The Works.* On October 18, 1938, Sarraute purchased *Poeβs Tales.* Bianca (Bienenfeld) Lamblin borrowed *Poeβs Poems.*",Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/0a%2F3c%2F31%2F0a3c310a56c84f55bcd05a0f421c705b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-01-21,1925-01-28,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/austen-lady-susan/,Lady Susan,,"Austen, Jane",1925,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/a8%2F0c%2F50%2Fa80c50c8d98c4129a46159108a655456%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1925-01-21,1925-02-21,https://shakespeareandco.princeton.edu/members/manning-g-m/,G. M. Manning,"Manning, G. M.",12.00,20.00,1 month,31,1,,1925-01-21,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Supplement,1925-01-21,1925-03-24,https://shakespeareandco.princeton.edu/members/nutting/,Mr. Nutting,"Nutting, Mr.",10.00,,"2 months, 3 days",62,1,,1925-01-21,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1925-01-22,1925-01-22,https://shakespeareandco.princeton.edu/members/gruening-martha/,Martha Gruening,"Gruening, Martha",,,,,,,,40.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-01-22,1925-02-04,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/moore-vale-hail-farewell/,Vale (Hail and Farewell!),,"Moore, George",1914,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/64%2F86%2F6d%2F64866dd1f8ee4309bc4a3e389fd2938c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-01-22,1925-02-09,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/dreiser-sister-carrie/,Sister Carrie,,"Dreiser, Theodore",1900,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/a9%2F51%2F55%2Fa951550798fc4d8e99cdd187d8c34ff0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1925-01-22,1925-02-22,https://shakespeareandco.princeton.edu/members/hodgkinson/,Ivan Hodgkinson,"Hodgkinson, Ivan",16.00,,1 month,31,2,,1925-01-22,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1925-01-23,1925-02-23,https://shakespeareandco.princeton.edu/members/duncan-mrs/,Mrs. Duncan,"Duncan, Mrs.",12.00,,1 month,31,1,,1925-01-23,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-01-24,1925-02-16,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/fletcher-secret-barbican-stories/,The Secret of the Barbican and Other Stories,,"Fletcher, Joseph Smith",1924,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/78%2Fd0%2Fa8%2F78d0a879423f47daa1e2a1e4e57e548a%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1925-01-24,1925-02-24,https://shakespeareandco.princeton.edu/members/jacobs/,Miss Jacobs,"Jacobs, Miss",12.00,20.00,1 month,31,1,,1925-01-24,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-01-26,1925-02-02,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/huxley-barren-leaves/,Those Barren Leaves,,"Huxley, Aldous",1925,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a7%2Ff8%2F3b%2Fa7f83bd97bc94ca8adfabdbb59a143f4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1925-01-26,1925-02-26,https://shakespeareandco.princeton.edu/members/gruening-martha/,Martha Gruening,"Gruening, Martha",16.00,,1 month,31,2,,1925-01-22,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-01-26,1925-01-29,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/borden-jane-stranger/,JaneβOur Stranger,,"Borden, Mary",1924,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/eb%2F08%2F9d%2Feb089ddbcf314523baaa9fbccb485801%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-01-26,1925-01-28,https://shakespeareandco.princeton.edu/members/rieder/,M. Rieder,"Rieder, M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/douglas-south-wind/,South Wind,,"Douglas, Norman",1917,,Lending Library Card,"Sylvia Beach, Rieder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/559c8919-8881-40ad-b027-67dbf1b23611/manifest,https://iiif.princeton.edu/loris/figgy_prod/e8%2F10%2F7c%2Fe8107c2c950f411d8ceeb6bb8bdc01c7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1925-01-26,1926-01-26,https://shakespeareandco.princeton.edu/members/barney-natalie-clifford/,Natalie Clifford Barney,"Barney, Natalie Clifford",110.00,,1 year,365,2,,1924-10-06,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-01-26,1925-01-29,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/mckenna-tomorrow-tomorrow-novel/,Tomorrow and Tomorrow: A Novel,,"McKenna, Stephen",1924,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/eb%2F08%2F9d%2Feb089ddbcf314523baaa9fbccb485801%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1925-01-27,1925-02-27,https://shakespeareandco.princeton.edu/members/collet-charles/,Charles Collet,"Collet, Charles",12.00,20.00,1 month,31,1,,1925-01-27,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1925-01-27,1925-02-27,https://shakespeareandco.princeton.edu/members/howard-3/,Mrs. Joseph Howard,"Howard, Mrs. Joseph",16.00,,1 month,31,2,,1925-01-27,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1925-01-27,1926-01-27,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",72.00,,1 year,365,1,,1925-03-09,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,;https://iiif-cloud.princeton.edu/iiif/2/78%2Fd0%2Fa8%2F78d0a879423f47daa1e2a1e4e57e548a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-01-27,1925-03-10,https://shakespeareandco.princeton.edu/members/joyce-lucia/,Lucia Joyce,"Joyce, Lucia",,,,,,,,,Returned,42,,,https://shakespeareandco.princeton.edu/books/shaw-john-bulls-island/,John Bull's Other Island,,"Shaw, George Bernard",1907,,Lending Library Card,"Lucia Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Renewal,1925-01-27,1925-02-27,https://shakespeareandco.princeton.edu/members/hetherwick-violet/,Violet Hetherwick,"Hetherwick, Violet",12.00,,1 month,31,1,,1925-01-27,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-01-28,1925-02-06,https://shakespeareandco.princeton.edu/members/rieder/,M. Rieder,"Rieder, M.",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/ashford-young-visiters-mister/,"The Young Visiters, or Mister Salteena's Plan",,"Ashford, Daisy",1919,,Lending Library Card,"Sylvia Beach, Rieder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/559c8919-8881-40ad-b027-67dbf1b23611/manifest,https://iiif.princeton.edu/loris/figgy_prod/e8%2F10%2F7c%2Fe8107c2c950f411d8ceeb6bb8bdc01c7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-01-28,1925-01-30,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/mansfield-something-childish-stories/,Something Childish and Other Stories,,"Mansfield, Katherine",1924,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/a8%2F0c%2F50%2Fa80c50c8d98c4129a46159108a655456%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-01-30,1925-01-31,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/foster-coquette-history-eliza/,"The Coquette; Or, the History of Eliza Wharton",,"Foster, Hannah Webster",1797,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/a8%2F0c%2F50%2Fa80c50c8d98c4129a46159108a655456%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-01-30,1925-02-13,https://shakespeareandco.princeton.edu/members/rooker/,John Kingsley Rooker,"Rooker, John Kingsley",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/de-la-mare-poems-1901-1908/,"Poems, 1901 β 1908",,"De la Mare, Walter",1920,,Lending Library Card,"Sylvia Beach, Rooker Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6d4ca8cb-45db-45d3-b2dc-8f3cfd45514d/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2F0f%2F98%2F500f984254cc42c0b033168b70583f21%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1925-01-30,1926-01-30,https://shakespeareandco.princeton.edu/members/rooker/,John Kingsley Rooker,"Rooker, John Kingsley",110.00,40.00,1 year,365,2,,1925-01-30,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Rooker Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/6d4ca8cb-45db-45d3-b2dc-8f3cfd45514d/manifest,;https://iiif.princeton.edu/loris/figgy_prod/50%2F0f%2F98%2F500f984254cc42c0b033168b70583f21%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-01-30,1925-02-13,https://shakespeareandco.princeton.edu/members/rooker/,John Kingsley Rooker,"Rooker, John Kingsley",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/cunningham-principle-relativity/,The Principle of Relativity,,"Cunningham, Ebenezer",1914,,Lending Library Card,"Sylvia Beach, Rooker Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6d4ca8cb-45db-45d3-b2dc-8f3cfd45514d/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2F0f%2F98%2F500f984254cc42c0b033168b70583f21%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-01-30,1925-02-13,https://shakespeareandco.princeton.edu/members/rooker/,John Kingsley Rooker,"Rooker, John Kingsley",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/wells-year-prophesying/,A Year of Prophesying,,"Wells, H. G.",1924,,Lending Library Card,"Sylvia Beach, Rooker Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6d4ca8cb-45db-45d3-b2dc-8f3cfd45514d/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2F0f%2F98%2F500f984254cc42c0b033168b70583f21%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1925-01-30,1925-01-30,https://shakespeareandco.princeton.edu/members/gaussel/,Mr. Gaussel,"Gaussel, Mr.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-01-30,,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/criterion/,The Criterion,,,,"Renamed *The New Criterion* from January 1926 to January 1927, and *The Monthly Criterion* from May 1927 to March 1928.",Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/a8%2F0c%2F50%2Fa80c50c8d98c4129a46159108a655456%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1925-01-31,1925-02-28,https://shakespeareandco.princeton.edu/members/campbell-3/,Florence Campbell,"Campbell, Florence",12.00,20.00,1 month,28,1,,1925-01-31,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-01-31,1925-02-07,https://shakespeareandco.princeton.edu/members/stevens-george/,George Stevens,"Stevens, George",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/twain-mark-twains-autobiography/,Mark Twain's Autobiography,,"Twain, Mark",1924,,Lending Library Card,"Sylvia Beach, George Stevens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2eadc899-f67d-4a18-83cf-a42712ac85c2/manifest,https://iiif.princeton.edu/loris/figgy_prod/53%2Fc6%2F2c%2F53c62c97666a4d9a809c0cb5db20ec6b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-01-31,1925-02-02,https://shakespeareandco.princeton.edu/members/stevens-george/,George Stevens,"Stevens, George",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/babbitt-criticism-america-function/,Criticism in America: Its Function and Status,,,1924,,Lending Library Card,"Sylvia Beach, George Stevens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2eadc899-f67d-4a18-83cf-a42712ac85c2/manifest,https://iiif.princeton.edu/loris/figgy_prod/53%2Fc6%2F2c%2F53c62c97666a4d9a809c0cb5db20ec6b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-01-31,1925-02-04,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/woolf-night-day/,Night and Day,,"Woolf, Virginia",1919,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/a8%2F0c%2F50%2Fa80c50c8d98c4129a46159108a655456%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1925-01-31,1925-01-31,https://shakespeareandco.princeton.edu/members/stevens-george/,George Stevens,"Stevens, George",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1925-02-02,1925-05-02,https://shakespeareandco.princeton.edu/members/billetdoux-paul/,Paul Billetdoux,"Billetdoux, Paul",40.00,40.00,3 months,89,2,,1925-02-02,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-02-02,1925-03-07,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,33,,,https://shakespeareandco.princeton.edu/books/pater-greek-studies-series/,Greek Studies: A Series of Essays,,"Pater, Walter",1895,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/9f%2F8f%2Fad%2F9f8fad0b96e34650ae551e3c229b2cf7%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-02-02,1925-03-07,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,33,,,https://shakespeareandco.princeton.edu/books/wharton-house-mirth/,The House of Mirth,Vol. 2,"Wharton, Edith",1905,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/9f%2F8f%2Fad%2F9f8fad0b96e34650ae551e3c229b2cf7%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1925-02-02,1925-03-02,https://shakespeareandco.princeton.edu/members/grenfield/,Miss Grenfield / Greenfield,"Grenfield, Miss",12.00,,1 month,28,1,,1925-01-30,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1925-02-02,1925-02-02,https://shakespeareandco.princeton.edu/members/manning-g-m/,G. M. Manning,"Manning, G. M.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-02-02,1925-02-06,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/pater-marius-epicurean/,Marius the Epicurean,,"Pater, Walter",1885,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a7%2Ff8%2F3b%2Fa7f83bd97bc94ca8adfabdbb59a143f4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-02-02,1925-02-07,https://shakespeareandco.princeton.edu/members/linossier-raymonde/,Raymonde Linossier,"Linossier, Raymonde",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/conrad-outcast-islands/,An Outcast of the Islands,,"Conrad, Joseph",1896,,Lending Library Card,"Sylvia Beach, Raymonde Linossier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/53ede5bf-939d-44f5-9ddb-4dd39363bd20/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2F3a%2F9c%2F233a9cb20f834e619e82f1ecdce098fd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Supplement,1925-02-03,1925-05-03,https://shakespeareandco.princeton.edu/members/duncan-2/,Miss Duncan,"Duncan, Miss",10.00,20.00,3 months,89,1,,1925-02-03,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1925-02-03,1925-02-03,https://shakespeareandco.princeton.edu/members/littlefield-walter/,Walter Littlefield / Mr. W. H. Littlefield,"Littlefield, Walter",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-02-04,1925-02-17,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/moore-salve-hail-farewell/,Salve (Hail and Farewell!),,"Moore, George",1912,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/64%2F86%2F6d%2F64866dd1f8ee4309bc4a3e389fd2938c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-02-04,1925-02-07,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/trollope-prime-minister/,The Prime Minister,"Vol. 1, Vol. 2","Trollope, Anthony",1876,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/a8%2F0c%2F50%2Fa80c50c8d98c4129a46159108a655456%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1925-02-04,1925-03-04,https://shakespeareandco.princeton.edu/members/edmonds-james/,James Edmonds,"Edmonds, James",16.00,40.00,1 month,28,2,,1925-02-04,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-02-04,1925-03-04,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,28,,,https://shakespeareandco.princeton.edu/books/moore-mummers-wife/,A Mummer's Wife,,"Moore, George",1885,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/0a%2F3c%2F31%2F0a3c310a56c84f55bcd05a0f421c705b%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1925-02-04,1925-05-04,https://shakespeareandco.princeton.edu/members/bonner-eugene/,Eugene Bonner,"Bonner, Eugene",30.00,,3 months,89,1,,1925-01-20,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-02-04,1925-03-04,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,28,,,https://shakespeareandco.princeton.edu/books/conrad-nostromo-tale-seaboard/,Nostromo: A Tale of the Seaboard,,"Conrad, Joseph",1904,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/0a%2F3c%2F31%2F0a3c310a56c84f55bcd05a0f421c705b%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1925-02-05,1925-08-05,https://shakespeareandco.princeton.edu/members/mcnair-mary/,Mary McNair / Macnair,"McNair, Mary",52.00,20.00,6 months,181,1,,1925-02-05,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1925-02-05,1926-02-05,https://shakespeareandco.princeton.edu/members/flecker/,Mrs. Flecker,"Flecker, Mrs.",81.00,,1 year,365,1,,1925-01-27,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1925-02-05,1925-05-05,https://shakespeareandco.princeton.edu/members/de-la-niece-charles/,Charles de la Niece,"de la Niece, Charles",30.00,,3 months,89,1,,1925-02-04,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-02-06,1925-02-20,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/hodgson-life-james-elroy/,The Life of James Elroy Flecker,,"Hodgson, Geraldine Emma",1925,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a7%2Ff8%2F3b%2Fa7f83bd97bc94ca8adfabdbb59a143f4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-02-06,1925-03-11,https://shakespeareandco.princeton.edu/members/pottecher-therese/,Therèse Pottecher,"Pottecher, Therèse",,,,,,,,,Returned,33,,,https://shakespeareandco.princeton.edu/books/conrad-western-eyes/,Under Western Eyes,,"Conrad, Joseph",1911,,Lending Library Card,"Sylvia Beach, Therèse Pottecher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/69b82696-3801-41ff-b1fd-c792179c5b98/manifest,https://iiif-cloud.princeton.edu/iiif/2/c4%2F4e%2F60%2Fc44e600e2d3c4c79ac86e53dfeb373da%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1925-02-06,1925-03-06,https://shakespeareandco.princeton.edu/members/burlingame/,Mrs. B. S. Burlingame,"Burlingame, Mrs. B. S.",16.00,20.00,1 month,28,2,,1925-02-06,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1925-02-06,1925-02-06,https://shakespeareandco.princeton.edu/members/chromis/,Fred Chromis,"Chromis, Fred",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-02-07,1925-02-14,https://shakespeareandco.princeton.edu/members/stevens-george/,George Stevens,"Stevens, George",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/james-spoils-poynton/,The Spoils of Poynton,,"James, Henry",1897,,Lending Library Card,"Sylvia Beach, George Stevens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2eadc899-f67d-4a18-83cf-a42712ac85c2/manifest,https://iiif.princeton.edu/loris/figgy_prod/53%2Fc6%2F2c%2F53c62c97666a4d9a809c0cb5db20ec6b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-02-07,1925-02-10,https://shakespeareandco.princeton.edu/members/linossier-raymonde/,Raymonde Linossier,"Linossier, Raymonde",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/crane-maggie-girl-streets/,Maggie: A Girl of the Streets,,"Crane, Stephen",1893,,Lending Library Card,"Sylvia Beach, Raymonde Linossier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/53ede5bf-939d-44f5-9ddb-4dd39363bd20/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2F3a%2F9c%2F233a9cb20f834e619e82f1ecdce098fd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-02-07,1925-02-11,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/trollope-prime-minister/,The Prime Minister,"Vol. 3, Vol. 4","Trollope, Anthony",1876,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/a8%2F0c%2F50%2Fa80c50c8d98c4129a46159108a655456%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1925-02-07,1925-03-07,https://shakespeareandco.princeton.edu/members/greene-steve/,Steven Greene,"Greene, Steven",12.00,,1 month,28,1,,1925-02-07,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1925-02-09,1925-05-09,https://shakespeareandco.princeton.edu/members/greene-william/,Mrs. William Greene,"Greene, Mrs. William",40.00,40.00,3 months,89,2,,1925-02-09,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1925-02-09,1925-02-09,https://shakespeareandco.princeton.edu/members/duncan-mrs/,Mrs. Duncan,"Duncan, Mrs.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1925-02-09,1925-03-09,https://shakespeareandco.princeton.edu/members/everard/,Mme Everard,"Everard, Mme",12.00,,1 month,28,1,,1925-02-06,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1925-02-10,1925-03-10,https://shakespeareandco.princeton.edu/members/gautier-2/,Francis Gautier,"Gautier, Francis",12.00,,1 month,28,1,,1925-02-09,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1925-02-10,1925-02-10,https://shakespeareandco.princeton.edu/members/moore-miss/,Miss Moore,"Moore, Miss",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1925-02-10,1925-03-10,https://shakespeareandco.princeton.edu/members/coles-mary-drake/,Mary Drake Coles,"Coles, Mary Drake",12.00,20.00,1 month,28,1,,1925-02-10,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-02-10,1925-03-04,https://shakespeareandco.princeton.edu/members/linossier-raymonde/,Raymonde Linossier,"Linossier, Raymonde",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/tagore-home-world/,The Home and the World,,"Tagore, Rabindranath",1919,,Lending Library Card,"Sylvia Beach, Raymonde Linossier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/53ede5bf-939d-44f5-9ddb-4dd39363bd20/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2F3a%2F9c%2F233a9cb20f834e619e82f1ecdce098fd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1925-02-10,1925-08-10,https://shakespeareandco.princeton.edu/members/hervey-mr/;https://shakespeareandco.princeton.edu/members/hervey-2/,Mr. Hervey;Mrs. Hervey,"Hervey, Mr.;Hervey, Mrs.",67.00,,6 months,181,2,,1925-01-05,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-02-11,1925-02-25,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/dickens-dombey/,Dombey and Son,,"Dickens, Charles",1848,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/7a%2F56%2Fbe%2F7a56be19de22453aa0a8633aae34ed5a%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1925-02-11,1925-03-11,https://shakespeareandco.princeton.edu/members/murphy-catherine/,Catherine Murphy,"Murphy, Catherine",12.00,20.00,1 month,28,1,,1925-02-11,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1925-02-11,1925-03-11,https://shakespeareandco.princeton.edu/members/mitchell-john/,John Mitchell,"Mitchell, John",12.00,20.00,1 month,28,1,,1925-02-11,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-02-12,1925-03-02,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/hardy-jude-obscure/,Jude the Obscure,2 vols.,"Hardy, Thomas",1895,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/a9%2F51%2F55%2Fa951550798fc4d8e99cdd187d8c34ff0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-02-13,1925-03-05,https://shakespeareandco.princeton.edu/members/rooker/,John Kingsley Rooker,"Rooker, John Kingsley",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/harris-undreamd-shores/,Undream'd of Shores,,"Harris, Frank",1924,,Lending Library Card,"Sylvia Beach, Rooker Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6d4ca8cb-45db-45d3-b2dc-8f3cfd45514d/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2F0f%2F98%2F500f984254cc42c0b033168b70583f21%2Fintermediate_file.jp2/full/full/0/default.jpg
+Supplement,1925-02-13,1925-03-09,https://shakespeareandco.princeton.edu/members/everard/,Mme Everard,"Everard, Mme",4.00,,24 days,24,1,,1925-02-13,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1925-02-13,1925-03-13,https://shakespeareandco.princeton.edu/members/crawford-knox/,John Crawford-Knox,"Crawford-Knox, John",12.00,20.00,1 month,28,1,,1925-02-13,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1925-02-13,1925-03-13,https://shakespeareandco.princeton.edu/members/balz-a-g-h/,A. G. H. Balz,"Balz, A. G. H.",12.00,20.00,1 month,28,1,,1925-02-13,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1925-02-13,1925-03-13,https://shakespeareandco.princeton.edu/members/pasquier-du/,Mme du Pasquier,"Pasquier, Mme du",16.00,,1 month,28,2,,1925-02-13,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1925-02-13,1925-05-13,https://shakespeareandco.princeton.edu/members/delaney-r-m/,R. M. Delaney,"Delaney, R. M.",30.00,,3 months,89,1,,1925-02-11,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1925-02-13,1925-05-13,https://shakespeareandco.princeton.edu/members/mainsard-j/,J. Mainsard,"Mainsard, J.",40.00,,3 months,89,2,,1925-02-10,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-02-13,1925-03-05,https://shakespeareandco.princeton.edu/members/rooker/,John Kingsley Rooker,"Rooker, John Kingsley",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/oneill-beyond-horizon/,Beyond the Horizon,,"O'Neill, Eugene",1920,,Lending Library Card,"Sylvia Beach, Rooker Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6d4ca8cb-45db-45d3-b2dc-8f3cfd45514d/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2F0f%2F98%2F500f984254cc42c0b033168b70583f21%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-02-14,1925-02-17,https://shakespeareandco.princeton.edu/members/stevens-george/,George Stevens,"Stevens, George",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/james-tragic-muse/,The Tragic Muse,Vol. 1,"James, Henry",1890,,Lending Library Card,"Sylvia Beach, George Stevens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2eadc899-f67d-4a18-83cf-a42712ac85c2/manifest,https://iiif.princeton.edu/loris/figgy_prod/04%2F6a%2F18%2F046a1813eb854e198f2a60e9109325d2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1925-02-14,1925-05-14,https://shakespeareandco.princeton.edu/members/maspero-clerc/;https://shakespeareandco.princeton.edu/members/maspero-henri/,HΓ©lΓ¨ne Maspero-Clerc;Henri Maspero,"Maspero-Clerc, HΓ©lΓ¨ne;Maspero, Henri",40.00,,3 months,89,2,,1925-02-14,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-02-16,1925-02-26,https://shakespeareandco.princeton.edu/members/wescott/;https://shakespeareandco.princeton.edu/members/wheeler-monroe/,Glenway Wescott;Monroe Wheeler,"Wescott, Glenway;Wheeler, Monroe",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/plutarch-plutarchs-lives/,Plutarch's Lives,2 vols.,Plutarch,,,Lending Library Card,"Sylvia Beach, Monroe Wheeler and Glenway Wescott Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/83555bb0-5e1c-4d71-905c-9800830b426e/manifest,https://iiif.princeton.edu/loris/figgy_prod/05%2Fe9%2Fba%2F05e9ba949bd24db0b1071aa9b0ad28c4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1925-02-16,1925-05-16,https://shakespeareandco.princeton.edu/members/wescott/;https://shakespeareandco.princeton.edu/members/wheeler-monroe/,Glenway Wescott;Monroe Wheeler,"Wescott, Glenway;Wheeler, Monroe",40.00,,3 months,89,2,,1925-02-16,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Monroe Wheeler and Glenway Wescott Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/83555bb0-5e1c-4d71-905c-9800830b426e/manifest,;https://iiif.princeton.edu/loris/figgy_prod/05%2Fe9%2Fba%2F05e9ba949bd24db0b1071aa9b0ad28c4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-02-16,1925-02-27,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/beresford-candidate-truth/,A Candidate for Truth,,"Beresford, J. D.",1912,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/78%2Fd0%2Fa8%2F78d0a879423f47daa1e2a1e4e57e548a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-02-16,1925-03-26,https://shakespeareandco.princeton.edu/members/rieder/,M. Rieder,"Rieder, M.",,,,,,,,,Returned,38,,,https://shakespeareandco.princeton.edu/books/strachey-books-characters-french/,"Books and Characters, French and English",,"Strachey, Giles Lytton",1922,,Lending Library Card,"Sylvia Beach, Rieder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/559c8919-8881-40ad-b027-67dbf1b23611/manifest,https://iiif.princeton.edu/loris/figgy_prod/e8%2F10%2F7c%2Fe8107c2c950f411d8ceeb6bb8bdc01c7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1925-02-16,1925-03-16,https://shakespeareandco.princeton.edu/members/frias/,Mlle Frias,"Frias, Mlle",12.00,,1 month,28,1,,1925-02-10,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-02-16,1925-02-20,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/corkery-threshold-quiet/,The Threshold of Quiet,,"Corkery, Daniel",1917,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a7%2Ff8%2F3b%2Fa7f83bd97bc94ca8adfabdbb59a143f4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-02-16,1925-03-16,https://shakespeareandco.princeton.edu/members/proix/,Troise Proix,"Proix, Troise",,,,,,,,,Returned,28,,,https://shakespeareandco.princeton.edu/books/henry-options/,Options,,"Henry, O.",1909,,Lending Library Card,"Sylvia Beach, Troise Proix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b7152822-4421-406d-9472-740daf9b84e0/manifest,https://iiif.princeton.edu/loris/figgy_prod/bf%2F69%2F17%2Fbf69172c77194c8aa1c3b3e2c751d558%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-02-17,1925-02-21,https://shakespeareandco.princeton.edu/members/stevens-george/,George Stevens,"Stevens, George",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/james-tragic-muse/,The Tragic Muse,Vol. 2,"James, Henry",1890,,Lending Library Card,"Sylvia Beach, George Stevens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2eadc899-f67d-4a18-83cf-a42712ac85c2/manifest,https://iiif.princeton.edu/loris/figgy_prod/04%2F6a%2F18%2F046a1813eb854e198f2a60e9109325d2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-02-17,1925-03-07,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/pater-marius-epicurean/,Marius the Epicurean,,"Pater, Walter",1885,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/64%2F86%2F6d%2F64866dd1f8ee4309bc4a3e389fd2938c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1925-02-17,1925-05-17,https://shakespeareandco.princeton.edu/members/louriau-camille/,Camille Louriau,"Louriau, Camille",20.00,,3 months,89,1,,1925-01-10,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-02-17,1925-03-03,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/galsworthy-plays-fifth-series/,Plays: Fifth Series,,"Galsworthy, John",1922,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F89%2Fa4%2F5689a4b95685432aa62068f98b57b9df%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1925-02-18,1925-03-18,https://shakespeareandco.princeton.edu/members/grover-2/,Miss Grover,"Grover, Miss",12.00,20.00,1 month,28,1,,1925-02-18,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1925-02-18,1925-02-18,https://shakespeareandco.princeton.edu/members/murphy-larry/,Larry Murphy,"Murphy, Larry",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1925-02-19,1925-03-19,https://shakespeareandco.princeton.edu/members/noyes-3/,Mr. Noyes,"Noyes, Mr.",12.00,,1 month,28,1,,1925-02-17,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1925-02-20,1925-03-20,https://shakespeareandco.princeton.edu/members/balfour/,Mrs. Balfour,"Balfour, Mrs.",16.00,40.00,1 month,28,2,,1925-02-20,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1925-02-20,1925-03-20,https://shakespeareandco.princeton.edu/members/luciani-georges/,Georges Luciani,"Luciani, Georges",12.00,,1 month,28,1,,1925-02-20,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-02-20,1925-02-25,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/kennedy-constant-nymph/,The Constant Nymph,,"Kennedy, Margaret",1924,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a7%2Ff8%2F3b%2Fa7f83bd97bc94ca8adfabdbb59a143f4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-02-20,1925-03-17,https://shakespeareandco.princeton.edu/members/sayre/,Jessie Woodrow Wilson Sayre / Mrs. Francis B. Sayre,"Sayre, Jessie Woodrow Wilson",,,,,,,,,Returned,25,,,https://shakespeareandco.princeton.edu/books/sandburg-rootabaga-stories/,Rootabaga Stories,,"Sandburg, Carl",1922,,Lending Library Card,"Sylvia Beach, Mrs Francis B. Sayre Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fd8a3d6b-7da3-44e8-bac0-b1347af40221/manifest,https://iiif.princeton.edu/loris/figgy_prod/e3%2F50%2F1a%2Fe3501a0784a54f02a9317de68b8f3da1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-02-21,1925-02-28,https://shakespeareandco.princeton.edu/members/stevens-george/,George Stevens,"Stevens, George",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/lawrence-ladybird/,The Ladybird,,"Lawrence, D. H.",1923,,Lending Library Card,"Sylvia Beach, George Stevens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2eadc899-f67d-4a18-83cf-a42712ac85c2/manifest,https://iiif.princeton.edu/loris/figgy_prod/04%2F6a%2F18%2F046a1813eb854e198f2a60e9109325d2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-02-21,1925-04-08,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,46,,,https://shakespeareandco.princeton.edu/books/walpole-cathedral-novel/,The Cathedral: A Novel,,"Walpole, Hugh",1922,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/37%2F45%2Fc6%2F3745c6824d204f61a49f848a0e9aa7cc%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-02-21,1925-02-23,https://shakespeareandco.princeton.edu/members/stevens-george/,George Stevens,"Stevens, George",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/james-aspern-papers/,The Aspern Papers,,"James, Henry",1888,,Lending Library Card,"Sylvia Beach, George Stevens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2eadc899-f67d-4a18-83cf-a42712ac85c2/manifest,https://iiif.princeton.edu/loris/figgy_prod/04%2F6a%2F18%2F046a1813eb854e198f2a60e9109325d2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-02-21,1925-04-04,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,42,,,https://shakespeareandco.princeton.edu/books/mansfield-garden-party-stories/,The Garden Party and Other Stories,,"Mansfield, Katherine",1922,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/37%2F45%2Fc6%2F3745c6824d204f61a49f848a0e9aa7cc%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-02-23,1925-03-06,https://shakespeareandco.princeton.edu/members/stevens-george/,George Stevens,"Stevens, George",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/hammerton-george-meredith-life/,George Meredith: His Life and Art in Anecdote and Criticism,,"Hammerton, John Alexander",1909,,Lending Library Card,"Sylvia Beach, George Stevens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2eadc899-f67d-4a18-83cf-a42712ac85c2/manifest,https://iiif.princeton.edu/loris/figgy_prod/04%2F6a%2F18%2F046a1813eb854e198f2a60e9109325d2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1925-02-23,1925-03-23,https://shakespeareandco.princeton.edu/members/hodgkinson/,Ivan Hodgkinson,"Hodgkinson, Ivan",16.00,,1 month,28,2,,1925-02-23,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1925-02-23,1925-02-23,https://shakespeareandco.princeton.edu/members/levy-adele/,AdΓ¨le Levy,"Levy, AdΓ¨le",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-02-25,1925-03-07,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/sitwell-southern-baroque-art/,"Southern Baroque Art: A Study of Painting, Architecture and Music in Italy and Spain of the 17th and 18th Centuries.",,"Sitwell, Sacheverell",1924,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a7%2Ff8%2F3b%2Fa7f83bd97bc94ca8adfabdbb59a143f4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1925-02-25,1925-03-25,https://shakespeareandco.princeton.edu/members/koenig-fidele/,FidΓ¨le Koenig,"Koenig, FidΓ¨le",12.00,,1 month,28,1,,1925-02-25,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-02-25,1925-03-02,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/moore-avowals/,Avowals,,"Moore, George",1919,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/7a%2F56%2Fbe%2F7a56be19de22453aa0a8633aae34ed5a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-02-26,1925-02-28,https://shakespeareandco.princeton.edu/members/wescott/;https://shakespeareandco.princeton.edu/members/wheeler-monroe/,Glenway Wescott;Monroe Wheeler,"Wescott, Glenway;Wheeler, Monroe",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/firbank-odette/,Odette: A Fairy Tale for Weary People,,"Firbank, Ronald",1916,,Lending Library Card,"Sylvia Beach, Monroe Wheeler and Glenway Wescott Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/83555bb0-5e1c-4d71-905c-9800830b426e/manifest,https://iiif.princeton.edu/loris/figgy_prod/05%2Fe9%2Fba%2F05e9ba949bd24db0b1071aa9b0ad28c4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-02-26,1925-02-28,https://shakespeareandco.princeton.edu/members/wescott/;https://shakespeareandco.princeton.edu/members/wheeler-monroe/,Glenway Wescott;Monroe Wheeler,"Wescott, Glenway;Wheeler, Monroe",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/macaulay-history-england-accession/,"The History of England, from the Accession of James II",Vol. 3,"Macaulay, Thomas Babington",1861,,Lending Library Card,"Sylvia Beach, Monroe Wheeler and Glenway Wescott Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/83555bb0-5e1c-4d71-905c-9800830b426e/manifest,https://iiif.princeton.edu/loris/figgy_prod/05%2Fe9%2Fba%2F05e9ba949bd24db0b1071aa9b0ad28c4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1925-02-26,1925-03-26,https://shakespeareandco.princeton.edu/members/gruening-martha/,Martha Gruening,"Gruening, Martha",16.00,,1 month,28,2,,1925-02-27,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-02-27,1925-03-09,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/beresford-invisible-event/,The Invisible Event,,"Beresford, J. D.",1915,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/78%2Fd0%2Fa8%2F78d0a879423f47daa1e2a1e4e57e548a%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1925-02-27,1925-02-27,https://shakespeareandco.princeton.edu/members/burlingame/,Mrs. B. S. Burlingame,"Burlingame, Mrs. B. S.",,,,,,,,40.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1925-02-27,1925-03-27,https://shakespeareandco.princeton.edu/members/wilson-5/,Mr. Wilson,"Wilson, Mr.",16.00,,1 month,28,2,,1925-02-27,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-02-28,1925-03-02,https://shakespeareandco.princeton.edu/members/stevens-george/,George Stevens,"Stevens, George",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/lawrence-studies-classic-american/,Studies in Classic American Literature,,"Lawrence, D. H.",1923,,Lending Library Card,"Sylvia Beach, George Stevens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2eadc899-f67d-4a18-83cf-a42712ac85c2/manifest,https://iiif.princeton.edu/loris/figgy_prod/04%2F6a%2F18%2F046a1813eb854e198f2a60e9109325d2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-02-28,1925-03-17,https://shakespeareandco.princeton.edu/members/tree/,Iris Tree,"Tree, Iris",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/powys-black-bryony/,Black Bryony,,"Powys, Theodore Francis",1923,,Lending Library Card,"Sylvia Beach, Iris Tree Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4ab80448-95d7-4036-a5a0-1aaa7814c0f4/manifest,https://iiif.princeton.edu/loris/figgy_prod/85%2Fff%2F4c%2F85ff4c7d0c4242679c8375fdf95c42ce%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1925-02-28,1925-03-28,https://shakespeareandco.princeton.edu/members/tree/,Iris Tree,"Tree, Iris",12.00,20.00,1 month,28,1,,1925-02-28,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Iris Tree Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/4ab80448-95d7-4036-a5a0-1aaa7814c0f4/manifest,;https://iiif.princeton.edu/loris/figgy_prod/85%2Fff%2F4c%2F85ff4c7d0c4242679c8375fdf95c42ce%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-02-28,1925-03-03,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/bennett-elsie-child-stories/,Elsie and the Child and Other Stories,,"Bennett, Arnold",1924,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/ed%2Ffd%2Faf%2Fedfdafbf10d94f5bbc4a7bea20b03c3f%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-02-28,1925-03-10,https://shakespeareandco.princeton.edu/members/wescott/;https://shakespeareandco.princeton.edu/members/wheeler-monroe/,Glenway Wescott;Monroe Wheeler,"Wescott, Glenway;Wheeler, Monroe",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/ford-marsden-case-romance/,The Marsden Case: A Romance,,"Ford, Ford Madox",1923,,Lending Library Card,"Sylvia Beach, Monroe Wheeler and Glenway Wescott Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/83555bb0-5e1c-4d71-905c-9800830b426e/manifest,https://iiif.princeton.edu/loris/figgy_prod/05%2Fe9%2Fba%2F05e9ba949bd24db0b1071aa9b0ad28c4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1925-02-28,1925-05-28,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",30.00,20.00,3 months,89,1,,1925-02-28,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/ed%2Ffd%2Faf%2Fedfdafbf10d94f5bbc4a7bea20b03c3f%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1925-02-28,1925-08-28,https://shakespeareandco.princeton.edu/members/worthing/,Mrs. Worthing,"Worthing, Mrs.",46.80,,6 months,181,1,,1925-02-13,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-02-28,1925-03-10,https://shakespeareandco.princeton.edu/members/wescott/;https://shakespeareandco.princeton.edu/members/wheeler-monroe/,Glenway Wescott;Monroe Wheeler,"Wescott, Glenway;Wheeler, Monroe",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/thackeray-four-georges-english/,The Four Georges: The English Humourists of the Eighteenth Century,,"Thackeray, William Makepeace",1869,,Lending Library Card,"Sylvia Beach, Monroe Wheeler and Glenway Wescott Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/83555bb0-5e1c-4d71-905c-9800830b426e/manifest,https://iiif.princeton.edu/loris/figgy_prod/05%2Fe9%2Fba%2F05e9ba949bd24db0b1071aa9b0ad28c4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1925-02-28,1925-03-28,https://shakespeareandco.princeton.edu/members/hetherwick-violet/,Violet Hetherwick,"Hetherwick, Violet",12.00,,1 month,28,1,,1925-02-28,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Purchase,1925-03-01,1925-03-01,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/moore-brook-kerith/,The Brook Kerith,,"Moore, George",1916,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/dc%2F94%2Ffd%2Fdc94fda0cd9c4ae195f988f5a500f00f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-03-02,1925-03-03,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/shaw-back-methuselah-metabiological/,Back to Methuselah (A Metabiological Pentateuch),,"Shaw, George Bernard",1921,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/7a%2F56%2Fbe%2F7a56be19de22453aa0a8633aae34ed5a%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1925-03-02,1925-03-02,https://shakespeareandco.princeton.edu/members/guirlain/,Mme Guislain,"Guislain, Mme",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-03-02,1925-04-18,https://shakespeareandco.princeton.edu/members/stevens-george/,George Stevens,"Stevens, George",,,,,,,,,Returned,47,,,https://shakespeareandco.princeton.edu/books/brandes-main-currents-nineteenth/,Main Currents in Nineteenth Century Literature,Vol. 1 The Emigrant Literature,"Brandes, Georg",1905,,Lending Library Card,"Sylvia Beach, George Stevens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2eadc899-f67d-4a18-83cf-a42712ac85c2/manifest,https://iiif.princeton.edu/loris/figgy_prod/04%2F6a%2F18%2F046a1813eb854e198f2a60e9109325d2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1925-03-02,1925-04-02,https://shakespeareandco.princeton.edu/members/harden-e-f/,E. F. Harden,"Harden, E. F.",16.00,40.00,1 month,31,2,,1925-03-02,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-03-03,1925-03-18,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/asquith-autobiography-margot-asquith/,The Autobiography of Margot Asquith,,"Asquith, Margot",1920,"Margot Asquith's autobiography was published as *An Autobiography* in 1920, and then retitled *The Autobiography of Margot Asquith* in 1921. Both versions likely circulated in the library.",Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F89%2Fa4%2F5689a4b95685432aa62068f98b57b9df%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1925-03-03,1925-04-03,https://shakespeareandco.princeton.edu/members/heymann/,Mlle Heymann,"Heymann, Mlle",12.00,20.00,1 month,31,1,,1925-03-03,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1925-03-03,1925-04-03,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",16.00,40.00,1 month,31,2,,1925-03-03,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,;https://iiif-cloud.princeton.edu/iiif/2/5e%2F4f%2Fea%2F5e4fea18fd8042098ec5c062c62f1997%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1925-03-03,1926-03-03,https://shakespeareandco.princeton.edu/members/pottecher-therese/,TherΓ¨se Pottecher,"Pottecher, TherΓ¨se",81.00,,1 year,365,1,AdL,1925-03-11,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, TherΓ¨se Pottecher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/69b82696-3801-41ff-b1fd-c792179c5b98/manifest,;https://iiif-cloud.princeton.edu/iiif/2/c4%2F4e%2F60%2Fc44e600e2d3c4c79ac86e53dfeb373da%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-03-03,1925-03-07,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/lewis-babbitt/,Babbitt,,"Lewis, Sinclair",1922,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/ed%2Ffd%2Faf%2Fedfdafbf10d94f5bbc4a7bea20b03c3f%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-03-03,1925-03-09,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/wylie-jennifer-lorn-sedate/,Jennifer Lorn: A Sedate Extravaganza,,"Wylie, Elinor",1923,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/7a%2F56%2Fbe%2F7a56be19de22453aa0a8633aae34ed5a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-03-03,1925-03-04,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/sterne-life-opinions-tristram/,"The Life and Opinions of Tristram Shandy, Gentleman",,"Sterne, Laurence",1759,"Dorothee Chareau borrowed the first volume of a multivolume edition. For additional borrows of *Tristram Shandy,* see volume 1 of [*The Works of Sterne*](https://shakespeareandco.princeton.edu/books/sterne-works-sterne-life/).",Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2F4f%2Fea%2F5e4fea18fd8042098ec5c062c62f1997%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-03-03,1925-03-04,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/barnes-book/,A Book,,"Barnes, Djuna",1923,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2F4f%2Fea%2F5e4fea18fd8042098ec5c062c62f1997%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-03-04,1925-04-08,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,35,,,https://shakespeareandco.princeton.edu/books/huxley-antic-hay/,Antic Hay,,"Huxley, Aldous",1923,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/0a%2F3c%2F31%2F0a3c310a56c84f55bcd05a0f421c705b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-03-04,1925-03-16,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/cronwright-schreiner-life-olive-schreiner/,The Life of Olive Schreiner,,"Cronwright-Schreiner, S. C.",1924,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2F4f%2Fea%2F5e4fea18fd8042098ec5c062c62f1997%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-03-04,1925-04-04,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,31,,,https://shakespeareandco.princeton.edu/books/conrad-mirror-sea/,The Mirror of the Sea,,"Conrad, Joseph",1906,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/0a%2F3c%2F31%2F0a3c310a56c84f55bcd05a0f421c705b%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1925-03-04,1925-04-04,https://shakespeareandco.princeton.edu/members/schmid-krustina/,Miss Schmid-Krustina,"Schmid-Krustina, Miss",16.00,40.00,1 month,31,2,,1925-03-04,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1925-03-04,1925-04-04,https://shakespeareandco.princeton.edu/members/moengeon/,Mme Moengeon,"Moengeon, Mme",12.00,20.00,1 month,31,1,,1925-03-04,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-03-04,1925-03-16,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/sinclair-uncanny-stories/,Uncanny Stories,,"Sinclair, May",1923,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2F4f%2Fea%2F5e4fea18fd8042098ec5c062c62f1997%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-03-05,1925-03-16,https://shakespeareandco.princeton.edu/members/rooker/,John Kingsley Rooker,"Rooker, John Kingsley",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/oneill-hairy-ape/,The Hairy Ape,,"O'Neill, Eugene",1923,,Lending Library Card,"Sylvia Beach, Rooker Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6d4ca8cb-45db-45d3-b2dc-8f3cfd45514d/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2F0f%2F98%2F500f984254cc42c0b033168b70583f21%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1925-03-05,1925-06-05,https://shakespeareandco.princeton.edu/members/marshall/,Mrs. E. T. Marshall,"Marshall, Mrs. E. T.",30.00,20.00,3 months,92,1,,1925-03-05,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1925-03-05,1925-04-05,https://shakespeareandco.princeton.edu/members/davis-hubert/,Hubert Davis,"Davis, Hubert",12.00,20.00,1 month,31,1,,1925-03-05,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1925-03-05,1925-06-05,https://shakespeareandco.princeton.edu/members/greene-w/,W. Greene,"Greene, W.",30.00,,3 months,92,1,,1925-03-05,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-03-05,1925-03-16,https://shakespeareandco.princeton.edu/members/rooker/,John Kingsley Rooker,"Rooker, John Kingsley",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/moore-esther-waters/,Esther Waters,,"Moore, George",1894,,Lending Library Card,"Sylvia Beach, Rooker Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6d4ca8cb-45db-45d3-b2dc-8f3cfd45514d/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2F0f%2F98%2F500f984254cc42c0b033168b70583f21%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-03-06,1925-03-07,https://shakespeareandco.princeton.edu/members/stevens-george/,George Stevens,"Stevens, George",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/bennett-elsie-child-stories/,Elsie and the Child and Other Stories,,"Bennett, Arnold",1924,,Lending Library Card,"Sylvia Beach, George Stevens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2eadc899-f67d-4a18-83cf-a42712ac85c2/manifest,https://iiif.princeton.edu/loris/figgy_prod/04%2F6a%2F18%2F046a1813eb854e198f2a60e9109325d2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-03-07,1925-03-11,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/swinnerton-casement/,The Casement,,"Swinnerton, Frank",1911,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a7%2Ff8%2F3b%2Fa7f83bd97bc94ca8adfabdbb59a143f4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-03-07,1925-03-28,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/strachey-landmarks-french-literature/,Landmarks in French Literature,,"Strachey, Giles Lytton",1912,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/9f%2F8f%2Fad%2F9f8fad0b96e34650ae551e3c229b2cf7%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-03-07,1925-03-28,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/ossendowski-shadow-gloomy-east/,The Shadow of the Gloomy East,,"Ossendowski, Ferdynand Antoni",1925,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/9f%2F8f%2Fad%2F9f8fad0b96e34650ae551e3c229b2cf7%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-03-07,1925-03-25,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/bennett-elsie-child-stories/,Elsie and the Child and Other Stories,,"Bennett, Arnold",1924,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/13%2F65%2Fc3%2F1365c304fdb84e4ba63ac2e5f4f5a3be%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-03-07,1925-03-25,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/lawrence-sons-lovers/,Sons and Lovers,,"Lawrence, D. H.",1913,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a7%2Ff8%2F3b%2Fa7f83bd97bc94ca8adfabdbb59a143f4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-03-07,1925-03-16,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/pater-plato-platonism/,Plato and Platonism,,"Pater, Walter",1893,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/64%2F86%2F6d%2F64866dd1f8ee4309bc4a3e389fd2938c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-03-07,1925-04-30,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,54,,,https://shakespeareandco.princeton.edu/books/gosse-books-table-2/,More Books on the Table,,"Gosse, Edmund",1923,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a7%2Ff8%2F3b%2Fa7f83bd97bc94ca8adfabdbb59a143f4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-03-07,1925-03-10,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/joyce-dubliners/,Dubliners,,"Joyce, James",1914,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/ed%2Ffd%2Faf%2Fedfdafbf10d94f5bbc4a7bea20b03c3f%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-03-07,1925-04-30,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,54,,,https://shakespeareandco.princeton.edu/books/forster-longest-journey/,The Longest Journey,,"Forster, E. M.",1907,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a7%2Ff8%2F3b%2Fa7f83bd97bc94ca8adfabdbb59a143f4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1925-03-07,1925-06-07,https://shakespeareandco.princeton.edu/members/hext/,Miss Hext,"Hext, Miss",30.00,20.00,3 months,92,1,,1925-03-07,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-03-07,1925-03-14,https://shakespeareandco.princeton.edu/members/stevens-george/,George Stevens,"Stevens, George",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/meredith-ordeal-richard-feverel/,The Ordeal of Richard Feverel,,"Meredith, George",1859,,Lending Library Card,"Sylvia Beach, George Stevens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2eadc899-f67d-4a18-83cf-a42712ac85c2/manifest,https://iiif.princeton.edu/loris/figgy_prod/04%2F6a%2F18%2F046a1813eb854e198f2a60e9109325d2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-03-08,1925-03-23,https://shakespeareandco.princeton.edu/members/linossier-raymonde/,Raymonde Linossier,"Linossier, Raymonde",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/mcalmon-companion-volume/,A Companion Volume,,"McAlmon, Robert",1923,,Lending Library Card,"Sylvia Beach, Raymonde Linossier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/53ede5bf-939d-44f5-9ddb-4dd39363bd20/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2F3a%2F9c%2F233a9cb20f834e619e82f1ecdce098fd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1925-03-09,1925-03-09,https://shakespeareandco.princeton.edu/members/coles-mary-drake/,Mary Drake Coles,"Coles, Mary Drake",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-03-09,1925-03-11,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/machen-shining-pyramid/,The Shining Pyramid,,"Machen, Arthur",1925,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/78%2Fd0%2Fa8%2F78d0a879423f47daa1e2a1e4e57e548a%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1925-03-09,1925-03-09,https://shakespeareandco.princeton.edu/members/balz-a-g-h/,A. G. H. Balz,"Balz, A. G. H.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1925-03-09,1925-03-09,https://shakespeareandco.princeton.edu/members/brown-mabel-hurst/,Mabel Hurst Brown,"Brown, Mabel Hurst",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-03-09,1925-03-16,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/brooke-john-webster-elizabethan/,John Webster and the Elizabethan Drama,,"Brooke, Rupert",1916,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/7a%2F56%2Fbe%2F7a56be19de22453aa0a8633aae34ed5a%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1925-03-09,1925-04-09,https://shakespeareandco.princeton.edu/members/everard/,Mme Everard,"Everard, Mme",16.00,,1 month,31,2,,1925-03-04,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-03-10,1925-03-14,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/anderson-story-tellers-story/,A Story Teller's Story,,"Anderson, Sherwood",1924,"Anatole Rivoallan's lending library card indicates that he borrowed, ""A Story Teller's Story 2 vols."" Anderson's *A Story Teller's Story,* however, was published in 1 volume. Rivoallan likely borrowed George Moore's 2 volume [*A Story Teller's Holiday*](https://shakespeareandco.princeton.edu/books/moore-story-tellers-holiday/) (1918).",Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/ed%2Ffd%2Faf%2Fedfdafbf10d94f5bbc4a7bea20b03c3f%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-03-10,1925-04-17,https://shakespeareandco.princeton.edu/members/wescott/;https://shakespeareandco.princeton.edu/members/wheeler-monroe/,Glenway Wescott;Monroe Wheeler,"Wescott, Glenway;Wheeler, Monroe",,,,,,,,,Returned,38,,,https://shakespeareandco.princeton.edu/books/sile-unclear-unclear/,Sile[unclear] La[unclear]d,,,,Unidentified. Handwriting unclear.,Lending Library Card,"Sylvia Beach, Monroe Wheeler and Glenway Wescott Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/83555bb0-5e1c-4d71-905c-9800830b426e/manifest,https://iiif.princeton.edu/loris/figgy_prod/05%2Fe9%2Fba%2F05e9ba949bd24db0b1071aa9b0ad28c4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Supplement,1925-03-10,1925-06-05,https://shakespeareandco.princeton.edu/members/marshall/,Mrs. E. T. Marshall,"Marshall, Mrs. E. T.",10.00,20.00,"2 months, 26 days",87,2,,1925-03-10,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1925-03-11,1925-04-11,https://shakespeareandco.princeton.edu/members/jones-10/,Mr. Jones,"Jones, Mr.",12.00,20.00,1 month,31,1,,1925-03-11,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-03-11,1925-04-01,https://shakespeareandco.princeton.edu/members/pottecher-therese/,Therèse Pottecher,"Pottecher, Therèse",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/conrad-nostromo-tale-seaboard/,Nostromo: A Tale of the Seaboard,,"Conrad, Joseph",1904,,Lending Library Card,"Sylvia Beach, Therèse Pottecher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/69b82696-3801-41ff-b1fd-c792179c5b98/manifest,https://iiif-cloud.princeton.edu/iiif/2/c4%2F4e%2F60%2Fc44e600e2d3c4c79ac86e53dfeb373da%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1925-03-11,1925-06-11,https://shakespeareandco.princeton.edu/members/proix/,Troise Proix,"Proix, Troise",30.00,,3 months,92,1,,1925-04-06,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Troise Proix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/b7152822-4421-406d-9472-740daf9b84e0/manifest,;https://iiif.princeton.edu/loris/figgy_prod/bf%2F69%2F17%2Fbf69172c77194c8aa1c3b3e2c751d558%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-03-11,1925-03-16,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/fletcher-kang-vase/,The Kang-He Vase,,"Fletcher, Joseph Smith",1923,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/78%2Fd0%2Fa8%2F78d0a879423f47daa1e2a1e4e57e548a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-03-12,1925-04-02,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/garnett-man-zoo/,A Man in the Zoo,,"Garnett, David",1924,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/a9%2F51%2F55%2Fa951550798fc4d8e99cdd187d8c34ff0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1925-03-12,1925-04-12,https://shakespeareandco.princeton.edu/members/munro-alice/,Alice Munro,"Munro, Alice",16.00,40.00,1 month,31,2,,1925-03-12,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1925-03-12,1925-06-12,https://shakespeareandco.princeton.edu/members/bespaloff/,Rachel Bespaloff / Mme Bespaloff / Bespalova,"Bespaloff, Rachel",40.00,,3 months,92,2,,1925-02-02,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-03-14,1925-03-21,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/moore-confessions-young-man/,The Confessions of a Young Man,,"Moore, George",1886,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/ed%2Ffd%2Faf%2Fedfdafbf10d94f5bbc4a7bea20b03c3f%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-03-14,1925-06-04,https://shakespeareandco.princeton.edu/members/stevens-george/,George Stevens,"Stevens, George",,,,,,,,,Returned,82,,,https://shakespeareandco.princeton.edu/books/lawrence-sons-lovers/,Sons and Lovers,,"Lawrence, D. H.",1913,,Lending Library Card,"Sylvia Beach, George Stevens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2eadc899-f67d-4a18-83cf-a42712ac85c2/manifest,https://iiif.princeton.edu/loris/figgy_prod/04%2F6a%2F18%2F046a1813eb854e198f2a60e9109325d2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-03-16,1925-03-24,https://shakespeareandco.princeton.edu/members/rooker/,John Kingsley Rooker,"Rooker, John Kingsley",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/perry-growth-civilization/,The Growth of Civilization,,"Perry, W. J.",1924,,Lending Library Card,"Sylvia Beach, Rooker Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6d4ca8cb-45db-45d3-b2dc-8f3cfd45514d/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2F0f%2F98%2F500f984254cc42c0b033168b70583f21%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-03-16,1925-03-18,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/freud-dream-psychology/,Dream Psychology: Psychoanalysis for Beginners,,"Freud, Sigmund",1920,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/7a%2F56%2Fbe%2F7a56be19de22453aa0a8633aae34ed5a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-03-16,1925-03-26,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/lagerlof-marbacka/,MΓ₯rbacka,,"LagerlΓΆf, Selma",1924,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2F4f%2Fea%2F5e4fea18fd8042098ec5c062c62f1997%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1925-03-16,1926-03-16,https://shakespeareandco.princeton.edu/members/lang-netter-3/,Mme Lang-Netter,"Lang-Netter, Mme",48.00,,1 year,365,,,1924-06-26,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-03-16,1925-03-20,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/gibbs-little-novels-nowadays/,Little Novels of Nowadays,,"Gibbs, Philip",1924,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/78%2Fd0%2Fa8%2F78d0a879423f47daa1e2a1e4e57e548a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-03-16,1925-03-26,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/hodgson-life-james-elroy/,The Life of James Elroy Flecker,,"Hodgson, Geraldine Emma",1925,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2F4f%2Fea%2F5e4fea18fd8042098ec5c062c62f1997%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-03-16,1925-03-27,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/moore-memoirs-dead-life/,Memoirs of My Dead Life,,"Moore, George",1906,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/64%2F86%2F6d%2F64866dd1f8ee4309bc4a3e389fd2938c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-03-16,1925-04-04,https://shakespeareandco.princeton.edu/members/proix/,Troise Proix,"Proix, Troise",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/jerome-three-men-bummel/,Three Men on the Bummel,,"Jerome, Jerome K.",1900,,Lending Library Card,"Sylvia Beach, Troise Proix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b7152822-4421-406d-9472-740daf9b84e0/manifest,https://iiif.princeton.edu/loris/figgy_prod/bf%2F69%2F17%2Fbf69172c77194c8aa1c3b3e2c751d558%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-03-16,1925-03-24,https://shakespeareandco.princeton.edu/members/rooker/,John Kingsley Rooker,"Rooker, John Kingsley",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/huxley-barren-leaves/,Those Barren Leaves,,"Huxley, Aldous",1925,,Lending Library Card,"Sylvia Beach, Rooker Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6d4ca8cb-45db-45d3-b2dc-8f3cfd45514d/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2F0f%2F98%2F500f984254cc42c0b033168b70583f21%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-03-17,,https://shakespeareandco.princeton.edu/members/sayre/,Jessie Woodrow Wilson Sayre / Mrs. Francis B. Sayre,"Sayre, Jessie Woodrow Wilson",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/symonds-shelley/,Shelley,,"Symonds, John Addington",1878,,Lending Library Card,"Sylvia Beach, Mrs Francis B. Sayre Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fd8a3d6b-7da3-44e8-bac0-b1347af40221/manifest,https://iiif.princeton.edu/loris/figgy_prod/e3%2F50%2F1a%2Fe3501a0784a54f02a9317de68b8f3da1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1925-03-18,1925-03-18,https://shakespeareandco.princeton.edu/members/goodridge-mary/,Mary Goodridge,"Goodridge, Mary",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-03-18,1925-04-06,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/mackenzie-sinister-street/,Sinister Street,2 vols.,"Mackenzie, Compton",1914,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F89%2Fa4%2F5689a4b95685432aa62068f98b57b9df%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-03-18,1925-03-28,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/figgis-return-hero/,The Return of the Hero,,"Figgis, Darrell",1923,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/7a%2F56%2Fbe%2F7a56be19de22453aa0a8633aae34ed5a%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1925-03-19,1925-04-19,https://shakespeareandco.princeton.edu/members/noyes-3/,Mr. Noyes,"Noyes, Mr.",12.00,,1 month,31,1,,1925-03-20,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1925-03-19,1925-04-19,https://shakespeareandco.princeton.edu/members/adams-6/,Mr. Adams,"Adams, Mr.",16.00,,1 month,31,2,,1925-03-09,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1925-03-20,1925-04-20,https://shakespeareandco.princeton.edu/members/sweeney-james/,James Sweeney,"Sweeney, James",12.00,20.00,1 month,31,1,,1925-03-20,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, James Sweeney Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/ed299860-4491-41de-994e-1469ff0659ba/manifest,;https://iiif.princeton.edu/loris/figgy_prod/02%2Fed%2Fc6%2F02edc698aafb46cd981da3c2adeae3bf%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-03-20,1925-03-23,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/thayer-dial/,The Dial,,,,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/78%2Fd0%2Fa8%2F78d0a879423f47daa1e2a1e4e57e548a%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1925-03-20,1925-04-20,https://shakespeareandco.princeton.edu/members/balfour/,Mrs. Balfour,"Balfour, Mrs.",12.00,,1 month,31,1,,1925-03-20,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-03-20,1925-03-28,https://shakespeareandco.princeton.edu/members/sweeney-james/,James Sweeney,"Sweeney, James",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/owen-poems/,Poems,,"Owen, Wilfred",1920,,Lending Library Card,"Sylvia Beach, James Sweeney Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ed299860-4491-41de-994e-1469ff0659ba/manifest,https://iiif.princeton.edu/loris/figgy_prod/02%2Fed%2Fc6%2F02edc698aafb46cd981da3c2adeae3bf%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1925-03-21,1925-09-21,https://shakespeareandco.princeton.edu/members/monterau/,Mlle Montereau,"Montereau, Mlle",67.00,40.00,6 months,184,2,,1925-03-21,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-03-21,1925-04-21,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,31,,,https://shakespeareandco.princeton.edu/books/eastman-enjoyment-poetry/,Enjoyment of Poetry,,"Eastman, Max",1921,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/ed%2Ffd%2Faf%2Fedfdafbf10d94f5bbc4a7bea20b03c3f%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-03-23,1925-04-06,https://shakespeareandco.princeton.edu/members/linossier-raymonde/,Raymonde Linossier,"Linossier, Raymonde",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/conrad-set-six/,A Set of Six,,"Conrad, Joseph",1908,,Lending Library Card,"Sylvia Beach, Raymonde Linossier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/53ede5bf-939d-44f5-9ddb-4dd39363bd20/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2F3a%2F9c%2F233a9cb20f834e619e82f1ecdce098fd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-03-23,1925-03-25,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/garnett-lady-fox/,Lady into Fox,,"Garnett, David",1922,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/78%2Fd0%2Fa8%2F78d0a879423f47daa1e2a1e4e57e548a%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1925-03-23,1926-03-23,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",50.00,,1 year,365,,,1925-05-30,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,;https://iiif-cloud.princeton.edu/iiif/2/28%2Ff9%2F7d%2F28f97db617bb43b98744175c11c3170d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-03-24,1925-04-07,https://shakespeareandco.princeton.edu/members/rooker/,John Kingsley Rooker,"Rooker, John Kingsley",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/life-letters-unclear/,Life and Letters of [unclear],,,,"Unidentified. Unclear handwriting. Likely *The Life and Letters of Anton Tchekhov,* translated and edited by S. S. Koteliansky and Philip Tomlinson (1925).",Lending Library Card,"Sylvia Beach, Rooker Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6d4ca8cb-45db-45d3-b2dc-8f3cfd45514d/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2F0f%2F98%2F500f984254cc42c0b033168b70583f21%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-03-24,1925-04-30,https://shakespeareandco.princeton.edu/members/rooker/,John Kingsley Rooker,"Rooker, John Kingsley",,,,,,,,,Returned,37,,,https://shakespeareandco.princeton.edu/books/merezhkovsky-forerunner-romance-leonardo/,The Romance of Leonardo da Vinci: The Forerunner,,"Merezhkovsky, Dmitry",1908,,Lending Library Card,"Sylvia Beach, Rooker Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6d4ca8cb-45db-45d3-b2dc-8f3cfd45514d/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2F0f%2F98%2F500f984254cc42c0b033168b70583f21%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1925-03-25,1925-04-25,https://shakespeareandco.princeton.edu/members/parry/;https://shakespeareandco.princeton.edu/members/parry-3/,M. Parry;Mrs. Parry,"Parry, M.;Parry, Mrs.",16.00,40.00,1 month,31,2,,1925-03-25,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-03-25,1925-04-02,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/bennett-buried-alive/,Buried Alive,,"Bennett, Arnold",1908,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/13%2F65%2Fc3%2F1365c304fdb84e4ba63ac2e5f4f5a3be%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1925-03-25,1925-04-25,https://shakespeareandco.princeton.edu/members/jacobs/,Miss Jacobs,"Jacobs, Miss",12.00,,1 month,31,1,,1925-03-23,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1925-03-26,1925-04-26,https://shakespeareandco.princeton.edu/members/mcphee-colin/,Colin McPhee,"McPhee, Colin",16.00,40.00,1 month,31,2,,1925-03-26,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-03-26,1925-04-04,https://shakespeareandco.princeton.edu/members/rieder/,M. Rieder,"Rieder, M.",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/huxley-antic-hay/,Antic Hay,,"Huxley, Aldous",1923,,Lending Library Card,"Sylvia Beach, Rieder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/559c8919-8881-40ad-b027-67dbf1b23611/manifest,https://iiif.princeton.edu/loris/figgy_prod/e8%2F10%2F7c%2Fe8107c2c950f411d8ceeb6bb8bdc01c7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1925-03-26,1925-03-26,https://shakespeareandco.princeton.edu/members/luciani-georges/,Georges Luciani,"Luciani, Georges",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1925-03-26,1925-04-26,https://shakespeareandco.princeton.edu/members/de-pomereu-madeleine/,Madeleine de Pomereu,"de Pomereu, Madeleine",12.00,20.00,1 month,31,1,,1925-03-26,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-03-26,1925-04-01,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/bramah-eyes-max-carrados/,The Eyes of Max Carrados,,"Bramah, Ernest",1923,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/78%2Fd0%2Fa8%2F78d0a879423f47daa1e2a1e4e57e548a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-03-26,1925-04-28,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,33,,,https://shakespeareandco.princeton.edu/books/wescott-apple-eye/,The Apple of the Eye,,"Wescott, Glenway",1924,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2F4f%2Fea%2F5e4fea18fd8042098ec5c062c62f1997%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-03-26,1925-05-02,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,37,,,https://shakespeareandco.princeton.edu/books/newman-short-storys-mutations/,The Short Story's Mutations from Petronius to Paul Morand,,"Newman, Frances",1924,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2F4f%2Fea%2F5e4fea18fd8042098ec5c062c62f1997%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1925-03-27,1925-04-27,https://shakespeareandco.princeton.edu/members/stuckey/,Miss Stuckey,"Stuckey, Miss",16.00,20.00,1 month,31,2,,1925-03-23,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1925-03-27,1925-04-27,https://shakespeareandco.princeton.edu/members/wilson-5/,Mr. Wilson,"Wilson, Mr.",16.00,,1 month,31,,,1925-03-27,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-03-27,1925-04-07,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/benson-walter-pater/,Walter Pater,,"Benson, Arthur Christopher",1906,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/64%2F86%2F6d%2F64866dd1f8ee4309bc4a3e389fd2938c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-03-28,1925-05-02,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,35,,,https://shakespeareandco.princeton.edu/books/lawrence-sons-lovers/,Sons and Lovers,,"Lawrence, D. H.",1913,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/9f%2F8f%2Fad%2F9f8fad0b96e34650ae551e3c229b2cf7%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-03-28,1925-04-15,https://shakespeareandco.princeton.edu/members/sweeney-james/,James Sweeney,"Sweeney, James",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/de-la-mare-poems-1901-1908/,"Poems, 1901 β 1908",Vol. 1,"De la Mare, Walter",1920,,Lending Library Card,"Sylvia Beach, James Sweeney Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ed299860-4491-41de-994e-1469ff0659ba/manifest,https://iiif.princeton.edu/loris/figgy_prod/02%2Fed%2Fc6%2F02edc698aafb46cd981da3c2adeae3bf%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-03-28,1925-03-30,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/galsworthy-white-monkey/,The White Monkey (A Modern Comedy),,"Galsworthy, John",1924,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/7a%2F56%2Fbe%2F7a56be19de22453aa0a8633aae34ed5a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-03-28,1925-05-02,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,35,,,https://shakespeareandco.princeton.edu/books/murry-discoveries-essays-literary/,Discoveries: Essays in Literary Criticism,,"Murry, John Middleton",1924,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/9f%2F8f%2Fad%2F9f8fad0b96e34650ae551e3c229b2cf7%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1925-03-28,1925-06-28,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",20.00,,3 months,92,1,,1925-04-02,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,;https://iiif-cloud.princeton.edu/iiif/2/13%2F65%2Fc3%2F1365c304fdb84e4ba63ac2e5f4f5a3be%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1925-03-29,1925-04-29,https://shakespeareandco.princeton.edu/members/mellera/,Mlle Mellera,"Mellera, Mlle",12.00,,1 month,31,1,,1925-03-23,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1925-03-30,1925-04-30,https://shakespeareandco.princeton.edu/members/hodgkinson/,Ivan Hodgkinson,"Hodgkinson, Ivan",16.00,,1 month,31,2,,1925-03-30,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-03-30,1925-04-01,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/macaulay-orphan-island/,Orphan Island,,"Macaulay, Rose",1924,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/7a%2F56%2Fbe%2F7a56be19de22453aa0a8633aae34ed5a%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1925-03-31,1925-04-30,https://shakespeareandco.princeton.edu/members/houten-van-anna/;https://shakespeareandco.princeton.edu/members/houten-van-2/,Anna van Houten;Mr. van Houten,"van Houten, Anna;van Houten, Mr.",16.00,40.00,1 month,30,2,,1925-03-31,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-04-01,1925-05-30,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,59,,,https://shakespeareandco.princeton.edu/books/waite-occult-sciences/,The Occult Sciences,,"Waite, A. E.",1891,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/78%2Fd0%2Fa8%2F78d0a879423f47daa1e2a1e4e57e548a%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1925-04-01,1925-07-01,https://shakespeareandco.princeton.edu/members/stevens-george/,George Stevens,"Stevens, George",30.00,,3 months,91,1,,1925-04-08,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, George Stevens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/2eadc899-f67d-4a18-83cf-a42712ac85c2/manifest,;https://iiif.princeton.edu/loris/figgy_prod/04%2F6a%2F18%2F046a1813eb854e198f2a60e9109325d2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1925-04-01,1925-04-01,https://shakespeareandco.princeton.edu/members/heymann/,Mlle Heymann,"Heymann, Mlle",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-04-01,1925-04-04,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/burke-wind-rain-book/,The Wind and the Rain: A Book of Confessions,,"Burke, Thomas",1924,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/7a%2F56%2Fbe%2F7a56be19de22453aa0a8633aae34ed5a%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1925-04-01,1925-07-01,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",40.00,,3 months,91,2,,1925-05-11,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Maspero Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/92dca37a-f412-4b18-90a3-d236d2b3fe20/manifest,;https://iiif-cloud.princeton.edu/iiif/2/9f%2F8f%2Fad%2F9f8fad0b96e34650ae551e3c229b2cf7%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-04-01,1925-04-08,https://shakespeareandco.princeton.edu/members/pottecher-therese/,Therèse Pottecher,"Pottecher, Therèse",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/galsworthy-patrician/,The Patrician,,"Galsworthy, John",1911,,Lending Library Card,"Sylvia Beach, Therèse Pottecher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/69b82696-3801-41ff-b1fd-c792179c5b98/manifest,https://iiif-cloud.princeton.edu/iiif/2/c4%2F4e%2F60%2Fc44e600e2d3c4c79ac86e53dfeb373da%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1925-04-02,1925-05-02,https://shakespeareandco.princeton.edu/members/riess/,Miss Riess,"Riess, Miss",16.00,,1 month,30,2,,1925-03-23,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1925-04-02,1925-07-02,https://shakespeareandco.princeton.edu/members/lanux-pierre-de/,Pierre de Lanux,"de Lanux, Pierre",30.00,,3 months,91,1,,1925-04-02,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Pierre de Lanux Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/e367ba9f-98cf-408d-9281-2c5771c2fa44/manifest,;https://iiif.princeton.edu/loris/figgy_prod/ca%2Fda%2Fe8%2Fcadae8b190cd4f708a8e88505a8a3055%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-04-02,1925-04-08,https://shakespeareandco.princeton.edu/members/lanux-pierre-de/,Pierre de Lanux,"de Lanux, Pierre",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/mcalmon-hasty-bunch/,A Hasty Bunch,,"McAlmon, Robert",1921,,Lending Library Card,"Sylvia Beach, Pierre de Lanux Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e367ba9f-98cf-408d-9281-2c5771c2fa44/manifest,https://iiif.princeton.edu/loris/figgy_prod/ca%2Fda%2Fe8%2Fcadae8b190cd4f708a8e88505a8a3055%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-04-02,1925-04-10,https://shakespeareandco.princeton.edu/members/lanux-pierre-de/,Pierre de Lanux,"de Lanux, Pierre",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/bronte-wuthering-heights/,Wuthering Heights,,"BrontΓ«, Emily",1847,,Lending Library Card,"Sylvia Beach, Pierre de Lanux Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e367ba9f-98cf-408d-9281-2c5771c2fa44/manifest,https://iiif.princeton.edu/loris/figgy_prod/ca%2Fda%2Fe8%2Fcadae8b190cd4f708a8e88505a8a3055%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1925-04-02,1925-05-02,https://shakespeareandco.princeton.edu/members/harden-e-f/,E. F. Harden,"Harden, E. F.",16.00,,1 month,30,2,,1925-04-02,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-04-02,1925-04-07,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/bennett-married-life/,Married Life,,"Bennett, Arnold",1919,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/13%2F65%2Fc3%2F1365c304fdb84e4ba63ac2e5f4f5a3be%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-04-02,1925-04-23,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/chesterton-whats-wrong-world/,What's Wrong with the World,,"Chesterton, G. K.",1910,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/a9%2F51%2F55%2Fa951550798fc4d8e99cdd187d8c34ff0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1925-04-03,1925-04-03,https://shakespeareandco.princeton.edu/members/grenfield/,Miss Grenfield / Greenfield,"Grenfield, Miss",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1925-04-04,1925-04-04,https://shakespeareandco.princeton.edu/members/moengeon/,Mme Moengeon,"Moengeon, Mme",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-04-04,1925-04-22,https://shakespeareandco.princeton.edu/members/proix/,Troise Proix,"Proix, Troise",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/stephens-charwomans-daughter/,The Charwoman's Daughter,,"Stephens, James",1912,,Lending Library Card,"Sylvia Beach, Troise Proix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b7152822-4421-406d-9472-740daf9b84e0/manifest,https://iiif.princeton.edu/loris/figgy_prod/bf%2F69%2F17%2Fbf69172c77194c8aa1c3b3e2c751d558%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-04-04,1925-07-09,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,96,,,https://shakespeareandco.princeton.edu/books/stephens-demi-gods/,The Demi-Gods,,"Stephens, James",1914,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/37%2F45%2Fc6%2F3745c6824d204f61a49f848a0e9aa7cc%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1925-04-04,1926-04-04,https://shakespeareandco.princeton.edu/members/loge/,Mme LogΓ©,"LogΓ©, Mme",80.00,,1 year,365,2,,1925-02-19,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Crossed out,1925-04-04,,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/stephens-ladies/,Here Are Ladies,,"Stephens, James",1913,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/37%2F45%2Fc6%2F3745c6824d204f61a49f848a0e9aa7cc%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-04-04,1925-05-28,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,54,,,https://shakespeareandco.princeton.edu/books/stephens-land-youth/,In the Land of Youth,,"Stephens, James",1924,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/37%2F45%2Fc6%2F3745c6824d204f61a49f848a0e9aa7cc%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1925-04-04,1925-05-04,https://shakespeareandco.princeton.edu/members/buckler/,Helen Buckler,"Buckler, Helen",12.00,20.00,1 month,30,1,,1925-04-04,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1925-04-05,1926-04-05,https://shakespeareandco.princeton.edu/members/le-verrier-2/,M. Le Verrier,"Le Verrier, M.",64.00,,1 year,365,,,1925-03-16,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-04-05,1925-04-25,https://shakespeareandco.princeton.edu/members/rieder/,M. Rieder,"Rieder, M.",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/lawrence-kangaroo/,Kangaroo,,"Lawrence, D. H.",1923,,Lending Library Card,"Sylvia Beach, Rieder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/559c8919-8881-40ad-b027-67dbf1b23611/manifest,https://iiif.princeton.edu/loris/figgy_prod/e8%2F10%2F7c%2Fe8107c2c950f411d8ceeb6bb8bdc01c7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-04-06,1925-04-25,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/walpole-dark-forest/,The Dark Forest,,"Walpole, Hugh",1916,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F89%2Fa4%2F5689a4b95685432aa62068f98b57b9df%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-04-06,1925-04-14,https://shakespeareandco.princeton.edu/members/linossier-raymonde/,Raymonde Linossier,"Linossier, Raymonde",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/garnett-man-zoo/,A Man in the Zoo,,"Garnett, David",1924,,Lending Library Card,"Sylvia Beach, Raymonde Linossier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/53ede5bf-939d-44f5-9ddb-4dd39363bd20/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2F3a%2F9c%2F233a9cb20f834e619e82f1ecdce098fd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-04-07,1925-04-10,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/wright-life-walter-pater/,The Life of Walter Pater,,"Wright, Thomas",1907,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/64%2F86%2F6d%2F64866dd1f8ee4309bc4a3e389fd2938c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-04-07,1925-04-10,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/maniac/,The Maniac,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/13%2F65%2Fc3%2F1365c304fdb84e4ba63ac2e5f4f5a3be%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-04-07,1925-04-30,https://shakespeareandco.princeton.edu/members/rooker/,John Kingsley Rooker,"Rooker, John Kingsley",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/grierson-metaphysical-lyrics-poems/,Metaphysical Lyrics and Poems of the Seventeenth Century: Donne to Butler,,,1921,,Lending Library Card,"Sylvia Beach, Rooker Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6d4ca8cb-45db-45d3-b2dc-8f3cfd45514d/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2F0f%2F98%2F500f984254cc42c0b033168b70583f21%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1925-04-08,1925-05-08,https://shakespeareandco.princeton.edu/members/gerard-yvonne/,Yvonne Gerard,"Gerard, Yvonne",12.00,20.00,1 month,30,1,,1925-04-08,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-04-08,1925-05-01,https://shakespeareandco.princeton.edu/members/pottecher-therese/,Therèse Pottecher,"Pottecher, Therèse",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/conrad-almayers-folly/,Almayer's Folly,,"Conrad, Joseph",1895,,Lending Library Card,"Sylvia Beach, Therèse Pottecher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/69b82696-3801-41ff-b1fd-c792179c5b98/manifest,https://iiif-cloud.princeton.edu/iiif/2/c4%2F4e%2F60%2Fc44e600e2d3c4c79ac86e53dfeb373da%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1925-04-08,1925-07-08,https://shakespeareandco.princeton.edu/members/fosca-francois/,FranΓ§ois Fosca,"Fosca, FranΓ§ois",40.00,,3 months,91,2,,1925-04-07,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-04-08,1925-06-13,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,66,,,https://shakespeareandco.princeton.edu/books/hearn-karma/,Karma,,"Hearn, Lafcadio",1918,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/0a%2F3c%2F31%2F0a3c310a56c84f55bcd05a0f421c705b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-04-08,1925-06-13,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,66,,,https://shakespeareandco.princeton.edu/books/conrad-notes-life-letters/,Notes on Life and Letters,,"Conrad, Joseph",1921,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/0a%2F3c%2F31%2F0a3c310a56c84f55bcd05a0f421c705b%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1925-04-08,1925-04-08,https://shakespeareandco.princeton.edu/members/chapman-s/,S. Chapman,"Chapman, S.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1925-04-08,1925-05-08,https://shakespeareandco.princeton.edu/members/norris-miss/,Miss Norris,"Norris, Miss",16.00,40.00,1 month,30,2,,1925-04-08,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1925-04-09,1925-05-09,https://shakespeareandco.princeton.edu/members/everard/,Mme Everard,"Everard, Mme",16.00,,1 month,30,2,,1925-03-21,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1925-04-09,1925-05-09,https://shakespeareandco.princeton.edu/members/esteve-a/,A. EstΓ¨ve,"EstΓ¨ve, A.",12.00,20.00,1 month,30,1,,1925-04-09,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1925-04-09,1925-04-09,https://shakespeareandco.princeton.edu/members/jones-sidney/,Sidney Jones,"Jones, Sidney",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-04-10,1925-04-25,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/wright-life-walter-pater/,The Life of Walter Pater,,"Wright, Thomas",1907,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/64%2F86%2F6d%2F64866dd1f8ee4309bc4a3e389fd2938c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1925-04-10,1925-05-10,https://shakespeareandco.princeton.edu/members/strachan/,Miss Strachan / Strahan,"Strachan, Miss",12.00,,1 month,30,1,,1925-04-07,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-04-10,1925-04-18,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/bennett-roll-call/,The Roll-Call,,"Bennett, Arnold",1918,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/13%2F65%2Fc3%2F1365c304fdb84e4ba63ac2e5f4f5a3be%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1925-04-10,1925-07-10,https://shakespeareandco.princeton.edu/members/meyer-e-gibbons/,E. Gibbons Meyer,"Meyer, E. Gibbons",40.00,40.00,3 months,91,2,,1925-04-10,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1925-04-11,1925-04-11,https://shakespeareandco.princeton.edu/members/munro-alice/,Alice Munro,"Munro, Alice",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1925-04-11,,https://shakespeareandco.princeton.edu/members/maupin-mlle-de/,Mlle de Maupin,"Maupin, Mlle de",80.00,,,,,,1925-04-11,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1925-04-14,1925-05-14,https://shakespeareandco.princeton.edu/members/gruening-martha/,Martha Gruening,"Gruening, Martha",16.00,,1 month,30,2,,1925-04-14,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1925-04-14,1925-04-14,https://shakespeareandco.princeton.edu/members/gruening-martha/,Martha Gruening,"Gruening, Martha",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1925-04-14,1925-10-14,https://shakespeareandco.princeton.edu/members/mcneill-martha/,Martha McNeill,"McNeill, Martha",67.00,40.00,6 months,183,2,,1925-04-14,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-04-16,1925-05-20,https://shakespeareandco.princeton.edu/members/linossier-raymonde/,Raymonde Linossier,"Linossier, Raymonde",,,,,,,,,Returned,34,,,https://shakespeareandco.princeton.edu/books/stevenson-kidnapped/,Kidnapped,,"Stevenson, Robert Louis",1886,,Lending Library Card,"Sylvia Beach, Raymonde Linossier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/53ede5bf-939d-44f5-9ddb-4dd39363bd20/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2F3a%2F9c%2F233a9cb20f834e619e82f1ecdce098fd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-04-17,1925-04-17,https://shakespeareandco.princeton.edu/members/wescott/;https://shakespeareandco.princeton.edu/members/wheeler-monroe/,Glenway Wescott;Monroe Wheeler,"Wescott, Glenway;Wheeler, Monroe",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/thayer-dial/,The Dial,,,,,Lending Library Card,"Sylvia Beach, Monroe Wheeler and Glenway Wescott Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/83555bb0-5e1c-4d71-905c-9800830b426e/manifest,https://iiif.princeton.edu/loris/figgy_prod/05%2Fe9%2Fba%2F05e9ba949bd24db0b1071aa9b0ad28c4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-04-17,1925-04-27,https://shakespeareandco.princeton.edu/members/wescott/;https://shakespeareandco.princeton.edu/members/wheeler-monroe/,Glenway Wescott;Monroe Wheeler,"Wescott, Glenway;Wheeler, Monroe",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/jung-psychology-unconscious/,The Psychology of the Unconscious,,"Jung, Carl Gustav",1916,,Lending Library Card,"Sylvia Beach, Monroe Wheeler and Glenway Wescott Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/83555bb0-5e1c-4d71-905c-9800830b426e/manifest,https://iiif.princeton.edu/loris/figgy_prod/05%2Fe9%2Fba%2F05e9ba949bd24db0b1071aa9b0ad28c4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1925-04-18,1925-07-18,https://shakespeareandco.princeton.edu/members/cody/;https://shakespeareandco.princeton.edu/members/cody-morrill/,Frances Cody;Morrill Cody,"Cody, Frances;Cody, Morrill",40.00,,3 months,91,2,,1925-04-18,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1925-04-18,1925-05-18,https://shakespeareandco.princeton.edu/members/denby-edwin/,Edwin Denby,"Denby, Edwin",12.00,20.00,1 month,30,1,,1925-04-18,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-04-18,1925-04-22,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/burke-wind-rain-book/,The Wind and the Rain: A Book of Confessions,,"Burke, Thomas",1924,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/13%2F65%2Fc3%2F1365c304fdb84e4ba63ac2e5f4f5a3be%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-04-18,1925-05-23,https://shakespeareandco.princeton.edu/members/stevens-george/,George Stevens,"Stevens, George",,,,,,,,,Returned,35,,,https://shakespeareandco.princeton.edu/books/brandes-main-currents-nineteenth/,Main Currents in Nineteenth Century Literature,Vol. 2 The Romantic School in Germany,"Brandes, Georg",1905,,Lending Library Card,"Sylvia Beach, George Stevens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2eadc899-f67d-4a18-83cf-a42712ac85c2/manifest,https://iiif.princeton.edu/loris/figgy_prod/04%2F6a%2F18%2F046a1813eb854e198f2a60e9109325d2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1925-04-18,1925-04-18,https://shakespeareandco.princeton.edu/members/balfour/,Mrs. Balfour,"Balfour, Mrs.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1925-04-19,1925-05-19,https://shakespeareandco.princeton.edu/members/noyes-3/,Mr. Noyes,"Noyes, Mr.",12.00,,1 month,30,1,,1925-04-15,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1925-04-20,1925-06-01,https://shakespeareandco.princeton.edu/members/randall-2/,Miss Randall,"Randall, Miss",18.00,20.00,6 weeks,42,1,,1925-04-20,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1925-04-20,1925-05-20,https://shakespeareandco.princeton.edu/members/becker/,Ruth Becker,"Becker, Ruth",12.00,20.00,1 month,30,1,,1925-04-20,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-04-21,1925-04-28,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/joyce-exiles/,Exiles,,"Joyce, James",1918,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/ed%2Ffd%2Faf%2Fedfdafbf10d94f5bbc4a7bea20b03c3f%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1925-04-21,1925-07-21,https://shakespeareandco.princeton.edu/members/abbott/,Mrs. Paul Abbott,"Abbott, Mrs. Paul",40.00,40.00,3 months,91,2,,1925-04-21,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-04-22,1925-04-24,https://shakespeareandco.princeton.edu/members/proix/,Troise Proix,"Proix, Troise",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/barrie-admirable-crichton/,The Admirable Crichton,,"Barrie, J. M.",1902,,Lending Library Card,"Sylvia Beach, Troise Proix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b7152822-4421-406d-9472-740daf9b84e0/manifest,https://iiif.princeton.edu/loris/figgy_prod/bf%2F69%2F17%2Fbf69172c77194c8aa1c3b3e2c751d558%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-04-22,1925-04-27,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/borden-jane-stranger/,JaneβOur Stranger,,"Borden, Mary",1924,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/13%2F65%2Fc3%2F1365c304fdb84e4ba63ac2e5f4f5a3be%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-04-23,1925-05-07,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/swinnerton-nocturne/,Nocturne,,"Swinnerton, Frank",1917,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/a9%2F51%2F55%2Fa951550798fc4d8e99cdd187d8c34ff0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1925-04-23,1925-05-23,https://shakespeareandco.princeton.edu/members/gautier-2/,Francis Gautier,"Gautier, Francis",12.00,,1 month,30,1,,1925-04-11,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-04-24,1925-04-30,https://shakespeareandco.princeton.edu/members/schereck/,Mildred Schereck,"Schereck, Mildred",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/van-vechten-blind-bow-boy/,The Blind Bow-Boy,,"Van Vechten, Carl",1923,,Lending Library Card,"Sylvia Beach, Mildred Schereck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3b15ea0c-ed8d-4b41-80f3-33485620b12c/manifest,https://iiif-cloud.princeton.edu/iiif/2/dc%2F16%2F19%2Fdc1619891eeb4afcbfe63ae50b0b13e1%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1925-04-24,1925-05-24,https://shakespeareandco.princeton.edu/members/hill-lewis/,Lewis Hill,"Hill, Lewis",16.00,40.00,1 month,30,2,,1925-04-24,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-04-24,1925-04-28,https://shakespeareandco.princeton.edu/members/proix/,Troise Proix,"Proix, Troise",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/barrie-auld-licht-idylls/,Auld Licht Idylls,,"Barrie, J. M.",1888,,Lending Library Card,"Sylvia Beach, Troise Proix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b7152822-4421-406d-9472-740daf9b84e0/manifest,https://iiif.princeton.edu/loris/figgy_prod/bf%2F69%2F17%2Fbf69172c77194c8aa1c3b3e2c751d558%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1925-04-24,1925-05-08,https://shakespeareandco.princeton.edu/members/davidson/,Douglas Davidson,"Davidson, Douglas",8.00,40.00,2 weeks,14,2,,1925-04-24,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1925-04-24,1925-04-24,https://shakespeareandco.princeton.edu/members/herrick/,Mrs. G. R. Herrick,"Herrick, Mrs. G. R.",,,,,,,,40.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1925-04-24,1925-05-24,https://shakespeareandco.princeton.edu/members/schereck/,Mildred Schereck,"Schereck, Mildred",12.00,20.00,1 month,30,1,,1925-04-24,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Mildred Schereck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/3b15ea0c-ed8d-4b41-80f3-33485620b12c/manifest,;https://iiif-cloud.princeton.edu/iiif/2/dc%2F16%2F19%2Fdc1619891eeb4afcbfe63ae50b0b13e1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-04-25,1925-07-11,https://shakespeareandco.princeton.edu/members/rieder/,M. Rieder,"Rieder, M.",,,,,,,,,Returned,77,,,https://shakespeareandco.princeton.edu/books/boswell-life-samuel-johnson/,Life of Samuel Johnson,Vol. 1,"Boswell, James",1791,,Lending Library Card,"Sylvia Beach, Rieder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/559c8919-8881-40ad-b027-67dbf1b23611/manifest,https://iiif.princeton.edu/loris/figgy_prod/e8%2F10%2F7c%2Fe8107c2c950f411d8ceeb6bb8bdc01c7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-04-25,1925-05-02,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/pater-imaginary-portraits/,Imaginary Portraits,,"Pater, Walter",1896,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/64%2F86%2F6d%2F64866dd1f8ee4309bc4a3e389fd2938c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1925-04-25,1925-04-25,https://shakespeareandco.princeton.edu/members/davidson/,Douglas Davidson,"Davidson, Douglas",,,,,,,,40.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-04-25,1925-05-12,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/mansfield-bliss-short-stories/,Bliss and Other Stories,,"Mansfield, Katherine",1920,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F89%2Fa4%2F5689a4b95685432aa62068f98b57b9df%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1925-04-26,1925-07-26,https://shakespeareandco.princeton.edu/members/robinson-2/,Mr. Robinson,"Robinson, Mr.",30.00,,3 months,91,1,,1925-03-31,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1925-04-27,1925-05-27,https://shakespeareandco.princeton.edu/members/stuckey/,Miss Stuckey,"Stuckey, Miss",16.00,,1 month,30,2,,1925-04-24,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-04-27,1925-05-04,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/bennett-regent-five-towns/,The Regent: A Five Towns Story of Adventure in London,,"Bennett, Arnold",1913,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/13%2F65%2Fc3%2F1365c304fdb84e4ba63ac2e5f4f5a3be%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1925-04-28,1925-04-28,https://shakespeareandco.princeton.edu/members/hetherwick-violet/,Violet Hetherwick,"Hetherwick, Violet",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-04-28,1925-05-05,https://shakespeareandco.princeton.edu/members/proix/,Troise Proix,"Proix, Troise",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/oneill-emperor-jones/,The Emperor Jones,,"O'Neill, Eugene",1921,,Lending Library Card,"Sylvia Beach, Troise Proix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b7152822-4421-406d-9472-740daf9b84e0/manifest,https://iiif.princeton.edu/loris/figgy_prod/bf%2F69%2F17%2Fbf69172c77194c8aa1c3b3e2c751d558%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-04-28,1925-05-04,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/cummings-enormous-room/,The Enormous Room,,"Cummings, E. E.",1922,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/ed%2Ffd%2Faf%2Fedfdafbf10d94f5bbc4a7bea20b03c3f%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1925-04-29,1925-05-29,https://shakespeareandco.princeton.edu/members/hodgkinson/,Ivan Hodgkinson,"Hodgkinson, Ivan",16.00,,1 month,30,2,,1925-04-29,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1925-04-29,1925-05-29,https://shakespeareandco.princeton.edu/members/taylor-l/,L. Taylor,"Taylor, L.",16.00,,1 month,30,2,,1925-04-29,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1925-04-30,1926-04-30,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",90.00,,1 year,365,1,,1925-04-30,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,;https://iiif.princeton.edu/loris/figgy_prod/a7%2Ff8%2F3b%2Fa7f83bd97bc94ca8adfabdbb59a143f4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Crossed out,1925-04-30,,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/young-cold-harbour/,Cold Harbour,,"Young, Francis Brett",1924,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a7%2Ff8%2F3b%2Fa7f83bd97bc94ca8adfabdbb59a143f4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1925-04-30,1925-05-30,https://shakespeareandco.princeton.edu/members/houten-van-anna/;https://shakespeareandco.princeton.edu/members/houten-van-2/,Anna van Houten;Mr. van Houten,"van Houten, Anna;van Houten, Mr.",16.00,,1 month,30,2,,1925-04-29,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1925-04-30,1925-05-30,https://shakespeareandco.princeton.edu/members/boyle/,Joan Boyle,"Boyle, Joan",16.00,20.00,1 month,30,2,,1925-04-30,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1925-04-30,1925-05-30,https://shakespeareandco.princeton.edu/members/rhys/,Mr. Rhys,"Rhys, Mr.",5.00,,1 month,30,1,,1925-04-30,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Rhys Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/0fcf5eb6-f872-481c-a304-e45a0c9fe472/manifest,;https://iiif.princeton.edu/loris/figgy_prod/d9%2F94%2Fe4%2Fd994e47f098b4633a08d651483db361c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-04-30,1925-05-11,https://shakespeareandco.princeton.edu/members/schereck/,Mildred Schereck,"Schereck, Mildred",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/douglas-south-wind/,South Wind,,"Douglas, Norman",1917,,Lending Library Card,"Sylvia Beach, Mildred Schereck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3b15ea0c-ed8d-4b41-80f3-33485620b12c/manifest,https://iiif-cloud.princeton.edu/iiif/2/dc%2F16%2F19%2Fdc1619891eeb4afcbfe63ae50b0b13e1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-04-30,1925-05-08,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/hackett-nice-young-couple/,That Nice Young Couple,,"Hackett, Francis",1925,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a7%2Ff8%2F3b%2Fa7f83bd97bc94ca8adfabdbb59a143f4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1925-04-30,1925-07-30,https://shakespeareandco.princeton.edu/members/milward-j/,J. Milward,"Milward, J.",30.00,,3 months,91,1,,1925-04-30,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-04-30,1925-05-16,https://shakespeareandco.princeton.edu/members/rhys/,Mr. Rhys,"Rhys, Mr.",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/huxley-antic-hay/,Antic Hay,,"Huxley, Aldous",1923,,Lending Library Card,"Sylvia Beach, Rhys Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0fcf5eb6-f872-481c-a304-e45a0c9fe472/manifest,https://iiif.princeton.edu/loris/figgy_prod/d9%2F94%2Fe4%2Fd994e47f098b4633a08d651483db361c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-04-30,1925-05-19,https://shakespeareandco.princeton.edu/members/rooker/,John Kingsley Rooker,"Rooker, John Kingsley",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/john-donne/,John Donne,,,,Unidentified. By or about John Donne.,Lending Library Card,"Sylvia Beach, Rooker Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6d4ca8cb-45db-45d3-b2dc-8f3cfd45514d/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2F0f%2F98%2F500f984254cc42c0b033168b70583f21%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-04-30,1925-06-09,https://shakespeareandco.princeton.edu/members/rooker/,John Kingsley Rooker,"Rooker, John Kingsley",,,,,,,,,Returned,40,,,https://shakespeareandco.princeton.edu/books/butler-note-books-samuel/,The Note-Books of Samuel Butler,,"Butler, Samuel",1907,,Lending Library Card,"Sylvia Beach, Rooker Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6d4ca8cb-45db-45d3-b2dc-8f3cfd45514d/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2F0f%2F98%2F500f984254cc42c0b033168b70583f21%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1925-05-01,1925-06-01,https://shakespeareandco.princeton.edu/members/gatch-harry/,Harry Gatch,"Gatch, Harry",12.00,20.00,1 month,31,1,,1925-05-01,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1925-05-01,1925-05-15,https://shakespeareandco.princeton.edu/members/sterne/,Mrs. Sterne / Mrs. Stearne,"Sterne, Mrs.",6.00,,2 weeks,14,1,,1925-04-27,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-05-01,1925-05-11,https://shakespeareandco.princeton.edu/members/pottecher-therese/,Therèse Pottecher,"Pottecher, Therèse",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/conrad-outcast-islands/,An Outcast of the Islands,,"Conrad, Joseph",1896,,Lending Library Card,"Sylvia Beach, Therèse Pottecher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/69b82696-3801-41ff-b1fd-c792179c5b98/manifest,https://iiif-cloud.princeton.edu/iiif/2/c4%2F4e%2F60%2Fc44e600e2d3c4c79ac86e53dfeb373da%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1925-05-01,1925-05-08,https://shakespeareandco.princeton.edu/members/schonberg/,Mrs. Schonberg,"Schonberg, Mrs.",4.00,,1 week,7,2,,1925-04-30,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1925-05-02,1925-06-02,https://shakespeareandco.princeton.edu/members/harden-e-f/,E. F. Harden,"Harden, E. F.",12.00,,1 month,31,1,,1925-05-02,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1925-05-02,1925-06-02,https://shakespeareandco.princeton.edu/members/riess/,Miss Riess,"Riess, Miss",16.00,,1 month,31,2,,1925-04-29,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-05-02,1925-05-20,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/greenslet-walter-pater/,Walter Pater,,"Greenslet, Ferris",1903,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/64%2F86%2F6d%2F64866dd1f8ee4309bc4a3e389fd2938c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1925-05-03,1925-08-03,https://shakespeareandco.princeton.edu/members/duncan-2/,Miss Duncan,"Duncan, Miss",40.00,,3 months,92,2,,1925-04-16,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-05-04,1925-05-08,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/borden-romantic-woman/,The Romantic Woman,,"Borden, Mary",1916,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/13%2F65%2Fc3%2F1365c304fdb84e4ba63ac2e5f4f5a3be%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1925-05-04,1925-06-04,https://shakespeareandco.princeton.edu/members/ramos/,Mr. Ramos,"Ramos, Mr.",12.00,,1 month,31,1,,1925-05-02,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-05-04,,https://shakespeareandco.princeton.edu/members/lanux-pierre-de/,Pierre de Lanux,"de Lanux, Pierre",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/mcalmon-companion-volume/,A Companion Volume,,"McAlmon, Robert",1923,,Lending Library Card,"Sylvia Beach, Pierre de Lanux Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e367ba9f-98cf-408d-9281-2c5771c2fa44/manifest,https://iiif.princeton.edu/loris/figgy_prod/ca%2Fda%2Fe8%2Fcadae8b190cd4f708a8e88505a8a3055%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1925-05-04,1925-06-04,https://shakespeareandco.princeton.edu/members/brace-ernest/,Mme Ernest Brace / Bryce,"Brace, Mme Ernest",16.00,40.00,1 month,31,2,,1925-05-04,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-05-04,1925-05-16,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/douglas-south-wind/,South Wind,,"Douglas, Norman",1917,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/ed%2Ffd%2Faf%2Fedfdafbf10d94f5bbc4a7bea20b03c3f%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-05-04,,https://shakespeareandco.princeton.edu/members/murphy-dudley/,Dudley Murphy,"Murphy, Dudley",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/merrick-chair-boulevard/,A Chair on the Boulevard,,"Merrick, Leonard",1917,,Lending Library Card,"Sylvia Beach, Dudley Murphy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/27faf612-885d-4f4f-8cd1-06943be5a377/manifest,https://iiif.princeton.edu/loris/figgy_prod/80%2F0f%2Fff%2F800fffad1a804dbb8f455b8928285039%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-05-05,1925-05-14,https://shakespeareandco.princeton.edu/members/proix/,Troise Proix,"Proix, Troise",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/hardy-tess-durbervilles/,Tess of the d'Urbervilles,,"Hardy, Thomas",1891,,Lending Library Card,"Sylvia Beach, Troise Proix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b7152822-4421-406d-9472-740daf9b84e0/manifest,https://iiif.princeton.edu/loris/figgy_prod/bf%2F69%2F17%2Fbf69172c77194c8aa1c3b3e2c751d558%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1925-05-05,1925-06-05,https://shakespeareandco.princeton.edu/members/kennedy-edmond/,Edmond Kennedy,"Kennedy, Edmond",,,1 month,31,,,1925-05-05,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-05-06,1925-06-06,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,31,,,https://shakespeareandco.princeton.edu/books/love/,Love,,,,"Unidentified. Gilbert Cannan's *Love* (1914), Elizabeth Von Arnim's *Love* (1925), or William Lyon Phelps's *Love* (1928), etc.",Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2F4f%2Fea%2F5e4fea18fd8042098ec5c062c62f1997%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-05-06,1925-06-06,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,31,,,https://shakespeareandco.princeton.edu/books/ibsen-hedda-gabler/,Hedda Gabler,,"Ibsen, Henrik",1891,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2F4f%2Fea%2F5e4fea18fd8042098ec5c062c62f1997%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1925-05-06,1925-06-06,https://shakespeareandco.princeton.edu/members/de-la-niece-charles/,Charles de la Niece,"de la Niece, Charles",12.00,,1 month,31,1,,1925-05-06,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1925-05-07,1925-06-07,https://shakespeareandco.princeton.edu/members/evrat-renee/,RenΓ©e Evrat,"Evrat, RenΓ©e",12.00,20.00,1 month,31,1,,1925-05-07,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1925-05-07,1925-05-07,https://shakespeareandco.princeton.edu/members/norris-miss/,Miss Norris,"Norris, Miss",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-05-07,1925-05-28,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/shaw-three-plays-puritans/,Three Plays for Puritans,,"Shaw, George Bernard",1901,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/a9%2F51%2F55%2Fa951550798fc4d8e99cdd187d8c34ff0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1925-05-07,1925-05-07,https://shakespeareandco.princeton.edu/members/schonberg/,Mrs. Schonberg,"Schonberg, Mrs.",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-05-08,1925-05-15,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/bennett-man-north/,A Man from the North,,"Bennett, Arnold",1898,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/13%2F65%2Fc3%2F1365c304fdb84e4ba63ac2e5f4f5a3be%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-05-08,1925-06-04,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,27,,,https://shakespeareandco.princeton.edu/books/bennett-glimpse-adventure-soul/,Glimpse: An Adventure of the Soul,,"Bennett, Arnold",1909,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/13%2F65%2Fc3%2F1365c304fdb84e4ba63ac2e5f4f5a3be%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-05-08,1925-05-11,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/maugham-painted-veil/,The Painted Veil,,"Maugham, W. Somerset",1925,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a7%2Ff8%2F3b%2Fa7f83bd97bc94ca8adfabdbb59a143f4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1925-05-09,1925-08-09,https://shakespeareandco.princeton.edu/members/adams-7/,Joan Adams,"Adams, Joan",30.00,20.00,3 months,92,1,,1925-05-09,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1925-05-09,1925-06-09,https://shakespeareandco.princeton.edu/members/cramer-yvonne/,Yvonne Cramer,"Cramer, Yvonne",16.00,40.00,1 month,31,2,,1925-05-09,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1925-05-09,1925-06-09,https://shakespeareandco.princeton.edu/members/halperin-z/,Z. Halperin,"Halperin, Z.",16.00,40.00,1 month,31,2,,1925-05-09,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-05-11,1925-06-03,https://shakespeareandco.princeton.edu/members/pottecher-therese/,Therèse Pottecher,"Pottecher, Therèse",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/conrad-arrow-gold/,The Arrow of Gold,,"Conrad, Joseph",1919,,Lending Library Card,"Sylvia Beach, Therèse Pottecher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/69b82696-3801-41ff-b1fd-c792179c5b98/manifest,https://iiif-cloud.princeton.edu/iiif/2/c4%2F4e%2F60%2Fc44e600e2d3c4c79ac86e53dfeb373da%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-05-11,1925-05-30,https://shakespeareandco.princeton.edu/members/scudder-raymond/,Raymond Scudder,"Scudder, Raymond",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/conrad-almayers-folly/,Almayer's Folly,,"Conrad, Joseph",1895,,Lending Library Card,"Sylvia Beach, Raymond Scudder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/52604ca7-daab-4bdb-8efe-e63a7aa7e59f/manifest,https://iiif.princeton.edu/loris/figgy_prod/77%2F69%2F06%2F7769062252464e659cac87c633520663%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1925-05-11,1925-08-11,https://shakespeareandco.princeton.edu/members/scudder-raymond/,Raymond Scudder,"Scudder, Raymond",30.00,20.00,3 months,92,1,,1925-05-11,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Raymond Scudder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/52604ca7-daab-4bdb-8efe-e63a7aa7e59f/manifest,;https://iiif.princeton.edu/loris/figgy_prod/77%2F69%2F06%2F7769062252464e659cac87c633520663%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1925-05-11,1926-05-11,https://shakespeareandco.princeton.edu/members/lang-netter-3/,Mme Lang-Netter,"Lang-Netter, Mme",72.00,,1 year,365,1,AdL,1925-05-11,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-05-11,1925-05-13,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/richardson-trap-pilgrimage-8/,The Trap (Pilgrimage 8),,"Richardson, Dorothy M.",1925,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a7%2Ff8%2F3b%2Fa7f83bd97bc94ca8adfabdbb59a143f4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1925-05-11,1925-06-11,https://shakespeareandco.princeton.edu/members/pulsford-3/,Mr. Pulsford,"Pulsford, Mr.",12.00,,1 month,31,1,,1925-05-11,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-05-11,1925-05-19,https://shakespeareandco.princeton.edu/members/schereck/,Mildred Schereck,"Schereck, Mildred",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/maugham-human-bondage/,Of Human Bondage,,"Maugham, W. Somerset",1915,,Lending Library Card,"Sylvia Beach, Mildred Schereck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3b15ea0c-ed8d-4b41-80f3-33485620b12c/manifest,https://iiif-cloud.princeton.edu/iiif/2/dc%2F16%2F19%2Fdc1619891eeb4afcbfe63ae50b0b13e1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-05-11,1925-05-26,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/sinclair-mary-olivier-life/,Mary Olivier: A Life,,"Sinclair, May",1919,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/9f%2F8f%2Fad%2F9f8fad0b96e34650ae551e3c229b2cf7%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-05-11,1925-05-26,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/macaulay-dangerous-ages/,Dangerous Ages,,"Macaulay, Rose",1921,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/9f%2F8f%2Fad%2F9f8fad0b96e34650ae551e3c229b2cf7%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1925-05-12,1925-06-12,https://shakespeareandco.princeton.edu/members/baldwin-washburn/,Washburn Baldwin,"Baldwin, Washburn",12.00,20.00,1 month,31,1,,1925-05-12,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1925-05-12,1925-06-12,https://shakespeareandco.princeton.edu/members/bates-ernest/,Ernest Bates,"Bates, Ernest",12.00,20.00,1 month,31,1,,1925-05-12,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-05-12,1925-05-19,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/macaulay-views-vagabonds/,Views and Vagabonds,,"Macaulay, Rose",1912,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F89%2Fa4%2F5689a4b95685432aa62068f98b57b9df%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-05-13,1925-06-03,https://shakespeareandco.princeton.edu/members/linossier-raymonde/,Raymonde Linossier,"Linossier, Raymonde",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/carroll-hunting-snark/,The Hunting of the Snark,,"Carroll, Lewis",1876,,Lending Library Card,"Sylvia Beach, Raymonde Linossier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/53ede5bf-939d-44f5-9ddb-4dd39363bd20/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2F3a%2F9c%2F233a9cb20f834e619e82f1ecdce098fd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-05-13,1925-05-20,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/lawrence-st-mawr/,St. Mawr,,"Lawrence, D. H.",1925,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a7%2Ff8%2F3b%2Fa7f83bd97bc94ca8adfabdbb59a143f4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1925-05-14,1925-06-25,https://shakespeareandco.princeton.edu/members/spackman-w-m/,W. M. Spackman,"Spackman, W. M. (William Mode)",24.00,,6 weeks,42,2,,1925-05-14,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1925-05-14,1925-06-14,https://shakespeareandco.princeton.edu/members/lloyd-joella/,Joella Lloyd,"Lloyd, Joella",16.00,,1 month,31,2,,1925-04-23,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1925-05-14,1925-08-14,https://shakespeareandco.princeton.edu/members/murphy-dudley/,Dudley Murphy,"Murphy, Dudley",40.00,,3 months,92,2,,1925-05-14,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Dudley Murphy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/27faf612-885d-4f4f-8cd1-06943be5a377/manifest,;https://iiif.princeton.edu/loris/figgy_prod/80%2F0f%2Fff%2F800fffad1a804dbb8f455b8928285039%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-05-14,1925-06-13,https://shakespeareandco.princeton.edu/members/proix/,Troise Proix,"Proix, Troise",,,,,,,,,Returned,30,,,https://shakespeareandco.princeton.edu/books/hardy-jude-obscure/,Jude the Obscure,2 vols.,"Hardy, Thomas",1895,,Lending Library Card,"Sylvia Beach, Troise Proix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b7152822-4421-406d-9472-740daf9b84e0/manifest,https://iiif.princeton.edu/loris/figgy_prod/bf%2F69%2F17%2Fbf69172c77194c8aa1c3b3e2c751d558%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-05-14,1925-06-06,https://shakespeareandco.princeton.edu/members/murphy-dudley/,Dudley Murphy,"Murphy, Dudley",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/carter-new-theatre-cinema/,The New Theatre and Cinema of the Soviet Russia,,"Carter, Huntly",1924,,Lending Library Card,"Sylvia Beach, Dudley Murphy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/27faf612-885d-4f4f-8cd1-06943be5a377/manifest,https://iiif.princeton.edu/loris/figgy_prod/80%2F0f%2Fff%2F800fffad1a804dbb8f455b8928285039%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1925-05-15,1925-05-15,https://shakespeareandco.princeton.edu/members/delaney-r-m/,R. M. Delaney,"Delaney, R. M.",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1925-05-15,1925-06-15,https://shakespeareandco.princeton.edu/members/logie-grace/,Grace Logie,"Logie, Grace",12.00,20.00,1 month,31,1,,1925-05-15,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-05-15,1925-05-18,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/beresford-imperturbable-duchess-stories/,The Imperturbable Duchess and Other Stories,,"Beresford, J. D.",1923,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/07%2Fa3%2F4c%2F07a34cab31e341f5922a6a2e32fa1e5a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-05-15,1925-06-09,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,25,,,https://shakespeareandco.princeton.edu/books/sinclair-anne-severn-fieldings/,Anne Severn and the Fieldings,,"Sinclair, May",1922,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/07%2Fa3%2F4c%2F07a34cab31e341f5922a6a2e32fa1e5a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-05-16,1925-06-11,https://shakespeareandco.princeton.edu/members/rhys/,Mr. Rhys,"Rhys, Mr.",,,,,,,,,Returned,26,,,https://shakespeareandco.princeton.edu/books/huxley-barren-leaves/,Those Barren Leaves,,"Huxley, Aldous",1925,,Lending Library Card,"Sylvia Beach, Rhys Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0fcf5eb6-f872-481c-a304-e45a0c9fe472/manifest,https://iiif.princeton.edu/loris/figgy_prod/d9%2F94%2Fe4%2Fd994e47f098b4633a08d651483db361c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-05-16,1925-05-19,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/ludovici-lysistrata-woman-s/,"Lysistrata, or Womanβs Future and Future Woman",,"Ludovici, Anthony M.",1925,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1925-05-16,1925-05-19,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/haldane-callinicus-defence-chemical/,Callinicus: A Defence of Chemical Warfare,,"Haldane, J. B. S.",1925,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1925-05-16,1925-05-18,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/fournier-dalbe-quo-vadimus-glimpses/,Quo Vadimus?: Some Glimpses of the Future,,"Fournier d'Albe, E. E.",1925,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1925-05-16,1925-05-19,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/schiller-tantalus-future-man/,"Tantalus, or The Future of Man",,"Schiller, F. C. S.",1924,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1925-05-16,1925-05-19,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/low-wireless-possibilities/,Wireless Possibilities,,"Low, A. M.",1924,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1925-05-16,1925-06-11,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,26,,,https://shakespeareandco.princeton.edu/books/butler-way-flesh/,The Way of All Flesh,,"Butler, Samuel",1903,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/ed%2Ffd%2Faf%2Fedfdafbf10d94f5bbc4a7bea20b03c3f%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-05-16,1925-05-19,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/russell-hypatia-woman-knowledge/,"Hypatia; Or, Woman and Knowledge",,"Russell, Dora",1925,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Renewal,1925-05-17,1925-06-17,https://shakespeareandco.princeton.edu/members/vansittart/,Miss Vansittart,"Vansittart, Miss",16.00,,1 month,31,2,,1925-05-16,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1925-05-17,1925-08-17,https://shakespeareandco.princeton.edu/members/louriau-camille/,Camille Louriau,"Louriau, Camille",20.00,,3 months,92,1,,1925-04-04,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1925-05-18,1925-06-18,https://shakespeareandco.princeton.edu/members/everard/,Mme Everard,"Everard, Mme",16.00,,1 month,31,2,,1925-05-18,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1925-05-18,1925-05-18,https://shakespeareandco.princeton.edu/members/mccann-grace/,Grace McCann / Grace McCann Morley,"McCann, Grace",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1925-05-19,1925-06-19,https://shakespeareandco.princeton.edu/members/noyes-3/,Mr. Noyes,"Noyes, Mr.",12.00,,1 month,31,1,,1925-05-18,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-05-19,1925-06-09,https://shakespeareandco.princeton.edu/members/rooker/,John Kingsley Rooker,"Rooker, John Kingsley",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/hardy-dynasts/,The Dynasts,,"Hardy, Thomas",1904,,Lending Library Card,"Sylvia Beach, Rooker Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6d4ca8cb-45db-45d3-b2dc-8f3cfd45514d/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2F0f%2F98%2F500f984254cc42c0b033168b70583f21%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-05-19,1925-05-30,https://shakespeareandco.princeton.edu/members/schereck/,Mildred Schereck,"Schereck, Mildred",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/masters-nuptial-flight/,The Nuptial Flight,,"Masters, Edgar Lee",1923,,Lending Library Card,"Sylvia Beach, Mildred Schereck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3b15ea0c-ed8d-4b41-80f3-33485620b12c/manifest,https://iiif-cloud.princeton.edu/iiif/2/dc%2F16%2F19%2Fdc1619891eeb4afcbfe63ae50b0b13e1%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1925-05-19,1925-05-19,https://shakespeareandco.princeton.edu/members/poulain/,Mme Poulain,"Poulain, Mme",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-05-19,1925-05-23,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/henry-cabbages-kings/,Cabbages and Kings,,"Henry, O.",1904,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F89%2Fa4%2F5689a4b95685432aa62068f98b57b9df%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-05-20,1925-05-25,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/van-vechten-tattoed-countess-romantic/,The Tattooed Countess: A Romantic Novel with a Happy Ending,,"Van Vechten, Carl",1924,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a7%2Ff8%2F3b%2Fa7f83bd97bc94ca8adfabdbb59a143f4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1925-05-20,1925-08-20,https://shakespeareandco.princeton.edu/members/oguz/,Mme Oguz,"Oguz, Mme",40.00,,3 months,92,2,,1925-04-28,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Supplement,1925-05-20,1925-06-07,https://shakespeareandco.princeton.edu/members/leeds/,M. Leeds,"Leeds, M.",4.00,20.00,18 days,18,1,,1925-05-20,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1925-05-20,1925-06-20,https://shakespeareandco.princeton.edu/members/fielding/,Miss Fielding,"Fielding, Miss",12.00,20.00,1 month,31,1,,1925-05-20,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1925-05-20,1925-06-20,https://shakespeareandco.princeton.edu/members/everard/,Mme Everard,"Everard, Mme",16.00,,1 month,31,2,,1925-05-20,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-05-20,1925-06-05,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/landor-imaginary-conversations/,Imaginary Conversations,Vol. 2 Dialogues of Sovereigns and Statesmen,"Landor, Walter Savage",1882,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/64%2F86%2F6d%2F64866dd1f8ee4309bc4a3e389fd2938c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Supplement,1925-05-23,1925-08-10,https://shakespeareandco.princeton.edu/members/hervey-mr/;https://shakespeareandco.princeton.edu/members/hervey-2/,Mr. Hervey;Mrs. Hervey,"Hervey, Mr.;Hervey, Mrs.",24.00,,"2 months, 18 days",79,2,,1925-05-23,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1925-05-23,1925-05-23,https://shakespeareandco.princeton.edu/members/hodgkinson/,Ivan Hodgkinson,"Hodgkinson, Ivan",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-05-23,1925-06-02,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/galsworthy-forsyte-saga/,The Forsyte Saga,,"Galsworthy, John",1922,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F89%2Fa4%2F5689a4b95685432aa62068f98b57b9df%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-05-23,1925-07-01,https://shakespeareandco.princeton.edu/members/stevens-george/,George Stevens,"Stevens, George",,,,,,,,,Returned,39,,,https://shakespeareandco.princeton.edu/books/hart-psychology-insanity/,The Psychology of Insanity,,"Hart, Bernard",1912,,Lending Library Card,"Sylvia Beach, George Stevens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2eadc899-f67d-4a18-83cf-a42712ac85c2/manifest,https://iiif.princeton.edu/loris/figgy_prod/04%2F6a%2F18%2F046a1813eb854e198f2a60e9109325d2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1925-05-23,1925-06-23,https://shakespeareandco.princeton.edu/members/gautier-2/,Francis Gautier,"Gautier, Francis",12.00,,1 month,31,1,,1925-05-20,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1925-05-24,1925-06-24,https://shakespeareandco.princeton.edu/members/hill-lewis/,Lewis Hill,"Hill, Lewis",16.00,,1 month,31,2,,1925-05-23,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1925-05-24,1925-06-24,https://shakespeareandco.princeton.edu/members/schereck/,Mildred Schereck,"Schereck, Mildred",12.00,,1 month,31,1,,1925-06-11,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Mildred Schereck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/3b15ea0c-ed8d-4b41-80f3-33485620b12c/manifest,;https://iiif-cloud.princeton.edu/iiif/2/dc%2F16%2F19%2Fdc1619891eeb4afcbfe63ae50b0b13e1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-05-25,1925-06-02,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/baring-c/,C,,"Baring, Maurice",1924,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a7%2Ff8%2F3b%2Fa7f83bd97bc94ca8adfabdbb59a143f4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1925-05-26,1925-05-26,https://shakespeareandco.princeton.edu/members/benedic/,Mlle Benedic,"Benedic, Mlle",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1925-05-26,1925-05-26,https://shakespeareandco.princeton.edu/members/jacobs/,Miss Jacobs,"Jacobs, Miss",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-05-26,1925-06-07,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/james-spoils-poynton/,The Spoils of Poynton,,"James, Henry",1897,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/8b%2F71%2Ff7%2F8b71f70be84448aaaa2dad268daea625%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-05-26,1925-06-07,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/stephens-charwomans-daughter/,The Charwoman's Daughter,,"Stephens, James",1912,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/8b%2F71%2Ff7%2F8b71f70be84448aaaa2dad268daea625%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1925-05-26,1925-05-26,https://shakespeareandco.princeton.edu/members/de-pomereu-madeleine/,Madeleine de Pomereu,"de Pomereu, Madeleine",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1925-05-28,1925-08-28,https://shakespeareandco.princeton.edu/members/cheron-jeanne/,Jeanne ChΓ©ron,"ChΓ©ron, Jeanne",40.00,40.00,3 months,92,2,,1925-05-28,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1925-05-28,1925-05-28,https://shakespeareandco.princeton.edu/members/mcphee-colin/,Colin McPhee,"McPhee, Colin",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-05-28,1925-07-09,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,42,,,https://shakespeareandco.princeton.edu/books/stephens-crock-gold/,The Crock of Gold,,"Stephens, James",1912,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/37%2F45%2Fc6%2F3745c6824d204f61a49f848a0e9aa7cc%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1925-05-28,1925-11-28,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",52.00,,6 months,184,1,,1925-07-15,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/ed%2Ffd%2Faf%2Fedfdafbf10d94f5bbc4a7bea20b03c3f%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1925-05-28,1925-05-28,https://shakespeareandco.princeton.edu/members/bates-ernest/,Ernest Bates,"Bates, Ernest",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1925-05-28,1925-06-28,https://shakespeareandco.princeton.edu/members/wilson-5/,Mr. Wilson,"Wilson, Mr.",16.00,,1 month,31,2,,1925-05-25,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1925-05-28,1925-06-28,https://shakespeareandco.princeton.edu/members/philippart/,Mlle Philippart,"Philippart, Mlle",12.00,,1 month,31,1,,1925-05-16,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1925-05-29,1925-05-29,https://shakespeareandco.princeton.edu/members/mellera/,Mlle Mellera,"Mellera, Mlle",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1925-05-29,1925-06-29,https://shakespeareandco.princeton.edu/members/whorf/,Mrs. Whorf,"Whorf, Mrs.",16.00,,1 month,31,2,,1925-05-26,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-05-30,1925-06-11,https://shakespeareandco.princeton.edu/members/schereck/,Mildred Schereck,"Schereck, Mildred",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/caravan/,Caravan,,,,"Unidentified. John Galsworthy's *Caravan: The Assembled Tales of John Galsworthy* (1925), Witter Bynner's *Caravan* (1925), or issues of *The American Caravan* (1927 β 1931), etc.",Lending Library Card,"Sylvia Beach, Mildred Schereck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3b15ea0c-ed8d-4b41-80f3-33485620b12c/manifest,https://iiif-cloud.princeton.edu/iiif/2/dc%2F16%2F19%2Fdc1619891eeb4afcbfe63ae50b0b13e1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-05-30,1925-06-11,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/arlen-green-hat/,The Green Hat: A Romance for a Few People,,"Arlen, Michael",1924,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/78%2Fd0%2Fa8%2F78d0a879423f47daa1e2a1e4e57e548a%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1925-05-30,1925-06-30,https://shakespeareandco.princeton.edu/members/houten-van-anna/;https://shakespeareandco.princeton.edu/members/houten-van-2/,Anna van Houten;Mr. van Houten,"van Houten, Anna;van Houten, Mr.",16.00,,1 month,31,2,,1925-05-30,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1925-05-30,1925-06-30,https://shakespeareandco.princeton.edu/members/macnair/,Mrs. Macnair,"Macnair, Mrs.",16.00,40.00,1 month,31,2,,1925-05-30,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1925-05-30,1925-05-30,https://shakespeareandco.princeton.edu/members/philippart/,Mlle Philippart,"Philippart, Mlle",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-05-30,1925-06-02,https://shakespeareandco.princeton.edu/members/scudder-raymond/,Raymond Scudder,"Scudder, Raymond",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/lowell-tendencies-modern-american/,Tendencies in Modern American Poetry,,"Lowell, Amy",1917,,Lending Library Card,"Sylvia Beach, Raymond Scudder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/52604ca7-daab-4bdb-8efe-e63a7aa7e59f/manifest,https://iiif.princeton.edu/loris/figgy_prod/77%2F69%2F06%2F7769062252464e659cac87c633520663%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1925-06-02,1925-06-02,https://shakespeareandco.princeton.edu/members/randall-2/,Miss Randall,"Randall, Miss",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1925-06-02,1925-06-02,https://shakespeareandco.princeton.edu/members/billetdoux-paul/,Paul Billetdoux,"Billetdoux, Paul",,,,,,,,40.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1925-06-02,1925-07-02,https://shakespeareandco.princeton.edu/members/clark-miss/,Miss Clark,"Clark, Miss",12.00,20.00,1 month,30,1,,1925-06-02,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1925-06-02,1925-06-02,https://shakespeareandco.princeton.edu/members/ramos/,Mr. Ramos,"Ramos, Mr.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1925-06-02,1925-06-02,https://shakespeareandco.princeton.edu/members/parry/;https://shakespeareandco.princeton.edu/members/parry-3/,M. Parry;Mrs. Parry,"Parry, M.;Parry, Mrs.",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-06-02,1925-06-05,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/seymour-romantic-tradition/,The Romantic Tradition,,"Seymour, Beatrice Kean",1925,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a7%2Ff8%2F3b%2Fa7f83bd97bc94ca8adfabdbb59a143f4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-06-02,1925-06-16,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/strachey-queen-victoria/,Queen Victoria,,"Strachey, Giles Lytton",1921,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F89%2Fa4%2F5689a4b95685432aa62068f98b57b9df%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-06-02,1925-06-16,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/bianchi-life-letters-emily/,The Life and Letters of Emily Dickinson,,"Dickinson, Emily",1924,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/7a%2F4b%2Ff1%2F7a4bf12029214373807c72e29dd0739f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-06-02,1925-06-16,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/moore-observations/,Observations,,"Moore, Marianne",1924,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/7a%2F4b%2Ff1%2F7a4bf12029214373807c72e29dd0739f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-06-02,1925-06-05,https://shakespeareandco.princeton.edu/members/scudder-raymond/,Raymond Scudder,"Scudder, Raymond",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/maynard-best-poets-english/,"Our Best Poets, English and American",,"Maynard, Theodore",1922,,Lending Library Card,"Sylvia Beach, Raymond Scudder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/52604ca7-daab-4bdb-8efe-e63a7aa7e59f/manifest,https://iiif.princeton.edu/loris/figgy_prod/77%2F69%2F06%2F7769062252464e659cac87c633520663%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1925-06-02,1925-06-02,https://shakespeareandco.princeton.edu/members/harden-e-f/,E. F. Harden,"Harden, E. F.",,,,,,,,40.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-06-03,1925-07-19,https://shakespeareandco.princeton.edu/members/pottecher-therese/,Therèse Pottecher,"Pottecher, Therèse",,,,,,,,,Returned,46,,,https://shakespeareandco.princeton.edu/books/conrad-victory-island-tale/,Victory: An Island Tale,,"Conrad, Joseph",1915,,Lending Library Card,"Sylvia Beach, Therèse Pottecher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/69b82696-3801-41ff-b1fd-c792179c5b98/manifest,https://iiif-cloud.princeton.edu/iiif/2/c4%2F4e%2F60%2Fc44e600e2d3c4c79ac86e53dfeb373da%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1925-06-03,1925-12-03,https://shakespeareandco.princeton.edu/members/maspero-clerc/;https://shakespeareandco.princeton.edu/members/maspero-henri/,HΓ©lΓ¨ne Maspero-Clerc;Henri Maspero,"Maspero-Clerc, HΓ©lΓ¨ne;Maspero, Henri",67.00,,6 months,183,2,,1925-06-03,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-06-03,1925-06-04,https://shakespeareandco.princeton.edu/members/linossier-raymonde/,Raymonde Linossier,"Linossier, Raymonde",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/shaw-saint-joan-chronicle/,Saint Joan: A Chronicle Play in Six Scenes and an Epilogue,,"Shaw, George Bernard",1924,,Lending Library Card,"Sylvia Beach, Raymonde Linossier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/53ede5bf-939d-44f5-9ddb-4dd39363bd20/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2F3a%2F9c%2F233a9cb20f834e619e82f1ecdce098fd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1925-06-03,1925-06-03,https://shakespeareandco.princeton.edu/members/de-la-niece-charles/,Charles de la Niece,"de la Niece, Charles",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1925-06-03,1925-06-03,https://shakespeareandco.princeton.edu/members/kennedy-edmond/,Edmond Kennedy,"Kennedy, Edmond",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1925-06-04,1925-07-04,https://shakespeareandco.princeton.edu/members/hood-cree-d/,D. Hood-Cree,"Hood-Cree, D.",16.00,40.00,1 month,30,2,,1925-06-04,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1925-06-04,1925-07-04,https://shakespeareandco.princeton.edu/members/chapelon-jacques/,Jacques Chapelon,"Chapelon, Jacques",12.00,20.00,1 month,30,1,,1925-06-04,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-06-04,1925-06-10,https://shakespeareandco.princeton.edu/members/stevens-george/,George Stevens,"Stevens, George",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/woolf-jacobs-room/,Jacob's Room,,"Woolf, Virginia",1922,,Lending Library Card,"Sylvia Beach, George Stevens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2eadc899-f67d-4a18-83cf-a42712ac85c2/manifest,https://iiif.princeton.edu/loris/figgy_prod/04%2F6a%2F18%2F046a1813eb854e198f2a60e9109325d2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-06-04,1925-06-11,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/ferber-big/,So Big,,"Ferber, Edna",1924,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/13%2F65%2Fc3%2F1365c304fdb84e4ba63ac2e5f4f5a3be%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1925-06-04,1925-06-18,https://shakespeareandco.princeton.edu/members/whitney/,Miss Whitney,"Whitney, Miss",8.00,,2 weeks,14,2,,1925-06-04,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-06-04,1925-07-04,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,30,,,https://shakespeareandco.princeton.edu/books/khayyam-rubaiyat-omar-khayyam/,Rubaiyat of Omar Khayyam,,"Khayyam, Omar",1859,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/a9%2F51%2F55%2Fa951550798fc4d8e99cdd187d8c34ff0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-06-05,1925-06-19,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/bronte-wuthering-heights/,Wuthering Heights,,"BrontΓ«, Emily",1847,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/64%2F86%2F6d%2F64866dd1f8ee4309bc4a3e389fd2938c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-06-05,1925-06-11,https://shakespeareandco.princeton.edu/members/scudder-raymond/,Raymond Scudder,"Scudder, Raymond",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/ariel/,Ariel,,,,"Unidentified. Likely AndreΜ Maurois's *Ariel: The Life of Shelley,* translated by Ella D'Arcy (1924).",Lending Library Card,"Sylvia Beach, Raymond Scudder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/52604ca7-daab-4bdb-8efe-e63a7aa7e59f/manifest,https://iiif.princeton.edu/loris/figgy_prod/77%2F69%2F06%2F7769062252464e659cac87c633520663%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-06-05,1925-06-08,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/woolf-mrs-dalloway/,Mrs. Dalloway,,"Woolf, Virginia",1925,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/4c%2F1e%2F14%2F4c1e1486db0445cc80244924fce9e2a9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1925-06-05,1925-09-05,https://shakespeareandco.princeton.edu/members/poulain/,Mme Poulain,"Poulain, Mme",30.00,,3 months,92,1,,1925-05-19,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1925-06-05,1925-07-05,https://shakespeareandco.princeton.edu/members/greene-w/,W. Greene,"Greene, W.",12.00,,1 month,30,1,,1925-06-03,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-06-06,1925-06-29,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/benson-pipers-dancer/,Pipers and a Dancer,,"Benson, Stella",1924,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2F4f%2Fea%2F5e4fea18fd8042098ec5c062c62f1997%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-06-06,1925-06-29,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/richardson-trap-pilgrimage-8/,The Trap (Pilgrimage 8),,"Richardson, Dorothy M.",1925,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2F4f%2Fea%2F5e4fea18fd8042098ec5c062c62f1997%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1925-06-08,1925-06-08,https://shakespeareandco.princeton.edu/members/marshall/,Mrs. E. T. Marshall,"Marshall, Mrs. E. T.",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-06-08,,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/mckenna-affair-honour-novel/,An Affair of Honour: A Novel,,"McKenna, Stephen",1925,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/4c%2F1e%2F14%2F4c1e1486db0445cc80244924fce9e2a9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-06-08,1925-06-10,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/mirrlees-counterplot/,The Counterplot,,"Mirrlees, Hope",1924,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/4c%2F1e%2F14%2F4c1e1486db0445cc80244924fce9e2a9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1925-06-08,1925-06-08,https://shakespeareandco.princeton.edu/members/greene-william/,Mrs. William Greene,"Greene, Mrs. William",,,,,,,,40.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-06-09,1925-06-18,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/cummings-enormous-room/,The Enormous Room,,"Cummings, E. E.",1922,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/8b%2F71%2Ff7%2F8b71f70be84448aaaa2dad268daea625%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-06-09,1925-07-09,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,30,,,https://shakespeareandco.princeton.edu/books/kaye-smith-george-crown/,The George and the Crown,,"Kaye-Smith, Sheila",1925,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/07%2Fa3%2F4c%2F07a34cab31e341f5922a6a2e32fa1e5a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1925-06-09,1925-06-09,https://shakespeareandco.princeton.edu/members/fisher-p-r/,P. R. Fisher,"Fisher, P. R.",,,,,,,,40.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-06-09,1925-06-18,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/dickinson-letters-john-chinaman/,Letters from John Chinaman,,"Dickinson, G. Lowes",1901,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/8b%2F71%2Ff7%2F8b71f70be84448aaaa2dad268daea625%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-06-10,1925-06-12,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/kennedy-ladies-lyndon/,The Ladies of Lyndon,,"Kennedy, Margaret",1923,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/4c%2F1e%2F14%2F4c1e1486db0445cc80244924fce9e2a9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1925-06-10,1925-07-10,https://shakespeareandco.princeton.edu/members/merrick-lewis/;https://shakespeareandco.princeton.edu/members/michel/,Lewis Merrick;Mr. Michel,"Merrick, Lewis;Michel, Mr.",16.00,40.00,1 month,30,2,,1925-06-10,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-06-10,1925-07-01,https://shakespeareandco.princeton.edu/members/stevens-george/,George Stevens,"Stevens, George",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/jung-psychology-unconscious/,The Psychology of the Unconscious,,"Jung, Carl Gustav",1916,,Lending Library Card,"Sylvia Beach, George Stevens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2eadc899-f67d-4a18-83cf-a42712ac85c2/manifest,https://iiif.princeton.edu/loris/figgy_prod/04%2F6a%2F18%2F046a1813eb854e198f2a60e9109325d2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-06-11,1925-07-03,https://shakespeareandco.princeton.edu/members/scudder-raymond/,Raymond Scudder,"Scudder, Raymond",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/locke-tale-triona/,The Tale of Triona,,"Locke, William John",1922,,Lending Library Card,"Sylvia Beach, Raymond Scudder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/52604ca7-daab-4bdb-8efe-e63a7aa7e59f/manifest,https://iiif.princeton.edu/loris/figgy_prod/77%2F69%2F06%2F7769062252464e659cac87c633520663%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-06-11,1925-06-24,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/galsworthy-white-monkey/,The White Monkey (A Modern Comedy),,"Galsworthy, John",1924,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/78%2Fd0%2Fa8%2F78d0a879423f47daa1e2a1e4e57e548a%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1925-06-11,1925-09-11,https://shakespeareandco.princeton.edu/members/proix/,Troise Proix,"Proix, Troise",30.00,,3 months,92,1,,1925-07-03,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Troise Proix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/b7152822-4421-406d-9472-740daf9b84e0/manifest,;https://iiif.princeton.edu/loris/figgy_prod/7b%2F4c%2Fcd%2F7b4ccd00593d400692681d1ae569254b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-06-11,1925-07-02,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/frankau-life-erica/,Life and Erica,,"Frankau, Gilbert",1924,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/13%2F65%2Fc3%2F1365c304fdb84e4ba63ac2e5f4f5a3be%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1925-06-11,1926-06-11,https://shakespeareandco.princeton.edu/members/burt-maud/,Maud Burt,"Burt, Maud",99.00,,1 year,365,2,,1925-06-15,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1925-06-11,1925-07-11,https://shakespeareandco.princeton.edu/members/lasko/,Mr. Lasko,"Lasko, Mr.",12.00,,1 month,30,1,,1925-06-11,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1925-06-12,1925-06-12,https://shakespeareandco.princeton.edu/members/amor/,Mme Amor,"Amor, Mme",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-06-12,1925-06-16,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/mckenna-affair-honour-novel/,An Affair of Honour: A Novel,,"McKenna, Stephen",1925,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/4c%2F1e%2F14%2F4c1e1486db0445cc80244924fce9e2a9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1925-06-12,1925-09-12,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",40.00,,3 months,92,2,,1925-06-05,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-06-13,1925-07-22,https://shakespeareandco.princeton.edu/members/proix/,Troise Proix,"Proix, Troise",,,,,,,,,Returned,39,,,https://shakespeareandco.princeton.edu/books/richardson-clarissa-history-young/,Clarissa: Or the History of a Young Lady,,"Richardson, Samuel",1748,,Lending Library Card,"Sylvia Beach, Troise Proix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b7152822-4421-406d-9472-740daf9b84e0/manifest,https://iiif.princeton.edu/loris/figgy_prod/bf%2F69%2F17%2Fbf69172c77194c8aa1c3b3e2c751d558%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-06-13,1925-12-05,https://shakespeareandco.princeton.edu/members/rieder/,M. Rieder,"Rieder, M.",,,,,,,,,Returned,175,,,https://shakespeareandco.princeton.edu/books/boswell-life-samuel-johnson/,Life of Samuel Johnson,Vol. 2,"Boswell, James",1791,,Lending Library Card,"Sylvia Beach, Rieder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/559c8919-8881-40ad-b027-67dbf1b23611/manifest,https://iiif.princeton.edu/loris/figgy_prod/e8%2F10%2F7c%2Fe8107c2c950f411d8ceeb6bb8bdc01c7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1925-06-15,1925-07-15,https://shakespeareandco.princeton.edu/members/lamb/,Mrs. [unclear] Lamb,"Lamb, Mrs. [unclear]",12.00,,1 month,30,1,,1925-06-15,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1925-06-15,1925-07-15,https://shakespeareandco.princeton.edu/members/logie-grace/,Grace Logie,"Logie, Grace",12.00,,1 month,30,1,,1925-06-15,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1925-06-15,1925-06-15,https://shakespeareandco.princeton.edu/members/gatch-harry/,Harry Gatch,"Gatch, Harry",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-06-16,1925-06-17,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/anthropology/,Anthropology,,,,"Unidentified. Edward B. Tylor's *Anthropology* (1904), R. R. Marett's *Anthropology* (1911), or A. K. Kroeber's [*Anthropology*](https://shakespeareandco.princeton.edu/books/kroeber-anthropology/) (1923), etc.",Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/7a%2F4b%2Ff1%2F7a4bf12029214373807c72e29dd0739f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Supplement,1925-06-16,1926-06-02,https://shakespeareandco.princeton.edu/members/clark-miss/,Miss Clark,"Clark, Miss",72.00,,"11 months, 17 days",351,,,1925-06-16,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1925-06-16,1925-06-16,https://shakespeareandco.princeton.edu/members/bonner-eugene/,Eugene Bonner,"Bonner, Eugene",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-06-16,1925-07-29,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,43,,,https://shakespeareandco.princeton.edu/books/muirhead-contemporary-british-philosophy/,Contemporary British Philosophy: Personal Statements,,,1925,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F89%2Fa4%2F5689a4b95685432aa62068f98b57b9df%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-06-16,1925-06-17,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/huxley-barren-leaves/,Those Barren Leaves,,"Huxley, Aldous",1925,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/7a%2F4b%2Ff1%2F7a4bf12029214373807c72e29dd0739f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-06-16,1925-06-23,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/gorman-gold-gold/,Gold by Gold,,"Gorman, Herbert Sherman",1925,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/4c%2F1e%2F14%2F4c1e1486db0445cc80244924fce9e2a9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-06-17,1925-06-18,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/kreymborg-troubadour-autobiography/,Troubadour: An Autobiography,,"Kreymborg, Alfred",1925,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/7a%2F4b%2Ff1%2F7a4bf12029214373807c72e29dd0739f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1925-06-17,1925-06-17,https://shakespeareandco.princeton.edu/members/lasko/,Mr. Lasko,"Lasko, Mr.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1925-06-18,1925-07-18,https://shakespeareandco.princeton.edu/members/haus-annette/,Annette Haus,"Haus, Annette",12.00,20.00,1 month,30,1,,1925-06-18,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-06-18,1925-06-20,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/arlen-green-hat/,The Green Hat: A Romance for a Few People,,"Arlen, Michael",1924,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/7a%2F4b%2Ff1%2F7a4bf12029214373807c72e29dd0739f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-06-18,,https://shakespeareandco.princeton.edu/members/linossier-raymonde/,Raymonde Linossier,"Linossier, Raymonde",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/thomas-dekker/,Thomas Dekker,,,,Unidentified. By or about Dekker.,Lending Library Card,"Sylvia Beach, Raymonde Linossier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/53ede5bf-939d-44f5-9ddb-4dd39363bd20/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2F3a%2F9c%2F233a9cb20f834e619e82f1ecdce098fd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1925-06-18,1925-06-18,https://shakespeareandco.princeton.edu/members/brahan-margaret/,Margaret Brahan,"Brahan, Margaret",,,,,,,,40.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1925-06-19,1925-06-19,https://shakespeareandco.princeton.edu/members/hill-lewis/,Lewis Hill,"Hill, Lewis",,,,,,,,40.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-06-19,1925-07-07,https://shakespeareandco.princeton.edu/members/pottecher-therese/,Therèse Pottecher,"Pottecher, Therèse",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/conrad-rescue-romance-shallows/,The Rescue: A Romance of the Shallows,,"Conrad, Joseph",1920,,Lending Library Card,"Sylvia Beach, Therèse Pottecher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/69b82696-3801-41ff-b1fd-c792179c5b98/manifest,https://iiif-cloud.princeton.edu/iiif/2/c4%2F4e%2F60%2Fc44e600e2d3c4c79ac86e53dfeb373da%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-06-19,1925-07-01,https://shakespeareandco.princeton.edu/members/stevens-george/,George Stevens,"Stevens, George",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/lubbock-craft-fiction/,The Craft of Fiction,,"Lubbock, Percy",1921,,Lending Library Card,"Sylvia Beach, George Stevens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2eadc899-f67d-4a18-83cf-a42712ac85c2/manifest,https://iiif.princeton.edu/loris/figgy_prod/04%2F6a%2F18%2F046a1813eb854e198f2a60e9109325d2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-06-19,1925-07-07,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/pater-essays-guardian/,"Essays from ""The Guardian""",,"Pater, Walter",1896,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/64%2F86%2F6d%2F64866dd1f8ee4309bc4a3e389fd2938c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1925-06-20,1925-07-20,https://shakespeareandco.princeton.edu/members/everard/,Mme Everard,"Everard, Mme",16.00,,1 month,30,2,,1925-06-26,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-06-20,1925-06-23,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/cummings-xli-poems/,XLI Poems,,"Cummings, E. E.",1925,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/7a%2F4b%2Ff1%2F7a4bf12029214373807c72e29dd0739f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-06-23,1925-08-17,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,55,,,https://shakespeareandco.princeton.edu/books/dell-briary-bush/,The Briary-Bush,,"Dell, Floyd",1921,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/4c%2F1e%2F14%2F4c1e1486db0445cc80244924fce9e2a9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-06-23,1925-08-17,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,55,,,https://shakespeareandco.princeton.edu/books/walpole-duchess-wrexe-decline/,"The Duchess of Wrexe, Her Decline and Death: A Romantic Commentary",,"Walpole, Hugh",1924,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/4c%2F1e%2F14%2F4c1e1486db0445cc80244924fce9e2a9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-06-23,1925-07-04,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/stephens-land-youth/,In the Land of Youth,,"Stephens, James",1924,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/4c%2F1e%2F14%2F4c1e1486db0445cc80244924fce9e2a9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-06-23,1925-07-06,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/ouspensky-tertium-organum-third/,Tertium Organum: The Third Canon of Thought: A Key to the Enigmas of the World,,"Ouspensky, Pyotr Demianovich",1914,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/7a%2F4b%2Ff1%2F7a4bf12029214373807c72e29dd0739f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1925-06-23,1925-07-23,https://shakespeareandco.princeton.edu/members/gautier-2/,Francis Gautier,"Gautier, Francis",12.00,,1 month,30,1,,1925-06-18,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-06-23,1925-08-17,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,55,,,https://shakespeareandco.princeton.edu/books/dos-passos-streets-night/,Streets of Night,,"Dos Passos, John",1923,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/4c%2F1e%2F14%2F4c1e1486db0445cc80244924fce9e2a9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-06-23,1925-09-11,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,80,,,https://shakespeareandco.princeton.edu/books/jackson-eighteen-nineties/,The Eighteen Nineties,,"Jackson, George Holbrook",1913,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/8b%2F71%2Ff7%2F8b71f70be84448aaaa2dad268daea625%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1925-06-23,1925-07-23,https://shakespeareandco.princeton.edu/members/bennett-1/,L. Bennett,"Bennett, L.",12.00,,1 month,30,1,,1925-06-23,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-06-23,1925-09-11,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,80,,,https://shakespeareandco.princeton.edu/books/baring-c/,C,,"Baring, Maurice",1924,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/8b%2F71%2Ff7%2F8b71f70be84448aaaa2dad268daea625%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-06-24,1925-07-27,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,33,,,https://shakespeareandco.princeton.edu/books/galsworthy-man-property-forsyte/,The Man of Property (The Forsyte Saga),,"Galsworthy, John",1906,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/78%2Fd0%2Fa8%2F78d0a879423f47daa1e2a1e4e57e548a%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1925-06-24,1925-06-24,https://shakespeareandco.princeton.edu/members/logie-grace/,Grace Logie,"Logie, Grace",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1925-06-24,1925-12-24,https://shakespeareandco.princeton.edu/members/bayne-helen/,Helen (Cheney) Bayne / Mrs. Bayne,"Bayne, Helen",67.00,40.00,6 months,183,2,,1925-06-24,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1925-06-25,1925-06-25,https://shakespeareandco.princeton.edu/members/catudal-h-m/,H. M. Catudal,"Catudal, H. M.",,,,,,,,40.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1925-06-25,1926-06-25,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",81.00,,1 year,365,1,AdL,1925-06-25,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,;https://iiif-cloud.princeton.edu/iiif/2/7a%2F56%2Fbe%2F7a56be19de22453aa0a8633aae34ed5a%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1925-06-25,1925-07-25,https://shakespeareandco.princeton.edu/members/gillet-louis/,Louis Gillet,"Gillet, Louis",12.00,,1 month,30,,,1925-06-25,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-06-25,1925-07-03,https://shakespeareandco.princeton.edu/members/martin-maud/,Maud Martin,"Martin, Maud",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/keyserling-travel-diary-philosopher/,The Travel Diary of a Philosopher,Vol. 1,"Keyserling, Hermann von",1919,,Lending Library Card,"Sylvia Beach, Maud Martin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/934c6444-6b2c-4d42-acea-282118c23e5a/manifest,https://iiif.princeton.edu/loris/figgy_prod/61%2Fbf%2F4d%2F61bf4d7ed29b4aba8e71b515cef04bad%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-06-25,1925-06-27,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/hecht-humpty-dumpty/,Humpty Dumpty,,"Hecht, Ben",1924,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/7a%2F56%2Fbe%2F7a56be19de22453aa0a8633aae34ed5a%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1925-06-25,1925-06-25,https://shakespeareandco.princeton.edu/members/hodgkinson/,Ivan Hodgkinson,"Hodgkinson, Ivan",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-06-27,1925-07-29,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,32,,,https://shakespeareandco.princeton.edu/books/cannan-house-prophecy/,The House of Prophecy,,"Cannan, Gilbert",1924,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/78%2Fd0%2Fa8%2F78d0a879423f47daa1e2a1e4e57e548a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-06-27,1925-06-29,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/caravan/,Caravan,,,,"Unidentified. John Galsworthy's *Caravan: The Assembled Tales of John Galsworthy* (1925), Witter Bynner's *Caravan* (1925), or issues of *The American Caravan* (1927 β 1931), etc.",Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/7a%2F56%2Fbe%2F7a56be19de22453aa0a8633aae34ed5a%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1925-06-28,1925-09-28,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",20.00,,3 months,92,1,,1925-07-02,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,;https://iiif-cloud.princeton.edu/iiif/2/13%2F65%2Fc3%2F1365c304fdb84e4ba63ac2e5f4f5a3be%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1925-06-28,1925-06-28,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1925-06-29,1925-09-29,https://shakespeareandco.princeton.edu/members/gibbons-5/,Hope Gibbons,"Gibbons, Hope",20.00,,3 months,92,1,,1925-06-29,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1925-06-29,1925-06-29,https://shakespeareandco.princeton.edu/members/whorf/,Mrs. Whorf,"Whorf, Mrs.",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1925-06-29,1925-07-29,https://shakespeareandco.princeton.edu/members/wilson-5/,Mr. Wilson,"Wilson, Mr.",16.00,,1 month,30,2,,1925-06-29,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1925-06-30,1925-07-30,https://shakespeareandco.princeton.edu/members/clements/,Caroline Clements,"Clements, Caroline",16.00,40.00,1 month,30,2,,1925-06-30,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-06-30,1925-07-02,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/criterion/,The Criterion,,,,"Renamed *The New Criterion* from January 1926 to January 1927, and *The Monthly Criterion* from May 1927 to March 1928.",Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/7a%2F56%2Fbe%2F7a56be19de22453aa0a8633aae34ed5a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-06-30,,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/mordell-erotic-motive-literature/,The Erotic Motive In Literature,,"Mordell, Albert",1919,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/7a%2F56%2Fbe%2F7a56be19de22453aa0a8633aae34ed5a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-07-02,1925-07-18,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/aumonier-overheard/,Overheard,,"Aumonier, Stacy",1924,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/13%2F65%2Fc3%2F1365c304fdb84e4ba63ac2e5f4f5a3be%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1925-07-02,1925-08-02,https://shakespeareandco.princeton.edu/members/chamberlain-louise/,Louise Chamberlain,"Chamberlain, Louise",12.00,20.00,1 month,31,1,,1925-07-02,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-07-03,1925-08-12,https://shakespeareandco.princeton.edu/members/scudder-raymond/,Raymond Scudder,"Scudder, Raymond",,,,,,,,,Returned,40,,,https://shakespeareandco.princeton.edu/books/atherton-bell-fog/,The Bell in the Fog,,"Atherton, Gertrude Franklin Horn",1905,,Lending Library Card,"Sylvia Beach, Raymond Scudder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/52604ca7-daab-4bdb-8efe-e63a7aa7e59f/manifest,https://iiif.princeton.edu/loris/figgy_prod/77%2F69%2F06%2F7769062252464e659cac87c633520663%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-07-03,1925-07-08,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/pirandello-way/,Each in His Own Way,,"Pirandello, Luigi",1924,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/7a%2F56%2Fbe%2F7a56be19de22453aa0a8633aae34ed5a%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1925-07-03,1925-10-03,https://shakespeareandco.princeton.edu/members/carter-2/,Jeanne Carter,"Carter, Jeanne",30.00,20.00,3 months,92,1,,1925-07-03,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1925-07-03,1925-10-03,https://shakespeareandco.princeton.edu/members/baschwitz/,Mme Baschwitz,"Baschwitz, Mme",30.00,,3 months,92,1,AdL,1925-07-03,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1925-07-04,1925-08-04,https://shakespeareandco.princeton.edu/members/dreyfus-stanley/,Stanley Dreyfus,"Dreyfus, Stanley",12.00,20.00,1 month,31,1,,1925-07-04,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1925-07-04,1925-07-18,https://shakespeareandco.princeton.edu/members/fenner-mary/,Mary Fenner,"Fenner, Mary",18.00,,2 weeks,14,2,,1925-07-04,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1925-07-04,1925-08-04,https://shakespeareandco.princeton.edu/members/harter-irma/,Irma Harter,"Harter, Irma",12.00,20.00,1 month,31,1,,1925-07-04,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-07-04,1925-07-16,https://shakespeareandco.princeton.edu/members/martin-maud/,Maud Martin,"Martin, Maud",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/keyserling-travel-diary-philosopher/,The Travel Diary of a Philosopher,Vol. 2,"Keyserling, Hermann von",1919,,Lending Library Card,"Sylvia Beach, Maud Martin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/934c6444-6b2c-4d42-acea-282118c23e5a/manifest,https://iiif.princeton.edu/loris/figgy_prod/61%2Fbf%2F4d%2F61bf4d7ed29b4aba8e71b515cef04bad%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1925-07-05,1925-08-05,https://shakespeareandco.princeton.edu/members/lobstein/,Mr. Lobstein,"Lobstein, Mr.",12.00,,1 month,31,1,,1925-06-17,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1925-07-05,1926-07-05,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",81.00,,1 year,365,1,AdL,1925-07-07,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,;https://iiif.princeton.edu/loris/figgy_prod/56%2F89%2Fa4%2F5689a4b95685432aa62068f98b57b9df%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1925-07-06,1925-08-06,https://shakespeareandco.princeton.edu/members/allen-jay/,Jay Allen / Jay C. Allen,"Allen, Jay",12.00,20.00,1 month,31,1,,1925-07-06,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1925-07-06,1925-07-06,https://shakespeareandco.princeton.edu/members/merrick-lewis/;https://shakespeareandco.princeton.edu/members/michel/,Lewis Merrick;Mr. Michel,"Merrick, Lewis;Michel, Mr.",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1925-07-07,1925-08-07,https://shakespeareandco.princeton.edu/members/kimball/,Nancy Kimball,"Kimball, Nancy",12.00,20.00,1 month,31,1,,1925-07-07,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-07-07,1925-07-15,https://shakespeareandco.princeton.edu/members/pottecher-therese/,Therèse Pottecher,"Pottecher, Therèse",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/garnett-lady-fox/,Lady into Fox,,"Garnett, David",1922,,Lending Library Card,"Sylvia Beach, Therèse Pottecher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/69b82696-3801-41ff-b1fd-c792179c5b98/manifest,https://iiif-cloud.princeton.edu/iiif/2/c4%2F4e%2F60%2Fc44e600e2d3c4c79ac86e53dfeb373da%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1925-07-07,1925-07-07,https://shakespeareandco.princeton.edu/members/nairn-sylvia/,Sylvia Nairn,"Nairn, Sylvia",,,,,,,,14.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1925-07-08,1925-07-08,https://shakespeareandco.princeton.edu/members/houten-van-anna/;https://shakespeareandco.princeton.edu/members/houten-van-2/,Anna van Houten;Mr. van Houten,"van Houten, Anna;van Houten, Mr.",,,,,,,,40.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1925-07-08,1925-07-08,https://shakespeareandco.princeton.edu/members/edmonds-james/,James Edmonds,"Edmonds, James",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-07-08,1925-07-11,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/kennedy-constant-nymph/,The Constant Nymph,,"Kennedy, Margaret",1924,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/7a%2F56%2Fbe%2F7a56be19de22453aa0a8633aae34ed5a%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1925-07-08,1925-10-08,https://shakespeareandco.princeton.edu/members/jacobsen-norman/,Norman Jacobsen,"Jacobsen, Norman",30.00,20.00,3 months,92,1,,1925-07-08,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-07-09,1925-07-21,https://shakespeareandco.princeton.edu/members/torrence/,Ridgely Torrence,"Torrence, Ridgely",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/joyce-dubliners/,Dubliners,,"Joyce, James",1914,,Lending Library Card,"Sylvia Beach, Mr. Ridgely Torrence Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4efe1e51-e923-4a95-8851-0211aeac9ca9/manifest,https://iiif.princeton.edu/loris/figgy_prod/18%2Ff5%2Fbc%2F18f5bcce1bdc448a91f7ba6b7e937734%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-07-09,1925-08-06,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,28,,,https://shakespeareandco.princeton.edu/books/glaspell-glory-conquered-story/,The Glory of the Conquered: The Story of a Great Love,,"Glaspell, Susan",1909,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/07%2Fa3%2F4c%2F07a34cab31e341f5922a6a2e32fa1e5a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-07-09,1925-08-29,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,51,,,https://shakespeareandco.princeton.edu/books/woolf-monday-tuesday/,Monday or Tuesday,,"Woolf, Virginia",1921,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/37%2F45%2Fc6%2F3745c6824d204f61a49f848a0e9aa7cc%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-07-09,1925-08-18,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,40,,,https://shakespeareandco.princeton.edu/books/woolf-voyage/,The Voyage Out,,"Woolf, Virginia",1915,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/37%2F45%2Fc6%2F3745c6824d204f61a49f848a0e9aa7cc%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1925-07-09,1925-08-09,https://shakespeareandco.princeton.edu/members/torrence/,Ridgely Torrence,"Torrence, Ridgely",12.00,20.00,1 month,31,1,,1925-07-09,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Mr. Ridgely Torrence Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/4efe1e51-e923-4a95-8851-0211aeac9ca9/manifest,;https://iiif.princeton.edu/loris/figgy_prod/18%2Ff5%2Fbc%2F18f5bcce1bdc448a91f7ba6b7e937734%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1925-07-09,1925-10-09,https://shakespeareandco.princeton.edu/members/nouveau-mme/,Mme Nouveau,"Nouveau, Mme",30.00,20.00,3 months,92,1,,1925-07-09,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1925-07-10,1925-07-31,https://shakespeareandco.princeton.edu/members/gauss/,Christian Gauss,"Gauss, Christian",9.00,,3 weeks,21,1,,1925-07-10,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-07-11,,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/mason-oscar-wilde-art/,Oscar Wilde: Art and Morality,,"Mason, Stuart",1912,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1925-07-11,,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/harris-oscar-wilde-life/,Oscar Wilde: His Life and Confessions,,"Harris, Frank",1916,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1925-07-11,1925-07-13,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/wharton-mothers-recompense/,The Mother's Recompense,,"Wharton, Edith",1925,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/7a%2F56%2Fbe%2F7a56be19de22453aa0a8633aae34ed5a%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1925-07-11,1925-07-11,https://shakespeareandco.princeton.edu/members/baldwin-washburn/,Washburn Baldwin,"Baldwin, Washburn",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-07-11,,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/gull-oscar-wilde/,Oscar Wilde,,"Ingleby, Leonard Cresswell",1907,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1925-07-11,,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/ransome-oscar-wilde-critical/,Oscar Wilde: A Critical Study,,"Ransome, Arthur",1912,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1925-07-13,1925-07-27,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/arcadia/,Arcadia,,,,Unidentified. Likely Philip Sidney's *The Countess of Pembroke's Arcadia.*,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/7a%2F56%2Fbe%2F7a56be19de22453aa0a8633aae34ed5a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-07-15,1925-08-04,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/conrad-arrow-gold/,The Arrow of Gold,,"Conrad, Joseph",1919,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/0a%2F3c%2F31%2F0a3c310a56c84f55bcd05a0f421c705b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-07-15,1925-07-23,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/collins-poetical-works-william/,The Poetical Works of William Collins,,"Collins, William",1765,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/ed%2Ffd%2Faf%2Fedfdafbf10d94f5bbc4a7bea20b03c3f%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-07-15,1925-07-17,https://shakespeareandco.princeton.edu/members/pottecher-therese/,Therèse Pottecher,"Pottecher, Therèse",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/galsworthy-saints-progress/,Saint's Progress,,"Galsworthy, John",1919,,Lending Library Card,"Sylvia Beach, Therèse Pottecher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/69b82696-3801-41ff-b1fd-c792179c5b98/manifest,https://iiif-cloud.princeton.edu/iiif/2/c4%2F4e%2F60%2Fc44e600e2d3c4c79ac86e53dfeb373da%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1925-07-15,1925-08-15,https://shakespeareandco.princeton.edu/members/crooke-john/;https://shakespeareandco.princeton.edu/members/crooke-1/,John Crooke;Mrs. Crooke,"Crooke, John;Crooke, Mrs.",16.00,40.00,1 month,31,2,,1925-07-15,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1925-07-15,1925-07-15,https://shakespeareandco.princeton.edu/members/noyes-3/,Mr. Noyes,"Noyes, Mr.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1925-07-15,1925-07-15,https://shakespeareandco.princeton.edu/members/wilson-5/,Mr. Wilson,"Wilson, Mr.",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-07-15,1925-08-04,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/conrad-almayers-folly/,Almayer's Folly,,"Conrad, Joseph",1895,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/0a%2F3c%2F31%2F0a3c310a56c84f55bcd05a0f421c705b%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1925-07-16,1926-07-16,https://shakespeareandco.princeton.edu/members/hunter-5/,Mrs. Hunter,"Hunter, Mrs.",91.00,,1 year,365,2,AdL,1925-06-30,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1925-07-16,1925-10-16,https://shakespeareandco.princeton.edu/members/collier-elenor/,Elenor Collier,"Collier, Elenor",30.00,20.00,3 months,92,1,,1925-07-16,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-07-17,1925-07-28,https://shakespeareandco.princeton.edu/members/pottecher-therese/,Therèse Pottecher,"Pottecher, Therèse",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/frank-holiday/,Holiday,,"Frank, Waldo",1923,,Lending Library Card,"Sylvia Beach, Therèse Pottecher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/69b82696-3801-41ff-b1fd-c792179c5b98/manifest,https://iiif-cloud.princeton.edu/iiif/2/c4%2F4e%2F60%2Fc44e600e2d3c4c79ac86e53dfeb373da%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-07-17,1925-07-22,https://shakespeareandco.princeton.edu/members/pottecher-therese/,Therèse Pottecher,"Pottecher, Therèse",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/kirchwey-nation/,The Nation,,,,,Lending Library Card,"Sylvia Beach, Therèse Pottecher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/69b82696-3801-41ff-b1fd-c792179c5b98/manifest,https://iiif-cloud.princeton.edu/iiif/2/c4%2F4e%2F60%2Fc44e600e2d3c4c79ac86e53dfeb373da%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-07-18,1925-08-02,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/aumonier-querrils/,The Querrils,,"Aumonier, Stacy",1919,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/13%2F65%2Fc3%2F1365c304fdb84e4ba63ac2e5f4f5a3be%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1925-07-21,1925-10-21,https://shakespeareandco.princeton.edu/members/wood-r/,R. Wood,"Wood, R.",30.00,,3 months,92,1,,1925-07-21,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-07-22,1925-09-02,https://shakespeareandco.princeton.edu/members/proix/,Troise Proix,"Proix, Troise",,,,,,,,,Returned,42,,,https://shakespeareandco.princeton.edu/books/barrie-little-minister/,The Little Minister,2 vols.,"Barrie, J. M.",1898,,Lending Library Card,"Sylvia Beach, Troise Proix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b7152822-4421-406d-9472-740daf9b84e0/manifest,https://iiif.princeton.edu/loris/figgy_prod/7b%2F4c%2Fcd%2F7b4ccd00593d400692681d1ae569254b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1925-07-22,1926-07-22,https://shakespeareandco.princeton.edu/members/oconor-1/,Mr. O'Conor,"O'Conor, Mr.",110.00,,1 year,365,2,,1925-07-15,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1925-07-23,1926-07-23,https://shakespeareandco.princeton.edu/members/weiss-colette/,Colette Weiss,"Weiss, Colette",81.00,,1 year,365,,,1925-07-23,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-07-23,1925-10-02,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,71,,,https://shakespeareandco.princeton.edu/books/harris-yellow-ticket-stories/,The Yellow Ticket and Other Stories,,"Harris, Frank",1914,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/a9%2F51%2F55%2Fa951550798fc4d8e99cdd187d8c34ff0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-07-23,1925-07-28,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/walpole-old-ladies/,The Old Ladies,,"Walpole, Hugh",1924,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/ed%2Ffd%2Faf%2Fedfdafbf10d94f5bbc4a7bea20b03c3f%2Fintermediate_file/full/full/0/default.jpg
+Generic,1925-07-23,,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/joyce-ulysses/,Ulysses,,"Joyce, James",1922,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/a9%2F51%2F55%2Fa951550798fc4d8e99cdd187d8c34ff0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-07-23,1925-10-02,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,71,,,https://shakespeareandco.princeton.edu/books/hergesheimer-three-black-pennys/,The Three Black Pennys,,"Hergesheimer, Joseph",1917,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/a9%2F51%2F55%2Fa951550798fc4d8e99cdd187d8c34ff0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1925-07-23,1925-10-23,https://shakespeareandco.princeton.edu/members/davies-6/,Mrs. G. Davies,"Davies, Mrs. G.",40.00,,3 months,92,2,,1925-07-23,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-07-23,1925-08-04,https://shakespeareandco.princeton.edu/members/torrence/,Ridgely Torrence,"Torrence, Ridgely",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/stephens-crock-gold/,The Crock of Gold,,"Stephens, James",1912,,Lending Library Card,"Sylvia Beach, Mr. Ridgely Torrence Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4efe1e51-e923-4a95-8851-0211aeac9ca9/manifest,https://iiif.princeton.edu/loris/figgy_prod/18%2Ff5%2Fbc%2F18f5bcce1bdc448a91f7ba6b7e937734%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-07-24,1925-08-27,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,34,,,https://shakespeareandco.princeton.edu/books/aumonier-overheard/,Overheard,,"Aumonier, Stacy",1924,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/78%2Fd0%2Fa8%2F78d0a879423f47daa1e2a1e4e57e548a%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1925-07-25,1925-10-25,https://shakespeareandco.princeton.edu/members/hoppenot-henri/,Henri Hoppenot,"Hoppenot, Henri",36.00,,3 months,92,2,AdL,1925-07-25,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1925-07-25,1925-08-25,https://shakespeareandco.princeton.edu/members/gordon-dor/,Dor. Gordon,"Gordon, Dor.",16.00,40.00,1 month,31,2,,1925-07-25,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-07-27,1925-09-26,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,61,,,https://shakespeareandco.princeton.edu/books/thackeray-wolves-lamb/,The Wolves and the Lamb,,"Thackeray, William Makepeace",1854,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/78%2Fd0%2Fa8%2F78d0a879423f47daa1e2a1e4e57e548a%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1925-07-27,1925-08-27,https://shakespeareandco.princeton.edu/members/lynahan-gertrude/,Gertrude Lynahan Sayre / Gertrude Lynahan,"Lynahan, Gertrude",12.00,20.00,1 month,31,1,,1925-07-27,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-07-27,1925-09-22,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,57,,,https://shakespeareandco.princeton.edu/books/chesterton-things-considered/,All Things Considered,,"Chesterton, G. K.",1908,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/78%2Fd0%2Fa8%2F78d0a879423f47daa1e2a1e4e57e548a%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1925-07-27,1925-07-30,https://shakespeareandco.princeton.edu/members/george-gordon/,Gordon George,"George, Gordon",12.00,81.00,3 days,3,3,,1925-07-27,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1925-07-27,1925-10-27,https://shakespeareandco.princeton.edu/members/barnes-djuna/,Djuna Barnes,"Barnes, Djuna",40.00,,3 months,92,2,,1925-07-27,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-07-27,1925-08-05,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/meredith-evan-harrington/,Evan Harrington,,"Meredith, George",1861,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/7a%2F56%2Fbe%2F7a56be19de22453aa0a8633aae34ed5a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-07-28,1925-08-03,https://shakespeareandco.princeton.edu/members/pottecher-therese/,Therèse Pottecher,"Pottecher, Therèse",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/galsworthy-dark-flower/,The Dark Flower,,"Galsworthy, John",1913,,Lending Library Card,"Sylvia Beach, Therèse Pottecher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/69b82696-3801-41ff-b1fd-c792179c5b98/manifest,https://iiif-cloud.princeton.edu/iiif/2/c4%2F4e%2F60%2Fc44e600e2d3c4c79ac86e53dfeb373da%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-07-28,1925-09-09,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,43,,,https://shakespeareandco.princeton.edu/books/keats-keats-poems/,Keats's Poems,,"Keats, John",,Catherine Yarrow borrowed the Oxford Standard Authors edition.,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/ed%2Ffd%2Faf%2Fedfdafbf10d94f5bbc4a7bea20b03c3f%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1925-07-29,1926-07-29,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",72.00,,1 year,365,,AdL,1925-07-23,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,;https://iiif.princeton.edu/loris/figgy_prod/a9%2F51%2F55%2Fa951550798fc4d8e99cdd187d8c34ff0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-07-29,1925-09-07,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,40,,,https://shakespeareandco.princeton.edu/books/sinclair-divine-fire/,The Divine Fire,,"Sinclair, May",1904,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F89%2Fa4%2F5689a4b95685432aa62068f98b57b9df%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1925-07-30,1925-09-30,https://shakespeareandco.princeton.edu/members/jaffe-3/,Mr. Jaffe,"Jaffe, Mr.",28.00,20.00,2 months,62,2,,1925-07-30,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1925-07-30,1925-08-30,https://shakespeareandco.princeton.edu/members/cabeen/,Mrs. D. C. Cabeen,"Cabeen, Mrs. D. C.",12.00,20.00,1 month,31,1,,1925-07-30,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1925-07-30,1925-08-30,https://shakespeareandco.princeton.edu/members/welles-1/,Mr. Welles,"Welles, Mr.",16.00,,1 month,31,2,,1925-07-30,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-07-30,1925-08-07,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/galsworthy-white-monkey/,The White Monkey (A Modern Comedy),,"Galsworthy, John",1924,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/13%2F65%2Fc3%2F1365c304fdb84e4ba63ac2e5f4f5a3be%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1925-07-31,1925-07-31,https://shakespeareandco.princeton.edu/members/macnair/,Mrs. Macnair,"Macnair, Mrs.",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1925-07-31,,https://shakespeareandco.princeton.edu/members/kleinpeter-ada/,Ada Kleinpeter,"Kleinpeter, Ada",,,,,,,1925-07-31,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1925-07-31,1925-08-31,https://shakespeareandco.princeton.edu/members/stewart-w/,W. Stewart / Mr. Stewart-Elsmer,"Stewart, W.",12.00,20.00,1 month,31,1,,1925-07-31,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-08-03,1925-08-25,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/young-sea-horses/,Sea Horses,,"Young, Francis Brett",1925,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/07%2Fa3%2F4c%2F07a34cab31e341f5922a6a2e32fa1e5a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1925-08-03,1925-08-03,https://shakespeareandco.princeton.edu/members/clements/,Caroline Clements,"Clements, Caroline",,,,,,,,40.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1925-08-03,1925-08-03,https://shakespeareandco.princeton.edu/members/stevens-george/,George Stevens,"Stevens, George",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1925-08-03,1925-08-03,https://shakespeareandco.princeton.edu/members/george-gordon/,Gordon George,"George, Gordon",,,,,,,,,,,,,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1925-08-03,1926-02-03,https://shakespeareandco.princeton.edu/members/bennett-gwendolyn/,Gwendolyn Bennett,"Bennett, Gwendolyn",52.00,20.00,6 months,184,1,,1925-08-03,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1925-08-04,1925-08-04,https://shakespeareandco.princeton.edu/members/dreyfus-stanley/,Stanley Dreyfus,"Dreyfus, Stanley",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-08-04,1925-11-02,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,90,,,https://shakespeareandco.princeton.edu/books/thoreau-essays-writings-henry/,Essays and Other Writings of Henry Thoreau,,"Thoreau, Henry David",1895,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/0a%2F3c%2F31%2F0a3c310a56c84f55bcd05a0f421c705b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-08-04,1925-11-02,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,90,,,https://shakespeareandco.princeton.edu/books/beresford-unity/,Unity,,"Beresford, J. D.",1924,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/0a%2F3c%2F31%2F0a3c310a56c84f55bcd05a0f421c705b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-08-04,1925-11-02,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,90,,,https://shakespeareandco.princeton.edu/books/carlyle-past-present/,Past and Present,,"Carlyle, Thomas",1843,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/0a%2F3c%2F31%2F0a3c310a56c84f55bcd05a0f421c705b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-08-04,1925-11-02,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,90,,,https://shakespeareandco.princeton.edu/books/thoreau/,Thoreau,,,,By or about Thoreau.,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/0a%2F3c%2F31%2F0a3c310a56c84f55bcd05a0f421c705b%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1925-08-04,1925-08-04,https://shakespeareandco.princeton.edu/members/harter-irma/,Irma Harter,"Harter, Irma",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1925-08-05,1925-11-05,https://shakespeareandco.princeton.edu/members/barnes-earl/,Mrs. Earl Barnes,"Barnes, Mrs. Earl",40.00,40.00,3 months,92,2,,1925-08-05,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1925-08-05,1925-09-05,https://shakespeareandco.princeton.edu/members/crane-w-d/,W. D. Crane,"Crane, W. D.",3.00,20.00,1 month,31,1,,1925-08-05,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1925-08-05,1925-09-05,https://shakespeareandco.princeton.edu/members/adkins/,M. E. Adkins,"Adkins, M. E.",12.00,20.00,1 month,31,1,,1925-08-05,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-08-05,1925-08-10,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/meredith-ordeal-richard-feverel/,The Ordeal of Richard Feverel,,"Meredith, George",1859,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/7a%2F56%2Fbe%2F7a56be19de22453aa0a8633aae34ed5a%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1925-08-06,1925-09-06,https://shakespeareandco.princeton.edu/members/fitzgerald-b-m/,B. M. Fitzgerald,"Fitzgerald, B. M.",12.00,20.00,1 month,31,1,,1925-08-06,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-08-07,1925-08-11,https://shakespeareandco.princeton.edu/members/schirmer/,Mabel Schirmer / Mrs. Robert Schirmer,"Schirmer, Mabel",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/shaw-perfect-wagnerite/,The Perfect Wagnerite,,"Shaw, George Bernard",1898,,Lending Library Card,"Sylvia Beach, Mabel Schirmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4c00d0b2-7cb9-46e1-b628-2eac6ac7bb07/manifest,https://iiif-cloud.princeton.edu/iiif/2/e9%2F66%2F91%2Fe96691789f424ce1ab0efd6f73d5617b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-08-07,1925-08-11,https://shakespeareandco.princeton.edu/members/schirmer/,Mabel Schirmer / Mrs. Robert Schirmer,"Schirmer, Mabel",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/joyce-dubliners/,Dubliners,,"Joyce, James",1914,,Lending Library Card,"Sylvia Beach, Mabel Schirmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4c00d0b2-7cb9-46e1-b628-2eac6ac7bb07/manifest,https://iiif-cloud.princeton.edu/iiif/2/e9%2F66%2F91%2Fe96691789f424ce1ab0efd6f73d5617b%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1925-08-07,1926-08-07,https://shakespeareandco.princeton.edu/members/schirmer/,Mabel Schirmer / Mrs. Robert Schirmer,"Schirmer, Mabel",110.00,,1 year,365,2,,1925-08-07,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Mabel Schirmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/4c00d0b2-7cb9-46e1-b628-2eac6ac7bb07/manifest,;https://iiif-cloud.princeton.edu/iiif/2/e9%2F66%2F91%2Fe96691789f424ce1ab0efd6f73d5617b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-08-07,1925-08-26,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/fausset-dawn-poems-legendary/,Before the Dawn: Poems Legendary and Lyrical,,"Fausset, Hugh I'Anson",1924,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/13%2F65%2Fc3%2F1365c304fdb84e4ba63ac2e5f4f5a3be%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1925-08-07,1925-09-07,https://shakespeareandco.princeton.edu/members/bennett-1/,L. Bennett,"Bennett, L.",12.00,,1 month,31,1,,1925-08-07,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1925-08-07,1925-09-07,https://shakespeareandco.princeton.edu/members/ames/,W. J. Ames,"Ames, W. J.",12.00,20.00,1 month,31,1,,1925-08-07,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1925-08-07,1925-08-07,https://shakespeareandco.princeton.edu/members/cameron-helen/,Helen Cameron,"Cameron, Helen",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1925-08-08,1925-08-08,https://shakespeareandco.princeton.edu/members/hood-cree-d/,D. Hood-Cree,"Hood-Cree, D.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1925-08-10,1925-11-10,https://shakespeareandco.princeton.edu/members/hervey-mr/;https://shakespeareandco.princeton.edu/members/hervey-2/,Mr. Hervey;Mrs. Hervey,"Hervey, Mr.;Hervey, Mrs.",80.00,,3 months,92,4,,1925-07-29,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1925-08-10,1925-08-10,https://shakespeareandco.princeton.edu/members/kimball/,Nancy Kimball,"Kimball, Nancy",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-08-10,1925-08-13,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/hecht-gargoyles/,Gargoyles,,"Hecht, Ben",1922,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/7a%2F56%2Fbe%2F7a56be19de22453aa0a8633aae34ed5a%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1925-08-10,1925-08-10,https://shakespeareandco.princeton.edu/members/crane-w-d/,W. D. Crane,"Crane, W. D.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1925-08-10,1925-08-10,https://shakespeareandco.princeton.edu/members/adams-7/,Joan Adams,"Adams, Joan",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1925-08-10,1925-09-10,https://shakespeareandco.princeton.edu/members/andrews/,Miss Andrews,"Andrews, Miss",16.00,20.00,1 month,31,2,,1925-08-10,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1925-08-10,1925-09-10,https://shakespeareandco.princeton.edu/members/armstrong/,Isabel Armstrong,"Armstrong, Isabel",32.00,80.00,1 month,31,4,,1925-08-10,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Crossed out,1925-08-11,,https://shakespeareandco.princeton.edu/members/schirmer/,Mabel Schirmer / Mrs. Robert Schirmer,"Schirmer, Mabel",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/gorman-james-joyce-first/,"James Joyce, His First Forty Years",,"Gorman, Herbert Sherman",1924,,Lending Library Card,"Sylvia Beach, Mabel Schirmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4c00d0b2-7cb9-46e1-b628-2eac6ac7bb07/manifest,https://iiif-cloud.princeton.edu/iiif/2/e9%2F66%2F91%2Fe96691789f424ce1ab0efd6f73d5617b%2Fintermediate_file/full/full/0/default.jpg
+Crossed out,1925-08-11,,https://shakespeareandco.princeton.edu/members/schirmer/,Mabel Schirmer / Mrs. Robert Schirmer,"Schirmer, Mabel",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/hackett-nice-young-couple/,That Nice Young Couple,,"Hackett, Francis",1925,,Lending Library Card,"Sylvia Beach, Mabel Schirmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4c00d0b2-7cb9-46e1-b628-2eac6ac7bb07/manifest,https://iiif-cloud.princeton.edu/iiif/2/e9%2F66%2F91%2Fe96691789f424ce1ab0efd6f73d5617b%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1925-08-11,1925-09-11,https://shakespeareandco.princeton.edu/members/mastenbrock-anton/,Anton Mastenbrock,"Mastenbrock, Anton",12.00,20.00,1 month,31,1,,1925-08-11,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-08-11,1925-09-25,https://shakespeareandco.princeton.edu/members/scudder-raymond/,Raymond Scudder,"Scudder, Raymond",,,,,,,,,Returned,45,,,https://shakespeareandco.princeton.edu/books/matthews-essays-english/,Essays on English,,"Matthews, Brander",1921,,Lending Library Card,"Sylvia Beach, Raymond Scudder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/52604ca7-daab-4bdb-8efe-e63a7aa7e59f/manifest,https://iiif.princeton.edu/loris/figgy_prod/77%2F69%2F06%2F7769062252464e659cac87c633520663%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1925-08-13,1925-08-13,https://shakespeareandco.princeton.edu/members/schereck/,Mildred Schereck,"Schereck, Mildred",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Mildred Schereck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/3b15ea0c-ed8d-4b41-80f3-33485620b12c/manifest,;https://iiif-cloud.princeton.edu/iiif/2/dc%2F16%2F19%2Fdc1619891eeb4afcbfe63ae50b0b13e1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-08-13,1925-08-17,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/meredith-one-conquerors/,One of Our Conquerors,,"Meredith, George",1891,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/7a%2F56%2Fbe%2F7a56be19de22453aa0a8633aae34ed5a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-08-13,1925-08-17,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/mackenzie-coral-sequel-carnival/,"Coral: A Sequel to ""Carnival""",,"Mackenzie, Compton",1925,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/7a%2F56%2Fbe%2F7a56be19de22453aa0a8633aae34ed5a%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1925-08-14,1925-08-14,https://shakespeareandco.princeton.edu/members/derieu-h-b/,H. B. Derieu,"Derieu, H. B.",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1925-08-14,1925-08-14,https://shakespeareandco.princeton.edu/members/bourret/,J. Bourret,"Bourret, J.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-08-17,1925-09-11,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,25,,,https://shakespeareandco.princeton.edu/books/nicoll-history-restoration-drama/,"A History of Restoration Drama, 1600 β 1700",,"Nicoll, Allardyce",1923,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/7a%2F56%2Fbe%2F7a56be19de22453aa0a8633aae34ed5a%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1925-08-18,1925-09-18,https://shakespeareandco.princeton.edu/members/sargent/,Mr. Sargent,"Sargent, Mr.",16.00,,1 month,31,2,,1925-08-18,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1925-08-20,1925-09-20,https://shakespeareandco.princeton.edu/members/coole-rayno/,Rayno Coole,"Coole, Rayno",16.00,40.00,1 month,31,2,,1925-08-20,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1925-08-20,1925-09-20,https://shakespeareandco.princeton.edu/members/lewis-j/,Mrs. J. Lewis,"Lewis, Mrs. J.",12.00,20.00,1 month,31,1,,1925-08-20,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1925-08-20,1925-08-20,https://shakespeareandco.princeton.edu/members/hughes-miss/,Miss Hughes,"Hughes, Miss",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1925-08-20,1925-11-20,https://shakespeareandco.princeton.edu/members/oguz/,Mme Oguz,"Oguz, Mme",40.00,,3 months,92,2,,1925-07-17,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1925-08-21,1925-08-21,https://shakespeareandco.princeton.edu/members/mastenbrock-anton/,Anton Mastenbrock,"Mastenbrock, Anton",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-08-22,1925-08-24,https://shakespeareandco.princeton.edu/members/warfield/,Frances Warfield,"Warfield, Frances",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/barnes-book/,A Book,,"Barnes, Djuna",1923,,Lending Library Card,"Sylvia Beach, Frances Warfield Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/10cafde2-b9ce-45cd-8d32-1483c4c89061/manifest,https://iiif.princeton.edu/loris/figgy_prod/d2%2Fe3%2F2b%2Fd2e32b29383d48a7b80c15ee8eb03cdd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1925-08-22,1925-09-22,https://shakespeareandco.princeton.edu/members/howland-isabella/,Isabella Howland,"Howland, Isabella",16.00,20.00,1 month,31,2,,1925-08-22,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-08-22,1925-09-14,https://shakespeareandco.princeton.edu/members/watson-sarah-pressly/,Sarah Pressly Watson / Miss S. P. Watson,"Watson, Sarah Pressly",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/galsworthy-forsyte-saga/,The Forsyte Saga,,"Galsworthy, John",1922,,Lending Library Card,"Sylvia Beach, Sarah Pressly Watson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b54712a1-8ea4-4b3b-9dbb-f81c5950ac57/manifest,https://iiif.princeton.edu/loris/figgy_prod/70%2F4a%2Ffb%2F704afb38140d4f5bba2c7167e38db396%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1925-08-22,1925-09-22,https://shakespeareandco.princeton.edu/members/watson-sarah-pressly/,Sarah Pressly Watson / Miss S. P. Watson,"Watson, Sarah Pressly",12.00,20.00,1 month,31,1,,1925-08-22,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Sarah Pressly Watson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/b54712a1-8ea4-4b3b-9dbb-f81c5950ac57/manifest,;https://iiif.princeton.edu/loris/figgy_prod/70%2F4a%2Ffb%2F704afb38140d4f5bba2c7167e38db396%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1925-08-22,1925-08-22,https://shakespeareandco.princeton.edu/members/andrews/,Miss Andrews,"Andrews, Miss",,,,,,,,40.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1925-08-22,1925-09-22,https://shakespeareandco.princeton.edu/members/blackburn/,Mrs. Blackburn,"Blackburn, Mrs.",12.00,20.00,1 month,31,1,,1925-08-22,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1925-08-22,1926-02-22,https://shakespeareandco.princeton.edu/members/warfield/,Frances Warfield,"Warfield, Frances",52.00,20.00,6 months,184,1,,1925-08-22,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Frances Warfield Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/10cafde2-b9ce-45cd-8d32-1483c4c89061/manifest,;https://iiif.princeton.edu/loris/figgy_prod/d2%2Fe3%2F2b%2Fd2e32b29383d48a7b80c15ee8eb03cdd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1925-08-24,1925-08-24,https://shakespeareandco.princeton.edu/members/fitzgerald-b-m/,B. M. Fitzgerald,"Fitzgerald, B. M.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1925-08-24,,https://shakespeareandco.princeton.edu/members/jones-hays/,Hays Jones,"Jones, Hays",,,,,,,1925-08-24,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1925-08-24,1925-09-24,https://shakespeareandco.princeton.edu/members/blake-2/,Mr. Blake,"Blake, Mr.",16.00,,1 month,31,2,,1925-08-21,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-08-24,1925-09-04,https://shakespeareandco.princeton.edu/members/warfield/,Frances Warfield,"Warfield, Frances",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/douglas-siren-land/,Siren Land,,"Douglas, Norman",1911,,Lending Library Card,"Sylvia Beach, Frances Warfield Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/10cafde2-b9ce-45cd-8d32-1483c4c89061/manifest,https://iiif.princeton.edu/loris/figgy_prod/d2%2Fe3%2F2b%2Fd2e32b29383d48a7b80c15ee8eb03cdd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-08-25,1925-08-31,https://shakespeareandco.princeton.edu/members/scudder-raymond/,Raymond Scudder,"Scudder, Raymond",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/joyce-portrait-artist-young/,A Portrait of the Artist as a Young Man,,"Joyce, James",1916,,Lending Library Card,"Sylvia Beach, Raymond Scudder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/52604ca7-daab-4bdb-8efe-e63a7aa7e59f/manifest,https://iiif.princeton.edu/loris/figgy_prod/77%2F69%2F06%2F7769062252464e659cac87c633520663%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-08-25,1925-10-19,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,55,,,https://shakespeareandco.princeton.edu/books/arlen-piracy/,Piracy,,"Arlen, Michael",1922,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/07%2Fa3%2F4c%2F07a34cab31e341f5922a6a2e32fa1e5a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-08-25,1925-10-19,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,55,,,https://shakespeareandco.princeton.edu/books/atherton-californians/,The Californians,,"Atherton, Gertrude Franklin Horn",1898,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/07%2Fa3%2F4c%2F07a34cab31e341f5922a6a2e32fa1e5a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-08-26,1925-09-11,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/frank-chalk-face/,Chalk Face,,"Frank, Waldo",1924,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/13%2F65%2Fc3%2F1365c304fdb84e4ba63ac2e5f4f5a3be%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1925-08-26,1925-08-26,https://shakespeareandco.princeton.edu/members/lynahan-gertrude/,Gertrude Lynahan Sayre / Gertrude Lynahan,"Lynahan, Gertrude",,,,,,,,70.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1925-08-27,1925-08-27,https://shakespeareandco.princeton.edu/members/haus-annette/,Annette Haus,"Haus, Annette",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1925-08-29,1925-08-29,https://shakespeareandco.princeton.edu/members/chamberlain-louise/,Louise Chamberlain,"Chamberlain, Louise",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1925-08-29,1925-08-29,https://shakespeareandco.princeton.edu/members/cabeen/,Mrs. D. C. Cabeen,"Cabeen, Mrs. D. C.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-08-29,1925-11-05,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,68,,,https://shakespeareandco.princeton.edu/books/johnson-poems/,Poems,,"Johnson, Lionel",,Likely either Johnson's *Poems* (1895) or Johnson's *Selections from the Poems of Lionel Johnson* (1908).,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/37%2F45%2Fc6%2F3745c6824d204f61a49f848a0e9aa7cc%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-08-29,1925-11-14,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,77,,,https://shakespeareandco.princeton.edu/books/moore-ave-hail-farewell/,Ave (Hail and Farewell!),,"Moore, George",1911,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/37%2F45%2Fc6%2F3745c6824d204f61a49f848a0e9aa7cc%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1925-08-29,1925-08-29,https://shakespeareandco.princeton.edu/members/armstrong/,Isabel Armstrong,"Armstrong, Isabel",,,,,,,,80.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1925-08-31,1925-08-31,https://shakespeareandco.princeton.edu/members/gibbons-margaret/,Margaret Gibbons,"Gibbons, Margaret",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-09-01,1925-09-18,https://shakespeareandco.princeton.edu/members/watson-sarah-pressly/,Sarah Pressly Watson / Miss S. P. Watson,"Watson, Sarah Pressly",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/forster-howards-end/,Howards End,,"Forster, E. M.",1910,,Lending Library Card,"Sylvia Beach, Sarah Pressly Watson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b54712a1-8ea4-4b3b-9dbb-f81c5950ac57/manifest,https://iiif.princeton.edu/loris/figgy_prod/70%2F4a%2Ffb%2F704afb38140d4f5bba2c7167e38db396%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1925-09-01,1925-09-01,https://shakespeareandco.princeton.edu/members/proix/,Troise Proix,"Proix, Troise",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1925-09-02,1925-12-02,https://shakespeareandco.princeton.edu/members/moffet-anne/,Anne Moffet,"Moffet, Anne",40.00,40.00,3 months,91,2,,1925-09-02,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1925-09-02,1925-10-02,https://shakespeareandco.princeton.edu/members/lippman-alfred/,Alfred Lippman,"Lippman, Alfred",12.00,20.00,1 month,30,1,,1925-09-02,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1925-09-03,1925-12-03,https://shakespeareandco.princeton.edu/members/brown-anna-wood/,Anna Wood Brown,"Brown, Anna Wood",40.00,40.00,3 months,91,2,,1925-09-03,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1925-09-04,1925-12-04,https://shakespeareandco.princeton.edu/members/burns/,Jane Burns,"Burns, Jane",40.00,,3 months,91,2,,1925-09-04,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1925-09-04,1925-10-04,https://shakespeareandco.princeton.edu/members/meerovitch-l-s/,L. S. Meerovitch,"Meerovitch, L. S.",12.00,20.00,1 month,30,1,,1925-09-04,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-09-04,1925-09-09,https://shakespeareandco.princeton.edu/members/warfield/,Frances Warfield,"Warfield, Frances",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/corkery-threshold-quiet/,The Threshold of Quiet,,"Corkery, Daniel",1917,,Lending Library Card,"Sylvia Beach, Frances Warfield Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/10cafde2-b9ce-45cd-8d32-1483c4c89061/manifest,https://iiif.princeton.edu/loris/figgy_prod/d2%2Fe3%2F2b%2Fd2e32b29383d48a7b80c15ee8eb03cdd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-09-04,1925-09-16,https://shakespeareandco.princeton.edu/members/warfield/,Frances Warfield,"Warfield, Frances",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/ellis-dance-life/,The Dance of Life,,"Ellis, Havelock",1923,,Lending Library Card,"Sylvia Beach, Frances Warfield Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/10cafde2-b9ce-45cd-8d32-1483c4c89061/manifest,https://iiif.princeton.edu/loris/figgy_prod/d2%2Fe3%2F2b%2Fd2e32b29383d48a7b80c15ee8eb03cdd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1925-09-04,1925-10-04,https://shakespeareandco.princeton.edu/members/combet/,Lucien Combet,"Combet, Lucien",12.00,20.00,1 month,30,1,,1925-09-04,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Supplement,1925-09-04,1926-02-22,https://shakespeareandco.princeton.edu/members/warfield/,Frances Warfield,"Warfield, Frances",15.00,20.00,"5 months, 18 days",171,1,,1925-09-04,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-09-05,1925-09-21,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/cowling-preface-shakespeare/,A Preface to Shakespeare,,"Cowling, George H.",1925,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/7a%2F56%2Fbe%2F7a56be19de22453aa0a8633aae34ed5a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-09-05,1925-09-07,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/powys-mr-taskers-gods/,Mr. Tasker's Gods,,"Powys, Theodore Francis",1925,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/7a%2F56%2Fbe%2F7a56be19de22453aa0a8633aae34ed5a%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1925-09-05,1925-12-05,https://shakespeareandco.princeton.edu/members/poulain/,Mme Poulain,"Poulain, Mme",30.00,,3 months,91,1,,1925-08-29,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1925-09-07,1925-12-07,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",30.00,14.00,3 months,91,2,,1925-09-07,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/a0%2F03%2F0d%2Fa0030d1ea392499cae9c30bbe3289cfd%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-09-07,1925-09-29,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/lawrence-sons-lovers/,Sons and Lovers,,"Lawrence, D. H.",1913,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/a0%2F03%2F0d%2Fa0030d1ea392499cae9c30bbe3289cfd%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1925-09-07,1925-09-07,https://shakespeareandco.princeton.edu/members/coole-rayno/,Rayno Coole,"Coole, Rayno",,,,,,,,40.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-09-07,1925-09-29,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/pound-umbra-early-poems/,Umbra: The Early Poems of Ezra Pound,,"Pound, Ezra",1920,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/a0%2F03%2F0d%2Fa0030d1ea392499cae9c30bbe3289cfd%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-09-07,1925-09-26,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/raleigh-authors-collection-literary/,"Some Authors: A Collection of Literary Essays, 1896 β 1916",,,1923,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F89%2Fa4%2F5689a4b95685432aa62068f98b57b9df%2Fintermediate_file.jp2/full/full/0/default.jpg
+Supplement,1925-09-08,1926-10-18,https://shakespeareandco.princeton.edu/members/fenner-mary/,Mary Fenner,"Fenner, Mary",70.00,,"1 year, 1 month, 10 days",405,,,1925-09-08,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1925-09-08,1925-10-08,https://shakespeareandco.princeton.edu/members/davis-10/,Mary Davis,"Davis, Mary",12.00,200.00,1 month,30,1,,1925-09-08,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-09-09,1925-09-15,https://shakespeareandco.princeton.edu/members/warfield/,Frances Warfield,"Warfield, Frances",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/hecht-gargoyles/,Gargoyles,,"Hecht, Ben",1922,,Lending Library Card,"Sylvia Beach, Frances Warfield Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/10cafde2-b9ce-45cd-8d32-1483c4c89061/manifest,https://iiif.princeton.edu/loris/figgy_prod/d2%2Fe3%2F2b%2Fd2e32b29383d48a7b80c15ee8eb03cdd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-09-09,1925-09-16,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/hawthorne-scarlet-letter/,The Scarlet Letter,,"Hawthorne, Nathaniel",1850,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/ed%2Ffd%2Faf%2Fedfdafbf10d94f5bbc4a7bea20b03c3f%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1925-09-09,1925-10-09,https://shakespeareandco.princeton.edu/members/knox-alice-k/,Alice K. Knox,"Knox, Alice K.",16.00,40.00,1 month,30,2,,1925-09-09,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-09-11,1925-09-16,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/maugham-painted-veil/,The Painted Veil,,"Maugham, W. Somerset",1925,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/13%2F65%2Fc3%2F1365c304fdb84e4ba63ac2e5f4f5a3be%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1925-09-11,1925-10-11,https://shakespeareandco.princeton.edu/members/chomley/,Betty Chomley,"Chomley, Betty",16.00,40.00,1 month,30,2,,1925-09-11,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1925-09-11,1925-12-11,https://shakespeareandco.princeton.edu/members/wilson-r/,Mr. R. Wilson,"Wilson, Mr. R.",40.00,,3 months,91,2,,1925-09-05,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1925-09-11,1925-10-11,https://shakespeareandco.princeton.edu/members/jessel-robert/,Robert Jessel,"Jessel, Robert",16.00,40.00,1 month,30,2,,1925-09-11,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1925-09-12,1925-10-12,https://shakespeareandco.princeton.edu/members/loving-mrs/;https://shakespeareandco.princeton.edu/members/loving-pierre/,Mrs. Loving;Pierre Loving,"Loving, Mrs.;Loving, Pierre",12.00,,1 month,30,1,,1925-09-10,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1925-09-12,1925-12-12,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",40.00,,3 months,91,2,,1925-09-05,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1925-09-12,1925-10-12,https://shakespeareandco.princeton.edu/members/kenmore-margaret/,Margaret Kenmore,"Kenmore, Margaret",16.00,40.00,1 month,30,2,,1925-09-12,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1925-09-14,1926-03-14,https://shakespeareandco.princeton.edu/members/denby-edwin/,Edwin Denby,"Denby, Edwin",,20.00,6 months,181,2,,1925-09-14,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1925-09-14,1926-03-14,https://shakespeareandco.princeton.edu/members/chapin-harry/,Harry Chapin,"Chapin, Harry",67.00,,6 months,181,2,,1925-09-14,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-09-15,,https://shakespeareandco.princeton.edu/members/rooker/,John Kingsley Rooker,"Rooker, John Kingsley",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/forster-passage-india/,A Passage to India,,"Forster, E. M.",1924,,Lending Library Card,"Sylvia Beach, Rooker Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6d4ca8cb-45db-45d3-b2dc-8f3cfd45514d/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2F0f%2F98%2F500f984254cc42c0b033168b70583f21%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-09-15,1925-09-28,https://shakespeareandco.princeton.edu/members/warfield/,Frances Warfield,"Warfield, Frances",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/moore-sister-teresa/,Sister Teresa,,"Moore, George",1901,,Lending Library Card,"Sylvia Beach, Frances Warfield Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/10cafde2-b9ce-45cd-8d32-1483c4c89061/manifest,https://iiif.princeton.edu/loris/figgy_prod/d2%2Fe3%2F2b%2Fd2e32b29383d48a7b80c15ee8eb03cdd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-09-15,1925-10-09,https://shakespeareandco.princeton.edu/members/rooker/,John Kingsley Rooker,"Rooker, John Kingsley",,,,,,,,,Returned,24,,,https://shakespeareandco.princeton.edu/books/wells-salvaging-civilization-probable/,The Salvaging of Civilization: The Probable Future of Mankind,,"Wells, H. G.",1921,,Lending Library Card,"Sylvia Beach, Rooker Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6d4ca8cb-45db-45d3-b2dc-8f3cfd45514d/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2F0f%2F98%2F500f984254cc42c0b033168b70583f21%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1925-09-16,1925-09-16,https://shakespeareandco.princeton.edu/members/lewis-j/,Mrs. J. Lewis,"Lewis, Mrs. J.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-09-16,1925-09-18,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/galsworthy-plays-fourth-series/,Plays: Fourth Series,,"Galsworthy, John",1920,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/ed%2Ffd%2Faf%2Fedfdafbf10d94f5bbc4a7bea20b03c3f%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-09-16,1925-09-18,https://shakespeareandco.princeton.edu/members/warfield/,Frances Warfield,"Warfield, Frances",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/wagner-ring-nibelung/,Ring of the Nibelung,,"Wagner, Richard",,,Lending Library Card,"Sylvia Beach, Frances Warfield Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/10cafde2-b9ce-45cd-8d32-1483c4c89061/manifest,https://iiif.princeton.edu/loris/figgy_prod/d2%2Fe3%2F2b%2Fd2e32b29383d48a7b80c15ee8eb03cdd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1925-09-18,1926-03-18,https://shakespeareandco.princeton.edu/members/hambourg-jan/,Jan Hambourg,"Hambourg, Jan",67.00,,6 months,181,2,,1925-09-18,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-09-18,1925-09-28,https://shakespeareandco.princeton.edu/members/warfield/,Frances Warfield,"Warfield, Frances",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/gourmont-virgin-heart-novel/,A Virgin Heart: A Novel,,"Gourmont, RΓ©my de",1921,,Lending Library Card,"Sylvia Beach, Frances Warfield Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/10cafde2-b9ce-45cd-8d32-1483c4c89061/manifest,https://iiif.princeton.edu/loris/figgy_prod/d2%2Fe3%2F2b%2Fd2e32b29383d48a7b80c15ee8eb03cdd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-09-18,1925-10-06,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/ellis-evolution-modesty-phenomena/,The Evolution of Modesty; The Phenomena of Sexual Periodicity; Auto-Erotism (Studies in the Psychology of Sex 1),,"Ellis, Havelock",1897,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/ed%2Ffd%2Faf%2Fedfdafbf10d94f5bbc4a7bea20b03c3f%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1925-09-18,1925-09-18,https://shakespeareandco.princeton.edu/members/blackburn/,Mrs. Blackburn,"Blackburn, Mrs.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1925-09-18,1925-10-18,https://shakespeareandco.princeton.edu/members/cilley/,Virginia Cilley,"Cilley, Virginia",12.00,20.00,1 month,30,1,,1925-09-18,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1925-09-19,1925-10-19,https://shakespeareandco.princeton.edu/members/duhard-jean/,Jean Duhard,"Duhard, Jean",12.00,20.00,1 month,30,1,,1925-09-19,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-09-19,1925-09-26,https://shakespeareandco.princeton.edu/members/savy/,Alice Savy,"Savy, Alice",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/conrad-tales-unrest/,Tales of Unrest,,"Conrad, Joseph",1898,,Lending Library Card,"Sylvia Beach, Alice Savy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6bff5a62-eced-4f79-a6f3-649cab124b38/manifest,https://iiif.princeton.edu/loris/figgy_prod/92%2Fc2%2F3c%2F92c23cb3aa714f66ad09000a2ccb689f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1925-09-19,1925-10-19,https://shakespeareandco.princeton.edu/members/savy/,Alice Savy,"Savy, Alice",12.00,20.00,1 month,30,1,,1925-09-19,,,,,FRF,,,,,,,Lending Library Card;Logbook,"Sylvia Beach, Alice Savy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",https://figgy.princeton.edu/concern/scanned_resources/6bff5a62-eced-4f79-a6f3-649cab124b38/manifest;,https://iiif.princeton.edu/loris/figgy_prod/92%2Fc2%2F3c%2F92c23cb3aa714f66ad09000a2ccb689f%2Fintermediate_file.jp2/full/full/0/default.jpg;
+Subscription,1925-09-19,1925-10-19,https://shakespeareandco.princeton.edu/members/elms-f-g/,F. G. Elms,"Elms, F. G.",16.00,40.00,1 month,30,2,,1925-09-19,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1925-09-19,1925-10-19,https://shakespeareandco.princeton.edu/members/kieffer/,Mrs. B. B. Kieffer,"Kieffer, Mrs. B. B.",12.00,20.00,1 month,30,1,,1925-09-19,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1925-09-21,1925-09-21,https://shakespeareandco.princeton.edu/members/davis-10/,Mary Davis,"Davis, Mary",,,,,,,,200.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1925-09-21,1925-09-21,https://shakespeareandco.princeton.edu/members/hove/,Mrs. Hove / Mrs. Howes,"Hove, Mrs.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Separate Payment,1925-09-21,1925-09-21,https://shakespeareandco.princeton.edu/members/knox-alice-k/,Alice K. Knox,"Knox, Alice K.",,200.00,,,,,1925-09-21,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1925-09-21,1925-10-21,https://shakespeareandco.princeton.edu/members/nagy/,Nicolas de Nagy,"de Nagy, Nicolas",12.00,20.00,1 month,30,1,,1925-09-21,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-09-21,1925-09-23,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/benson-pipers-dancer/,Pipers and a Dancer,,"Benson, Stella",1924,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/7a%2F56%2Fbe%2F7a56be19de22453aa0a8633aae34ed5a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-09-21,1925-10-20,https://shakespeareandco.princeton.edu/members/savy/,Alice Savy,"Savy, Alice",,,,,,,,,Returned,29,,,https://shakespeareandco.princeton.edu/books/meredith-diana-crossways/,Diana of the Crossways,,"Meredith, George",1885,,Lending Library Card,"Sylvia Beach, Alice Savy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6bff5a62-eced-4f79-a6f3-649cab124b38/manifest,https://iiif.princeton.edu/loris/figgy_prod/92%2Fc2%2F3c%2F92c23cb3aa714f66ad09000a2ccb689f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-09-22,1925-10-22,https://shakespeareandco.princeton.edu/members/pottecher-therese/,Therèse Pottecher,"Pottecher, Therèse",,,,,,,,,Returned,30,,,https://shakespeareandco.princeton.edu/books/joyce-dubliners/,Dubliners,,"Joyce, James",1914,,Lending Library Card,"Sylvia Beach, Therèse Pottecher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/69b82696-3801-41ff-b1fd-c792179c5b98/manifest,https://iiif-cloud.princeton.edu/iiif/2/c4%2F4e%2F60%2Fc44e600e2d3c4c79ac86e53dfeb373da%2Fintermediate_file/full/full/0/default.jpg
+Supplement,1925-09-22,1925-11-02,https://shakespeareandco.princeton.edu/members/clark-miss/,Miss Clark,"Clark, Miss",20.00,20.00,"1 month, 11 days",41,1,,1925-09-22,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1925-09-22,1925-09-22,https://shakespeareandco.princeton.edu/members/greenhood-frances/,Frances Greenhood,"Greenhood, Frances",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Supplement,1925-09-23,1925-10-21,https://shakespeareandco.princeton.edu/members/stumer/,Miss Stumer,"Stumer, Miss",4.00,20.00,28 days,28,1,,1925-09-23,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-09-23,1925-11-06,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,44,,,https://shakespeareandco.princeton.edu/books/glasgow-barren-ground/,Barren Ground,,"Glasgow, Ellen",1925,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/13%2F65%2Fc3%2F1365c304fdb84e4ba63ac2e5f4f5a3be%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-09-23,1925-09-25,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/woolf-mrs-dalloway/,Mrs. Dalloway,,"Woolf, Virginia",1925,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/7a%2F56%2Fbe%2F7a56be19de22453aa0a8633aae34ed5a%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1925-09-23,1925-10-23,https://shakespeareandco.princeton.edu/members/malkiel-henrietta/,Henrietta Malkiel,"Malkiel, Henrietta",12.00,20.00,1 month,30,1,,1925-09-23,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1925-09-23,1925-09-23,https://shakespeareandco.princeton.edu/members/mcnair-mary/,Mary McNair / Macnair,"McNair, Mary",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1925-09-24,1925-10-24,https://shakespeareandco.princeton.edu/members/blake-2/,Mr. Blake,"Blake, Mr.",16.00,,1 month,30,2,,1925-09-23,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1925-09-24,1925-09-24,https://shakespeareandco.princeton.edu/members/wilson-r/,Mr. R. Wilson,"Wilson, Mr. R.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1925-09-24,1925-10-24,https://shakespeareandco.princeton.edu/members/parry/;https://shakespeareandco.princeton.edu/members/parry-3/,M. Parry;Mrs. Parry,"Parry, M.;Parry, Mrs.",12.00,,1 month,30,1,,1925-09-24,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1925-09-24,1926-09-24,https://shakespeareandco.princeton.edu/members/maas/,Alice Maas,"Maas, Alice",81.00,,1 year,365,1,AdL,1925-09-24,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-09-25,1925-09-28,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/swinnerton-elder-sister/,The Elder Sister,,"Swinnerton, Frank",1925,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/7a%2F56%2Fbe%2F7a56be19de22453aa0a8633aae34ed5a%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1925-09-25,1925-10-25,https://shakespeareandco.princeton.edu/members/camfferman/,Margaret Gove Camfferman / Mrs. P. M. Camfferman,"Camfferman, Margaret Gove",16.00,40.00,1 month,30,2,,1925-09-25,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1925-09-25,1925-11-25,https://shakespeareandco.princeton.edu/members/scudder-raymond/,Raymond Scudder,"Scudder, Raymond",24.00,,2 months,61,1,,1925-09-25,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Raymond Scudder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/52604ca7-daab-4bdb-8efe-e63a7aa7e59f/manifest,;https://iiif.princeton.edu/loris/figgy_prod/77%2F69%2F06%2F7769062252464e659cac87c633520663%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1925-09-25,1925-10-25,https://shakespeareandco.princeton.edu/members/chapin/,Mrs. N. C. Chapin,"Chapin, Mrs. N. C.",16.00,40.00,1 month,30,2,,1925-09-25,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-09-26,1925-10-29,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,33,,,https://shakespeareandco.princeton.edu/books/waugh-georgian-stories-1925/,"Georgian Stories, 1925",,,1925,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/78%2Fd0%2Fa8%2F78d0a879423f47daa1e2a1e4e57e548a%2Fintermediate_file/full/full/0/default.jpg
+Supplement,1925-09-26,1925-10-25,https://shakespeareandco.princeton.edu/members/adkins/,M. E. Adkins,"Adkins, M. E.",4.00,,29 days,29,1,,1925-09-26,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1925-09-26,1925-09-26,https://shakespeareandco.princeton.edu/members/kenmore-margaret/,Margaret Kenmore,"Kenmore, Margaret",,,,,,,,40.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1925-09-26,1925-10-26,https://shakespeareandco.princeton.edu/members/blake-2/,Mr. Blake,"Blake, Mr.",16.00,,1 month,30,2,,1925-09-26,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-09-26,1925-10-29,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,33,,,https://shakespeareandco.princeton.edu/books/moore-evelyn-inness/,Evelyn Innes,,"Moore, George",1898,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F89%2Fa4%2F5689a4b95685432aa62068f98b57b9df%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1925-09-28,1925-12-28,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",20.00,,3 months,91,1,,1925-11-06,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,;https://iiif-cloud.princeton.edu/iiif/2/13%2F65%2Fc3%2F1365c304fdb84e4ba63ac2e5f4f5a3be%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-09-28,1925-10-10,https://shakespeareandco.princeton.edu/members/warfield/,Frances Warfield,"Warfield, Frances",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/mencken-book-burlesques/,A Book of Burlesques,,"Mencken, H. L.",1923,,Lending Library Card,"Sylvia Beach, Frances Warfield Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/10cafde2-b9ce-45cd-8d32-1483c4c89061/manifest,https://iiif.princeton.edu/loris/figgy_prod/d2%2Fe3%2F2b%2Fd2e32b29383d48a7b80c15ee8eb03cdd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1925-09-28,1925-10-28,https://shakespeareandco.princeton.edu/members/guinot-jeanne/,Jeanne Guinot,"Guinot, Jeanne",12.00,20.00,1 month,30,1,,1925-09-28,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1925-09-28,1925-10-28,https://shakespeareandco.princeton.edu/members/whitney-marg/,Margaret Whitney,"Whitney, Margaret",16.00,40.00,1 month,30,2,,1925-09-28,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-09-28,1925-10-05,https://shakespeareandco.princeton.edu/members/warfield/,Frances Warfield,"Warfield, Frances",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/moore-esther-waters/,Esther Waters,,"Moore, George",1894,,Lending Library Card,"Sylvia Beach, Frances Warfield Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/10cafde2-b9ce-45cd-8d32-1483c4c89061/manifest,https://iiif.princeton.edu/loris/figgy_prod/d2%2Fe3%2F2b%2Fd2e32b29383d48a7b80c15ee8eb03cdd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1925-09-28,1925-09-28,https://shakespeareandco.princeton.edu/members/collier-elenor/,Elenor Collier,"Collier, Elenor",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-09-28,1925-10-02,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/kennedy-ladies-lyndon/,The Ladies of Lyndon,,"Kennedy, Margaret",1923,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/7a%2F56%2Fbe%2F7a56be19de22453aa0a8633aae34ed5a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-09-29,1925-10-23,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,24,,,https://shakespeareandco.princeton.edu/books/sitwell-wheels-1921-sixth/,Wheels: 1921 (Sixth Cycle),,,1921,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/a0%2F03%2F0d%2Fa0030d1ea392499cae9c30bbe3289cfd%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1925-09-29,1925-11-10,https://shakespeareandco.princeton.edu/members/crooke-john/;https://shakespeareandco.princeton.edu/members/crooke-1/,John Crooke;Mrs. Crooke,"Crooke, John;Crooke, Mrs.",24.00,,6 weeks,42,2,,1925-09-29,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1925-09-29,1925-09-29,https://shakespeareandco.princeton.edu/members/crooke-john/;https://shakespeareandco.princeton.edu/members/crooke-1/,John Crooke;Mrs. Crooke,"Crooke, John;Crooke, Mrs.",,,,,,,,40.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-09-29,1925-12-23,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,85,,,https://shakespeareandco.princeton.edu/books/chesterton-new-jerusalem/,The New Jerusalem,,"Chesterton, G. K.",1920,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/a0%2F03%2F0d%2Fa0030d1ea392499cae9c30bbe3289cfd%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1925-09-30,1925-10-30,https://shakespeareandco.princeton.edu/members/bloch-c/,Claire Bloch,"Bloch, Claire",16.00,40.00,1 month,30,2,,1925-09-30,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1925-10-01,1925-11-01,https://shakespeareandco.princeton.edu/members/bailward/,C. Bailward,"Bailward, C.",16.00,40.00,1 month,31,2,,1925-10-01,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1925-10-01,1926-01-01,https://shakespeareandco.princeton.edu/members/buck/,Paul Buck,"Buck, Paul",40.00,40.00,3 months,92,2,,1925-10-01,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1925-10-02,1925-10-02,https://shakespeareandco.princeton.edu/members/carter-2/,Jeanne Carter,"Carter, Jeanne",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1925-10-02,1925-11-02,https://shakespeareandco.princeton.edu/members/lippman-alfred/,Alfred Lippman,"Lippman, Alfred",12.00,,1 month,31,1,,1925-10-01,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-10-02,1925-10-06,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/perry-origin-magic-religion/,The Origin of Magic and Religion,,"Perry, W. J.",1923,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/62%2Fac%2Fd2%2F62acd25d62e64216a64fbde4e6ff33ec%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1925-10-03,1925-11-03,https://shakespeareandco.princeton.edu/members/stewart-m/,M. Stewart,"Stewart, M.",16.00,,1 month,31,2,,1925-10-03,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1925-10-03,1925-10-03,https://shakespeareandco.princeton.edu/members/combet/,Lucien Combet,"Combet, Lucien",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1925-10-03,1925-11-03,https://shakespeareandco.princeton.edu/members/landauer/,Mrs. Landauer,"Landauer, Mrs.",12.00,20.00,1 month,31,1,,1925-10-03,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1925-10-05,1925-11-05,https://shakespeareandco.princeton.edu/members/ives-john/,John Ives,"Ives, John",16.00,40.00,1 month,31,2,,1925-10-05,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-10-05,1925-10-19,https://shakespeareandco.princeton.edu/members/warfield/,Frances Warfield,"Warfield, Frances",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/douglas-alone/,Alone,,"Douglas, Norman",1921,,Lending Library Card,"Sylvia Beach, Frances Warfield Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/10cafde2-b9ce-45cd-8d32-1483c4c89061/manifest,https://iiif.princeton.edu/loris/figgy_prod/d2%2Fe3%2F2b%2Fd2e32b29383d48a7b80c15ee8eb03cdd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1925-10-05,1925-10-05,https://shakespeareandco.princeton.edu/members/wise-ruth/,Ruth Wise,"Wise, Ruth",,,,,,,,7.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1925-10-05,1925-10-05,https://shakespeareandco.princeton.edu/members/kieffer/,Mrs. B. B. Kieffer,"Kieffer, Mrs. B. B.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-10-06,1925-10-15,https://shakespeareandco.princeton.edu/members/schirmer/,Mabel Schirmer / Mrs. Robert Schirmer,"Schirmer, Mabel",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/gorman-james-joyce-first/,"James Joyce, His First Forty Years",,"Gorman, Herbert Sherman",1924,,Lending Library Card,"Sylvia Beach, Mabel Schirmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4c00d0b2-7cb9-46e1-b628-2eac6ac7bb07/manifest,https://iiif-cloud.princeton.edu/iiif/2/e9%2F66%2F91%2Fe96691789f424ce1ab0efd6f73d5617b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-10-06,1925-10-13,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/king-translator-dante-life/,"The Translator of Dante: The Life, Work and Friendships of Henry Francis Cary (1772 β 1844)",,"King, R. W.",1925,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/62%2Fac%2Fd2%2F62acd25d62e64216a64fbde4e6ff33ec%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1925-10-06,1925-11-06,https://shakespeareandco.princeton.edu/members/guibaud-alice/,Alice Guibaud,"Guibaud, Alice",12.00,20.00,1 month,31,1,,1925-10-06,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-10-06,1925-10-16,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/ellis-sexual-inversion-studies/,Sexual Inversion (Studies in the Psychology of Sex 2),,"Ellis, Havelock",1900,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/ed%2Ffd%2Faf%2Fedfdafbf10d94f5bbc4a7bea20b03c3f%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1925-10-08,1926-01-08,https://shakespeareandco.princeton.edu/members/gallagher-e-b/,E. B. Gallagher,"Gallagher, E. B.",20.00,20.00,3 months,92,1,,1925-10-08,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-10-08,,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/sinclair-mammonart-essay-economic/,Mammonart: An Essay in Economic Interpretation,,"Sinclair, Upton",1925,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/28%2Ff9%2F7d%2F28f97db617bb43b98744175c11c3170d%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1925-10-09,1925-10-09,https://shakespeareandco.princeton.edu/members/deniau/,M. Deniau,"Deniau, M.",,,,,,,,7.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-10-09,1925-10-14,https://shakespeareandco.princeton.edu/members/rooker/,John Kingsley Rooker,"Rooker, John Kingsley",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/way/,The Way Out,,,,"Unidentified. Charles J. Bellamy's *The Way Out: Suggestions for Social Reform* (1884), Emerson Hough's *The Way Out: A Story of the Cumberlands To-day* (1918), or E. A. Filene's *The Way Out: A Forecast of Coming Changes in American Business and Industry* (1924), etc.",Lending Library Card,"Sylvia Beach, Rooker Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6d4ca8cb-45db-45d3-b2dc-8f3cfd45514d/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2F0f%2F98%2F500f984254cc42c0b033168b70583f21%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-10-09,1925-10-13,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/swinnerton-elder-sister/,The Elder Sister,,"Swinnerton, Frank",1925,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/4c%2F1e%2F14%2F4c1e1486db0445cc80244924fce9e2a9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-10-09,1925-10-28,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/yeats-plays/,Plays,,"Yeats, William Butler",,Unidentified edition or editions.,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/dc%2F94%2Ffd%2Fdc94fda0cd9c4ae195f988f5a500f00f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1925-10-09,1925-10-09,https://shakespeareandco.princeton.edu/members/lippman-alfred/,Alfred Lippman,"Lippman, Alfred",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-10-09,1925-10-28,https://shakespeareandco.princeton.edu/members/rooker/,John Kingsley Rooker,"Rooker, John Kingsley",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/sinclair-new-idealism/,The New Idealism,,"Sinclair, May",1922,,Lending Library Card,"Sylvia Beach, Rooker Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6d4ca8cb-45db-45d3-b2dc-8f3cfd45514d/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2F0f%2F98%2F500f984254cc42c0b033168b70583f21%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1925-10-10,1926-01-10,https://shakespeareandco.princeton.edu/members/masten-richard/,Richard Masten,"Masten, Richard",40.00,40.00,3 months,92,2,,1925-10-10,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-10-10,1925-10-19,https://shakespeareandco.princeton.edu/members/warfield/,Frances Warfield,"Warfield, Frances",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/hardy-tess-durbervilles/,Tess of the d'Urbervilles,,"Hardy, Thomas",1891,,Lending Library Card,"Sylvia Beach, Frances Warfield Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/10cafde2-b9ce-45cd-8d32-1483c4c89061/manifest,https://iiif.princeton.edu/loris/figgy_prod/d2%2Fe3%2F2b%2Fd2e32b29383d48a7b80c15ee8eb03cdd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1925-10-12,1925-11-12,https://shakespeareandco.princeton.edu/members/loving-mrs/;https://shakespeareandco.princeton.edu/members/loving-pierre/,Mrs. Loving;Pierre Loving,"Loving, Mrs.;Loving, Pierre",12.00,,1 month,31,1,,1925-10-08,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1925-10-12,1925-11-12,https://shakespeareandco.princeton.edu/members/kean-l-l/,Mrs. L. L. Kean,"Kean, Mrs. L. L.",12.00,20.00,1 month,31,1,,1925-10-12,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1925-10-12,1925-11-12,https://shakespeareandco.princeton.edu/members/boer-josephine-de/,Josephine de Boer,"de Boer, Josephine",12.00,,1 month,31,1,,1925-10-12,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1925-10-12,1925-11-12,https://shakespeareandco.princeton.edu/members/bouthillier-2/,Madeleine Bouthillier,"Bouthillier, Madeleine",12.00,20.00,1 month,31,1,,1925-10-12,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1925-10-12,1926-01-12,https://shakespeareandco.princeton.edu/members/adams-8/,John E. Adams,"Adams, John E.",40.00,40.00,3 months,92,2,,1925-10-12,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-10-12,1925-10-27,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/flaubert-sentimental-education/,Sentimental Education,,"Flaubert, Gustave",1869,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/28%2Ff9%2F7d%2F28f97db617bb43b98744175c11c3170d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-10-13,1925-10-15,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/burke-nights-town/,Nights in Town,,"Burke, Thomas",1925,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/62%2Fac%2Fd2%2F62acd25d62e64216a64fbde4e6ff33ec%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-10-13,1925-10-20,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/saintsbury-english-novel/,The English Novel,,"Saintsbury, George",1919,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/62%2Fac%2Fd2%2F62acd25d62e64216a64fbde4e6ff33ec%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-10-13,1925-10-17,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/scott-golden-door/,The Golden Door,,"Scott, Evelyn",1925,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/4c%2F1e%2F14%2F4c1e1486db0445cc80244924fce9e2a9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1925-10-13,1925-11-13,https://shakespeareandco.princeton.edu/members/fordham-rupert/,Rupert Fordham,"Fordham, Rupert",12.00,20.00,1 month,31,1,,1925-10-13,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-10-14,1925-10-22,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/slocum-sailing-alone-around/,Sailing Alone Around the World,,"Slocum, Joshua",1900,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/28%2Ff9%2F7d%2F28f97db617bb43b98744175c11c3170d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-10-14,1931-01-10,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Returned,1914,,,https://shakespeareandco.princeton.edu/books/huxley-barren-leaves/,Those Barren Leaves,,"Huxley, Aldous",1925,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1925-10-14,1931-01-10,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Returned,1914,,,https://shakespeareandco.princeton.edu/books/huxley-antic-hay/,Antic Hay,,"Huxley, Aldous",1923,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Reimbursement,1925-10-14,1925-10-14,https://shakespeareandco.princeton.edu/members/cilley/,Virginia Cilley,"Cilley, Virginia",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1925-10-14,1925-11-14,https://shakespeareandco.princeton.edu/members/harrison-p/,P. Harrison,"Harrison, P.",12.00,20.00,1 month,31,1,,1925-10-14,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1925-10-14,1926-10-14,https://shakespeareandco.princeton.edu/members/hibbard-dorothy/,Dorothy Hibbard,"Hibbard, Dorothy",110.00,,1 year,365,2,,1925-10-14,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1925-10-14,1925-11-14,https://shakespeareandco.princeton.edu/members/jones-jamie/,Jamie Jones,"Jones, Jamie",16.00,40.00,1 month,31,2,,1925-10-14,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-10-14,1925-10-28,https://shakespeareandco.princeton.edu/members/rooker/,John Kingsley Rooker,"Rooker, John Kingsley",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/sinclair-romantic/,The Romantic,,"Sinclair, May",1920,,Lending Library Card,"Sylvia Beach, Rooker Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6d4ca8cb-45db-45d3-b2dc-8f3cfd45514d/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2F0f%2F98%2F500f984254cc42c0b033168b70583f21%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1925-10-14,1925-11-14,https://shakespeareandco.princeton.edu/members/thanhouser/,Mrs. Thanhouser,"Thanhouser, Mrs.",16.00,60.00,1 month,31,2,,1925-10-14,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-10-14,1925-10-22,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/tomlinson-sea-jungle/,The Sea and the Jungle,,"Tomlinson, H. M.",1912,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/28%2Ff9%2F7d%2F28f97db617bb43b98744175c11c3170d%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1925-10-16,1925-11-16,https://shakespeareandco.princeton.edu/members/kendall-carlton/,Carlton Kendall,"Kendall, Carlton",12.00,50.00,1 month,31,1,,1925-10-16,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-10-16,1925-10-27,https://shakespeareandco.princeton.edu/members/schirmer/,Mabel Schirmer / Mrs. Robert Schirmer,"Schirmer, Mabel",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/proust-swanns-way/,Swann's Way (Γ la recherche du temps perdu 1),Vol. 1,"Proust, Marcel",1922,,Lending Library Card,"Sylvia Beach, Mabel Schirmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4c00d0b2-7cb9-46e1-b628-2eac6ac7bb07/manifest,https://iiif-cloud.princeton.edu/iiif/2/e9%2F66%2F91%2Fe96691789f424ce1ab0efd6f73d5617b%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1925-10-17,1926-01-17,https://shakespeareandco.princeton.edu/members/hay-margaret/,Margaret Hay,"Hay, Margaret",30.00,20.00,3 months,92,1,,1925-10-17,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1925-10-17,1926-01-17,https://shakespeareandco.princeton.edu/members/mcdonald-emma/,Emma McDonald,"McDonald, Emma",30.00,20.00,3 months,92,1,,1925-10-17,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-10-17,1925-10-20,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/gibbs-soundings-novel/,Soundings: A Novel,,"Gibbs, A. Hamilton",1925,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/4c%2F1e%2F14%2F4c1e1486db0445cc80244924fce9e2a9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1925-10-17,1926-01-17,https://shakespeareandco.princeton.edu/members/gund-josephine/,Josephine Gund,"Gund, Josephine",30.00,20.00,3 months,92,1,,1925-10-17,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1925-10-17,1925-10-17,https://shakespeareandco.princeton.edu/members/crane/,Clarkson Crane,"Crane, Clarkson",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1925-10-18,1925-11-18,https://shakespeareandco.princeton.edu/members/simler/,Mrs. Simler,"Simler, Mrs.",12.00,,1 month,31,1,,1925-10-02,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-10-19,1925-10-19,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/walpole-old-ladies/,The Old Ladies,,"Walpole, Hugh",1924,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/07%2Fa3%2F4c%2F07a34cab31e341f5922a6a2e32fa1e5a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-10-19,1925-10-28,https://shakespeareandco.princeton.edu/members/linossier-raymonde/,Raymonde Linossier,"Linossier, Raymonde",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/swynnerton-romantic-tales-punjab/,Romantic Tales from the Punjab,,,1903,,Lending Library Card,"Sylvia Beach, Raymonde Linossier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/53ede5bf-939d-44f5-9ddb-4dd39363bd20/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2F3a%2F9c%2F233a9cb20f834e619e82f1ecdce098fd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1925-10-19,1926-10-19,https://shakespeareandco.princeton.edu/members/cody/;https://shakespeareandco.princeton.edu/members/cody-morrill/,Frances Cody;Morrill Cody,"Cody, Frances;Cody, Morrill",110.00,40.00,1 year,365,2,,1925-10-19,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1925-10-19,1926-01-19,https://shakespeareandco.princeton.edu/members/sutherland/,Charles Sutherland,"Sutherland, Charles",40.00,,3 months,92,2,,1925-10-19,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-10-20,1925-11-04,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/brinton-golden-age-medici/,"Golden Age of the Medici (Cosimo, Piero, Lorenzo de' Medici) 1434 β 1494",,"Brinton, Selwyn",1925,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/62%2Fac%2Fd2%2F62acd25d62e64216a64fbde4e6ff33ec%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1925-10-20,1925-11-20,https://shakespeareandco.princeton.edu/members/carlisle-hollis-moore/,Hollis Moore Carlisle,"Carlisle, Hollis Moore",16.00,40.00,1 month,31,2,,1925-10-20,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Crossed out,1925-10-20,,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/maugham-painted-veil/,The Painted Veil,,"Maugham, W. Somerset",1925,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/62%2Fac%2Fd2%2F62acd25d62e64216a64fbde4e6ff33ec%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-10-20,1925-11-03,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/kaye-smith-george-crown/,The George and the Crown,,"Kaye-Smith, Sheila",1925,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/4c%2F1e%2F14%2F4c1e1486db0445cc80244924fce9e2a9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1925-10-20,1926-10-20,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",90.00,,1 year,365,1,,1925-12-19,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,;https://iiif.princeton.edu/loris/figgy_prod/07%2Fa3%2F4c%2F07a34cab31e341f5922a6a2e32fa1e5a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-10-20,1925-10-28,https://shakespeareandco.princeton.edu/members/savy/,Alice Savy,"Savy, Alice",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/gosse-aspects-impressions/,Aspects and Impressions,,"Gosse, Edmund",1922,,Lending Library Card,"Sylvia Beach, Alice Savy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6bff5a62-eced-4f79-a6f3-649cab124b38/manifest,https://iiif.princeton.edu/loris/figgy_prod/92%2Fc2%2F3c%2F92c23cb3aa714f66ad09000a2ccb689f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-10-20,1925-10-28,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/smith-words-idioms-studies/,Words and Idioms: Studies in the English Language,,"Smith, Logan Pearsall",1925,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/4c%2F1e%2F14%2F4c1e1486db0445cc80244924fce9e2a9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1925-10-20,1925-11-20,https://shakespeareandco.princeton.edu/members/savy/,Alice Savy,"Savy, Alice",12.00,,1 month,31,1,,1925-10-20,,,,,FRF,,,,,,,Lending Library Card;Logbook,"Sylvia Beach, Alice Savy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",https://figgy.princeton.edu/concern/scanned_resources/6bff5a62-eced-4f79-a6f3-649cab124b38/manifest;,https://iiif.princeton.edu/loris/figgy_prod/92%2Fc2%2F3c%2F92c23cb3aa714f66ad09000a2ccb689f%2Fintermediate_file.jp2/full/full/0/default.jpg;
+Subscription,1925-10-21,1925-11-21,https://shakespeareandco.princeton.edu/members/clarke-a/,A. Clarke,"Clarke, A.",12.00,20.00,1 month,31,1,,1925-10-21,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-10-21,1925-10-24,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/maugham-painted-veil/,The Painted Veil,,"Maugham, W. Somerset",1925,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/07%2Fa3%2F4c%2F07a34cab31e341f5922a6a2e32fa1e5a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1925-10-21,1925-11-21,https://shakespeareandco.princeton.edu/members/blumenthal/,Joseph Blumenthal,"Blumenthal, Joseph.",12.00,20.00,1 month,31,1,,1925-10-21,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1925-10-21,1925-11-21,https://shakespeareandco.princeton.edu/members/nagy/,Nicolas de Nagy,"de Nagy, Nicolas",12.00,,1 month,31,1,,1925-10-21,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-10-22,1925-11-16,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,25,,,https://shakespeareandco.princeton.edu/books/turgenev-sportsmans-sketches/,A Sportsman's Sketches,Vol. 2,"Turgenev, Ivan",1895,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/28%2Ff9%2F7d%2F28f97db617bb43b98744175c11c3170d%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1925-10-22,1925-10-22,https://shakespeareandco.princeton.edu/members/carlisle-hollis-moore/,Hollis Moore Carlisle,"Carlisle, Hollis Moore",,,,,,,,200.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1925-10-22,1925-10-22,https://shakespeareandco.princeton.edu/members/merle-daubigne/,Mlle Merle d'AubignΓ©,"Merle d'AubignΓ©, Mlle",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-10-22,1925-11-17,https://shakespeareandco.princeton.edu/members/pottecher-therese/,Therèse Pottecher,"Pottecher, Therèse",,,,,,,,,Returned,26,,,https://shakespeareandco.princeton.edu/books/joyce-portrait-artist-young/,A Portrait of the Artist as a Young Man,,"Joyce, James",1916,,Lending Library Card,"Sylvia Beach, Therèse Pottecher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/69b82696-3801-41ff-b1fd-c792179c5b98/manifest,https://iiif-cloud.princeton.edu/iiif/2/c4%2F4e%2F60%2Fc44e600e2d3c4c79ac86e53dfeb373da%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-10-22,1925-10-27,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/turgenev-lear-steppes-stories/,A Lear of the Steppes and Other Stories,,"Turgenev, Ivan",1898,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/28%2Ff9%2F7d%2F28f97db617bb43b98744175c11c3170d%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1925-10-22,1925-11-22,https://shakespeareandco.princeton.edu/members/dramez/,Marthe Dramez,"Dramez, Marthe",12.00,20.00,1 month,31,1,,1925-10-22,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1925-10-22,1925-10-22,https://shakespeareandco.princeton.edu/members/chapin/,Mrs. N. C. Chapin,"Chapin, Mrs. N. C.",,,,,,,,40.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-10-23,1925-11-13,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/mackenzie-rich-relatives/,Rich Relatives,,"Mackenzie, Compton",1921,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/8b%2F71%2Ff7%2F8b71f70be84448aaaa2dad268daea625%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1925-10-23,1925-11-23,https://shakespeareandco.princeton.edu/members/davies-6/,Mrs. G. Davies,"Davies, Mrs. G.",12.00,20.00,1 month,31,1,,1925-10-10,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1925-10-23,1926-01-23,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",40.00,,3 months,92,2,,1925-10-23,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Maspero Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/92dca37a-f412-4b18-90a3-d236d2b3fe20/manifest,;https://iiif-cloud.princeton.edu/iiif/2/8b%2F71%2Ff7%2F8b71f70be84448aaaa2dad268daea625%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-10-23,1925-11-13,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/lewis-main-street-story/,Main Street: The Story of Carol Kennicott,,"Lewis, Sinclair",1920,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/8b%2F71%2Ff7%2F8b71f70be84448aaaa2dad268daea625%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1925-10-23,1925-10-23,https://shakespeareandco.princeton.edu/members/howland-isabella/,Isabella Howland,"Howland, Isabella",,,,,,,,40.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1925-10-24,1925-11-24,https://shakespeareandco.princeton.edu/members/blake-2/,Mr. Blake,"Blake, Mr.",16.00,,1 month,31,2,,1925-10-20,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1925-10-24,1925-10-24,https://shakespeareandco.princeton.edu/members/blumenthal/,Joseph Blumenthal,"Blumenthal, Joseph.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1925-10-24,1926-01-24,https://shakespeareandco.princeton.edu/members/mcdonald-mr/,Mr. McDonald,"McDonald, Mr.",10.00,20.00,3 months,92,1,,1925-10-24,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-10-24,1926-01-06,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,74,,,https://shakespeareandco.princeton.edu/books/james-elroy-flecker/,James Elroy Flecker,,,,Unidentified. By or about James Elroy Flecker.,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/a0%2F03%2F0d%2Fa0030d1ea392499cae9c30bbe3289cfd%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-10-24,1926-01-06,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,74,,,https://shakespeareandco.princeton.edu/books/joyce-dubliners/,Dubliners,,"Joyce, James",1914,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/a0%2F03%2F0d%2Fa0030d1ea392499cae9c30bbe3289cfd%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-10-24,1925-10-31,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/sedgwick-little-french-girl/,The Little French Girl,,"Sedgwick, Anne Douglas",1924,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/07%2Fa3%2F4c%2F07a34cab31e341f5922a6a2e32fa1e5a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1925-10-26,1925-11-26,https://shakespeareandco.princeton.edu/members/wyers/,Mr. Wyers,"Wyers, Mr.",12.00,,1 month,31,1,,1925-10-24,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1925-10-26,1926-10-26,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",64.00,,1 year,365,1,,1925-10-23,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1925-10-26,1925-11-26,https://shakespeareandco.princeton.edu/members/duncan-a/,Captain A. Duncan,"Duncan, Captain A.",12.00,20.00,1 month,31,1,,1925-10-26,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1925-10-27,1925-10-27,https://shakespeareandco.princeton.edu/members/kendall-carlton/,Carlton Kendall,"Kendall, Carlton",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-10-27,1925-11-04,https://shakespeareandco.princeton.edu/members/lanux-pierre-de/,Pierre de Lanux,"de Lanux, Pierre",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/isaacs-theatre-arts-monthly/,Theatre Arts Monthly,"Vol. 9, no. 10, Oct 1925",,,,Lending Library Card,"Sylvia Beach, Pierre de Lanux Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e367ba9f-98cf-408d-9281-2c5771c2fa44/manifest,https://iiif.princeton.edu/loris/figgy_prod/ca%2Fda%2Fe8%2Fcadae8b190cd4f708a8e88505a8a3055%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-10-27,1925-11-16,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/turgenev-torrents-spring/,The Torrents of Spring,,"Turgenev, Ivan",1872,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/28%2Ff9%2F7d%2F28f97db617bb43b98744175c11c3170d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-10-27,1925-11-05,https://shakespeareandco.princeton.edu/members/schirmer/,Mabel Schirmer / Mrs. Robert Schirmer,"Schirmer, Mabel",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/proust-swanns-way/,Swann's Way (Γ la recherche du temps perdu 1),Vol. 2,"Proust, Marcel",1922,,Lending Library Card,"Sylvia Beach, Mabel Schirmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4c00d0b2-7cb9-46e1-b628-2eac6ac7bb07/manifest,https://iiif-cloud.princeton.edu/iiif/2/e9%2F66%2F91%2Fe96691789f424ce1ab0efd6f73d5617b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-10-27,1925-11-04,https://shakespeareandco.princeton.edu/members/lanux-pierre-de/,Pierre de Lanux,"de Lanux, Pierre",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/craig-mask-journal-art/,The Mask: A Journal of the Art of the Theatre,"Vol. 11, no. 4, Oct 1925",,,,Lending Library Card,"Sylvia Beach, Pierre de Lanux Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e367ba9f-98cf-408d-9281-2c5771c2fa44/manifest,https://iiif.princeton.edu/loris/figgy_prod/ca%2Fda%2Fe8%2Fcadae8b190cd4f708a8e88505a8a3055%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1925-10-28,1925-11-28,https://shakespeareandco.princeton.edu/members/williams-i/,I. Williams,"Williams, I.",40.00,,1 month,31,1,,1925-10-28,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-10-28,1925-11-17,https://shakespeareandco.princeton.edu/members/savy/,Alice Savy,"Savy, Alice",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/gosse-french-profiles/,French Profiles,,"Gosse, Edmund",1905,,Lending Library Card,"Sylvia Beach, Alice Savy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6bff5a62-eced-4f79-a6f3-649cab124b38/manifest,https://iiif.princeton.edu/loris/figgy_prod/92%2Fc2%2F3c%2F92c23cb3aa714f66ad09000a2ccb689f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-10-28,1925-12-03,https://shakespeareandco.princeton.edu/members/rooker/,John Kingsley Rooker,"Rooker, John Kingsley",,,,,,,,,Returned,36,,,https://shakespeareandco.princeton.edu/books/sinclair-mary-olivier-life/,Mary Olivier: A Life,,"Sinclair, May",1919,,Lending Library Card,"Sylvia Beach, Rooker Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6d4ca8cb-45db-45d3-b2dc-8f3cfd45514d/manifest,https://iiif.princeton.edu/loris/figgy_prod/86%2F8a%2F01%2F868a011077dd4a608b18cbb316fcd27d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1925-10-28,1925-10-28,https://shakespeareandco.princeton.edu/members/guinot-jeanne/,Jeanne Guinot,"Guinot, Jeanne",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-10-28,1925-11-09,https://shakespeareandco.princeton.edu/members/rooker/,John Kingsley Rooker,"Rooker, John Kingsley",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/chesterton-everlasting-man/,The Everlasting Man,,"Chesterton, G. K.",1925,,Lending Library Card,"Sylvia Beach, Rooker Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6d4ca8cb-45db-45d3-b2dc-8f3cfd45514d/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2F0f%2F98%2F500f984254cc42c0b033168b70583f21%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-10-28,,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/bramah-kai-lungs-golden/,Kai Lung's Golden Hours,,"Bramah, Ernest",1922,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/dc%2F94%2Ffd%2Fdc94fda0cd9c4ae195f988f5a500f00f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-10-29,1925-11-21,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/matthews-essays-english/,Essays on English,,"Matthews, Brander",1921,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F89%2Fa4%2F5689a4b95685432aa62068f98b57b9df%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-10-29,1925-10-31,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/waugh-loom-youth/,The Loom of Youth,,"Waugh, Alec",1917,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/78%2Fd0%2Fa8%2F78d0a879423f47daa1e2a1e4e57e548a%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1925-10-29,1926-01-29,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",30.00,20.00,3 months,92,1,Student,1925-10-29,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1925-10-29,1926-10-29,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",88.00,,1 year,365,1,AdL,1925-11-05,,,,,FRF,,,,,,,Lending Library Card;Logbook,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest;,https://iiif-cloud.princeton.edu/iiif/2/37%2F45%2Fc6%2F3745c6824d204f61a49f848a0e9aa7cc%2Fintermediate_file/full/full/0/default.jpg;
+Subscription,1925-10-30,1925-11-30,https://shakespeareandco.princeton.edu/members/frank-mary/,Mary Frank,"Frank, Mary",12.00,100.00,1 month,31,1,,1925-10-30,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1925-10-30,1925-10-30,https://shakespeareandco.princeton.edu/members/fel/,Mme Fels,"Fels, Mme",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1925-10-31,1925-11-30,https://shakespeareandco.princeton.edu/members/facteau-bernard/,Bernard Facteau,"Facteau, Bernard",12.00,20.00,1 month,30,1,,1925-10-31,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-10-31,1925-11-06,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/passes/,Passes By,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/07%2Fa3%2F4c%2F07a34cab31e341f5922a6a2e32fa1e5a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-10-31,1925-11-03,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/packard-locked-book/,The Locked Book,,"Packard, Frank L.",1924,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/78%2Fd0%2Fa8%2F78d0a879423f47daa1e2a1e4e57e548a%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1925-10-31,1925-10-31,https://shakespeareandco.princeton.edu/members/wilson-r/,Mr. R. Wilson,"Wilson, Mr. R.",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1925-10-31,1925-11-30,https://shakespeareandco.princeton.edu/members/benedictus/,Guillaume Benedictus,"Benedictus, Guillaume",12.00,20.00,1 month,30,1,,1925-10-31,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-10-31,1925-11-27,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,27,,,https://shakespeareandco.princeton.edu/books/ellis-sexual-selection-man/,Sexual Selection in Man (Studies in the Psychology of Sex 4),,"Ellis, Havelock",1905,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/ed%2Ffd%2Faf%2Fedfdafbf10d94f5bbc4a7bea20b03c3f%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1925-11-01,1925-11-08,https://shakespeareandco.princeton.edu/members/roussel/,Mme Roussel,"Roussel, Mme",3.00,,1 week,7,,,1925-10-31,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1925-11-03,1926-02-03,https://shakespeareandco.princeton.edu/members/bennett-frank/,Frank Bennett,"Bennett, Frank",40.00,40.00,3 months,92,2,,1925-11-03,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-11-03,1925-11-16,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/brooke-selected-poems/,Selected Poems,,"Brooke, Rupert",1917,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/4c%2F1e%2F14%2F4c1e1486db0445cc80244924fce9e2a9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1925-11-03,1925-11-03,https://shakespeareandco.princeton.edu/members/carlisle-hollis-moore/,Hollis Moore Carlisle,"Carlisle, Hollis Moore",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1925-11-03,1925-12-03,https://shakespeareandco.princeton.edu/members/king-b-t/,Mrs. B. T. King,"King, Mrs. B. T.",12.00,20.00,1 month,30,1,,1925-11-03,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1925-11-03,1926-02-03,https://shakespeareandco.princeton.edu/members/stewart-j-m/,J. M. Stewart,"Stewart, J. M.",30.00,20.00,3 months,92,1,,1925-11-03,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1925-11-03,1925-11-03,https://shakespeareandco.princeton.edu/members/camfferman/,Margaret Gove Camfferman / Mrs. P. M. Camfferman,"Camfferman, Margaret Gove",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1925-11-03,1925-12-03,https://shakespeareandco.princeton.edu/members/stewart-m/,M. Stewart,"Stewart, M.",16.00,40.00,1 month,30,2,,1925-11-03,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-11-04,1925-11-05,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/garnett-sailors-return/,The Sailor's Return,,"Garnett, David",1925,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/62%2Fac%2Fd2%2F62acd25d62e64216a64fbde4e6ff33ec%2Fintermediate_file/full/full/0/default.jpg
+Separate Payment,1925-11-04,1925-11-04,https://shakespeareandco.princeton.edu/members/camfferman/,Margaret Gove Camfferman / Mrs. P. M. Camfferman,"Camfferman, Margaret Gove",,40.00,,,,,1925-11-04,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Supplement,1925-11-04,1925-12-04,https://shakespeareandco.princeton.edu/members/duncan-a/,Captain A. Duncan,"Duncan, Captain A.",4.00,20.00,1 month,30,1,,1925-11-04,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1925-11-04,1925-12-04,https://shakespeareandco.princeton.edu/members/burlin-g/,Paul Burlin / Mr. G. Burlin,"Burlin, Paul",12.00,20.00,1 month,30,1,,1925-11-04,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1925-11-04,1925-12-04,https://shakespeareandco.princeton.edu/members/latrilhe-mlle/,Mlle Latrilhe,"Latrilhe, Mlle",16.00,40.00,1 month,30,2,,1925-11-04,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1925-11-04,1925-12-04,https://shakespeareandco.princeton.edu/members/latrilhe/,Miss Latrilhe,"Latrilhe, Miss",16.00,20.00,1 month,30,2,,1925-11-04,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-11-05,1925-11-14,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/moore-vale-hail-farewell/,Vale (Hail and Farewell!),,"Moore, George",1914,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/37%2F45%2Fc6%2F3745c6824d204f61a49f848a0e9aa7cc%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1925-11-05,1926-02-05,https://shakespeareandco.princeton.edu/members/ives-john/,John Ives,"Ives, John",40.00,,3 months,92,2,,1925-11-03,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-11-05,1925-11-14,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/gosse-short-history-modern/,A Short History of Modern English Literature,,"Gosse, Edmund",1897,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/62%2Fac%2Fd2%2F62acd25d62e64216a64fbde4e6ff33ec%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1925-11-06,1925-12-06,https://shakespeareandco.princeton.edu/members/guibaud-alice/,Alice Guibaud,"Guibaud, Alice",12.00,20.00,1 month,30,1,,1925-11-06,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1925-11-06,1925-12-06,https://shakespeareandco.princeton.edu/members/menasce/,Jean de Menasce,"de Menasce, Jean",16.00,,1 month,30,2,,1925-11-06,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1925-11-06,1926-05-06,https://shakespeareandco.princeton.edu/members/harrison-a/,A. Harrison,"Harrison, A.",52.00,,6 months,181,1,,1925-11-06,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1925-11-06,1926-02-06,https://shakespeareandco.princeton.edu/members/brandt/,Laura Brandt,"Brandt, Laura",30.00,20.00,3 months,92,1,,1925-11-06,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1925-11-06,1925-11-06,https://shakespeareandco.princeton.edu/members/roussel/,Mme Roussel,"Roussel, Mme",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-11-06,1925-12-03,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,27,,,https://shakespeareandco.princeton.edu/books/lewis-arrowsmith/,Arrowsmith,,"Lewis, Sinclair",1925,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/13%2F65%2Fc3%2F1365c304fdb84e4ba63ac2e5f4f5a3be%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-11-09,1925-11-24,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/lowndes-bread-deceit/,The Bread of Deceit,,"Lowndes, Marie Belloc",1925,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/28%2Ff9%2F7d%2F28f97db617bb43b98744175c11c3170d%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1925-11-09,1925-11-09,https://shakespeareandco.princeton.edu/members/frank-mary/,Mary Frank,"Frank, Mary",,,,,,,,80.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Supplement,1925-11-09,1925-12-03,https://shakespeareandco.princeton.edu/members/king-b-t/,Mrs. B. T. King,"King, Mrs. B. T.",4.00,20.00,24 days,24,2,,1925-11-09,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1925-11-09,1925-11-09,https://shakespeareandco.princeton.edu/members/houten-van-anna/;https://shakespeareandco.princeton.edu/members/houten-van-2/,Anna van Houten;Mr. van Houten,"van Houten, Anna;van Houten, Mr.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1925-11-10,1926-02-10,https://shakespeareandco.princeton.edu/members/hervey-mr/;https://shakespeareandco.princeton.edu/members/hervey-2/,Mr. Hervey;Mrs. Hervey,"Hervey, Mr.;Hervey, Mrs.",80.00,,3 months,92,4,,1925-10-29,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-11-10,1925-11-13,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/obrien-best-short-stories-1924/,Best Short Stories 1924,,,1925,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/78%2Fd0%2Fa8%2F78d0a879423f47daa1e2a1e4e57e548a%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1925-11-10,1925-11-10,https://shakespeareandco.princeton.edu/members/buck/,Paul Buck,"Buck, Paul",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1925-11-12,1925-11-12,https://shakespeareandco.princeton.edu/members/chin-mr/,Mr. Chin,"Chin, Mr.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1925-11-12,1925-12-12,https://shakespeareandco.princeton.edu/members/loving-mrs/;https://shakespeareandco.princeton.edu/members/loving-pierre/,Mrs. Loving;Pierre Loving,"Loving, Mrs.;Loving, Pierre",12.00,,1 month,30,1,,1925-11-10,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-11-13,1925-12-11,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,28,,,https://shakespeareandco.princeton.edu/books/robinson-golden-treasury-irish/,A Golden Treasury of Irish Verse,,,1925,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/0a%2F3c%2F31%2F0a3c310a56c84f55bcd05a0f421c705b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-11-13,1925-11-26,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/stern-tents-israel/,Tents of Israel,,"Stern, G. B.",1924,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/8b%2F71%2Ff7%2F8b71f70be84448aaaa2dad268daea625%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-11-13,1925-12-11,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,28,,,https://shakespeareandco.princeton.edu/books/wheeler-six-plays-contemporaries/,Six Plays by Contemporaries of Shakespeare,,"Dekker, Thomas;Webster, John;Beaumont, Francis;Fletcher, John;Massinger, Philip",1915,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/0a%2F3c%2F31%2F0a3c310a56c84f55bcd05a0f421c705b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-11-13,1925-11-26,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/baring-half-minutes-silence/,Half a Minute's Silence,,"Baring, Maurice",1925,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/8b%2F71%2Ff7%2F8b71f70be84448aaaa2dad268daea625%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1925-11-13,1925-12-13,https://shakespeareandco.princeton.edu/members/lanux-pierre-de/,Pierre de Lanux,"de Lanux, Pierre",12.00,20.00,1 month,30,1,,1925-11-13,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Pierre de Lanux Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/e367ba9f-98cf-408d-9281-2c5771c2fa44/manifest,;https://iiif.princeton.edu/loris/figgy_prod/ca%2Fda%2Fe8%2Fcadae8b190cd4f708a8e88505a8a3055%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-11-13,1925-12-11,https://shakespeareandco.princeton.edu/members/lanux-pierre-de/,Pierre de Lanux,"de Lanux, Pierre",,,,,,,,,Returned,28,,,https://shakespeareandco.princeton.edu/books/ruskin-stones-venice/,The Stones of Venice,3 vols. The Foundations. Sea Stories. The Fall,"Ruskin, John",1851,"The lending library cards of Mlle Ottocar and Pierre Vogein indicate that they borrowed ""2 vols"" of *The Stones of Venice,* but do not specify which 2 volumes.",Lending Library Card,"Sylvia Beach, Pierre de Lanux Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e367ba9f-98cf-408d-9281-2c5771c2fa44/manifest,https://iiif.princeton.edu/loris/figgy_prod/ca%2Fda%2Fe8%2Fcadae8b190cd4f708a8e88505a8a3055%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-11-14,1931-01-10,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Returned,1883,,,https://shakespeareandco.princeton.edu/books/sterne-works-sterne-life/,"The Works of Sterne: The Life and Opinions of Tristram Shandy, Gentleman & A Sentimental Journey through France and Italy",Vol. 2 A Sentimental Journey through France and Italy,"Sterne, Laurence",1900,"For additional borrows, see [*Tristram Shandy*](https://shakespeareandco.princeton.edu/books/sterne-life-opinions-tristram/) and [*A Sentimental Journey*](https://shakespeareandco.princeton.edu/books/sterne-sentimental-journey-france/).",Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Subscription,1925-11-14,1925-12-14,https://shakespeareandco.princeton.edu/members/hyde-h/,H. Hyde,"Hyde, H.",12.00,20.00,1 month,30,1,,1925-11-14,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1925-11-14,1925-12-14,https://shakespeareandco.princeton.edu/members/fraser-geoffrey/,Geoffrey Fraser,"Fraser, Geoffrey",12.00,,1 month,30,1,,1925-11-14,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-11-14,1931-01-10,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Returned,1883,,,https://shakespeareandco.princeton.edu/books/sterne-works-sterne-life/,"The Works of Sterne: The Life and Opinions of Tristram Shandy, Gentleman & A Sentimental Journey through France and Italy","Vol. 1 The Life and Opinions of Tristram Shandy, Gentleman","Sterne, Laurence",1900,"For additional borrows, see [*Tristram Shandy*](https://shakespeareandco.princeton.edu/books/sterne-life-opinions-tristram/) and [*A Sentimental Journey*](https://shakespeareandco.princeton.edu/books/sterne-sentimental-journey-france/).",Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Subscription,1925-11-14,1925-12-14,https://shakespeareandco.princeton.edu/members/mahorney/,Florence Mahorney,"Mahorney, Florence",12.00,20.00,1 month,30,1,,1925-11-14,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-11-14,1925-11-26,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/smollett-adventures-roderick-random/,The Adventures of Roderick Random,,"Smollett, Tobias",1748,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/62%2Fac%2Fd2%2F62acd25d62e64216a64fbde4e6ff33ec%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-11-14,1925-11-30,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/monro-contemporary-poets/,Some Contemporary Poets (1920),,"Monro, Harold",1920,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/78%2Fd0%2Fa8%2F78d0a879423f47daa1e2a1e4e57e548a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-11-16,1925-11-19,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/gibbs-reckless-lady/,The Reckless Lady,,"Gibbs, Philip",1924,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/07%2Fa3%2F4c%2F07a34cab31e341f5922a6a2e32fa1e5a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-11-16,1925-11-24,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/keyserling-travel-diary-philosopher/,The Travel Diary of a Philosopher,2 vols.,"Keyserling, Hermann von",1919,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/28%2Ff9%2F7d%2F28f97db617bb43b98744175c11c3170d%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1925-11-16,1926-11-16,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",110.00,,1 year,365,2,,1925-11-16,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,;https://iiif.princeton.edu/loris/figgy_prod/22%2Fdb%2F41%2F22db4193227f443ea8f5f03f3241d214%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1925-11-16,1925-11-16,https://shakespeareandco.princeton.edu/members/savy/,Alice Savy,"Savy, Alice",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-11-16,1925-11-17,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/fisher-raw-material/,Raw Material,,"Fisher, Dorothy Canfield",1923,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/22%2Fdb%2F41%2F22db4193227f443ea8f5f03f3241d214%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-11-16,1925-11-18,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/van-vechten-merry-go-round/,The Merry-Go-Round,,"Van Vechten, Carl",1918,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/4c%2F1e%2F14%2F4c1e1486db0445cc80244924fce9e2a9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-11-16,1925-11-17,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/frank-chalk-face/,Chalk Face,,"Frank, Waldo",1924,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/22%2Fdb%2F41%2F22db4193227f443ea8f5f03f3241d214%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1925-11-16,,https://shakespeareandco.princeton.edu/members/chomley/,Betty Chomley,"Chomley, Betty",16.00,,,,,,1925-11-13,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1925-11-17,1925-12-17,https://shakespeareandco.princeton.edu/members/gibney-s/,S. Gibney,"Gibney, S.",12.00,20.00,1 month,30,1,,1925-11-17,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-11-17,1925-11-28,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/werner-brigham-young/,Brigham Young,,"Werner, M. R.",1925,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/22%2Fdb%2F41%2F22db4193227f443ea8f5f03f3241d214%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-11-17,1925-11-21,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/aiken-bring-bring-stories/,Bring! Bring! and Other Stories,,"Aiken, Conrad",1925,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/22%2Fdb%2F41%2F22db4193227f443ea8f5f03f3241d214%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-11-18,1925-11-23,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/forster-room-view/,A Room with a View,,"Forster, E. M.",,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/4c%2F1e%2F14%2F4c1e1486db0445cc80244924fce9e2a9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-11-18,1925-11-21,https://shakespeareandco.princeton.edu/members/scudder-janet/,Janet Scudder,"Scudder, Janet",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/gibbs-adventures-journalism/,Adventures in Journalism,,"Gibbs, Philip",1924,,Lending Library Card,"Sylvia Beach, Janet Scudder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/97ab1fd6-6887-4b09-9300-0468df2bd57a/manifest,https://iiif.princeton.edu/loris/figgy_prod/c3%2Fea%2F5d%2Fc3ea5ddc97924b9fa1feb0d092522396%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-11-18,1925-11-21,https://shakespeareandco.princeton.edu/members/scudder-janet/,Janet Scudder,"Scudder, Janet",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/solano-uncertain-feast/,The Uncertain Feast,,"Solano, Solita",1924,,Lending Library Card,"Sylvia Beach, Janet Scudder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/97ab1fd6-6887-4b09-9300-0468df2bd57a/manifest,https://iiif.princeton.edu/loris/figgy_prod/c3%2Fea%2F5d%2Fc3ea5ddc97924b9fa1feb0d092522396%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1925-11-18,1925-12-18,https://shakespeareandco.princeton.edu/members/nakamura-taro/,Taro Nakamura,"Nakamura, Taro",16.00,40.00,1 month,30,2,,1925-11-18,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1925-11-18,1925-12-18,https://shakespeareandco.princeton.edu/members/miller-f/,Mrs. F. Miller,"Miller, Mrs. F.",12.00,20.00,1 month,30,1,,1925-11-18,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1925-11-18,1925-12-18,https://shakespeareandco.princeton.edu/members/scudder-janet/,Janet Scudder,"Scudder, Janet",,40.00,1 month,30,2,,1925-11-18,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Janet Scudder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/97ab1fd6-6887-4b09-9300-0468df2bd57a/manifest,;https://iiif.princeton.edu/loris/figgy_prod/c3%2Fea%2F5d%2Fc3ea5ddc97924b9fa1feb0d092522396%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1925-11-18,1925-11-18,https://shakespeareandco.princeton.edu/members/simler/,Mrs. Simler,"Simler, Mrs.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1925-11-18,1925-11-18,https://shakespeareandco.princeton.edu/members/camfferman/,Margaret Gove Camfferman / Mrs. P. M. Camfferman,"Camfferman, Margaret Gove",,,,,,,,40.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1925-11-19,1925-12-19,https://shakespeareandco.princeton.edu/members/dauchy/,Miss Dauchy,"Dauchy, Miss",12.00,20.00,1 month,30,1,,1925-11-19,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1925-11-19,1925-12-19,https://shakespeareandco.princeton.edu/members/boccara-3/,Mlle Boccara,"Boccara, Mlle",12.00,,1 month,30,1,,1925-11-19,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Supplement,1925-11-19,1925-12-03,https://shakespeareandco.princeton.edu/members/sanborn/,Mrs. Sanborn,"Sanborn, Mrs.",4.00,20.00,2 weeks,14,1,,1925-11-19,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-11-19,1925-11-21,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/love/,Love,,,,"Unidentified. Gilbert Cannan's *Love* (1914), Elizabeth Von Arnim's *Love* (1925), or William Lyon Phelps's *Love* (1928), etc.",Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/07%2Fa3%2F4c%2F07a34cab31e341f5922a6a2e32fa1e5a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-11-19,1925-12-29,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,40,,,https://shakespeareandco.princeton.edu/books/moore-salve-hail-farewell/,Salve (Hail and Farewell!),,"Moore, George",1912,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/37%2F45%2Fc6%2F3745c6824d204f61a49f848a0e9aa7cc%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1925-11-20,1926-02-20,https://shakespeareandco.princeton.edu/members/oguz/,Mme Oguz,"Oguz, Mme",40.00,,3 months,92,2,,1925-10-10,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1925-11-20,1925-12-20,https://shakespeareandco.princeton.edu/members/carlisle-hollis-moore/,Hollis Moore Carlisle,"Carlisle, Hollis Moore",16.00,40.00,1 month,30,2,,1925-11-09,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1925-11-20,1925-11-20,https://shakespeareandco.princeton.edu/members/nouveau-mme/,Mme Nouveau,"Nouveau, Mme",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1925-11-20,1925-11-20,https://shakespeareandco.princeton.edu/members/carlisle-hollis-moore/,Hollis Moore Carlisle,"Carlisle, Hollis Moore",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1925-11-21,1925-11-21,https://shakespeareandco.princeton.edu/members/dramez/,Marthe Dramez,"Dramez, Marthe",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Separate Payment,1925-11-21,1925-11-21,https://shakespeareandco.princeton.edu/members/scudder-janet/,Janet Scudder,"Scudder, Janet",16.00,,,,,,1925-11-21,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-11-21,1925-12-24,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,33,,,https://shakespeareandco.princeton.edu/books/wells-dream-novel/,The Dream: A Novel,,"Wells, H. G.",1924,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F89%2Fa4%2F5689a4b95685432aa62068f98b57b9df%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-11-21,,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/british-costume/,British Costume,,,,Unidentified. J. R. Planche's *History of British Costume* (1834) or Mrs. Charles H. Ashdown's *British Costume During XIX Centuries* (1910).,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1925-11-21,,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/reutlinger-baigneuses-mer/,Nos baigneuses Γ la mer,,"de Lano, Pierre",1897,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1925-11-21,,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/figgis-paintings-william-blake/,The Paintings of William Blake,,"Figgis, Darrell",1925,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1925-11-21,,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/collins-doctor-looks-biography/,The Doctor Looks at Biography: Psychological Studies of Life and Letters,,"Collins, Joseph",1925,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1925-11-21,1925-11-26,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/benson-little-world/,The Little World,,"Benson, Stella",1925,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/a0%2F03%2F0d%2Fa0030d1ea392499cae9c30bbe3289cfd%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1925-11-21,1926-02-21,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",40.00,,3 months,92,2,,1925-11-21,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,;https://iiif-cloud.princeton.edu/iiif/2/a0%2F03%2F0d%2Fa0030d1ea392499cae9c30bbe3289cfd%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-11-21,1925-11-26,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/macaulay-casual-commentary/,A Casual Commentary,,"Macaulay, Rose",1925,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/a0%2F03%2F0d%2Fa0030d1ea392499cae9c30bbe3289cfd%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-11-21,1925-11-24,https://shakespeareandco.princeton.edu/members/scudder-janet/,Janet Scudder,"Scudder, Janet",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/adams-sloane-square-mystery/,The Sloane Square Mystery,,"Adams, Herbert",1925,,Lending Library Card,"Sylvia Beach, Janet Scudder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/97ab1fd6-6887-4b09-9300-0468df2bd57a/manifest,https://iiif.princeton.edu/loris/figgy_prod/c3%2Fea%2F5d%2Fc3ea5ddc97924b9fa1feb0d092522396%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-11-21,1925-11-24,https://shakespeareandco.princeton.edu/members/scudder-janet/,Janet Scudder,"Scudder, Janet",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/woolf-mrs-dalloway/,Mrs. Dalloway,,"Woolf, Virginia",1925,,Lending Library Card,"Sylvia Beach, Janet Scudder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/97ab1fd6-6887-4b09-9300-0468df2bd57a/manifest,https://iiif.princeton.edu/loris/figgy_prod/c3%2Fea%2F5d%2Fc3ea5ddc97924b9fa1feb0d092522396%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1925-11-21,1925-11-21,https://shakespeareandco.princeton.edu/members/williams-i/,I. Williams,"Williams, I.",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-11-21,1925-11-28,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/mirrlees-counterplot/,The Counterplot,,"Mirrlees, Hope",1924,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/22%2Fdb%2F41%2F22db4193227f443ea8f5f03f3241d214%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1925-11-21,1925-12-21,https://shakespeareandco.princeton.edu/members/nagy/,Nicolas de Nagy,"de Nagy, Nicolas",12.00,,1 month,30,2,,1925-11-21,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-11-21,1925-11-26,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/arnim-enchanted-april/,The Enchanted April,,"Arnim, Elizabeth von",1922,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/07%2Fa3%2F4c%2F07a34cab31e341f5922a6a2e32fa1e5a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-11-23,1925-11-26,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/cather-professors-house/,The Professor's House,,"Cather, Willa",1925,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/4c%2F1e%2F14%2F4c1e1486db0445cc80244924fce9e2a9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-11-23,1925-12-10,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/stewart-parody-outline-history/,A Parody Outline of History,,"Stewart, Donald Ogden",1921,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/28%2Ff9%2F7d%2F28f97db617bb43b98744175c11c3170d%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1925-11-23,1926-05-23,https://shakespeareandco.princeton.edu/members/davies-6/,Mrs. G. Davies,"Davies, Mrs. G.",67.00,20.00,6 months,181,2,,1925-11-10,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1925-11-23,1925-11-23,https://shakespeareandco.princeton.edu/members/mims-catherine/,Catherine Mims,"Mims, Catherine",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1925-11-24,1926-02-24,https://shakespeareandco.princeton.edu/members/grosser-maurice/,Maurice Grosser,"Grosser, Maurice",30.00,20.00,3 months,92,1,,1925-11-24,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-11-24,1925-12-01,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/hunt-tales-uneasy/,More Tales of the Uneasy,,"Hunt, Violet",1925,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/28%2Ff9%2F7d%2F28f97db617bb43b98744175c11c3170d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-11-24,1925-11-25,https://shakespeareandco.princeton.edu/members/scudder-janet/,Janet Scudder,"Scudder, Janet",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/anderson-horses-men-tales/,"Horses and Men: Tales, Long and Short, from Our American Life",,"Anderson, Sherwood",1923,,Lending Library Card,"Sylvia Beach, Janet Scudder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/97ab1fd6-6887-4b09-9300-0468df2bd57a/manifest,https://iiif.princeton.edu/loris/figgy_prod/c3%2Fea%2F5d%2Fc3ea5ddc97924b9fa1feb0d092522396%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-11-24,1925-11-25,https://shakespeareandco.princeton.edu/members/scudder-janet/,Janet Scudder,"Scudder, Janet",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/anderson-many-marriages/,Many Marriages,,"Anderson, Sherwood",1923,,Lending Library Card,"Sylvia Beach, Janet Scudder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/97ab1fd6-6887-4b09-9300-0468df2bd57a/manifest,https://iiif.princeton.edu/loris/figgy_prod/c3%2Fea%2F5d%2Fc3ea5ddc97924b9fa1feb0d092522396%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-11-24,1925-12-29,https://shakespeareandco.princeton.edu/members/schirmer/,Mabel Schirmer / Mrs. Robert Schirmer,"Schirmer, Mabel",,,,,,,,,Returned,35,,,https://shakespeareandco.princeton.edu/books/de-la-mare-memoirs-midget/,Memoirs of a Midget,,"De la Mare, Walter",1921,,Lending Library Card,"Sylvia Beach, Mabel Schirmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4c00d0b2-7cb9-46e1-b628-2eac6ac7bb07/manifest,https://iiif-cloud.princeton.edu/iiif/2/e9%2F66%2F91%2Fe96691789f424ce1ab0efd6f73d5617b%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1925-11-25,1925-12-25,https://shakespeareandco.princeton.edu/members/bradley-mary/,Mary Bradley,"Bradley, Mary",16.00,40.00,1 month,30,2,,1925-11-25,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-11-25,1925-12-03,https://shakespeareandco.princeton.edu/members/scudder-janet/,Janet Scudder,"Scudder, Janet",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/oppenheim-amazing-quest-mr/,The Amazing Quest of Mr. Ernest Bliss,,"Oppenheim, E. Phillips",1919,,Lending Library Card,"Sylvia Beach, Janet Scudder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/97ab1fd6-6887-4b09-9300-0468df2bd57a/manifest,https://iiif.princeton.edu/loris/figgy_prod/c3%2Fea%2F5d%2Fc3ea5ddc97924b9fa1feb0d092522396%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-11-25,1925-12-03,https://shakespeareandco.princeton.edu/members/scudder-janet/,Janet Scudder,"Scudder, Janet",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/oppenheim-governors/,The Governors,,"Oppenheim, E. Phillips",1908,,Lending Library Card,"Sylvia Beach, Janet Scudder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/97ab1fd6-6887-4b09-9300-0468df2bd57a/manifest,https://iiif.princeton.edu/loris/figgy_prod/c3%2Fea%2F5d%2Fc3ea5ddc97924b9fa1feb0d092522396%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-11-26,1925-12-03,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/frankau-life-erica/,Life and Erica,,"Frankau, Gilbert",1924,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/07%2Fa3%2F4c%2F07a34cab31e341f5922a6a2e32fa1e5a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-11-26,1925-11-28,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/atherton-crystal-cup/,The Crystal Cup,,"Atherton, Gertrude Franklin Horn",1925,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/62%2Fac%2Fd2%2F62acd25d62e64216a64fbde4e6ff33ec%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-11-26,1925-12-11,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/galsworthy-white-monkey/,The White Monkey (A Modern Comedy),,"Galsworthy, John",1924,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/8b%2F71%2Ff7%2F8b71f70be84448aaaa2dad268daea625%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-11-26,1925-12-03,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/lawrence-st-mawr/,St. Mawr,,"Lawrence, D. H.",1925,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/a0%2F03%2F0d%2Fa0030d1ea392499cae9c30bbe3289cfd%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-11-26,1925-11-28,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/naboths-vineyard/,Naboth's Vineyard,,,,Unidentified. Either E. Ε Somerville and Martin Ross's *Naboth's Vineyard* (1891) or Clemence Dane's *Naboth's Vineyard: A Stage Piece* (1925).,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/a0%2F03%2F0d%2Fa0030d1ea392499cae9c30bbe3289cfd%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1925-11-26,1925-11-26,https://shakespeareandco.princeton.edu/members/duncan-2/,Miss Duncan,"Duncan, Miss",,,,,,,,,,,,,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1925-11-26,1925-12-26,https://shakespeareandco.princeton.edu/members/drake-lawrence/,Lawrence Drake,"Drake, Lawrence",12.00,20.00,1 month,30,1,,1925-11-26,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-11-26,1925-11-30,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/ervine-parnell/,Parnell,,"Ervine, St. John G.",1925,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/4c%2F1e%2F14%2F4c1e1486db0445cc80244924fce9e2a9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-11-26,1925-12-11,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/wescott-apple-eye/,The Apple of the Eye,,"Wescott, Glenway",1924,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/8b%2F71%2Ff7%2F8b71f70be84448aaaa2dad268daea625%2Fintermediate_file/full/full/0/default.jpg
+Generic,1925-11-26,,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/mackenzie-coral-sequel-carnival/,"Coral: A Sequel to ""Carnival""",,"Mackenzie, Compton",1925,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/a0%2F03%2F0d%2Fa0030d1ea392499cae9c30bbe3289cfd%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1925-11-28,1925-12-28,https://shakespeareandco.princeton.edu/members/machette/,Oralle Machette,"Machette, Oralle",12.00,20.00,1 month,30,1,,1925-11-28,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-11-28,1925-12-02,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/johnston-relations/,Relations,,"Johnston, Harry Hamilton",1925,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/62%2Fac%2Fd2%2F62acd25d62e64216a64fbde4e6ff33ec%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-11-28,1925-12-01,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/beck-divine-lady-romance/,The Divine Lady: A Romance of Nelson and Emma Hamilton,,"Beck, L. Adams",1924,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/22%2Fdb%2F41%2F22db4193227f443ea8f5f03f3241d214%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-11-28,1925-12-01,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/oppenheim-terrible-hobby-sir/,The Terrible Hobby of Sir Joseph Londe,,"Oppenheim, E. Phillips",1924,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/28%2Ff9%2F7d%2F28f97db617bb43b98744175c11c3170d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-11-28,1925-12-01,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/sidgwick-london-mixture/,London Mixture,,"Sidgwick, Cecily",1924,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/22%2Fdb%2F41%2F22db4193227f443ea8f5f03f3241d214%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-11-28,1925-12-01,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/moore-esther-waters/,Esther Waters,,"Moore, George",1894,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/05%2Fcc%2F42%2F05cc420c01b74e7885f72bc117cfdb3d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-11-28,1925-12-03,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/hardy-two-tower/,Two on a Tower,,"Hardy, Thomas",1882,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/a0%2F03%2F0d%2Fa0030d1ea392499cae9c30bbe3289cfd%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1925-11-28,1926-11-28,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",90.00,,1 year,365,1,,1925-11-28,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/05%2Fcc%2F42%2F05cc420c01b74e7885f72bc117cfdb3d%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1925-11-28,1925-11-28,https://shakespeareandco.princeton.edu/members/benedictus/,Guillaume Benedictus,"Benedictus, Guillaume",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1925-11-28,1925-11-28,https://shakespeareandco.princeton.edu/members/wells-2/,Miss Wells,"Wells, Miss",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-11-29,,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/moore-esther-waters/,Esther Waters,,"Moore, George",1894,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/ed%2Ffd%2Faf%2Fedfdafbf10d94f5bbc4a7bea20b03c3f%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1925-11-30,1925-11-30,https://shakespeareandco.princeton.edu/members/stewart-w/,W. Stewart / Mr. Stewart-Elsmer,"Stewart, W.",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1925-11-30,1925-12-30,https://shakespeareandco.princeton.edu/members/bell/,H. B. Bell,"Bell, H. B.",16.00,40.00,1 month,30,2,,1925-11-30,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1925-11-30,1925-12-30,https://shakespeareandco.princeton.edu/members/whitney-miriam/,Miriam Whitney,"Whitney, Miriam",12.00,20.00,1 month,30,1,,1925-11-30,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-11-30,1925-12-05,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/solano-uncertain-feast/,The Uncertain Feast,,"Solano, Solita",1924,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/4c%2F1e%2F14%2F4c1e1486db0445cc80244924fce9e2a9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-12-01,1925-12-03,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/wells-christina-albertas-father/,Christina Alberta's Father,,"Wells, H. G.",1925,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/86%2F42%2F18%2F8642189e397a42fd995c54f2307c5d76%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-12-01,1925-12-10,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/stendhal-charterhouse-parma/,The Charterhouse of Parma,2 vols.,Stendhal,1839,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/28%2Ff9%2F7d%2F28f97db617bb43b98744175c11c3170d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-12-01,1926-01-09,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,39,,,https://shakespeareandco.princeton.edu/books/norris-vandover-brute/,Vandover and the Brute,,"Norris, Frank",1914,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/12%2F8c%2F4f%2F128c4f1d37b747b4b6abfaed7a09f71d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-12-01,1926-01-09,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,39,,,https://shakespeareandco.princeton.edu/books/maxwell-fernande/,Fernande,,"Maxwell, W. B.",1925,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/12%2F8c%2F4f%2F128c4f1d37b747b4b6abfaed7a09f71d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-12-01,1925-12-12,https://shakespeareandco.princeton.edu/members/le-gallienne-irma/,Irma Le Gallienne / Mrs. Le Gallienne,"Le Gallienne, Irma",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/sterne-works-sterne-life/,"The Works of Sterne: The Life and Opinions of Tristram Shandy, Gentleman & A Sentimental Journey through France and Italy",Vol. 2 A Sentimental Journey through France and Italy,"Sterne, Laurence",1900,"For additional borrows, see [*Tristram Shandy*](https://shakespeareandco.princeton.edu/books/sterne-life-opinions-tristram/) and [*A Sentimental Journey*](https://shakespeareandco.princeton.edu/books/sterne-sentimental-journey-france/).",Lending Library Card,"Sylvia Beach, Irma le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4541298f-a489-4089-97e3-96df327afd3d/manifest,https://iiif.princeton.edu/loris/figgy_prod/f8%2F76%2F91%2Ff876917733424e0ca5288aa56e8bb6ca%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1925-12-01,1925-12-01,https://shakespeareandco.princeton.edu/members/nakamura-taro/,Taro Nakamura,"Nakamura, Taro",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1925-12-01,1926-01-01,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",16.00,40.00,1 month,31,2,,1925-12-01,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,;https://iiif.princeton.edu/loris/figgy_prod/12%2F8c%2F4f%2F128c4f1d37b747b4b6abfaed7a09f71d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1925-12-01,1926-01-01,https://shakespeareandco.princeton.edu/members/le-gallienne-irma/,Irma Le Gallienne / Mrs. Le Gallienne,"Le Gallienne, Irma",16.00,,1 month,31,2,,1925-12-01,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Irma le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4541298f-a489-4089-97e3-96df327afd3d/manifest,https://iiif.princeton.edu/loris/figgy_prod/f8%2F76%2F91%2Ff876917733424e0ca5288aa56e8bb6ca%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-12-01,1925-12-18,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/werner-barnum/,Barnum,,"Werner, M. R.",1923,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/22%2Fdb%2F41%2F22db4193227f443ea8f5f03f3241d214%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-12-01,1925-12-04,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/norris-little-ships/,Little Ships,,"Norris, Kathleen Thompson",1925,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/22%2Fdb%2F41%2F22db4193227f443ea8f5f03f3241d214%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-12-01,1925-12-12,https://shakespeareandco.princeton.edu/members/le-gallienne-irma/,Irma Le Gallienne / Mrs. Le Gallienne,"Le Gallienne, Irma",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/thackeray-english-humorists-eighteenth/,The English Humourists of the Eighteenth Century,,"Thackeray, William Makepeace",1853,,Lending Library Card,"Sylvia Beach, Irma le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4541298f-a489-4089-97e3-96df327afd3d/manifest,https://iiif.princeton.edu/loris/figgy_prod/f8%2F76%2F91%2Ff876917733424e0ca5288aa56e8bb6ca%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-12-01,1925-12-10,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/ellis-erotic-symbolism-mechanism/,Erotic Symbolism; The Mechanism of Detumescence; The Psychic State in Pregnancy (Studies in the Psychology of Sex 5),,"Ellis, Havelock",1906,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/05%2Fcc%2F42%2F05cc420c01b74e7885f72bc117cfdb3d%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1925-12-02,1926-01-02,https://shakespeareandco.princeton.edu/members/schaufelberger/,Mr. Schaufelberger,"Schaufelberger, Mr.",12.00,,1 month,31,1,,1925-12-01,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-12-02,1925-12-04,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/machen-canning-wonder/,The Canning Wonder,,"Machen, Arthur",1925,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/62%2Fac%2Fd2%2F62acd25d62e64216a64fbde4e6ff33ec%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1925-12-02,1926-06-02,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",67.00,,6 months,182,2,,1925-12-02,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/37%2F63%2Fee%2F3763eef8329c491da536c985612d8be5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-12-02,1925-12-03,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/lewisohn-israel/,Israel,,"Lewisohn, Ludwig",1925,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/37%2F63%2Fee%2F3763eef8329c491da536c985612d8be5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-12-02,1925-12-03,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/moore-observations/,Observations,,"Moore, Marianne",1924,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/37%2F63%2Fee%2F3763eef8329c491da536c985612d8be5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-12-03,1925-12-11,https://shakespeareandco.princeton.edu/members/lanux-pierre-de/,Pierre de Lanux,"de Lanux, Pierre",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/criterion/,The Criterion,"Vol. 3, no. 12, Jul 1925",,,"Renamed *The New Criterion* from January 1926 to January 1927, and *The Monthly Criterion* from May 1927 to March 1928.",Lending Library Card,"Sylvia Beach, Pierre de Lanux Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e367ba9f-98cf-408d-9281-2c5771c2fa44/manifest,https://iiif.princeton.edu/loris/figgy_prod/ca%2Fda%2Fe8%2Fcadae8b190cd4f708a8e88505a8a3055%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-12-03,1925-12-19,https://shakespeareandco.princeton.edu/members/scudder-janet/,Janet Scudder,"Scudder, Janet",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/walkley-pastiche-prejudice/,Pastiche and Prejudice,,"Walkley, Arthur Bingham",1921,,Lending Library Card,"Sylvia Beach, Janet Scudder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/97ab1fd6-6887-4b09-9300-0468df2bd57a/manifest,https://iiif.princeton.edu/loris/figgy_prod/c3%2Fea%2F5d%2Fc3ea5ddc97924b9fa1feb0d092522396%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1925-12-03,1925-12-03,https://shakespeareandco.princeton.edu/members/moffet-anne/,Anne Moffet,"Moffet, Anne",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-12-03,1925-12-05,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/henderson-nation-athenaeum/,The Nation and Athenaeum,"Vol. 38, no. 9, Nov 28, 1925",,,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/a0%2F03%2F0d%2Fa0030d1ea392499cae9c30bbe3289cfd%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-12-03,1926-02-11,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,70,,,https://shakespeareandco.princeton.edu/books/lowell-imagist-poets-anthology/,Some Imagist Poets: An Anthology,,,,"Unidentified edition: 1915, 1916, or 1917.",Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/a0%2F03%2F0d%2Fa0030d1ea392499cae9c30bbe3289cfd%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-12-03,1925-12-04,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/kennedy-constant-nymph/,The Constant Nymph,,"Kennedy, Margaret",1924,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/86%2F42%2F18%2F8642189e397a42fd995c54f2307c5d76%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-12-03,1925-12-16,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/gosse-silhouettes/,Silhouettes,,"Gosse, Edmund",1925,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/a0%2F03%2F0d%2Fa0030d1ea392499cae9c30bbe3289cfd%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1925-12-03,1926-01-03,https://shakespeareandco.princeton.edu/members/cairns-dorion/,Dorion Cairns,"Cairns, Dorion",12.00,20.00,1 month,31,1,,1925-12-03,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-12-03,1925-12-19,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/caravan/,Caravan,,,,"Unidentified. John Galsworthy's *Caravan: The Assembled Tales of John Galsworthy* (1925), Witter Bynner's *Caravan* (1925), or issues of *The American Caravan* (1927 β 1931), etc.",Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/13%2F65%2Fc3%2F1365c304fdb84e4ba63ac2e5f4f5a3be%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-12-03,1925-12-08,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/carritt-theory-beauty/,The Theory of Beauty,,"Carritt, E. F.",1914,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/37%2F63%2Fee%2F3763eef8329c491da536c985612d8be5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-12-03,,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/ferber-dawn-ohara-girl/,Dawn O'Hara: The Girl Who Laughed,,"Ferber, Edna",1911,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/07%2Fa3%2F4c%2F07a34cab31e341f5922a6a2e32fa1e5a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-12-03,1925-12-08,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/shaw-saint-joan-chronicle/,Saint Joan: A Chronicle Play in Six Scenes and an Epilogue,,"Shaw, George Bernard",1924,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/37%2F63%2Fee%2F3763eef8329c491da536c985612d8be5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-12-03,1926-01-05,https://shakespeareandco.princeton.edu/members/scudder-janet/,Janet Scudder,"Scudder, Janet",,,,,,,,,Returned,33,,,https://shakespeareandco.princeton.edu/books/obrien-best-short-stories-1922/,The Best Short Stories of 1922: And the Yearbook of the American Short Story,,,1922,,Lending Library Card,"Sylvia Beach, Janet Scudder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/97ab1fd6-6887-4b09-9300-0468df2bd57a/manifest,https://iiif.princeton.edu/loris/figgy_prod/c3%2Fea%2F5d%2Fc3ea5ddc97924b9fa1feb0d092522396%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1925-12-04,1926-12-04,https://shakespeareandco.princeton.edu/members/hanson-5/,Mrs. Hanson,"Hanson, Mrs.",110.00,,1 year,365,2,,1925-12-04,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-12-04,1925-12-05,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/lewis-arrowsmith/,Arrowsmith,,"Lewis, Sinclair",1925,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/86%2F42%2F18%2F8642189e397a42fd995c54f2307c5d76%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-12-04,1925-12-08,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/sladen-twenty-years-life/,Twenty Years of My Life: 1867 to 1887,,"Jopling, Louise",1925,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/62%2Fac%2Fd2%2F62acd25d62e64216a64fbde4e6ff33ec%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-12-04,1925-12-14,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/gibbs-unchanging-quest/,Unchanging Quest,,"Gibbs, Philip",1925,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/22%2Fdb%2F41%2F22db4193227f443ea8f5f03f3241d214%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-12-04,1925-12-12,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/scott-golden-door/,The Golden Door,,"Scott, Evelyn",1925,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/22%2Fdb%2F41%2F22db4193227f443ea8f5f03f3241d214%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1925-12-04,1926-01-04,https://shakespeareandco.princeton.edu/members/rosset-t-s-de/,Mrs. T. S. de Rosset,"de Rosset, Mrs. T. S.",16.00,20.00,1 month,31,2,,1925-12-04,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-12-05,1926-01-04,https://shakespeareandco.princeton.edu/members/rieder/,M. Rieder,"Rieder, M.",,,,,,,,,Returned,30,,,https://shakespeareandco.princeton.edu/books/dreiser-twelve-men/,Twelve Men,,"Dreiser, Theodore",1919,,Lending Library Card,"Sylvia Beach, Rieder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/559c8919-8881-40ad-b027-67dbf1b23611/manifest,https://iiif.princeton.edu/loris/figgy_prod/e8%2F10%2F7c%2Fe8107c2c950f411d8ceeb6bb8bdc01c7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-12-05,1925-12-09,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/powys-mr-taskers-gods/,Mr. Tasker's Gods,,"Powys, Theodore Francis",1925,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/4c%2F1e%2F14%2F4c1e1486db0445cc80244924fce9e2a9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1925-12-05,1925-12-05,https://shakespeareandco.princeton.edu/members/king-b-t/,Mrs. B. T. King,"King, Mrs. B. T.",,,,,,,,40.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1925-12-05,1925-12-12,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",3.00,,1 week,7,,,1925-12-05,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,;https://iiif-cloud.princeton.edu/iiif/2/86%2F42%2F18%2F8642189e397a42fd995c54f2307c5d76%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1925-12-05,1926-03-05,https://shakespeareandco.princeton.edu/members/catalogne-gerard-de/,GΓ©rard de Catalogne,"Catalogne, GΓ©rard de",30.00,20.00,3 months,90,1,,1925-12-05,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1925-12-05,1926-03-05,https://shakespeareandco.princeton.edu/members/moffet-1/,A. Moffet,"Moffet, A.",40.00,40.00,3 months,90,2,,1925-12-05,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1925-12-05,1926-03-05,https://shakespeareandco.princeton.edu/members/moffet-anne/,Anne Moffet,"Moffet, Anne",40.00,40.00,3 months,90,2,,1925-12-05,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1925-12-05,1926-03-05,https://shakespeareandco.princeton.edu/members/tissier/,Marcelle Tissier,"Tissier, Marcelle",40.00,,3 months,90,2,,1925-12-03,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1925-12-05,1926-01-05,https://shakespeareandco.princeton.edu/members/stewart-w/,W. Stewart / Mr. Stewart-Elsmer,"Stewart, W.",12.00,20.00,1 month,31,1,,1925-12-05,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1925-12-07,1926-01-07,https://shakespeareandco.princeton.edu/members/stewart-m/,M. Stewart,"Stewart, M.",20.00,,1 month,31,2,,1925-12-07,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-12-07,1925-12-21,https://shakespeareandco.princeton.edu/members/pottecher-therese/,Therèse Pottecher,"Pottecher, Therèse",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/conrad-rover/,The Rover,,"Conrad, Joseph",1923,,Lending Library Card,"Sylvia Beach, Therèse Pottecher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/69b82696-3801-41ff-b1fd-c792179c5b98/manifest,https://iiif-cloud.princeton.edu/iiif/2/c4%2F4e%2F60%2Fc44e600e2d3c4c79ac86e53dfeb373da%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1925-12-07,1926-03-07,https://shakespeareandco.princeton.edu/members/lhomme/,Mme Lhomme,"Lhomme, Mme",30.00,,3 months,90,1,,1925-12-07,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-12-08,1925-12-14,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/piozzi-anecdotes-samuel-johnson/,Anecdotes of Samuel Johnson,,"Piozzi, Hester Lynch",1925,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/62%2Fac%2Fd2%2F62acd25d62e64216a64fbde4e6ff33ec%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-12-08,1926-01-28,https://shakespeareandco.princeton.edu/members/flanner-janet/,Janet Flanner,"Flanner, Janet",,,,,,,,,Returned,51,,,https://shakespeareandco.princeton.edu/books/gaskell-life-charlotte-bronte/,The Life of Charlotte BrontΓ«,,"Gaskell, Elizabeth",1857,,Lending Library Card,"Sylvia Beach, Janet Flanner Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3c36cd98-f34d-423a-a386-074c68e7cbc4/manifest,https://iiif.princeton.edu/loris/figgy_prod/d8%2Fd8%2Fa5%2Fd8d8a57ec3eb48bd8cd3b51d264a508f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-12-08,1926-01-28,https://shakespeareandco.princeton.edu/members/flanner-janet/,Janet Flanner,"Flanner, Janet",,,,,,,,,Returned,51,,,https://shakespeareandco.princeton.edu/books/james-wings-dove/,The Wings of the Dove,,"James, Henry",1902,,Lending Library Card,"Sylvia Beach, Janet Flanner Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3c36cd98-f34d-423a-a386-074c68e7cbc4/manifest,https://iiif.princeton.edu/loris/figgy_prod/d8%2Fd8%2Fa5%2Fd8d8a57ec3eb48bd8cd3b51d264a508f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-12-08,1926-01-28,https://shakespeareandco.princeton.edu/members/flanner-janet/,Janet Flanner,"Flanner, Janet",,,,,,,,,Returned,51,,,https://shakespeareandco.princeton.edu/books/bennett-old-wives-tale/,The Old Wives' Tale,,"Bennett, Arnold",1908,,Lending Library Card,"Sylvia Beach, Janet Flanner Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3c36cd98-f34d-423a-a386-074c68e7cbc4/manifest,https://iiif.princeton.edu/loris/figgy_prod/d8%2Fd8%2Fa5%2Fd8d8a57ec3eb48bd8cd3b51d264a508f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-12-08,1926-01-28,https://shakespeareandco.princeton.edu/members/flanner-janet/,Janet Flanner,"Flanner, Janet",,,,,,,,,Returned,51,,,https://shakespeareandco.princeton.edu/books/bronte-wuthering-heights/,Wuthering Heights,,"BrontΓ«, Emily",1847,,Lending Library Card,"Sylvia Beach, Janet Flanner Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3c36cd98-f34d-423a-a386-074c68e7cbc4/manifest,https://iiif.princeton.edu/loris/figgy_prod/d8%2Fd8%2Fa5%2Fd8d8a57ec3eb48bd8cd3b51d264a508f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-12-08,1925-12-28,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/jesperson-language-nature-development/,"Language: Its Nature, Development, and Origin",,"Jesperson, Otto",1922,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/37%2F63%2Fee%2F3763eef8329c491da536c985612d8be5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-12-08,1926-02-22,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,76,,,https://shakespeareandco.princeton.edu/books/james-primitive-ritual-belief/,Primitive Ritual and Belief: An Anthropological Essay,,"James, Edwin Oliver",1917,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/37%2F63%2Fee%2F3763eef8329c491da536c985612d8be5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-12-09,1925-12-16,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/johnston-relations/,Relations,,"Johnston, Harry Hamilton",1925,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/4c%2F1e%2F14%2F4c1e1486db0445cc80244924fce9e2a9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1925-12-09,1926-06-09,https://shakespeareandco.princeton.edu/members/stark/,Miss Stark,"Stark, Miss",76.60,,6 months,182,2,,1925-12-09,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1925-12-09,1926-02-09,https://shakespeareandco.princeton.edu/members/whitney-marg/,Margaret Whitney,"Whitney, Margaret",32.00,,2 months,62,2,,1925-12-09,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1925-12-09,1925-12-09,https://shakespeareandco.princeton.edu/members/chomley/,Betty Chomley,"Chomley, Betty",,,,,,,,40.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-12-09,1925-12-29,https://shakespeareandco.princeton.edu/members/schirmer/,Mabel Schirmer / Mrs. Robert Schirmer,"Schirmer, Mabel",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/conrad-almayers-folly/,Almayer's Folly,,"Conrad, Joseph",1895,,Lending Library Card,"Sylvia Beach, Mabel Schirmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4c00d0b2-7cb9-46e1-b628-2eac6ac7bb07/manifest,https://iiif-cloud.princeton.edu/iiif/2/e9%2F66%2F91%2Fe96691789f424ce1ab0efd6f73d5617b%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1925-12-09,1926-03-09,https://shakespeareandco.princeton.edu/members/kennedy-edmond/,Edmond Kennedy,"Kennedy, Edmond",30.00,,3 months,90,1,,1925-12-09,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1925-12-09,1926-03-09,https://shakespeareandco.princeton.edu/members/miller-lysa/,Lysa Miller,"Miller, Lysa",40.00,40.00,3 months,90,2,,1925-12-09,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1925-12-09,1926-01-09,https://shakespeareandco.princeton.edu/members/harwood-p-a/,P. A. Harwood,"Harwood, P. A.",12.00,20.00,1 month,31,1,,1925-12-09,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-12-10,1925-12-14,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/strachey-queen-victoria/,Queen Victoria,,"Strachey, Giles Lytton",1921,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/05%2Fcc%2F42%2F05cc420c01b74e7885f72bc117cfdb3d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-12-10,1926-04-13,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,124,,,https://shakespeareandco.princeton.edu/books/hamsun-children-age/,Children of the Age,,"Hamsun, Knut",1924,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/28%2Ff9%2F7d%2F28f97db617bb43b98744175c11c3170d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-12-10,1926-01-19,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,40,,,https://shakespeareandco.princeton.edu/books/turgenev-fathers-children/,Fathers and Children,,"Turgenev, Ivan",1895,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/28%2Ff9%2F7d%2F28f97db617bb43b98744175c11c3170d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-12-10,1926-02-02,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,54,,,https://shakespeareandco.princeton.edu/books/turgenev-house-gentlefolk-novel/,A House of Gentlefolk: A Novel,,"Turgenev, Ivan",1894,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/28%2Ff9%2F7d%2F28f97db617bb43b98744175c11c3170d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-12-10,1926-01-19,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,40,,,https://shakespeareandco.princeton.edu/books/mann-buddenbrooks/,Buddenbrooks,2 vols.,"Mann, Thomas",1924,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/28%2Ff9%2F7d%2F28f97db617bb43b98744175c11c3170d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-12-11,1925-12-24,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/percy-ballads-romances/,Ballads and Romances,,"Percy, Thomas, Bishop",1868,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/0a%2F3c%2F31%2F0a3c310a56c84f55bcd05a0f421c705b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-12-11,1925-12-24,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/macaulay-potterism/,Potterism,,"Macaulay, Rose",1920,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/0a%2F3c%2F31%2F0a3c310a56c84f55bcd05a0f421c705b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-12-11,1926-03-25,https://shakespeareandco.princeton.edu/members/lanux-pierre-de/,Pierre de Lanux,"de Lanux, Pierre",,,,,,,,,Returned,104,,,https://shakespeareandco.princeton.edu/books/contact-collection-contemporary/,Contact Collection of Contemporary Writers,,,1925,,Lending Library Card,"Sylvia Beach, Pierre de Lanux Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e367ba9f-98cf-408d-9281-2c5771c2fa44/manifest,https://iiif.princeton.edu/loris/figgy_prod/ca%2Fda%2Fe8%2Fcadae8b190cd4f708a8e88505a8a3055%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1925-12-11,1926-01-11,https://shakespeareandco.princeton.edu/members/murphy-james/,James Murphy,"Murphy, James",16.00,40.00,1 month,31,2,,1925-12-11,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Crossed out,1925-12-11,,https://shakespeareandco.princeton.edu/members/lanux-pierre-de/,Pierre de Lanux,"de Lanux, Pierre",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/beasley-first-thirty-years/,My First Thirty Years,,"Beasley, Gertrude",1925,,Lending Library Card,"Sylvia Beach, Pierre de Lanux Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e367ba9f-98cf-408d-9281-2c5771c2fa44/manifest,https://iiif.princeton.edu/loris/figgy_prod/ca%2Fda%2Fe8%2Fcadae8b190cd4f708a8e88505a8a3055%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-12-12,1925-12-14,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/bibesco-whole-story/,The Whole Story,,"Bibesco, Elizabeth",1926,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/22%2Fdb%2F41%2F22db4193227f443ea8f5f03f3241d214%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1925-12-12,1926-01-12,https://shakespeareandco.princeton.edu/members/moreira-de-2/;https://shakespeareandco.princeton.edu/members/moreira-de/,M. de Moreira;Mme de Moreira,"de Moreira, M.;de Moreira, Mme",12.00,20.00,1 month,31,1,,1925-12-12,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-12-12,1925-12-30,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/dane-way-things-happen/,The Way Things Happen: A Story in Three Acts,,"Dane, Clemence",1924,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/8b%2F71%2Ff7%2F8b71f70be84448aaaa2dad268daea625%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-12-12,1925-12-30,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/carpenter-psychology-poet-shelley/,The Psychology of the Poet Shelley,,"Carpenter, Edward;Barnard, Guy Christian",1925,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/8b%2F71%2Ff7%2F8b71f70be84448aaaa2dad268daea625%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-12-12,1926-02-20,https://shakespeareandco.princeton.edu/members/le-gallienne-irma/,Irma Le Gallienne / Mrs. Le Gallienne,"Le Gallienne, Irma",,,,,,,,,Returned,70,,,https://shakespeareandco.princeton.edu/books/shorthouse-john-inglesant/,John Inglesant,,"Shorthouse, Joseph Henry",1881,,Lending Library Card,"Sylvia Beach, Irma le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4541298f-a489-4089-97e3-96df327afd3d/manifest,https://iiif.princeton.edu/loris/figgy_prod/f8%2F76%2F91%2Ff876917733424e0ca5288aa56e8bb6ca%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-12-12,1926-02-20,https://shakespeareandco.princeton.edu/members/le-gallienne-irma/,Irma Le Gallienne / Mrs. Le Gallienne,"Le Gallienne, Irma",,,,,,,,,Returned,70,,,https://shakespeareandco.princeton.edu/books/arlen-green-hat/,The Green Hat: A Romance for a Few People,,"Arlen, Michael",1924,,Lending Library Card,"Sylvia Beach, Irma le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4541298f-a489-4089-97e3-96df327afd3d/manifest,https://iiif.princeton.edu/loris/figgy_prod/f8%2F76%2F91%2Ff876917733424e0ca5288aa56e8bb6ca%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-12-14,1925-12-18,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/hamsun-segelfoss-town/,Segelfoss Town,2 vols.,"Hamsun, Knut",1925,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/22%2Fdb%2F41%2F22db4193227f443ea8f5f03f3241d214%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1925-12-14,1925-12-14,https://shakespeareandco.princeton.edu/members/bradley-mary/,Mary Bradley,"Bradley, Mary",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-12-14,1925-12-16,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/king-hall-diary-young-lady/,The Diary of a Young Lady of Fashion in the Year 1764 β 1765,,"King-Hall, Magdalen",1925,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/62%2Fac%2Fd2%2F62acd25d62e64216a64fbde4e6ff33ec%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-12-14,1926-01-16,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,33,,,https://shakespeareandco.princeton.edu/books/meredith-egoist/,The Egoist,2 vols.,"Meredith, George",1879,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/05%2Fcc%2F42%2F05cc420c01b74e7885f72bc117cfdb3d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-12-16,1925-12-18,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/austen-lady-susan/,Lady Susan,,"Austen, Jane",1925,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/62%2Fac%2Fd2%2F62acd25d62e64216a64fbde4e6ff33ec%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-12-16,1925-12-19,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/tagore-broken-ties-stories/,Broken Ties and Other Stories,,"Tagore, Rabindranath",1925,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/a0%2F03%2F0d%2Fa0030d1ea392499cae9c30bbe3289cfd%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1925-12-16,1926-12-16,https://shakespeareandco.princeton.edu/members/lloyd-mary-constance/,Mary Constance Lloyd,"Lloyd, Mary Constance",110.00,40.00,1 year,365,2,,1925-12-16,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1925-12-16,1925-12-16,https://shakespeareandco.princeton.edu/members/landauer/,Mrs. Landauer,"Landauer, Mrs.",,,,,,,,40.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-12-16,1925-12-19,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/thackeray-wolves-lamb/,The Wolves and the Lamb,,"Thackeray, William Makepeace",1854,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/4c%2F1e%2F14%2F4c1e1486db0445cc80244924fce9e2a9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1925-12-16,1926-01-16,https://shakespeareandco.princeton.edu/members/lerner/,Miss Lerner,"Lerner, Miss",16.00,20.00,1 month,31,2,,1925-11-24,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1925-12-17,1925-12-31,https://shakespeareandco.princeton.edu/members/landauer/,Mrs. Landauer,"Landauer, Mrs.",8.00,,2 weeks,14,2,,1925-12-16,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-12-18,1925-12-23,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/stern-thunderstorm/,Thunderstorm,,"Stern, G. B.",1925,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/22%2Fdb%2F41%2F22db4193227f443ea8f5f03f3241d214%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-12-18,1925-12-23,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/gibbs-reckless-lady/,The Reckless Lady,,"Gibbs, Philip",1924,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/22%2Fdb%2F41%2F22db4193227f443ea8f5f03f3241d214%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1925-12-18,1926-01-18,https://shakespeareandco.princeton.edu/members/miller-f/,Mrs. F. Miller,"Miller, Mrs. F.",12.00,,1 month,31,1,,1925-12-18,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1925-12-18,1925-12-18,https://shakespeareandco.princeton.edu/members/lerner/,Miss Lerner,"Lerner, Miss",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-12-18,1925-12-22,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/austen-letters-jane-austen/,Letters of Jane Austen,,"Austen, Jane",1884,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/62%2Fac%2Fd2%2F62acd25d62e64216a64fbde4e6ff33ec%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1925-12-19,1926-01-19,https://shakespeareandco.princeton.edu/members/ames/,W. J. Ames,"Ames, W. J.",12.00,,1 month,31,1,,1925-11-16,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-12-19,1925-12-30,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/democracy/,Democracy,,,,Unidentified. Likely Henry Adams's *Democracy: A Novel* (1880).,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/4c%2F1e%2F14%2F4c1e1486db0445cc80244924fce9e2a9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-12-19,1925-12-29,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/beresford-early-history-jacob/,The Early History of Jacob Stahl,,"Beresford, J. D.",1911,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/07%2Fa3%2F4c%2F07a34cab31e341f5922a6a2e32fa1e5a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1925-12-19,1926-01-19,https://shakespeareandco.princeton.edu/members/vienne/,Mlle Mathieu de Vienne,"Vienne, Mlle Mathieu de",16.00,40.00,1 month,31,2,,1925-12-19,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-12-19,1925-12-23,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/woolf-mrs-dalloway/,Mrs. Dalloway,,"Woolf, Virginia",1925,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/a0%2F03%2F0d%2Fa0030d1ea392499cae9c30bbe3289cfd%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-12-19,1926-01-11,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/sidgwick-london-mixture/,London Mixture,,"Sidgwick, Cecily",1924,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/13%2F65%2Fc3%2F1365c304fdb84e4ba63ac2e5f4f5a3be%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1925-12-21,1926-01-21,https://shakespeareandco.princeton.edu/members/dale/,Mrs. John Dale,"Dale, Mrs. John",12.00,20.00,1 month,31,1,,1925-12-21,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1925-12-21,1925-12-21,https://shakespeareandco.princeton.edu/members/sanborn/,Mrs. Sanborn,"Sanborn, Mrs.",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1925-12-22,1926-06-22,https://shakespeareandco.princeton.edu/members/galantiere-lewis/;https://shakespeareandco.princeton.edu/members/galantiere-nancy/,Lewis GalantiΓ¨re;Nancy GalantiΓ¨re,"GalantiΓ¨re, Lewis;GalantiΓ¨re, Nancy",67.00,,6 months,182,2,,1925-12-22,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-12-22,1925-12-26,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/cather-youth-bright-medusa/,Youth and the Bright Medusa,,"Cather, Willa",1920,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/62%2Fac%2Fd2%2F62acd25d62e64216a64fbde4e6ff33ec%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1925-12-22,1926-01-22,https://shakespeareandco.princeton.edu/members/mcgill-esther/,Esther McGill,"McGill, Esther",12.00,20.00,1 month,31,1,,1925-12-22,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1925-12-22,1925-12-22,https://shakespeareandco.princeton.edu/members/campbell-4/,Louise Campbell,"Campbell, Louise",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1925-12-22,1925-12-22,https://shakespeareandco.princeton.edu/members/drake-lawrence/,Lawrence Drake,"Drake, Lawrence",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1925-12-22,1925-12-22,https://shakespeareandco.princeton.edu/members/guibaud-alice/,Alice Guibaud,"Guibaud, Alice",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1925-12-23,1926-01-23,https://shakespeareandco.princeton.edu/members/meerovitch-l-s/,L. S. Meerovitch,"Meerovitch, L. S.",12.00,,1 month,31,1,,1925-12-02,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-12-23,1925-12-30,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/frankau-life-erica/,Life and Erica,,"Frankau, Gilbert",1924,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/22%2Fdb%2F41%2F22db4193227f443ea8f5f03f3241d214%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1925-12-23,1926-01-23,https://shakespeareandco.princeton.edu/members/francillon-robert/,Robert Francillon,"Francillon, Robert",12.00,20.00,1 month,31,1,,1925-12-23,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1925-12-23,1926-03-23,https://shakespeareandco.princeton.edu/members/bullington/,J. B. Bullington,"Bullington, J. B.",40.00,40.00,3 months,90,2,,1925-12-23,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1925-12-23,1926-01-23,https://shakespeareandco.princeton.edu/members/carlisle-hollis-moore/,Hollis Moore Carlisle,"Carlisle, Hollis Moore",16.00,40.00,1 month,31,2,,1925-12-23,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-12-23,1925-12-30,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/love/,Love,,,,"Unidentified. Gilbert Cannan's *Love* (1914), Elizabeth Von Arnim's *Love* (1925), or William Lyon Phelps's *Love* (1928), etc.",Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/22%2Fdb%2F41%2F22db4193227f443ea8f5f03f3241d214%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-12-23,1926-01-09,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/joyce-portrait-artist-young/,A Portrait of the Artist as a Young Man,,"Joyce, James",1916,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/a0%2F03%2F0d%2Fa0030d1ea392499cae9c30bbe3289cfd%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-12-24,1926-01-07,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/macaulay-orphan-island/,Orphan Island,,"Macaulay, Rose",1924,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/77%2F51%2Fbc%2F7751bc4eab97498891132d7fedfaf2ac%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-12-24,1926-01-07,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/stephens-charwomans-daughter/,The Charwoman's Daughter,,"Stephens, James",1912,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/77%2F51%2Fbc%2F7751bc4eab97498891132d7fedfaf2ac%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-12-24,1926-01-07,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/stephens-land-youth/,In the Land of Youth,,"Stephens, James",1924,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/77%2F51%2Fbc%2F7751bc4eab97498891132d7fedfaf2ac%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-12-24,1926-01-23,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,30,,,https://shakespeareandco.princeton.edu/books/charles-dickens/,Charles Dickens,,,,Unidentified. By or about Charles Dickens.,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F89%2Fa4%2F5689a4b95685432aa62068f98b57b9df%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-12-26,1925-12-29,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/gosse-silhouettes/,Silhouettes,,"Gosse, Edmund",1925,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/62%2Fac%2Fd2%2F62acd25d62e64216a64fbde4e6ff33ec%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-12-28,1925-12-31,https://shakespeareandco.princeton.edu/members/sage-robert/,Robert D. Sage,"Sage, Robert D.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/gale-miss-lulu-bett/,Miss Lulu Bett,,"Gale, Zona",1920,,Lending Library Card,"Sylvia Beach, Robert Sage Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/222c7bee-1104-420b-879a-fa13a26a189a/manifest,https://iiif-cloud.princeton.edu/iiif/2/27%2F81%2F3a%2F27813a1fb2c543faa03a02415e1b0adc%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1925-12-28,1926-01-28,https://shakespeareandco.princeton.edu/members/sage-robert/,Robert D. Sage,"Sage, Robert D.",12.00,20.00,1 month,31,1,,1925-12-28,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Robert Sage Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/222c7bee-1104-420b-879a-fa13a26a189a/manifest,;https://iiif-cloud.princeton.edu/iiif/2/27%2F81%2F3a%2F27813a1fb2c543faa03a02415e1b0adc%2Fintermediate_file/full/full/0/default.jpg
+Request,1925-12-28,,https://shakespeareandco.princeton.edu/members/sage-robert/,Robert D. Sage,"Sage, Robert D.",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/joyce-ulysses/,Ulysses,,"Joyce, James",1922,,Lending Library Card,"Sylvia Beach, Robert Sage Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/222c7bee-1104-420b-879a-fa13a26a189a/manifest,https://iiif-cloud.princeton.edu/iiif/2/27%2F81%2F3a%2F27813a1fb2c543faa03a02415e1b0adc%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-12-28,1926-02-22,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,56,,,https://shakespeareandco.princeton.edu/books/santayana-life-reason/,The Life of Reason,,"Santayana, George",1905,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/37%2F63%2Fee%2F3763eef8329c491da536c985612d8be5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-12-29,1926-02-01,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,34,,,https://shakespeareandco.princeton.edu/books/arnim-pastors-wife/,The Pastor's Wife,,"Arnim, Elizabeth von",1914,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/07%2Fa3%2F4c%2F07a34cab31e341f5922a6a2e32fa1e5a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-12-29,1926-02-12,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,45,,,https://shakespeareandco.princeton.edu/books/galsworthy-beyond/,Beyond,,"Galsworthy, John",1917,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/07%2Fa3%2F4c%2F07a34cab31e341f5922a6a2e32fa1e5a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-12-29,1926-02-03,https://shakespeareandco.princeton.edu/members/schirmer/,Mabel Schirmer / Mrs. Robert Schirmer,"Schirmer, Mabel",,,,,,,,,Returned,36,,,https://shakespeareandco.princeton.edu/books/proust-within-budding-grove/,Within a Budding Grove (Γ la recherche du temps perdu 2),2 vols.,"Proust, Marcel",1924,,Lending Library Card,"Sylvia Beach, Mabel Schirmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4c00d0b2-7cb9-46e1-b628-2eac6ac7bb07/manifest,https://iiif-cloud.princeton.edu/iiif/2/e9%2F66%2F91%2Fe96691789f424ce1ab0efd6f73d5617b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-12-29,1925-12-31,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/kaye-smith-george-crown/,The George and the Crown,,"Kaye-Smith, Sheila",1925,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/62%2Fac%2Fd2%2F62acd25d62e64216a64fbde4e6ff33ec%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-12-29,1926-02-11,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,44,,,https://shakespeareandco.princeton.edu/books/whitman-leaves-grass/,Leaves of Grass,,"Whitman, Walt",,Unspecified edition.,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/37%2F45%2Fc6%2F3745c6824d204f61a49f848a0e9aa7cc%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1925-12-30,1926-01-30,https://shakespeareandco.princeton.edu/members/green-wiegand/,Green Wiegand,Green Wiegand,12.00,,1 month,31,1,,1925-12-30,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1925-12-30,1926-01-30,https://shakespeareandco.princeton.edu/members/smith-l/,Mrs. L. Smith,"Smith, Mrs. L.",12.00,,1 month,31,1,,1925-12-21,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1925-12-30,1926-01-04,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/ford-parades/,No More Parades (Parade's End 2),,"Ford, Ford Madox",1925,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/4c%2F1e%2F14%2F4c1e1486db0445cc80244924fce9e2a9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1925-12-30,1926-01-06,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/powys-ducdame/,Ducdame,,"Powys, John Cowper",1925,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/22%2Fdb%2F41%2F22db4193227f443ea8f5f03f3241d214%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1925-12-31,1926-03-31,https://shakespeareandco.princeton.edu/members/clark-c-o/,C. O. Clark,"Clark, C. O.",40.00,40.00,3 months,90,2,,1925-12-31,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-12-31,1926-01-02,https://shakespeareandco.princeton.edu/members/sage-robert/,Robert D. Sage,"Sage, Robert D.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/honore-de-balzac-celibates/,The Celibates,,"Balzac, HonorΓ© de",1897,,Lending Library Card,"Sylvia Beach, Robert Sage Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/222c7bee-1104-420b-879a-fa13a26a189a/manifest,https://iiif-cloud.princeton.edu/iiif/2/27%2F81%2F3a%2F27813a1fb2c543faa03a02415e1b0adc%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1925-12-31,1926-01-31,https://shakespeareandco.princeton.edu/members/st-george-h/,H. St. George,"St. George, H.",12.00,20.00,1 month,31,1,,1925-12-31,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1925-12-31,1926-03-31,https://shakespeareandco.princeton.edu/members/bomin-e/,E. Boman / Bomin / Bonin,"Boman, E.",12.00,20.00,3 months,90,1,,1925-12-31,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1925-12-31,1926-01-02,https://shakespeareandco.princeton.edu/members/sage-robert/,Robert D. Sage,"Sage, Robert D.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/hemingway-time/,In Our Time,,"Hemingway, Ernest",,Unidentified edition. Either Hemingway's *in our time* (1924) or *In Our Time* (1925).,Lending Library Card,"Sylvia Beach, Robert Sage Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/222c7bee-1104-420b-879a-fa13a26a189a/manifest,https://iiif-cloud.princeton.edu/iiif/2/27%2F81%2F3a%2F27813a1fb2c543faa03a02415e1b0adc%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1925-12-31,1926-01-02,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/love/,Love,,,,"Unidentified. Gilbert Cannan's *Love* (1914), Elizabeth Von Arnim's *Love* (1925), or William Lyon Phelps's *Love* (1928), etc.",Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/62%2Fac%2Fd2%2F62acd25d62e64216a64fbde4e6ff33ec%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-01-02,1926-01-05,https://shakespeareandco.princeton.edu/members/sage-robert/,Robert D. Sage,"Sage, Robert D.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/hecht-gargoyles/,Gargoyles,,"Hecht, Ben",1922,,Lending Library Card,"Sylvia Beach, Robert Sage Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/222c7bee-1104-420b-879a-fa13a26a189a/manifest,https://iiif-cloud.princeton.edu/iiif/2/27%2F81%2F3a%2F27813a1fb2c543faa03a02415e1b0adc%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-01-02,1926-01-06,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/trollope-orley-farm/,Orley Farm,"Vol. 1, Vol. 2","Trollope, Anthony",1862,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/62%2Fac%2Fd2%2F62acd25d62e64216a64fbde4e6ff33ec%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-01-04,1926-01-14,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/cather-one/,One of Ours,,"Cather, Willa",1922,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/4c%2F1e%2F14%2F4c1e1486db0445cc80244924fce9e2a9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-01-04,,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/shaw-table-talk-g/,Table-Talk of G. B. S.: Conversations on Things in General between George Bernard Shaw and His Biographer,,"Shaw, George Bernard;Henderson, Archibald",1925,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/8b%2F71%2Ff7%2F8b71f70be84448aaaa2dad268daea625%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-01-04,1926-02-20,https://shakespeareandco.princeton.edu/members/rieder/,M. Rieder,"Rieder, M.",,,,,,,,,Returned,47,,,https://shakespeareandco.princeton.edu/books/sandburg-slabs-sunburnt-west/,Slabs of the Sunburnt West,,"Sandburg, Carl",1922,,Lending Library Card,"Sylvia Beach, Rieder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/559c8919-8881-40ad-b027-67dbf1b23611/manifest,https://iiif.princeton.edu/loris/figgy_prod/e8%2F10%2F7c%2Fe8107c2c950f411d8ceeb6bb8bdc01c7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-01-04,1926-01-21,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/kennedy-constant-nymph/,The Constant Nymph,,"Kennedy, Margaret",1924,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/8b%2F71%2Ff7%2F8b71f70be84448aaaa2dad268daea625%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1926-01-04,1926-01-04,https://shakespeareandco.princeton.edu/members/gill-2/,Mr. Gill,"Gill, Mr.",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-01-04,1926-02-08,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,35,,,https://shakespeareandco.princeton.edu/books/spencer-education-intellectual-moral/,"Education: Intellectual, Moral and Physical",,"Spencer, Herbert",1860,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/dc%2F94%2Ffd%2Fdc94fda0cd9c4ae195f988f5a500f00f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-01-04,1926-01-04,https://shakespeareandco.princeton.edu/members/moreira-de-2/;https://shakespeareandco.princeton.edu/members/moreira-de/,M. de Moreira;Mme de Moreira,"de Moreira, M.;de Moreira, Mme",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1926-01-04,1926-01-04,https://shakespeareandco.princeton.edu/members/bailward/,C. Bailward,"Bailward, C.",,,,,,,,40.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1926-01-04,1926-01-04,https://shakespeareandco.princeton.edu/members/meerovitch-l-s/,L. S. Meerovitch,"Meerovitch, L. S.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1926-01-05,1927-01-05,https://shakespeareandco.princeton.edu/members/frieseke-sarah/,Sarah Anne Frieseke,"Frieseke, Sarah Anne",110.00,,1 year,365,2,,1925-12-17,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-01-05,1926-01-07,https://shakespeareandco.princeton.edu/members/sage-robert/,Robert D. Sage,"Sage, Robert D.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/butler-note-books-samuel/,The Note-Books of Samuel Butler,,"Butler, Samuel",1907,,Lending Library Card,"Sylvia Beach, Robert Sage Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/222c7bee-1104-420b-879a-fa13a26a189a/manifest,https://iiif-cloud.princeton.edu/iiif/2/27%2F81%2F3a%2F27813a1fb2c543faa03a02415e1b0adc%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-01-06,1926-01-13,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/dreiser-genius/,"The ""Genius""",,"Dreiser, Theodore",1915,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/22%2Fdb%2F41%2F22db4193227f443ea8f5f03f3241d214%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-01-06,1926-01-06,https://shakespeareandco.princeton.edu/members/gallagher-e-b/,E. B. Gallagher,"Gallagher, E. B.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1926-01-06,1926-01-06,https://shakespeareandco.princeton.edu/members/rosset-t-s-de/,Mrs. T. S. de Rosset,"de Rosset, Mrs. T. S.",,,,,,,,40.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-01-06,1926-02-06,https://shakespeareandco.princeton.edu/members/charlot/,H. E. Charlot,"Charlot, H. E.",20.00,40.00,1 month,31,2,,1926-01-06,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-01-07,1926-01-09,https://shakespeareandco.princeton.edu/members/sage-robert/,Robert D. Sage,"Sage, Robert D.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/oscar-wilde/,Oscar Wilde,Vol. 1,,,Unidentified. By or about Oscar Wilde. An unspecified 2 volume edition.,Lending Library Card,"Sylvia Beach, Robert Sage Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/222c7bee-1104-420b-879a-fa13a26a189a/manifest,https://iiif-cloud.princeton.edu/iiif/2/27%2F81%2F3a%2F27813a1fb2c543faa03a02415e1b0adc%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1926-01-07,,https://shakespeareandco.princeton.edu/members/unnamed-member-12/,M. [unnamed member],"[unnamed member], M.",15.00,,,,,,1926-01-07,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-01-07,1926-01-26,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/mirrlees-counterplot/,The Counterplot,,"Mirrlees, Hope",1924,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/77%2F51%2Fbc%2F7751bc4eab97498891132d7fedfaf2ac%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-01-07,1926-01-26,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/huxley-crome-yellow/,Crome Yellow,,"Huxley, Aldous",1921,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/77%2F51%2Fbc%2F7751bc4eab97498891132d7fedfaf2ac%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1926-01-08,1926-01-08,https://shakespeareandco.princeton.edu/members/harwood-p-a/,P. A. Harwood,"Harwood, P. A.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-01-08,,https://shakespeareandco.princeton.edu/members/michell-edward/;https://shakespeareandco.princeton.edu/members/michell/,Edward Michell / Mitchell;Miss Michell,"Michell, Edward;Michell, Miss",15.00,20.00,,,,,1926-01-08,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-01-08,1926-01-11,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/cather-professors-house/,The Professor's House,,"Cather, Willa",1925,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/62%2Fac%2Fd2%2F62acd25d62e64216a64fbde4e6ff33ec%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1926-01-09,,https://shakespeareandco.princeton.edu/members/fitzwater-f/,F. Fitzwater,"Fitzwater, F.",15.00,20.00,,,,,1926-01-09,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1926-01-09,1926-02-09,https://shakespeareandco.princeton.edu/members/harter-irma/,Irma Harter,"Harter, Irma",15.00,,1 month,31,1,,1926-01-09,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-01-09,1926-01-13,https://shakespeareandco.princeton.edu/members/sage-robert/,Robert D. Sage,"Sage, Robert D.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/oscar-wilde/,Oscar Wilde,Vol. 2,,,Unidentified. By or about Oscar Wilde. An unspecified 2 volume edition.,Lending Library Card,"Sylvia Beach, Robert Sage Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/222c7bee-1104-420b-879a-fa13a26a189a/manifest,https://iiif-cloud.princeton.edu/iiif/2/27%2F81%2F3a%2F27813a1fb2c543faa03a02415e1b0adc%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-01-09,1926-01-18,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/lowell-tendencies-modern-american/,Tendencies in Modern American Poetry,,"Lowell, Amy",1917,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/a0%2F03%2F0d%2Fa0030d1ea392499cae9c30bbe3289cfd%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1926-01-09,1926-01-09,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1926-01-09,1926-01-09,https://shakespeareandco.princeton.edu/members/parry/;https://shakespeareandco.princeton.edu/members/parry-3/,M. Parry;Mrs. Parry,"Parry, M.;Parry, Mrs.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-01-11,1926-01-13,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/maxwell-fernande/,Fernande,,"Maxwell, W. B.",1925,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/62%2Fac%2Fd2%2F62acd25d62e64216a64fbde4e6ff33ec%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1926-01-11,1926-02-11,https://shakespeareandco.princeton.edu/members/bacholle/,M. Bacholle,"Bacholle, M.",12.00,20.00,1 month,31,1,,1926-01-11,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-01-11,1926-02-11,https://shakespeareandco.princeton.edu/members/mclean-m-t/,Mrs. M. T. McLean,"McLean, Mrs. M. T.",20.00,40.00,1 month,31,2,,1926-01-11,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1926-01-11,1926-07-11,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",68.00,,6 months,181,2,Professor / Teacher,1926-01-07,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,;https://iiif-cloud.princeton.edu/iiif/2/77%2F51%2Fbc%2F7751bc4eab97498891132d7fedfaf2ac%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-01-11,1926-01-25,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/wodehouse-sam-sudden/,Sam the Sudden,,"Wodehouse, P. G.",1925,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/13%2F65%2Fc3%2F1365c304fdb84e4ba63ac2e5f4f5a3be%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1926-01-11,1926-04-11,https://shakespeareandco.princeton.edu/members/duclos-henri/,Henri Duclos,"Duclos, Henri",32.00,20.00,3 months,90,1,Student,1926-01-11,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-01-11,1926-04-11,https://shakespeareandco.princeton.edu/members/arthun/,Amber (Arthun) Warburton / Miss Arthun,"Warburton, Amber",32.00,20.00,3 months,90,1,,1926-01-11,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1926-01-12,1926-01-12,https://shakespeareandco.princeton.edu/members/francillon-robert/,Robert Francillon,"Francillon, Robert",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1926-01-12,1926-04-12,https://shakespeareandco.princeton.edu/members/rand/,Miss Rand,"Rand, Miss",40.00,,3 months,90,1,,1926-01-05,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1926-01-12,1926-01-12,https://shakespeareandco.princeton.edu/members/boer-josephine-de/,Josephine de Boer,"de Boer, Josephine",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1926-01-12,1926-02-12,https://shakespeareandco.princeton.edu/members/ninas/,Mr. Ninas,"Ninas, Mr.",15.00,,1 month,31,1,,1926-01-12,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1926-01-12,1926-01-12,https://shakespeareandco.princeton.edu/members/ninas/,Mr. Ninas,"Ninas, Mr.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-01-13,1926-01-14,https://shakespeareandco.princeton.edu/members/sage-robert/,Robert D. Sage,"Sage, Robert D.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/mencken-american-mercury/,The American Mercury,"Vol. 6, no. 25, Jan 1926",,,,Lending Library Card,"Sylvia Beach, Robert Sage Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/222c7bee-1104-420b-879a-fa13a26a189a/manifest,https://iiif-cloud.princeton.edu/iiif/2/27%2F81%2F3a%2F27813a1fb2c543faa03a02415e1b0adc%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-01-13,1926-01-15,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/cather-antonia/,My Antonia,,"Cather, Willa",1918,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/62%2Fac%2Fd2%2F62acd25d62e64216a64fbde4e6ff33ec%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-01-13,1926-01-18,https://shakespeareandco.princeton.edu/members/sage-robert/,Robert D. Sage,"Sage, Robert D.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/dreiser-american-tragedy/,An American Tragedy,Vol. 1,"Dreiser, Theodore",1925,,Lending Library Card,"Sylvia Beach, Robert Sage Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/222c7bee-1104-420b-879a-fa13a26a189a/manifest,https://iiif-cloud.princeton.edu/iiif/2/27%2F81%2F3a%2F27813a1fb2c543faa03a02415e1b0adc%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-01-13,1926-01-18,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/hutchinson-one-increasing-purpose/,One Increasing Purpose,,"Hutchinson, A. S. M.",1925,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/22%2Fdb%2F41%2F22db4193227f443ea8f5f03f3241d214%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-01-13,1926-01-18,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/dreiser-sister-carrie/,Sister Carrie,,"Dreiser, Theodore",1900,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/22%2Fdb%2F41%2F22db4193227f443ea8f5f03f3241d214%2Fintermediate_file.jp2/full/full/0/default.jpg
+Supplement,1926-01-13,1926-01-31,https://shakespeareandco.princeton.edu/members/kelley-j-b/,J. B. Kelley,"Kelley, J. B.",8.00,,18 days,18,1,,1926-01-13,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-01-14,1926-01-18,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/deland-awakening-helena-richie/,The Awakening of Helena Richie,,"Deland, Margaret",1906,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/4c%2F1e%2F14%2F4c1e1486db0445cc80244924fce9e2a9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-01-14,1926-01-20,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/dos-passos-manhattan-transfer/,Manhattan Transfer,,"Dos Passos, John",1925,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/22%2Fdb%2F41%2F22db4193227f443ea8f5f03f3241d214%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1926-01-15,1926-01-15,https://shakespeareandco.princeton.edu/members/schirmer/,Mabel Schirmer / Mrs. Robert Schirmer,"Schirmer, Mabel",,,,,,,,,,,75.00,FRF,https://shakespeareandco.princeton.edu/books/lords-housetops-thirteen/,Lords of the Housetops: Thirteen Cat Tales,,,1921,,Lending Library Card,"Sylvia Beach, Mabel Schirmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4c00d0b2-7cb9-46e1-b628-2eac6ac7bb07/manifest,https://iiif-cloud.princeton.edu/iiif/2/e9%2F66%2F91%2Fe96691789f424ce1ab0efd6f73d5617b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-01-15,1926-01-18,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/conrad-suspense/,Suspense,,"Conrad, Joseph",1923,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/62%2Fac%2Fd2%2F62acd25d62e64216a64fbde4e6ff33ec%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-01-15,1926-01-28,https://shakespeareandco.princeton.edu/members/ralli/,Georges Ralli,"Ralli, Georges",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/dickens-life-adventures-martin/,The Life and Adventures of Martin Chuzzlewit,,"Dickens, Charles",1844,,Lending Library Card,"Sylvia Beach, Georges Ralli Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/83d59351-167a-4d25-95a3-4f29f59d7e07/manifest,https://iiif.princeton.edu/loris/figgy_prod/35%2F33%2Fd8%2F3533d8a45b1a43709d8d48af56235c30%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-01-15,,https://shakespeareandco.princeton.edu/members/schirmer/,Mabel Schirmer / Mrs. Robert Schirmer,"Schirmer, Mabel",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/fabre-life-caterpillar/,The Life of the Caterpillar,,"Fabre, Jean-Henri",1912,,Lending Library Card,"Sylvia Beach, Mabel Schirmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4c00d0b2-7cb9-46e1-b628-2eac6ac7bb07/manifest,https://iiif-cloud.princeton.edu/iiif/2/e9%2F66%2F91%2Fe96691789f424ce1ab0efd6f73d5617b%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1926-01-15,1926-04-15,https://shakespeareandco.princeton.edu/members/ralli/,Georges Ralli,"Ralli, Georges",40.00,40.00,3 months,90,2,Student,1926-01-15,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Georges Ralli Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/83d59351-167a-4d25-95a3-4f29f59d7e07/manifest,;https://iiif.princeton.edu/loris/figgy_prod/35%2F33%2Fd8%2F3533d8a45b1a43709d8d48af56235c30%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-01-15,1926-01-28,https://shakespeareandco.princeton.edu/members/ralli/,Georges Ralli,"Ralli, Georges",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/dickens-david-copperfield/,David Copperfield,,"Dickens, Charles",1850,,Lending Library Card,"Sylvia Beach, Georges Ralli Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/83d59351-167a-4d25-95a3-4f29f59d7e07/manifest,https://iiif.princeton.edu/loris/figgy_prod/35%2F33%2Fd8%2F3533d8a45b1a43709d8d48af56235c30%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1926-01-15,1926-02-15,https://shakespeareandco.princeton.edu/members/stewart-m/,M. Stewart,"Stewart, M.",20.00,,1 month,31,2,,1926-01-15,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1926-01-16,1926-02-16,https://shakespeareandco.princeton.edu/members/burke/,Mr. J. F. Burke,"Burke, Mr. J. F.",15.00,20.00,1 month,31,1,,1926-01-16,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-01-16,1926-01-21,https://shakespeareandco.princeton.edu/members/sage-robert/,Robert D. Sage,"Sage, Robert D.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/dreiser-american-tragedy/,An American Tragedy,,"Dreiser, Theodore",1925,,Lending Library Card,"Sylvia Beach, Robert Sage Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/222c7bee-1104-420b-879a-fa13a26a189a/manifest,https://iiif-cloud.princeton.edu/iiif/2/27%2F81%2F3a%2F27813a1fb2c543faa03a02415e1b0adc%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1926-01-16,1926-07-16,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",65.00,,6 months,181,1,,1926-01-16,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,;https://iiif.princeton.edu/loris/figgy_prod/23%2F7d%2Fa5%2F237da592c8234d839140f8c72d672a9f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-01-16,1926-01-28,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/gosse-father-study-two/,Father and Son: A Study of Two Temperaments,,"Gosse, Edmund",1907,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2F7d%2Fa5%2F237da592c8234d839140f8c72d672a9f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-01-16,1926-01-16,https://shakespeareandco.princeton.edu/members/charlot/,H. E. Charlot,"Charlot, H. E.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-01-16,,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/douglas-h-lawrence-maurice/,D. H. Lawrence and Maurice Magnus,,"Douglas, Norman",1924,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/05%2Fcc%2F42%2F05cc420c01b74e7885f72bc117cfdb3d%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1926-01-17,1926-04-17,https://shakespeareandco.princeton.edu/members/wyers/,Mr. Wyers,"Wyers, Mr.",30.00,,3 months,90,1,,1925-12-28,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-01-18,1926-02-01,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/lewisohn-israel/,Israel,,"Lewisohn, Ludwig",1925,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/05%2Fcc%2F42%2F05cc420c01b74e7885f72bc117cfdb3d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-01-18,1926-01-19,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/glaspell-glory-conquered-story/,The Glory of the Conquered: The Story of a Great Love,,"Glaspell, Susan",1909,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/4c%2F1e%2F14%2F4c1e1486db0445cc80244924fce9e2a9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-01-18,1926-02-11,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,24,,,https://shakespeareandco.princeton.edu/books/pound-instigations-ezra-pound/,"Instigations of Ezra Pound: Together with an Essay on the Chinese Written Character, by Ernest Fenollosa",,"Pound, Ezra;Fenollosa, Ernest",1920,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/a0%2F03%2F0d%2Fa0030d1ea392499cae9c30bbe3289cfd%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1926-01-18,1926-04-18,https://shakespeareandco.princeton.edu/members/barbet/,S. Barbet / S. Barket,"Barbet, S.",50.00,40.00,3 months,90,2,,1926-01-18,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1926-01-18,1927-01-18,https://shakespeareandco.princeton.edu/members/rieder/,M. Rieder,"Rieder, M.",92.00,,1 year,365,1,AdL,1926-04-03,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Rieder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/559c8919-8881-40ad-b027-67dbf1b23611/manifest,https://iiif.princeton.edu/loris/figgy_prod/e8%2F10%2F7c%2Fe8107c2c950f411d8ceeb6bb8bdc01c7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-01-18,1926-01-20,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/glaspell-fidelity/,Fidelity: A Novel,,"Glaspell, Susan",1915,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/22%2Fdb%2F41%2F22db4193227f443ea8f5f03f3241d214%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-01-18,1926-02-24,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,37,,,https://shakespeareandco.princeton.edu/books/smollett-adventures-peregrine-pickle/,The Adventures of Peregrine Pickle,,"Smollett, Tobias",1751,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/62%2Fac%2Fd2%2F62acd25d62e64216a64fbde4e6ff33ec%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-01-18,1926-01-20,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/pilgrimage/,Pilgrimage,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/22%2Fdb%2F41%2F22db4193227f443ea8f5f03f3241d214%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-01-19,1926-01-25,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/baring-cats-cradle/,Cat's Cradle,,"Baring, Maurice",1925,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0a%2Ff4%2Ff6%2F0af4f6a926324bcbacea40ad3dc841a7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1926-01-19,1926-07-19,https://shakespeareandco.princeton.edu/members/sutherland/,Charles Sutherland,"Sutherland, Charles",85.00,,6 months,181,2,,1926-01-15,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1926-01-19,1926-07-19,https://shakespeareandco.princeton.edu/members/pfeiffer-pauline/,Pauline Pfeiffer,"Pfeiffer, Pauline",65.00,20.00,6 months,181,1,,1926-01-19,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Pauline Pfeiffer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/6b926df4-13d0-4304-ad64-86df1bc67b0d/manifest,;https://iiif.princeton.edu/loris/figgy_prod/e7%2F69%2F22%2Fe76922b82d3e411584d3a32cf3fe8ea6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1926-01-19,1926-02-19,https://shakespeareandco.princeton.edu/members/ames/,W. J. Ames,"Ames, W. J.",12.00,,1 month,31,1,Student,1926-01-11,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-01-19,1926-01-22,https://shakespeareandco.princeton.edu/members/pfeiffer-pauline/,Pauline Pfeiffer,"Pfeiffer, Pauline",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/baring-c/,C,,"Baring, Maurice",1924,,Lending Library Card,"Sylvia Beach, Pauline Pfeiffer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6b926df4-13d0-4304-ad64-86df1bc67b0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/e7%2F69%2F22%2Fe76922b82d3e411584d3a32cf3fe8ea6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-01-20,1926-02-20,https://shakespeareandco.princeton.edu/members/bright/,Robert Bright,"Bright, Robert",20.00,40.00,1 month,31,2,,1926-01-20,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-01-20,1926-01-23,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/dell-janet-march-novel/,Janet March: A Novel,,"Dell, Floyd",1923,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/55%2F1d%2F46%2F551d46262c164389967a6e4110dff51b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-01-20,1926-01-23,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/frank-dark-mother/,The Dark Mother,,"Frank, Waldo",1920,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/55%2F1d%2F46%2F551d46262c164389967a6e4110dff51b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-01-20,1926-02-20,https://shakespeareandco.princeton.edu/members/mclenan-beth/,Beth McLenan,"McLenan, Beth",15.00,20.00,1 month,31,1,,1926-01-20,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-01-21,1926-01-29,https://shakespeareandco.princeton.edu/members/sage-robert/,Robert D. Sage,"Sage, Robert D.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/eighteenth-century/,Eighteenth Century,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Robert Sage Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/222c7bee-1104-420b-879a-fa13a26a189a/manifest,https://iiif-cloud.princeton.edu/iiif/2/27%2F81%2F3a%2F27813a1fb2c543faa03a02415e1b0adc%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1926-01-21,1926-04-21,https://shakespeareandco.princeton.edu/members/linley-margaret/,Margaret Linley,"Linley, Margaret",50.00,40.00,3 months,90,2,,1926-01-21,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1926-01-21,1926-01-21,https://shakespeareandco.princeton.edu/members/green-wiegand/,Green Wiegand,Green Wiegand,,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-01-21,1926-01-23,https://shakespeareandco.princeton.edu/members/sage-robert/,Robert D. Sage,"Sage, Robert D.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/forster-room-view/,A Room with a View,,"Forster, E. M.",,,Lending Library Card,"Sylvia Beach, Robert Sage Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/222c7bee-1104-420b-879a-fa13a26a189a/manifest,https://iiif-cloud.princeton.edu/iiif/2/27%2F81%2F3a%2F27813a1fb2c543faa03a02415e1b0adc%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-01-22,,https://shakespeareandco.princeton.edu/members/service/,Robert W. Service / Mr. R. W. Service,"Service, Robert W.",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/bloch-sexual-life-time/,The Sexual Life of Our Time in Its Relation to Modern Civilization,,"Bloch, Iwan",1908,,Lending Library Card,"Sylvia Beach, Robert Service Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/102d8619-7160-464b-8967-ca771c0c29f6/manifest,https://iiif.princeton.edu/loris/figgy_prod/15%2Fd8%2Fe9%2F15d8e9e91dca4f9faeaa5ea2b538fc5f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-01-22,1926-07-22,https://shakespeareandco.princeton.edu/members/aminoff/,Hans Aminoff,"Aminoff, Hans",65.00,20.00,6 months,181,1,,1926-01-22,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-01-22,1926-02-22,https://shakespeareandco.princeton.edu/members/binder/,Pearl Binder,"Binder, Pearl",12.00,20.00,1 month,31,1,Student,1926-01-22,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-01-22,1926-02-02,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/hendrick-life-letters-walter/,The Life and Letters of Walter H. Page,,"Hendrick, Burton J.",1922,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/8b%2F71%2Ff7%2F8b71f70be84448aaaa2dad268daea625%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-01-22,1926-01-23,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/oneill-hairy-ape/,The Hairy Ape,,"O'Neill, Eugene",1923,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/8b%2F71%2Ff7%2F8b71f70be84448aaaa2dad268daea625%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-01-22,1926-03-06,https://shakespeareandco.princeton.edu/members/pfeiffer-pauline/,Pauline Pfeiffer,"Pfeiffer, Pauline",,,,,,,,,Returned,43,,,https://shakespeareandco.princeton.edu/books/eliot-sacred-wood-essays/,The Sacred Wood: Essays on Poetry and Criticism,,"Eliot, T. S.",1920,,Lending Library Card,"Sylvia Beach, Pauline Pfeiffer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6b926df4-13d0-4304-ad64-86df1bc67b0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/e7%2F69%2F22%2Fe76922b82d3e411584d3a32cf3fe8ea6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Supplement,1926-01-22,1926-04-11,https://shakespeareandco.princeton.edu/members/arthun/,Amber (Arthun) Warburton / Miss Arthun,"Warburton, Amber",8.00,20.00,"2 months, 20 days",79,1,Student,1926-01-22,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1926-01-22,1926-02-22,https://shakespeareandco.princeton.edu/members/service/,Robert W. Service / Mr. R. W. Service,"Service, Robert W.",15.00,,1 month,31,1,,1926-01-22,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Robert Service Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/102d8619-7160-464b-8967-ca771c0c29f6/manifest,;https://iiif.princeton.edu/loris/figgy_prod/15%2Fd8%2Fe9%2F15d8e9e91dca4f9faeaa5ea2b538fc5f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-01-23,1926-01-30,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/mackenzie-parsons-progress/,The Parson's Progress,,"Mackenzie, Compton",1923,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F89%2Fa4%2F5689a4b95685432aa62068f98b57b9df%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-01-23,1926-02-04,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/mackenzie-vanity-girl/,The Vanity Girl,,"Mackenzie, Compton",1920,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/55%2F1d%2F46%2F551d46262c164389967a6e4110dff51b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1926-01-23,1926-04-28,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",50.00,,"3 months, 5 days",95,2,,1926-01-23,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Maspero Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/92dca37a-f412-4b18-90a3-d236d2b3fe20/manifest,;https://iiif-cloud.princeton.edu/iiif/2/8b%2F71%2Ff7%2F8b71f70be84448aaaa2dad268daea625%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1926-01-23,1926-01-23,https://shakespeareandco.princeton.edu/members/michell-edward/;https://shakespeareandco.princeton.edu/members/michell/,Edward Michell / Mitchell;Miss Michell,"Michell, Edward;Michell, Miss",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1926-01-23,1926-02-23,https://shakespeareandco.princeton.edu/members/stewart-w/,W. Stewart / Mr. Stewart-Elsmer,"Stewart, W.",12.00,,1 month,31,1,Student,1926-01-23,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-01-23,1926-02-04,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/swinnerton-elder-sister/,The Elder Sister,,"Swinnerton, Frank",1925,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/55%2F1d%2F46%2F551d46262c164389967a6e4110dff51b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1926-01-23,1926-02-23,https://shakespeareandco.princeton.edu/members/everard-2/,Mrs. Everard,"Everard, Mrs.",20.00,,1 month,31,2,,1926-01-23,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1926-01-23,1926-01-23,https://shakespeareandco.princeton.edu/members/carlisle-hollis-moore/,Hollis Moore Carlisle,"Carlisle, Hollis Moore",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1926-01-24,1926-02-24,https://shakespeareandco.princeton.edu/members/mcdonald-emma/,Emma McDonald,"McDonald, Emma",15.00,,1 month,31,1,,1926-01-21,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-01-24,1926-03-01,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,36,,,https://shakespeareandco.princeton.edu/books/moore-heloise-abelard/,HΓ©loise and AbΓ©lard,,"Moore, George",1921,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/62%2Fac%2Fd2%2F62acd25d62e64216a64fbde4e6ff33ec%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-01-25,1926-03-05,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,39,,,https://shakespeareandco.princeton.edu/books/dell-mad-ideal/,This Mad Ideal,,"Dell, Floyd",1925,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/13%2F65%2Fc3%2F1365c304fdb84e4ba63ac2e5f4f5a3be%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1926-01-25,1926-02-25,https://shakespeareandco.princeton.edu/members/burley/,F. M. Burley,"Burley, F. M.",15.00,20.00,1 month,31,1,,1926-01-25,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-01-25,1926-02-25,https://shakespeareandco.princeton.edu/members/burns-c/,C. Burns,"Burns, C.",12.00,20.00,1 month,31,1,Student,1926-01-25,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-01-25,1926-01-30,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/maniac/,The Maniac,,,,Unidentified.,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0a%2Ff4%2Ff6%2F0af4f6a926324bcbacea40ad3dc841a7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-01-26,1926-02-02,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/granville-barker-voysey-inheritance/,The Voysey Inheritance,,"Granville-Barker, Harley",1916,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/77%2F51%2Fbc%2F7751bc4eab97498891132d7fedfaf2ac%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-01-26,1926-02-02,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/granville-barker-waste-play-four/,Waste: A Play in Four Acts,,"Granville-Barker, Harley",1907,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/77%2F51%2Fbc%2F7751bc4eab97498891132d7fedfaf2ac%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-01-26,1926-02-02,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/huxley-limbo/,Limbo,,"Huxley, Aldous",1920,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/77%2F51%2Fbc%2F7751bc4eab97498891132d7fedfaf2ac%2Fintermediate_file/full/full/0/default.jpg
+Supplement,1926-01-28,1926-02-25,https://shakespeareandco.princeton.edu/members/burns-c/,C. Burns,"Burns, C.",4.00,20.00,28 days,28,1,Student,1926-01-28,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-01-28,1926-02-23,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,26,,,https://shakespeareandco.princeton.edu/books/arlen-green-hat/,The Green Hat: A Romance for a Few People,,"Arlen, Michael",1924,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/37%2F45%2Fc6%2F3745c6824d204f61a49f848a0e9aa7cc%2Fintermediate_file/full/full/0/default.jpg
+Crossed out,1926-01-28,,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/machen-canning-wonder/,The Canning Wonder,,"Machen, Arthur",1925,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/28%2Ff9%2F7d%2F28f97db617bb43b98744175c11c3170d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-01-28,1926-02-05,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/belloc-mercy-allah/,The Mercy of Allah,,"Belloc, Hilaire",1922,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2F7d%2Fa5%2F237da592c8234d839140f8c72d672a9f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-01-28,1926-02-05,https://shakespeareandco.princeton.edu/members/ralli/,Georges Ralli,"Ralli, Georges",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/wilde-profundis/,De Profundis,,"Wilde, Oscar",1905,,Lending Library Card,"Sylvia Beach, Georges Ralli Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/83d59351-167a-4d25-95a3-4f29f59d7e07/manifest,https://iiif.princeton.edu/loris/figgy_prod/35%2F33%2Fd8%2F3533d8a45b1a43709d8d48af56235c30%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-01-28,1926-02-02,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/collins-doctor-looks-literature/,The Doctor Looks at Literature: Psychological Studies of Life and Letters,,"Collins, Joseph",1923,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/28%2Ff9%2F7d%2F28f97db617bb43b98744175c11c3170d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-01-28,1926-02-05,https://shakespeareandco.princeton.edu/members/ralli/,Georges Ralli,"Ralli, Georges",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/wilde-ideal-husband/,An Ideal Husband,,"Wilde, Oscar",1899,,Lending Library Card,"Sylvia Beach, Georges Ralli Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/83d59351-167a-4d25-95a3-4f29f59d7e07/manifest,https://iiif.princeton.edu/loris/figgy_prod/35%2F33%2Fd8%2F3533d8a45b1a43709d8d48af56235c30%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1926-01-28,1926-02-28,https://shakespeareandco.princeton.edu/members/sage-robert/,Robert D. Sage,"Sage, Robert D.",15.00,,1 month,31,1,,1926-01-29,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Robert Sage Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/222c7bee-1104-420b-879a-fa13a26a189a/manifest,;https://iiif-cloud.princeton.edu/iiif/2/27%2F81%2F3a%2F27813a1fb2c543faa03a02415e1b0adc%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1926-01-28,1926-01-28,https://shakespeareandco.princeton.edu/members/clarke-a/,A. Clarke,"Clarke, A.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-01-29,1926-01-30,https://shakespeareandco.princeton.edu/members/sage-robert/,Robert D. Sage,"Sage, Robert D.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/hergesheimer-java-head/,Java Head,,"Hergesheimer, Joseph",1918,,Lending Library Card,"Sylvia Beach, Robert Sage Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/222c7bee-1104-420b-879a-fa13a26a189a/manifest,https://iiif-cloud.princeton.edu/iiif/2/27%2F81%2F3a%2F27813a1fb2c543faa03a02415e1b0adc%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1926-01-29,1926-02-28,https://shakespeareandco.princeton.edu/members/baker-don/,Don Baker,"Baker, Don",15.00,20.00,1 month,30,1,,1926-01-29,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-01-29,1926-04-29,https://shakespeareandco.princeton.edu/members/agnet-2/,Mme R. Agnet,"Agnet, Mme R.",50.00,,3 months,90,2,,1926-01-29,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Purchase,1926-01-30,1926-01-30,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/hemingway-time/,In Our Time,,"Hemingway, Ernest",,Unidentified edition. Either Hemingway's *in our time* (1924) or *In Our Time* (1925).,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/28%2Ff9%2F7d%2F28f97db617bb43b98744175c11c3170d%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1926-01-30,1926-02-28,https://shakespeareandco.princeton.edu/members/smith-l/,Mrs. L. Smith,"Smith, Mrs. L.",15.00,,1 month,29,1,,1926-01-19,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-01-30,1926-02-01,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/mayne-one-grandmothers/,One of Our Grandmothers,,"Mayne, Ethel Colburn",1916,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0a%2Ff4%2Ff6%2F0af4f6a926324bcbacea40ad3dc841a7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-01-30,1926-02-01,https://shakespeareandco.princeton.edu/members/sage-robert/,Robert D. Sage,"Sage, Robert D.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/dos-passos-manhattan-transfer/,Manhattan Transfer,,"Dos Passos, John",1925,,Lending Library Card,"Sylvia Beach, Robert Sage Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/222c7bee-1104-420b-879a-fa13a26a189a/manifest,https://iiif-cloud.princeton.edu/iiif/2/27%2F81%2F3a%2F27813a1fb2c543faa03a02415e1b0adc%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1926-01-30,1926-04-30,https://shakespeareandco.princeton.edu/members/mcnickle-darcy/,DβArcy McNickle / D'Arcy Dahlberg,"McNickle, DβArcy",40.00,20.00,3 months,90,1,,1926-01-30,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1926-01-30,1926-02-28,https://shakespeareandco.princeton.edu/members/henton-l/;https://shakespeareandco.princeton.edu/members/henton/,L. Henton;Mrs. Henton,"Henton, L.;Henton, Mrs.",20.00,,1 month,29,2,,1926-01-30,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1926-01-30,1926-02-28,https://shakespeareandco.princeton.edu/members/burnett/,W. Burnett,"Burnett, W.",15.00,20.00,1 month,29,1,,1926-01-30,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1926-01-30,1926-01-30,https://shakespeareandco.princeton.edu/members/gautier-2/,Francis Gautier,"Gautier, Francis",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-01-30,1926-02-18,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/mackenzie-heavenly-ladder/,The Heavenly Ladder,,"Mackenzie, Compton",1924,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F89%2Fa4%2F5689a4b95685432aa62068f98b57b9df%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-01-30,1926-01-30,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/bull-fighting/,Bull Fighting,,,,"Unidentified. Richard Layman identifies the item as either J. Morewood Dowsett's ""The Spanish Bullfight"" (1925) or Henry de Montherlant's *Les bestiaires* (1926). Michael Reynolds identifies it as Dowsett's *The Spanish Bull Ring* (1928). Noel Riley Fitch identifies it as T. W. Jones's *Bullfighting* (1904). All are unlikely or (due to date of publication) impossible. Another option is Vicente Blasco Ibanez's *Corrida (The Bull-Fight),* a bilingual edition, translated by C. D. Campbell (1919).",Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/28%2Ff9%2F7d%2F28f97db617bb43b98744175c11c3170d%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1926-01-31,1926-02-28,https://shakespeareandco.princeton.edu/members/kelley-j-b/,J. B. Kelley,"Kelley, J. B.",20.00,,1 month,28,2,,1926-01-30,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-02-01,1926-02-06,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/arlen-may-fair/,May Fair,,"Arlen, Michael",1925,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0a%2Ff4%2Ff6%2F0af4f6a926324bcbacea40ad3dc841a7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-02-01,1926-03-01,https://shakespeareandco.princeton.edu/members/macconnel-m-c/,M. C. MacConnel,"MacConnel, M. C.",12.00,20.00,1 month,28,1,AdL,1926-02-01,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-02-01,1926-02-05,https://shakespeareandco.princeton.edu/members/sage-robert/,Robert D. Sage,"Sage, Robert D.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/williams-american-grain/,In the American Grain,,"Williams, William Carlos",1925,,Lending Library Card,"Sylvia Beach, Robert Sage Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/222c7bee-1104-420b-879a-fa13a26a189a/manifest,https://iiif-cloud.princeton.edu/iiif/2/27%2F81%2F3a%2F27813a1fb2c543faa03a02415e1b0adc%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-02-02,1926-02-19,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/wells-christina-albertas-father/,Christina Alberta's Father,,"Wells, H. G.",1925,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/8b%2F71%2Ff7%2F8b71f70be84448aaaa2dad268daea625%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-02-02,1926-03-02,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,28,,,https://shakespeareandco.princeton.edu/books/archer-old-drama-new/,The Old Drama and the New,,"Archer, William",1923,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/77%2F51%2Fbc%2F7751bc4eab97498891132d7fedfaf2ac%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-02-02,1926-02-19,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/lewis-babbitt/,Babbitt,,"Lewis, Sinclair",1922,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/8b%2F71%2Ff7%2F8b71f70be84448aaaa2dad268daea625%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-02-02,1926-02-09,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/beresford-candidate-truth/,A Candidate for Truth,,"Beresford, J. D.",1912,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/77%2F51%2Fbc%2F7751bc4eab97498891132d7fedfaf2ac%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-02-03,1926-02-13,https://shakespeareandco.princeton.edu/members/schirmer/,Mabel Schirmer / Mrs. Robert Schirmer,"Schirmer, Mabel",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/honore-de-balzac-celibates/,The Celibates,,"Balzac, HonorΓ© de",1897,,Lending Library Card,"Sylvia Beach, Mabel Schirmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4c00d0b2-7cb9-46e1-b628-2eac6ac7bb07/manifest,https://iiif-cloud.princeton.edu/iiif/2/e9%2F66%2F91%2Fe96691789f424ce1ab0efd6f73d5617b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-02-04,1926-04-05,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,60,,,https://shakespeareandco.princeton.edu/books/stern-smoke-rings/,Smoke Rings,,"Stern, G. B.",1923,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/55%2F1d%2F46%2F551d46262c164389967a6e4110dff51b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-02-04,1926-04-05,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,60,,,https://shakespeareandco.princeton.edu/books/borden-jericho-sands/,Jericho Sands,,"Borden, Mary",1925,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/55%2F1d%2F46%2F551d46262c164389967a6e4110dff51b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-02-04,1926-02-18,https://shakespeareandco.princeton.edu/members/isaacson/,Mrs. D. Isaacson,"Isaacson, Mrs. D.",7.50,20.00,2 weeks,14,1,,1926-02-04,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-02-04,1926-03-04,https://shakespeareandco.princeton.edu/members/blok/,Mme F. Blok,"Blok, Mme F.",15.00,20.00,1 month,28,1,,1926-02-04,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-02-04,1926-03-04,https://shakespeareandco.princeton.edu/members/carlisle-hollis-moore/,Hollis Moore Carlisle,"Carlisle, Hollis Moore",20.00,40.00,1 month,28,2,,1926-02-04,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-02-05,1926-02-08,https://shakespeareandco.princeton.edu/members/sage-robert/,Robert D. Sage,"Sage, Robert D.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/criterion/,The Criterion,"Vol. 4, no. 1, Jan 1926 The New Criterion",,,"Renamed *The New Criterion* from January 1926 to January 1927, and *The Monthly Criterion* from May 1927 to March 1928.",Lending Library Card,"Sylvia Beach, Robert Sage Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/222c7bee-1104-420b-879a-fa13a26a189a/manifest,https://iiif-cloud.princeton.edu/iiif/2/27%2F81%2F3a%2F27813a1fb2c543faa03a02415e1b0adc%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-02-05,1926-02-07,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/roberts-love-rack/,The Love Rack,,"Roberts, Cecil",1925,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/55%2F1d%2F46%2F551d46262c164389967a6e4110dff51b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1926-02-05,1927-02-05,https://shakespeareandco.princeton.edu/members/flecker/,Mrs. Flecker,"Flecker, Mrs.",81.00,,1 year,365,1,,1926-01-30,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-02-05,1926-02-07,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/machen-canning-wonder/,The Canning Wonder,,"Machen, Arthur",1925,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/55%2F1d%2F46%2F551d46262c164389967a6e4110dff51b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-02-05,1926-02-19,https://shakespeareandco.princeton.edu/members/ralli/,Georges Ralli,"Ralli, Georges",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/meredith-diana-crossways/,Diana of the Crossways,,"Meredith, George",1885,,Lending Library Card,"Sylvia Beach, Georges Ralli Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/83d59351-167a-4d25-95a3-4f29f59d7e07/manifest,https://iiif.princeton.edu/loris/figgy_prod/35%2F33%2Fd8%2F3533d8a45b1a43709d8d48af56235c30%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1926-02-05,1926-03-05,https://shakespeareandco.princeton.edu/members/hyde-h/,H. Hyde,"Hyde, H.",15.00,,1 month,28,1,,1926-01-20,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-02-05,1926-02-19,https://shakespeareandco.princeton.edu/members/ralli/,Georges Ralli,"Ralli, Georges",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/joyce-portrait-artist-young/,A Portrait of the Artist as a Young Man,,"Joyce, James",1916,,Lending Library Card,"Sylvia Beach, Georges Ralli Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/83d59351-167a-4d25-95a3-4f29f59d7e07/manifest,https://iiif.princeton.edu/loris/figgy_prod/35%2F33%2Fd8%2F3533d8a45b1a43709d8d48af56235c30%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-02-05,1926-02-08,https://shakespeareandco.princeton.edu/members/sage-robert/,Robert D. Sage,"Sage, Robert D.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/sandburg-smoke-steel/,Smoke and Steel,,"Sandburg, Carl",1921,,Lending Library Card,"Sylvia Beach, Robert Sage Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/222c7bee-1104-420b-879a-fa13a26a189a/manifest,https://iiif-cloud.princeton.edu/iiif/2/27%2F81%2F3a%2F27813a1fb2c543faa03a02415e1b0adc%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1926-02-06,1926-05-06,https://shakespeareandco.princeton.edu/members/stewart-j-m/,J. M. Stewart,"Stewart, J. M.",32.00,,3 months,89,1,Student,1926-02-06,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-02-06,1926-03-05,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,27,,,https://shakespeareandco.princeton.edu/books/douglas-old-calabria/,Old Calabria,,"Douglas, Norman",1915,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/05%2Fcc%2F42%2F05cc420c01b74e7885f72bc117cfdb3d%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1926-02-06,1926-08-06,https://shakespeareandco.princeton.edu/members/gross/,Mrs. Christian Gross,"Gross, Mrs. Christian",85.00,40.00,6 months,181,2,,1926-02-06,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-02-06,1926-02-17,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/boyd-drums/,Drums,,"Boyd, James",1926,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0a%2Ff4%2Ff6%2F0af4f6a926324bcbacea40ad3dc841a7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-02-07,1926-02-10,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/thackeray-wolves-lamb/,The Wolves and the Lamb,,"Thackeray, William Makepeace",1854,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/55%2F1d%2F46%2F551d46262c164389967a6e4110dff51b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-02-07,1926-02-10,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/phillpotts-haven/,The Haven,,"Phillpotts, Eden",1909,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/55%2F1d%2F46%2F551d46262c164389967a6e4110dff51b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-02-08,1926-05-08,https://shakespeareandco.princeton.edu/members/jackson-a-r/,Mrs. A. R. Jackson,"Jackson, Mrs. A. R.",40.00,20.00,3 months,89,1,,1926-02-08,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-02-08,1926-02-23,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/carlyle-new-letters-memorials/,New Letters and Memorials of Jane Welsh Carlyle,,"Carlyle, Jane Welsh",1903,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2F7d%2Fa5%2F237da592c8234d839140f8c72d672a9f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-02-08,1926-03-02,https://shakespeareandco.princeton.edu/members/pottier-ph/,Ph. Pottier,"Pottier, Ph.",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/eliot-scenes-clerical-life/,Scenes of Clerical Life,,"Eliot, George",1857,,Lending Library Card,"Sylvia Beach, Ph. Pottier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac2188bc-d3fc-4d8c-99c5-985d61fb32c1/manifest,https://iiif.princeton.edu/loris/figgy_prod/39%2Fda%2F42%2F39da422031304248a433f6d4ba8a2b88%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-02-08,1926-02-18,https://shakespeareandco.princeton.edu/members/pottier-ph/,Ph. Pottier,"Pottier, Ph.",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/burney-evelina-history-young/,"Evelina: Or, the History of a Young Lady's Entrance into the World",,"Burney, Fanny",1778,,Lending Library Card,"Sylvia Beach, Ph. Pottier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac2188bc-d3fc-4d8c-99c5-985d61fb32c1/manifest,https://iiif.princeton.edu/loris/figgy_prod/39%2Fda%2F42%2F39da422031304248a433f6d4ba8a2b88%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-02-08,1926-02-11,https://shakespeareandco.princeton.edu/members/sage-robert/,Robert D. Sage,"Sage, Robert D.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/dreiser-sister-carrie/,Sister Carrie,,"Dreiser, Theodore",1900,,Lending Library Card,"Sylvia Beach, Robert Sage Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/222c7bee-1104-420b-879a-fa13a26a189a/manifest,https://iiif-cloud.princeton.edu/iiif/2/27%2F81%2F3a%2F27813a1fb2c543faa03a02415e1b0adc%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1926-02-08,1926-03-08,https://shakespeareandco.princeton.edu/members/pottier-ph/,Ph. Pottier,"Pottier, Ph.",20.00,40.00,1 month,28,2,,1926-02-08,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Ph. Pottier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/ac2188bc-d3fc-4d8c-99c5-985d61fb32c1/manifest,;https://iiif.princeton.edu/loris/figgy_prod/39%2Fda%2F42%2F39da422031304248a433f6d4ba8a2b88%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-02-09,1926-02-23,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/abraham-lincoln/,Abraham Lincoln,,,,Unidentified. By or about Lincoln. Dolly Wilde borrowed volume 1 of an unspecified edition.,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/77%2F51%2Fbc%2F7751bc4eab97498891132d7fedfaf2ac%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1926-02-09,1926-02-09,https://shakespeareandco.princeton.edu/members/stewart-w/,W. Stewart / Mr. Stewart-Elsmer,"Stewart, W.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-02-10,1926-02-24,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/wylie-venetian-glass-nephew/,The Venetian Glass Nephew,,"Wylie, Elinor",1925,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/55%2F1d%2F46%2F551d46262c164389967a6e4110dff51b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-02-10,1926-02-12,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/somervile-big-house-inver/,The Big House of Inver,,"Somerville, E. Ε.;Ross, Martin",1925,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/55%2F1d%2F46%2F551d46262c164389967a6e4110dff51b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1926-02-11,1926-03-11,https://shakespeareandco.princeton.edu/members/schaufelberger/,Mr. Schaufelberger,"Schaufelberger, Mr.",12.00,,1 month,28,1,Student,1926-02-03,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-02-11,1926-02-11,https://shakespeareandco.princeton.edu/members/sage-robert/,Robert D. Sage,"Sage, Robert D.",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/williams-spring/,Spring and All,,"Williams, William Carlos",1923,,Lending Library Card,"Sylvia Beach, Robert Sage Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/222c7bee-1104-420b-879a-fa13a26a189a/manifest,https://iiif-cloud.princeton.edu/iiif/2/27%2F81%2F3a%2F27813a1fb2c543faa03a02415e1b0adc%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-02-11,1926-02-15,https://shakespeareandco.princeton.edu/members/sage-robert/,Robert D. Sage,"Sage, Robert D.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/mackenzie-sinister-street/,Sinister Street,,"Mackenzie, Compton",1914,,Lending Library Card,"Sylvia Beach, Robert Sage Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/222c7bee-1104-420b-879a-fa13a26a189a/manifest,https://iiif-cloud.princeton.edu/iiif/2/27%2F81%2F3a%2F27813a1fb2c543faa03a02415e1b0adc%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1926-02-11,1926-02-11,https://shakespeareandco.princeton.edu/members/blackburn-2/,Miss Blackburn,"Blackburn, Miss",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-02-11,1926-02-26,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/hardy-desperate-remedies/,Desperate Remedies,,"Hardy, Thomas",1871,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/a0%2F03%2F0d%2Fa0030d1ea392499cae9c30bbe3289cfd%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-02-11,1926-02-26,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/hardy-hand-ethelberta/,The Hand of Ethelberta,,"Hardy, Thomas",1876,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/a0%2F03%2F0d%2Fa0030d1ea392499cae9c30bbe3289cfd%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-02-11,1926-02-23,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/mansfield-bliss-short-stories/,Bliss and Other Stories,,"Mansfield, Katherine",1920,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/37%2F45%2Fc6%2F3745c6824d204f61a49f848a0e9aa7cc%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1926-02-12,1926-02-12,https://shakespeareandco.princeton.edu/members/ninas/,Mr. Ninas,"Ninas, Mr.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-02-12,1926-02-24,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/rohmer-yellow-shadows/,Yellow Shadows,,"Rohmer, Sax",1926,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/55%2F1d%2F46%2F551d46262c164389967a6e4110dff51b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-02-12,1926-02-27,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/dane-bill-divorcement/,A Bill of Divorcement,,"Dane, Clemence",1921,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/07%2Fa3%2F4c%2F07a34cab31e341f5922a6a2e32fa1e5a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-02-12,1926-05-12,https://shakespeareandco.princeton.edu/members/drake-c-c/,C. C. Drake,"Drake, C. C.",50.00,40.00,3 months,89,2,,1926-02-12,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1926-02-12,1926-02-12,https://shakespeareandco.princeton.edu/members/whitney-miriam/,Miriam Whitney,"Whitney, Miriam",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1926-02-12,1926-02-12,https://shakespeareandco.princeton.edu/members/whitney-marg/,Margaret Whitney,"Whitney, Margaret",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1926-02-13,1926-02-13,https://shakespeareandco.princeton.edu/members/isaacson/,Mrs. D. Isaacson,"Isaacson, Mrs. D.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1926-02-13,1926-02-13,https://shakespeareandco.princeton.edu/members/canavaggia-renee/,RenΓ©e Canavaggia,"Canavaggia, RenΓ©e",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-02-13,1926-02-22,https://shakespeareandco.princeton.edu/members/schirmer/,Mabel Schirmer / Mrs. Robert Schirmer,"Schirmer, Mabel",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/proust-swanns-way/,Swann's Way (Γ la recherche du temps perdu 1),2 vols.,"Proust, Marcel",1922,,Lending Library Card,"Sylvia Beach, Mabel Schirmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4c00d0b2-7cb9-46e1-b628-2eac6ac7bb07/manifest,https://iiif-cloud.princeton.edu/iiif/2/e9%2F66%2F91%2Fe96691789f424ce1ab0efd6f73d5617b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-02-13,1926-02-22,https://shakespeareandco.princeton.edu/members/schirmer/,Mabel Schirmer / Mrs. Robert Schirmer,"Schirmer, Mabel",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/morand-open-night/,Open All Night,,"Morand, Paul",1923,,Lending Library Card,"Sylvia Beach, Mabel Schirmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4c00d0b2-7cb9-46e1-b628-2eac6ac7bb07/manifest,https://iiif-cloud.princeton.edu/iiif/2/e9%2F66%2F91%2Fe96691789f424ce1ab0efd6f73d5617b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-02-13,1926-02-22,https://shakespeareandco.princeton.edu/members/schirmer/,Mabel Schirmer / Mrs. Robert Schirmer,"Schirmer, Mabel",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/cocteau-thomas-impostor/,Thomas the Impostor,,"Cocteau, Jean",1925,,Lending Library Card,"Sylvia Beach, Mabel Schirmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4c00d0b2-7cb9-46e1-b628-2eac6ac7bb07/manifest,https://iiif-cloud.princeton.edu/iiif/2/e9%2F66%2F91%2Fe96691789f424ce1ab0efd6f73d5617b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-02-13,1926-02-22,https://shakespeareandco.princeton.edu/members/schirmer/,Mabel Schirmer / Mrs. Robert Schirmer,"Schirmer, Mabel",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/morand-closed-night/,Closed All Night,,"Morand, Paul",1924,,Lending Library Card,"Sylvia Beach, Mabel Schirmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4c00d0b2-7cb9-46e1-b628-2eac6ac7bb07/manifest,https://iiif-cloud.princeton.edu/iiif/2/e9%2F66%2F91%2Fe96691789f424ce1ab0efd6f73d5617b%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1926-02-15,1926-03-15,https://shakespeareandco.princeton.edu/members/stewart-e/,E. Stewart,"Stewart, E.",15.00,20.00,1 month,28,1,,1926-02-05,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-02-15,1926-02-19,https://shakespeareandco.princeton.edu/members/sage-robert/,Robert D. Sage,"Sage, Robert D.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/mackenzie-sinister-street/,Sinister Street,,"Mackenzie, Compton",1914,,Lending Library Card,"Sylvia Beach, Robert Sage Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/222c7bee-1104-420b-879a-fa13a26a189a/manifest,https://iiif-cloud.princeton.edu/iiif/2/8e%2Fa5%2F2b%2F8ea52b47ba294d439b4402405eff9d83%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1926-02-17,1926-02-17,https://shakespeareandco.princeton.edu/members/poulain/,Mme Poulain,"Poulain, Mme",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1926-02-17,1926-02-17,https://shakespeareandco.princeton.edu/members/hyde-h/,H. Hyde,"Hyde, H.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1926-02-17,1926-03-17,https://shakespeareandco.princeton.edu/members/r-2/,R.,R.,12.00,,1 month,28,1,Student,1926-02-17,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-02-17,1926-02-20,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/frederic-damnation-theron-ware/,The Damnation of Theron Ware,,"Frederic, Harold",1896,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0a%2Ff4%2Ff6%2F0af4f6a926324bcbacea40ad3dc841a7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-02-18,1926-03-18,https://shakespeareandco.princeton.edu/members/jawschitz-rachel/,Rachel Jawschitz,"Jawschitz, Rachel",15.00,20.00,1 month,28,1,,1926-02-18,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-02-18,1926-03-17,https://shakespeareandco.princeton.edu/members/pottier-ph/,Ph. Pottier,"Pottier, Ph.",,,,,,,,,Returned,27,,,https://shakespeareandco.princeton.edu/books/eliot-mill-floss/,The Mill on the Floss,,"Eliot, George",1860,,Lending Library Card,"Sylvia Beach, Ph. Pottier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac2188bc-d3fc-4d8c-99c5-985d61fb32c1/manifest,https://iiif.princeton.edu/loris/figgy_prod/39%2Fda%2F42%2F39da422031304248a433f6d4ba8a2b88%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-02-18,1926-05-18,https://shakespeareandco.princeton.edu/members/brinquant/,Mme Brinquant,"Brinquant, Mme",50.00,,3 months,89,2,,1926-02-18,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1926-02-18,1926-02-18,https://shakespeareandco.princeton.edu/members/vienne/,Mlle Mathieu de Vienne,"Vienne, Mlle Mathieu de",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-02-18,1926-02-25,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/dreiser-financier/,Financier,,"Dreiser, Theodore",1912,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F89%2Fa4%2F5689a4b95685432aa62068f98b57b9df%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-02-19,1926-03-03,https://shakespeareandco.princeton.edu/members/ralli/,Georges Ralli,"Ralli, Georges",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/joyce-dubliners/,Dubliners,,"Joyce, James",1914,,Lending Library Card,"Sylvia Beach, Georges Ralli Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/83d59351-167a-4d25-95a3-4f29f59d7e07/manifest,https://iiif.princeton.edu/loris/figgy_prod/35%2F33%2Fd8%2F3533d8a45b1a43709d8d48af56235c30%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1926-02-19,1926-03-19,https://shakespeareandco.princeton.edu/members/ames/,W. J. Ames,"Ames, W. J.",12.00,,1 month,28,1,Student,1926-02-20,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-02-19,1926-03-03,https://shakespeareandco.princeton.edu/members/ralli/,Georges Ralli,"Ralli, Georges",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/galsworthy-fraternity/,Fraternity,,"Galsworthy, John",1909,,Lending Library Card,"Sylvia Beach, Georges Ralli Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/83d59351-167a-4d25-95a3-4f29f59d7e07/manifest,https://iiif.princeton.edu/loris/figgy_prod/35%2F33%2Fd8%2F3533d8a45b1a43709d8d48af56235c30%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-02-19,1926-02-23,https://shakespeareandco.princeton.edu/members/sage-robert/,Robert D. Sage,"Sage, Robert D.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/cummings-tulips-chimneys/,Tulips and Chimneys,,"Cummings, E. E.",1924,,Lending Library Card,"Sylvia Beach, Robert Sage Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/222c7bee-1104-420b-879a-fa13a26a189a/manifest,https://iiif-cloud.princeton.edu/iiif/2/8e%2Fa5%2F2b%2F8ea52b47ba294d439b4402405eff9d83%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1926-02-20,1926-03-20,https://shakespeareandco.princeton.edu/members/fontane/,Mme Fontane,"Fontane, Mme",15.00,20.00,1 month,28,1,,1926-02-20,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-02-20,1926-03-20,https://shakespeareandco.princeton.edu/members/dunn-3/,Mrs. Dunn,"Dunn, Mrs.",15.00,20.00,1 month,28,1,,1926-02-20,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1926-02-20,1926-02-20,https://shakespeareandco.princeton.edu/members/oguz/,Mme Oguz,"Oguz, Mme",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1926-02-20,1926-02-20,https://shakespeareandco.princeton.edu/members/nagy/,Nicolas de Nagy,"de Nagy, Nicolas",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1926-02-20,1926-04-20,https://shakespeareandco.princeton.edu/members/oguz/,Mme Oguz,"Oguz, Mme",,40.00,2 months,59,,,1926-02-20,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-02-20,,https://shakespeareandco.princeton.edu/members/rieder/,M. Rieder,"Rieder, M.",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/lawrence-studies-classic-american/,Studies in Classic American Literature,,"Lawrence, D. H.",1923,,Lending Library Card,"Sylvia Beach, Rieder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/559c8919-8881-40ad-b027-67dbf1b23611/manifest,https://iiif.princeton.edu/loris/figgy_prod/e8%2F10%2F7c%2Fe8107c2c950f411d8ceeb6bb8bdc01c7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-02-20,1926-02-24,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/van-vechten-firecrackers-realistic-novel/,Firecrackers: A Realistic Novel,,"Van Vechten, Carl",1925,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0a%2Ff4%2Ff6%2F0af4f6a926324bcbacea40ad3dc841a7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1926-02-21,1926-05-21,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",40.00,,3 months,89,2,Student,1926-02-26,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,;https://iiif-cloud.princeton.edu/iiif/2/a0%2F03%2F0d%2Fa0030d1ea392499cae9c30bbe3289cfd%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-02-22,1929-03-18,https://shakespeareandco.princeton.edu/members/du-bos/,Charles Du Bos,"Du Bos, Charles",,,,,,,,,Returned,1120,,,https://shakespeareandco.princeton.edu/books/dupre-italien-dangleterre-poe/,Un Italien d'Angleterre: Le poète-peintre Dante Gabriel Rossetti,,"Dupré, Henri",1921,,Lending Library Card,"Sylvia Beach, Charles Du Bos Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1f0465a4-aae1-4922-9398-dc3d8312fda9/manifest,https://iiif.princeton.edu/loris/figgy_prod/b6%2Fff%2F1b%2Fb6ff1b678a67443997383556c64e8edb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-02-22,1926-03-15,https://shakespeareandco.princeton.edu/members/schirmer/,Mabel Schirmer / Mrs. Robert Schirmer,"Schirmer, Mabel",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/dreiser-american-tragedy/,An American Tragedy,2 vols.,"Dreiser, Theodore",1925,,Lending Library Card,"Sylvia Beach, Mabel Schirmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4c00d0b2-7cb9-46e1-b628-2eac6ac7bb07/manifest,https://iiif-cloud.princeton.edu/iiif/2/e9%2F66%2F91%2Fe96691789f424ce1ab0efd6f73d5617b%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1926-02-22,1926-05-22,https://shakespeareandco.princeton.edu/members/keely-frances/,Frances Keely,"Keely, Frances",40.00,40.00,3 months,89,2,Student,1926-02-22,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-02-22,1926-08-22,https://shakespeareandco.princeton.edu/members/collins-s-b/,S. B. Collins,"Collins, S. B.",65.00,20.00,6 months,181,2,,1926-02-22,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-02-22,1926-03-22,https://shakespeareandco.princeton.edu/members/lur-saluces/,A. de Lur-Saluces,"Lur-Saluces, A. de",20.00,40.00,1 month,28,2,,1926-02-22,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-02-22,1929-02-18,https://shakespeareandco.princeton.edu/members/du-bos/,Charles Du Bos,"Du Bos, Charles",,,,,,,,,Returned,1092,,,https://shakespeareandco.princeton.edu/books/recollections-dante-gabriel/,Recollections of Dante Gabriel Rossetti,,,,Unidentified. Either T. Hall Caine's *Recollections of Dante Gabriel Rossetti* (1882) or Henry Treffry Dunn's *Recollections of Dante Gabriel Rossetti and His Circle* (1904).,Lending Library Card,"Sylvia Beach, Charles Du Bos Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1f0465a4-aae1-4922-9398-dc3d8312fda9/manifest,https://iiif.princeton.edu/loris/figgy_prod/b6%2Fff%2F1b%2Fb6ff1b678a67443997383556c64e8edb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-02-22,1927-10-08,https://shakespeareandco.princeton.edu/members/du-bos/,Charles Du Bos,"Du Bos, Charles",,,,,,,,,Returned,593,,,https://shakespeareandco.princeton.edu/books/rossetti-pre-raphaelite-diaries/,Pre-Raphaelite Diaries and Letters,,"Rossetti, William Michael",1900,,Lending Library Card,"Sylvia Beach, Charles Du Bos Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1f0465a4-aae1-4922-9398-dc3d8312fda9/manifest,https://iiif.princeton.edu/loris/figgy_prod/b6%2Fff%2F1b%2Fb6ff1b678a67443997383556c64e8edb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-02-23,1926-03-25,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,30,,,https://shakespeareandco.princeton.edu/books/synge-playboy-western-world/,The Playboy of the Western World,,"Synge, John Millington",1907,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/54%2Fb9%2F90%2F54b9902d15d24fa0953f0dc338355e2e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-02-23,1926-03-15,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/arlen-may-fair/,May Fair,,"Arlen, Michael",1925,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/54%2Fb9%2F90%2F54b9902d15d24fa0953f0dc338355e2e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-02-23,1926-03-25,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,30,,,https://shakespeareandco.princeton.edu/books/synge-playboy-western-world/,The Playboy of the Western World,,"Synge, John Millington",1907,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/37%2F45%2Fc6%2F3745c6824d204f61a49f848a0e9aa7cc%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-02-23,1926-03-08,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/thomas-otway/,Thomas Otway,,,,"Unidentified. By or about Otway. Likely *The Best Plays of Thomas Otway,* edited by Roden Noel (1888), from the [Mermaid Series](https://seriesofseries.owu.edu/mermaid-series/).",Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2F7d%2Fa5%2F237da592c8234d839140f8c72d672a9f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-02-23,1926-03-15,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/synge-tinkers-wedding/,The Tinker's Wedding,,"Synge, John Millington",1904,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/37%2F45%2Fc6%2F3745c6824d204f61a49f848a0e9aa7cc%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1926-02-23,1926-02-23,https://shakespeareandco.princeton.edu/members/burns/,Jane Burns,"Burns, Jane",,,,,,,,40.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-02-23,1926-03-02,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/a-e-collected-poems/,Collected Poems,,Γ,1920,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/77%2F51%2Fbc%2F7751bc4eab97498891132d7fedfaf2ac%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-02-23,1926-02-26,https://shakespeareandco.princeton.edu/members/sage-robert/,Robert D. Sage,"Sage, Robert D.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/adams-education-henry-adams/,The Education of Henry Adams,,"Adams, Henry",1907,,Lending Library Card,"Sylvia Beach, Robert Sage Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/222c7bee-1104-420b-879a-fa13a26a189a/manifest,https://iiif-cloud.princeton.edu/iiif/2/8e%2Fa5%2F2b%2F8ea52b47ba294d439b4402405eff9d83%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-02-23,1926-03-15,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/synge-tinkers-wedding/,The Tinker's Wedding,,"Synge, John Millington",1904,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/54%2Fb9%2F90%2F54b9902d15d24fa0953f0dc338355e2e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-02-24,1926-02-27,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/queen-sheba/,Queen of Sheba,,,,"Unidentified. Thomas Bailey Aldrich's *The Queen of Sheba* (1884), Norman Hill's *The Intimate Life of the Queen of Sheba* (1920), or W. L. George's *Gifts of Sheba* (1926), etc.",Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/55%2F1d%2F46%2F551d46262c164389967a6e4110dff51b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-02-24,1926-02-24,https://shakespeareandco.princeton.edu/members/stewart-e/,E. Stewart,"Stewart, E.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-02-24,1926-02-27,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/venner-imperfect-impostor/,The Imperfect Impostor,,"Venner, Norman",1925,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0a%2Ff4%2Ff6%2F0af4f6a926324bcbacea40ad3dc841a7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-02-24,1926-02-27,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/couperus-twilight-souls/,The Twilight of the Souls,,"Couperus, Louis",1917,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/55%2F1d%2F46%2F551d46262c164389967a6e4110dff51b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-02-25,1926-03-18,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/poems-drama/,Poems and Drama,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F89%2Fa4%2F5689a4b95685432aa62068f98b57b9df%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-02-25,1926-03-15,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/conrad-notes-life-letters/,Notes on Life and Letters,,"Conrad, Joseph",1921,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/dc%2F94%2Ffd%2Fdc94fda0cd9c4ae195f988f5a500f00f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-02-25,1926-03-25,https://shakespeareandco.princeton.edu/members/ekenberg-m/,M. Ekenberg,"Ekenberg, M.",16.00,40.00,1 month,28,2,Student,1926-02-25,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-02-25,1926-03-25,https://shakespeareandco.princeton.edu/members/edge-margaret/,Margaret Edge,"Edge, Margaret",20.00,40.00,1 month,28,2,,1926-02-25,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-02-25,1926-03-25,https://shakespeareandco.princeton.edu/members/cattan-l/,L. Cattan,"Cattan, L.",12.00,20.00,1 month,28,1,Student,1926-02-25,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-02-26,1926-03-06,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/hardy-late-lyrics-earlier/,Late Lyrics and Earlier: With Many Other Verses,,"Hardy, Thomas",1922,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/a0%2F03%2F0d%2Fa0030d1ea392499cae9c30bbe3289cfd%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1926-02-26,1926-02-26,https://shakespeareandco.princeton.edu/members/goldet/,Mlle Goldet,"Goldet, Mlle",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-02-26,1926-03-06,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/hardy-collected-poems-thomas/,Collected Poems of Thomas Hardy,,"Hardy, Thomas",1919,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/a0%2F03%2F0d%2Fa0030d1ea392499cae9c30bbe3289cfd%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1926-02-26,1926-02-26,https://shakespeareandco.princeton.edu/members/burley/,F. M. Burley,"Burley, F. M.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-02-27,1926-03-04,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/lowndes-bread-deceit/,The Bread of Deceit,,"Lowndes, Marie Belloc",1925,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/55%2F1d%2F46%2F551d46262c164389967a6e4110dff51b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-02-27,1926-03-03,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/george-gifts-sheba/,Gifts of Sheba,,"George, Walter Lionel",1926,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0a%2Ff4%2Ff6%2F0af4f6a926324bcbacea40ad3dc841a7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-02-27,1926-02-27,https://shakespeareandco.princeton.edu/members/gund-josephine/,Josephine Gund,"Gund, Josephine",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-02-27,1926-04-21,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,53,,,https://shakespeareandco.princeton.edu/books/woolf-voyage/,The Voyage Out,,"Woolf, Virginia",1915,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/07%2Fa3%2F4c%2F07a34cab31e341f5922a6a2e32fa1e5a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-02-27,1926-03-04,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/mackworth-time-tide/,Time and Tide,,,,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/55%2F1d%2F46%2F551d46262c164389967a6e4110dff51b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1926-03-01,1926-04-01,https://shakespeareandco.princeton.edu/members/henton-l/;https://shakespeareandco.princeton.edu/members/henton/,L. Henton;Mrs. Henton,"Henton, L.;Henton, Mrs.",20.00,,1 month,31,2,,1926-03-01,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-03-01,1926-03-05,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/collins-doctor-looks-literature/,The Doctor Looks at Literature: Psychological Studies of Life and Letters,,"Collins, Joseph",1923,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/62%2Fac%2Fd2%2F62acd25d62e64216a64fbde4e6ff33ec%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1926-03-01,1926-03-01,https://shakespeareandco.princeton.edu/members/schaufelberger/,Mr. Schaufelberger,"Schaufelberger, Mr.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1926-03-02,1926-03-02,https://shakespeareandco.princeton.edu/members/charlot/,H. E. Charlot,"Charlot, H. E.",,,,,,,,40.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1926-03-02,1926-03-02,https://shakespeareandco.princeton.edu/members/harter-irma/,Irma Harter,"Harter, Irma",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-03-02,1926-03-09,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/three-plays/,Three Plays,,,,"Unidentified. Padraic Colum's *Three Plays) (1917), Luigi Pirandello's *Three Plays* (1922), or William Archer's *Three Plays* (1927), etc.",Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/77%2F51%2Fbc%2F7751bc4eab97498891132d7fedfaf2ac%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-03-02,1926-03-09,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/wells-christina-albertas-father/,Christina Alberta's Father,,"Wells, H. G.",1925,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/77%2F51%2Fbc%2F7751bc4eab97498891132d7fedfaf2ac%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1926-03-02,1926-03-02,https://shakespeareandco.princeton.edu/members/burns-c/,C. Burns,"Burns, C.",,,,,,,,40.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-03-03,1926-05-27,https://shakespeareandco.princeton.edu/members/lanux-pierre-de/,Pierre de Lanux,"de Lanux, Pierre",,,,,,,,,Returned,85,,,https://shakespeareandco.princeton.edu/books/williams-american-grain/,In the American Grain,,"Williams, William Carlos",1925,,Lending Library Card,"Sylvia Beach, Pierre de Lanux Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e367ba9f-98cf-408d-9281-2c5771c2fa44/manifest,https://iiif.princeton.edu/loris/figgy_prod/ca%2Fda%2Fe8%2Fcadae8b190cd4f708a8e88505a8a3055%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-03-03,1926-04-09,https://shakespeareandco.princeton.edu/members/ralli/,Georges Ralli,"Ralli, Georges",,,,,,,,,Returned,37,,,https://shakespeareandco.princeton.edu/books/galsworthy-saints-progress/,Saint's Progress,,"Galsworthy, John",1919,,Lending Library Card,"Sylvia Beach, Georges Ralli Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/83d59351-167a-4d25-95a3-4f29f59d7e07/manifest,https://iiif.princeton.edu/loris/figgy_prod/35%2F33%2Fd8%2F3533d8a45b1a43709d8d48af56235c30%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-03-03,1926-04-09,https://shakespeareandco.princeton.edu/members/ralli/,Georges Ralli,"Ralli, Georges",,,,,,,,,Returned,37,,,https://shakespeareandco.princeton.edu/books/galsworthy-forsyte-saga/,The Forsyte Saga,,"Galsworthy, John",1922,,Lending Library Card,"Sylvia Beach, Georges Ralli Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/83d59351-167a-4d25-95a3-4f29f59d7e07/manifest,https://iiif.princeton.edu/loris/figgy_prod/35%2F33%2Fd8%2F3533d8a45b1a43709d8d48af56235c30%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-03-03,1926-12-03,https://shakespeareandco.princeton.edu/members/lanux-pierre-de/,Pierre de Lanux,"de Lanux, Pierre",,,,,,,,,Returned,275,,,https://shakespeareandco.princeton.edu/books/williams-last-loves-henri/,The Last Loves of Henri of Navarre,,"Williams, Hugh Noel",1925,,Lending Library Card,"Sylvia Beach, Pierre de Lanux Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e367ba9f-98cf-408d-9281-2c5771c2fa44/manifest,https://iiif.princeton.edu/loris/figgy_prod/ca%2Fda%2Fe8%2Fcadae8b190cd4f708a8e88505a8a3055%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-03-03,1926-03-17,https://shakespeareandco.princeton.edu/members/pottier-ph/,Ph. Pottier,"Pottier, Ph.",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/gaskell-cranford/,Cranford,,"Gaskell, Elizabeth",1853,,Lending Library Card,"Sylvia Beach, Ph. Pottier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac2188bc-d3fc-4d8c-99c5-985d61fb32c1/manifest,https://iiif.princeton.edu/loris/figgy_prod/39%2Fda%2F42%2F39da422031304248a433f6d4ba8a2b88%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-03-04,1926-03-04,https://shakespeareandco.princeton.edu/members/blok/,Mme F. Blok,"Blok, Mme F.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-03-04,1926-03-08,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/macfall-wooings-jezebel-pettyfer/,The Wooings of Jezebel Pettyfer,,"Macfall, Haldane",1898,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/55%2F1d%2F46%2F551d46262c164389967a6e4110dff51b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-03-04,1926-03-08,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/adams-sloane-square-mystery/,The Sloane Square Mystery,,"Adams, Herbert",1925,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/55%2F1d%2F46%2F551d46262c164389967a6e4110dff51b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-03-04,1926-03-06,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/huxley-barren-leaves/,Those Barren Leaves,,"Huxley, Aldous",1925,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0a%2Ff4%2Ff6%2F0af4f6a926324bcbacea40ad3dc841a7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-03-04,1926-04-04,https://shakespeareandco.princeton.edu/members/astell/,I. W. Astell,"Astell, I. W.",15.00,20.00,1 month,31,1,,1926-03-04,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-03-05,1926-04-10,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,36,,,https://shakespeareandco.princeton.edu/books/mackworth-time-tide/,Time and Tide,,,,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/32%2F11%2F44%2F3211445456604f26802be4ccce47b278%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1926-03-05,1926-04-05,https://shakespeareandco.princeton.edu/members/scudder-thomas/,Thomas Scudder,"Scudder, Thomas",20.00,40.00,1 month,31,2,,1926-03-05,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Thomas Scudder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/f8f57421-cb18-4507-a8e6-9122a13ce859/manifest,;https://iiif.princeton.edu/loris/figgy_prod/41%2F2d%2Fc4%2F412dc4f5b2fe432a93d020755e249de3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-03-05,1926-04-05,https://shakespeareandco.princeton.edu/members/yard/,Amy Yard,"Yard, Amy",15.00,20.00,1 month,31,1,,1926-03-05,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Mrs Amy Yard Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/802d84c7-0ba4-407d-9636-57ed632f015a/manifest,https://iiif.princeton.edu/loris/figgy_prod/79%2F55%2F53%2F79555388cde54309b0a7ca39c1a7e2f2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-03-05,1926-03-05,https://shakespeareandco.princeton.edu/members/bullington/,J. B. Bullington,"Bullington, J. B.",,,,,,,,40.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-03-05,1926-04-02,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,28,,,https://shakespeareandco.princeton.edu/books/huxley-little-mexican-stories/,Little Mexican and Other Stories,,"Huxley, Aldous",1924,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/05%2Fcc%2F42%2F05cc420c01b74e7885f72bc117cfdb3d%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1926-03-05,1926-04-05,https://shakespeareandco.princeton.edu/members/hyde-h/,H. Hyde,"Hyde, H.",15.00,20.00,1 month,31,1,,1926-03-08,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-03-05,1926-04-10,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,36,,,https://shakespeareandco.princeton.edu/books/crofts-women-english-law/,Women under English Law,,"Crofts, Maud I.",1925,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/32%2F11%2F44%2F3211445456604f26802be4ccce47b278%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-03-05,1926-03-12,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/nicoll-history-early-eighteenth/,"A History of Early Eighteenth Century Drama, 1700 β 1750",,"Nicoll, Allardyce",1925,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/62%2Fac%2Fd2%2F62acd25d62e64216a64fbde4e6ff33ec%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-03-05,1926-03-08,https://shakespeareandco.princeton.edu/members/yard/,Amy Yard,"Yard, Amy",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/morley-tales-rolltop-desk/,Tales from a Rolltop Desk,,"Morley, Christopher",1921,,Lending Library Card,"Sylvia Beach, Mrs Amy Yard Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/802d84c7-0ba4-407d-9636-57ed632f015a/manifest,https://iiif.princeton.edu/loris/figgy_prod/79%2F55%2F53%2F79555388cde54309b0a7ca39c1a7e2f2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-03-05,1926-03-16,https://shakespeareandco.princeton.edu/members/scudder-thomas/,Thomas Scudder,"Scudder, Thomas",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/joyce-portrait-artist-young/,A Portrait of the Artist as a Young Man,,"Joyce, James",1916,,Lending Library Card,"Sylvia Beach, Thomas Scudder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f8f57421-cb18-4507-a8e6-9122a13ce859/manifest,https://iiif.princeton.edu/loris/figgy_prod/41%2F2d%2Fc4%2F412dc4f5b2fe432a93d020755e249de3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-03-05,1926-03-16,https://shakespeareandco.princeton.edu/members/scudder-thomas/,Thomas Scudder,"Scudder, Thomas",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/rosenfeld-port-new-york/,Port of New York: Essays on Fourteen American Moderns,,"Rosenfeld, Paul",1924,,Lending Library Card,"Sylvia Beach, Thomas Scudder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f8f57421-cb18-4507-a8e6-9122a13ce859/manifest,https://iiif.princeton.edu/loris/figgy_prod/41%2F2d%2Fc4%2F412dc4f5b2fe432a93d020755e249de3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-03-06,1926-04-16,https://shakespeareandco.princeton.edu/members/pfeiffer-pauline/,Pauline Pfeiffer,"Pfeiffer, Pauline",,,,,,,,,Returned,41,,,https://shakespeareandco.princeton.edu/books/woolf-mrs-dalloway/,Mrs. Dalloway,,"Woolf, Virginia",1925,,Lending Library Card,"Sylvia Beach, Pauline Pfeiffer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6b926df4-13d0-4304-ad64-86df1bc67b0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/e7%2F69%2F22%2Fe76922b82d3e411584d3a32cf3fe8ea6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-03-06,1926-03-10,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/forster-anonymity-enquiry/,Anonymity: An Enquiry,,"Forster, E. M.",1925,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/d9%2Fee%2F33%2Fd9ee33f241e044988aa183d4f24ccbc1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-03-06,1926-03-12,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/bennett-lillian/,Lillian,,"Bennett, Arnold",1922,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0a%2Ff4%2Ff6%2F0af4f6a926324bcbacea40ad3dc841a7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-03-06,1926-04-15,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,40,,,https://shakespeareandco.princeton.edu/books/sandburg-selected-poems-carl/,Selected Poems of Carl Sandburg,,"Sandburg, Carl",1926,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/d9%2Fee%2F33%2Fd9ee33f241e044988aa183d4f24ccbc1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-03-06,1926-03-10,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/russell-abc-relativity/,The ABC of Relativity,,"Russell, Bertrand",1925,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/d9%2Fee%2F33%2Fd9ee33f241e044988aa183d4f24ccbc1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-03-06,1926-03-10,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/cross-life-times-laurence/,The Life and Times of Laurence Sterne,,"Cross, Wilbur L.",1909,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/d9%2Fee%2F33%2Fd9ee33f241e044988aa183d4f24ccbc1%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1926-03-06,1926-03-06,https://shakespeareandco.princeton.edu/members/mahorney/,Florence Mahorney,"Mahorney, Florence",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1926-03-06,1926-06-06,https://shakespeareandco.princeton.edu/members/fletcher-edith/,Edith Fletcher,"Fletcher, Edith",40.00,20.00,3 months,92,1,,1926-03-06,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-03-06,1926-07-17,https://shakespeareandco.princeton.edu/members/lanux-pierre-de/,Pierre de Lanux,"de Lanux, Pierre",,,,,,,,,Returned,133,,,https://shakespeareandco.princeton.edu/books/wilson-paris-parade/,Paris on Parade,,"Wilson, Robert Forrest",1924,,Lending Library Card,"Sylvia Beach, Pierre de Lanux Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e367ba9f-98cf-408d-9281-2c5771c2fa44/manifest,https://iiif.princeton.edu/loris/figgy_prod/ca%2Fda%2Fe8%2Fcadae8b190cd4f708a8e88505a8a3055%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-03-06,1926-03-23,https://shakespeareandco.princeton.edu/members/lanux-pierre-de/,Pierre de Lanux,"de Lanux, Pierre",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/prevost-navire-dargent/,Le navire d'argent,"Vol. 3, no. 10, Mar 1926",,1925,,Lending Library Card,"Sylvia Beach, Pierre de Lanux Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e367ba9f-98cf-408d-9281-2c5771c2fa44/manifest,https://iiif.princeton.edu/loris/figgy_prod/d5%2F0d%2F32%2Fd50d325b995f4426af962cc245d639cd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-03-06,1926-03-23,https://shakespeareandco.princeton.edu/members/lanux-pierre-de/,Pierre de Lanux,"de Lanux, Pierre",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/ford-transatlantic-review/,the transatlantic review,"Vol. 1, no. 4, Apr 1924",,,,Lending Library Card,"Sylvia Beach, Pierre de Lanux Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e367ba9f-98cf-408d-9281-2c5771c2fa44/manifest,https://iiif.princeton.edu/loris/figgy_prod/d5%2F0d%2F32%2Fd50d325b995f4426af962cc245d639cd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-03-06,1926-07-18,https://shakespeareandco.princeton.edu/members/lanux-pierre-de/,Pierre de Lanux,"de Lanux, Pierre",,,,,,,,,Returned,134,,,https://shakespeareandco.princeton.edu/books/walsh-quarter/,This Quarter,"Vol. 1, no. 2, Autumn 1925 β Winter 1926",,,,Lending Library Card,"Sylvia Beach, Pierre de Lanux Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e367ba9f-98cf-408d-9281-2c5771c2fa44/manifest,https://iiif.princeton.edu/loris/figgy_prod/ca%2Fda%2Fe8%2Fcadae8b190cd4f708a8e88505a8a3055%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-03-08,1926-03-12,https://shakespeareandco.princeton.edu/members/yard/,Amy Yard,"Yard, Amy",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/norris-little-ships/,Little Ships,,"Norris, Kathleen Thompson",1925,,Lending Library Card,"Sylvia Beach, Mrs Amy Yard Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/802d84c7-0ba4-407d-9636-57ed632f015a/manifest,https://iiif.princeton.edu/loris/figgy_prod/79%2F55%2F53%2F79555388cde54309b0a7ca39c1a7e2f2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-03-08,1926-03-20,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/ellis-dance-life/,The Dance of Life,,"Ellis, Havelock",1923,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2F7d%2Fa5%2F237da592c8234d839140f8c72d672a9f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-03-08,1926-03-15,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/mann-death-venice/,Death in Venice,,"Mann, Thomas",1925,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/55%2F1d%2F46%2F551d46262c164389967a6e4110dff51b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-03-08,1926-03-13,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/maxwell-fernande/,Fernande,,"Maxwell, W. B.",1925,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/55%2F1d%2F46%2F551d46262c164389967a6e4110dff51b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1926-03-08,1926-04-08,https://shakespeareandco.princeton.edu/members/pottier-ph/,Ph. Pottier,"Pottier, Ph.",15.00,,1 month,31,1,,1926-03-17,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Ph. Pottier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/ac2188bc-d3fc-4d8c-99c5-985d61fb32c1/manifest,;https://iiif.princeton.edu/loris/figgy_prod/39%2Fda%2F42%2F39da422031304248a433f6d4ba8a2b88%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1926-03-09,1926-04-09,https://shakespeareandco.princeton.edu/members/kennedy-edmond/,Edmond Kennedy,"Kennedy, Edmond",12.00,,1 month,31,1,,1926-01-11,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-03-09,1926-03-23,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/mckenna-sonia-two-worlds/,Sonia: Between Two Worlds,,"McKenna, Stephen",1917,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/77%2F51%2Fbc%2F7751bc4eab97498891132d7fedfaf2ac%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1926-03-10,1926-03-10,https://shakespeareandco.princeton.edu/members/burke/,Mr. J. F. Burke,"Burke, Mr. J. F.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-03-10,1926-03-18,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/cross-life-times-laurence/,The Life and Times of Laurence Sterne,,"Cross, Wilbur L.",1909,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/d9%2Fee%2F33%2Fd9ee33f241e044988aa183d4f24ccbc1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-03-10,1926-03-19,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/hardy-collected-poems-thomas/,Collected Poems of Thomas Hardy,,"Hardy, Thomas",1919,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/d9%2Fee%2F33%2Fd9ee33f241e044988aa183d4f24ccbc1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-03-12,1926-03-17,https://shakespeareandco.princeton.edu/members/yard/,Amy Yard,"Yard, Amy",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/hardy-tess-durbervilles/,Tess of the d'Urbervilles,,"Hardy, Thomas",1891,,Lending Library Card,"Sylvia Beach, Mrs Amy Yard Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/802d84c7-0ba4-407d-9636-57ed632f015a/manifest,https://iiif.princeton.edu/loris/figgy_prod/79%2F55%2F53%2F79555388cde54309b0a7ca39c1a7e2f2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-03-12,1926-03-12,https://shakespeareandco.princeton.edu/members/mclean-m-t/,Mrs. M. T. McLean,"McLean, Mrs. M. T.",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1926-03-12,1926-04-12,https://shakespeareandco.princeton.edu/members/bernot-berthe/,Berthe Bernot,"Bernot, Berthe",12.00,20.00,1 month,31,1,Student,1926-03-12,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-03-12,1926-03-13,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/maeterlinck-life-bee/,The Life of the Bee,Vol. 1,"Maeterlinck, Maurice",1901,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/62%2Fac%2Fd2%2F62acd25d62e64216a64fbde4e6ff33ec%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1926-03-12,1926-04-12,https://shakespeareandco.princeton.edu/members/buss-kate/,Kate Buss,"Buss, Kate",20.00,,1 month,31,2,,1926-03-12,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-03-12,1926-03-17,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/norris-little-ships/,Little Ships,,"Norris, Kathleen Thompson",1925,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0a%2Ff4%2Ff6%2F0af4f6a926324bcbacea40ad3dc841a7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-03-13,1926-03-15,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/nicoll-history-early-eighteenth/,"A History of Early Eighteenth Century Drama, 1700 β 1750",,"Nicoll, Allardyce",1925,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/62%2Fac%2Fd2%2F62acd25d62e64216a64fbde4e6ff33ec%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1926-03-13,1926-03-13,https://shakespeareandco.princeton.edu/members/gorringe-mary1/,Mary Gorringe,"Gorringe, Mary",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1926-03-13,1926-04-13,https://shakespeareandco.princeton.edu/members/arnstein-h/,H. Arnstein / A. Arnstein,"Arnstein, H.",12.00,20.00,1 month,31,1,Student,1926-03-13,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-03-13,1926-04-13,https://shakespeareandco.princeton.edu/members/clark-mrs-wellington/,Mrs. Wellington Clark,"Clark, Mrs. Wellington",15.00,20.00,1 month,31,1,,1926-03-13,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-03-13,1926-04-13,https://shakespeareandco.princeton.edu/members/hodgson-daphne/,DaphnΓ© Hodgson,"Hodgson, DaphnΓ©",15.00,20.00,1 month,31,1,,1926-03-13,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-03-13,1926-03-15,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/fisher-home-maker/,The Home-Maker,,"Fisher, Dorothy Canfield",1924,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/55%2F1d%2F46%2F551d46262c164389967a6e4110dff51b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-03-15,1926-04-12,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,28,,,https://shakespeareandco.princeton.edu/books/oneill-moon-caribbees-six/,"The Moon of the Caribbees, and Six Other Plays of the Sea",,"O'Neill, Eugene",1919,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/37%2F63%2Fee%2F3763eef8329c491da536c985612d8be5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-03-15,1926-04-27,https://shakespeareandco.princeton.edu/members/schirmer/,Mabel Schirmer / Mrs. Robert Schirmer,"Schirmer, Mabel",,,,,,,,,Returned,43,,,https://shakespeareandco.princeton.edu/books/cabell-beyond-life/,Beyond Life,,"Cabell, James Branch",1919,,Lending Library Card,"Sylvia Beach, Mabel Schirmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4c00d0b2-7cb9-46e1-b628-2eac6ac7bb07/manifest,https://iiif-cloud.princeton.edu/iiif/2/e9%2F66%2F91%2Fe96691789f424ce1ab0efd6f73d5617b%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1926-03-15,1926-03-15,https://shakespeareandco.princeton.edu/members/brinig/,Myron Brinig,"Brinig, Myron",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-03-15,1926-03-18,https://shakespeareandco.princeton.edu/members/schirmer/,Mabel Schirmer / Mrs. Robert Schirmer,"Schirmer, Mabel",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/gide-strait-gate/,Strait Is the Gate,,"Gide, AndrΓ©",1924,,Lending Library Card,"Sylvia Beach, Mabel Schirmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4c00d0b2-7cb9-46e1-b628-2eac6ac7bb07/manifest,https://iiif-cloud.princeton.edu/iiif/2/e9%2F66%2F91%2Fe96691789f424ce1ab0efd6f73d5617b%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1926-03-15,1926-04-15,https://shakespeareandco.princeton.edu/members/stewart-m/,M. Stewart,"Stewart, M.",20.00,,1 month,31,2,,1926-03-15,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-03-15,1926-03-19,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/ferber-dawn-ohara-girl/,Dawn O'Hara: The Girl Who Laughed,,"Ferber, Edna",1911,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/55%2F1d%2F46%2F551d46262c164389967a6e4110dff51b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-03-15,1926-03-19,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/sieveking-ultimate-island-strange/,The Ultimate Island: A Strange Adventure,,"Sieveking, Lance",1925,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/55%2F1d%2F46%2F551d46262c164389967a6e4110dff51b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-03-15,1926-04-15,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,31,,,https://shakespeareandco.princeton.edu/books/dos-passos-streets-night/,Streets of Night,,"Dos Passos, John",1923,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/54%2Fb9%2F90%2F54b9902d15d24fa0953f0dc338355e2e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-03-15,1926-03-23,https://shakespeareandco.princeton.edu/members/lanux-pierre-de/,Pierre de Lanux,"de Lanux, Pierre",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/mcalmon-distinguished-air-grim/,Distinguished Air: Grim Fairy Tales,,"McAlmon, Robert",1925,,Lending Library Card,"Sylvia Beach, Pierre de Lanux Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e367ba9f-98cf-408d-9281-2c5771c2fa44/manifest,https://iiif.princeton.edu/loris/figgy_prod/d5%2F0d%2F32%2Fd50d325b995f4426af962cc245d639cd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-03-15,1926-03-23,https://shakespeareandco.princeton.edu/members/lanux-pierre-de/,Pierre de Lanux,"de Lanux, Pierre",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/mcalmon-companion-volume/,A Companion Volume,,"McAlmon, Robert",1923,,Lending Library Card,"Sylvia Beach, Pierre de Lanux Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e367ba9f-98cf-408d-9281-2c5771c2fa44/manifest,https://iiif.princeton.edu/loris/figgy_prod/d5%2F0d%2F32%2Fd50d325b995f4426af962cc245d639cd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-03-15,1926-03-23,https://shakespeareandco.princeton.edu/members/lanux-pierre-de/,Pierre de Lanux,"de Lanux, Pierre",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/robertson-explorations/,Explorations,,"Robertson, John Mackinnon",1923,,Lending Library Card,"Sylvia Beach, Pierre de Lanux Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e367ba9f-98cf-408d-9281-2c5771c2fa44/manifest,https://iiif.princeton.edu/loris/figgy_prod/d5%2F0d%2F32%2Fd50d325b995f4426af962cc245d639cd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-03-15,,https://shakespeareandco.princeton.edu/members/lanux-pierre-de/,Pierre de Lanux,"de Lanux, Pierre",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/williams-great-american-novel/,The Great American Novel,,"Williams, William Carlos",1923,,Lending Library Card,"Sylvia Beach, Pierre de Lanux Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e367ba9f-98cf-408d-9281-2c5771c2fa44/manifest,https://iiif.princeton.edu/loris/figgy_prod/d5%2F0d%2F32%2Fd50d325b995f4426af962cc245d639cd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-03-15,1926-04-12,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,28,,,https://shakespeareandco.princeton.edu/books/lowes-convention-revolt-poetry/,Convention and Revolt in Poetry,,"Lowes, John Livingston",1919,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/37%2F63%2Fee%2F3763eef8329c491da536c985612d8be5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-03-15,,https://shakespeareandco.princeton.edu/members/lanux-pierre-de/,Pierre de Lanux,"de Lanux, Pierre",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/prevost-navire-dargent/,Le navire d'argent,"Vol. 2, no. 8, Jan 1926",,1925,,Lending Library Card,"Sylvia Beach, Pierre de Lanux Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e367ba9f-98cf-408d-9281-2c5771c2fa44/manifest,https://iiif.princeton.edu/loris/figgy_prod/d5%2F0d%2F32%2Fd50d325b995f4426af962cc245d639cd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-03-15,1926-04-13,https://shakespeareandco.princeton.edu/members/lanux-pierre-de/,Pierre de Lanux,"de Lanux, Pierre",,,,,,,,,Returned,29,,,https://shakespeareandco.princeton.edu/books/hemingway-time/,In Our Time,,"Hemingway, Ernest",,Unidentified edition. Either Hemingway's *in our time* (1924) or *In Our Time* (1925).,Lending Library Card,"Sylvia Beach, Pierre de Lanux Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e367ba9f-98cf-408d-9281-2c5771c2fa44/manifest,https://iiif.princeton.edu/loris/figgy_prod/d5%2F0d%2F32%2Fd50d325b995f4426af962cc245d639cd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-03-16,1926-04-16,https://shakespeareandco.princeton.edu/members/armand/,Jeanne Armand,"Armand, Jeanne",15.00,20.00,1 month,31,1,,1926-03-16,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-03-16,1926-04-06,https://shakespeareandco.princeton.edu/members/scudder-thomas/,Thomas Scudder,"Scudder, Thomas",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/leonardo-da-vinci/,Leonardo da Vinci,,,,Unidentified. By or about Leonardo da Vinci.,Lending Library Card,"Sylvia Beach, Thomas Scudder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f8f57421-cb18-4507-a8e6-9122a13ce859/manifest,https://iiif.princeton.edu/loris/figgy_prod/41%2F2d%2Fc4%2F412dc4f5b2fe432a93d020755e249de3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-03-16,1926-03-16,https://shakespeareandco.princeton.edu/members/baker-don/,Don Baker,"Baker, Don",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1926-03-16,1926-03-16,https://shakespeareandco.princeton.edu/members/norman-ch/,Ch. Norman,"Norman, Ch.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Supplement,1926-03-16,1926-03-25,https://shakespeareandco.princeton.edu/members/gruening-mary/,Mary Gruening,"Gruening, Mary",5.00,,9 days,9,1,,1926-03-16,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-03-16,1926-04-06,https://shakespeareandco.princeton.edu/members/scudder-thomas/,Thomas Scudder,"Scudder, Thomas",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/morand-open-night/,Open All Night,,"Morand, Paul",1923,,Lending Library Card,"Sylvia Beach, Thomas Scudder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f8f57421-cb18-4507-a8e6-9122a13ce859/manifest,https://iiif.princeton.edu/loris/figgy_prod/41%2F2d%2Fc4%2F412dc4f5b2fe432a93d020755e249de3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-03-16,1926-04-19,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,34,,,https://shakespeareandco.princeton.edu/books/parrish-perennial-bachelor/,The Perennial Bachelor,,"Parrish, Anne",1926,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0a%2Ff4%2Ff6%2F0af4f6a926324bcbacea40ad3dc841a7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-03-17,1926-03-17,https://shakespeareandco.princeton.edu/members/pottier-ph/,Ph. Pottier,"Pottier, Ph.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1926-03-17,1926-12-03,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",40.00,150.00,"8 months, 16 days",261,4,,1926-03-17,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/9f%2F65%2F7c%2F9f657caabb024a00820dd1156308da37%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-03-17,1926-03-22,https://shakespeareandco.princeton.edu/members/pottier-ph/,Ph. Pottier,"Pottier, Ph.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/eliot-silas-marner/,Silas Marner,,"Eliot, George",1861,,Lending Library Card,"Sylvia Beach, Ph. Pottier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac2188bc-d3fc-4d8c-99c5-985d61fb32c1/manifest,https://iiif.princeton.edu/loris/figgy_prod/39%2Fda%2F42%2F39da422031304248a433f6d4ba8a2b88%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-03-17,1926-03-19,https://shakespeareandco.princeton.edu/members/yard/,Amy Yard,"Yard, Amy",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/millin-gods-stepchildren/,God's Stepchildren,,"Millin, Sarah Gertrude",1924,,Lending Library Card,"Sylvia Beach, Mrs Amy Yard Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/802d84c7-0ba4-407d-9636-57ed632f015a/manifest,https://iiif.princeton.edu/loris/figgy_prod/79%2F55%2F53%2F79555388cde54309b0a7ca39c1a7e2f2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-03-17,1926-04-08,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/mcfee-swallowing-anchor/,Swallowing the Anchor,,"McFee, William",1925,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/9f%2F65%2F7c%2F9f657caabb024a00820dd1156308da37%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-03-17,1926-03-30,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/machen-canning-wonder/,The Canning Wonder,,"Machen, Arthur",1925,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/9f%2F65%2F7c%2F9f657caabb024a00820dd1156308da37%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-03-18,1926-03-25,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/drinkwater-pilgrim-eternity/,The Pilgrim of Eternity,,"Drinkwater, John",1925,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/d9%2Fee%2F33%2Fd9ee33f241e044988aa183d4f24ccbc1%2Fintermediate_file/full/full/0/default.jpg
+Crossed out,1926-03-18,,https://shakespeareandco.princeton.edu/members/schirmer/,Mabel Schirmer / Mrs. Robert Schirmer,"Schirmer, Mabel",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/douglas-old-calabria/,Old Calabria,,"Douglas, Norman",1915,,Lending Library Card,"Sylvia Beach, Mabel Schirmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4c00d0b2-7cb9-46e1-b628-2eac6ac7bb07/manifest,https://iiif-cloud.princeton.edu/iiif/2/e9%2F66%2F91%2Fe96691789f424ce1ab0efd6f73d5617b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-03-18,1926-03-30,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/fitzgerald-great-gatsby/,The Great Gatsby,,"Fitzgerald, F. Scott",1925,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/9f%2F65%2F7c%2F9f657caabb024a00820dd1156308da37%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1926-03-18,1926-04-18,https://shakespeareandco.princeton.edu/members/gastambide/,Ph. Gastambide,"Gastambide, Ph.",15.00,100.00,1 month,31,1,,1926-03-18,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-03-18,1926-03-30,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/anderson-dark-laughter/,Dark Laughter,,"Anderson, Sherwood",1926,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/9f%2F65%2F7c%2F9f657caabb024a00820dd1156308da37%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-03-18,1926-03-19,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/woolf-mrs-dalloway/,Mrs. Dalloway,,"Woolf, Virginia",1925,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/d9%2Fee%2F33%2Fd9ee33f241e044988aa183d4f24ccbc1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-03-18,1926-04-16,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,29,,,https://shakespeareandco.princeton.edu/books/meredith-poems/,Poems,,"Meredith, George",,A 2 volume edition.,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F89%2Fa4%2F5689a4b95685432aa62068f98b57b9df%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-03-19,1926-04-24,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,36,,,https://shakespeareandco.princeton.edu/books/morley-thunder-left/,Thunder on the Left,,"Morley, Christopher",1925,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0a%2Ff4%2Ff6%2F0af4f6a926324bcbacea40ad3dc841a7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-03-19,1926-03-22,https://shakespeareandco.princeton.edu/members/yard/,Amy Yard,"Yard, Amy",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/ferber-dawn-ohara-girl/,Dawn O'Hara: The Girl Who Laughed,,"Ferber, Edna",1911,,Lending Library Card,"Sylvia Beach, Mrs Amy Yard Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/802d84c7-0ba4-407d-9636-57ed632f015a/manifest,https://iiif.princeton.edu/loris/figgy_prod/79%2F55%2F53%2F79555388cde54309b0a7ca39c1a7e2f2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-03-19,1926-03-23,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/macfayden-bittern-point/,Bittern Point,,"MacFadyen, Virginia",1926,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/55%2F1d%2F46%2F551d46262c164389967a6e4110dff51b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-03-19,1926-03-23,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/schnitzler-fraulein-else/,Fraulein Else,,"Schnitzler, Arthur",1924,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/55%2F1d%2F46%2F551d46262c164389967a6e4110dff51b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-03-19,1926-03-22,https://shakespeareandco.princeton.edu/members/proix/,Troise Proix,"Proix, Troise",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/henry-cabbages-kings/,Cabbages and Kings,,"Henry, O.",1904,,Lending Library Card,"Sylvia Beach, Troise Proix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b7152822-4421-406d-9472-740daf9b84e0/manifest,https://iiif.princeton.edu/loris/figgy_prod/7b%2F4c%2Fcd%2F7b4ccd00593d400692681d1ae569254b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1926-03-19,1926-04-19,https://shakespeareandco.princeton.edu/members/ames/,W. J. Ames,"Ames, W. J.",12.00,,1 month,31,1,Student,1926-03-05,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Crossed out,1926-03-19,,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/wells-christina-albertas-father/,Christina Alberta's Father,,"Wells, H. G.",1925,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/d9%2Fee%2F33%2Fd9ee33f241e044988aa183d4f24ccbc1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-03-19,1926-03-25,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/ocasey-two-plays/,Two Plays,,"O'Casey, Sean",1925,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/d9%2Fee%2F33%2Fd9ee33f241e044988aa183d4f24ccbc1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-03-19,1926-03-25,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/macfall-wooings-jezebel-pettyfer/,The Wooings of Jezebel Pettyfer,,"Macfall, Haldane",1898,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/d9%2Fee%2F33%2Fd9ee33f241e044988aa183d4f24ccbc1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-03-19,1926-03-22,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/mcalmon-portrait-generation/,The Portrait of a Generation,,"McAlmon, Robert",1926,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/d9%2Fee%2F33%2Fd9ee33f241e044988aa183d4f24ccbc1%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1926-03-19,1926-04-19,https://shakespeareandco.princeton.edu/members/proix/,Troise Proix,"Proix, Troise",15.00,,1 month,31,1,,1926-03-19,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Troise Proix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b7152822-4421-406d-9472-740daf9b84e0/manifest,https://iiif.princeton.edu/loris/figgy_prod/7b%2F4c%2Fcd%2F7b4ccd00593d400692681d1ae569254b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-03-20,1926-03-20,https://shakespeareandco.princeton.edu/members/fontane/,Mme Fontane,"Fontane, Mme",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-03-22,1926-03-26,https://shakespeareandco.princeton.edu/members/yard/,Amy Yard,"Yard, Amy",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/obrien-best-american-short/,The Best American Short Stories of 1924: And the Yearbook of the American Short Story,,,1924,,Lending Library Card,"Sylvia Beach, Mrs Amy Yard Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/802d84c7-0ba4-407d-9636-57ed632f015a/manifest,https://iiif.princeton.edu/loris/figgy_prod/79%2F55%2F53%2F79555388cde54309b0a7ca39c1a7e2f2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-03-22,1926-03-27,https://shakespeareandco.princeton.edu/members/pottier-ph/,Ph. Pottier,"Pottier, Ph.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/conrad-nigger-narcissus/,The Nigger of the Narcissus,,"Conrad, Joseph",1897,,Lending Library Card,"Sylvia Beach, Ph. Pottier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac2188bc-d3fc-4d8c-99c5-985d61fb32c1/manifest,https://iiif.princeton.edu/loris/figgy_prod/39%2Fda%2F42%2F39da422031304248a433f6d4ba8a2b88%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-03-22,1926-04-22,https://shakespeareandco.princeton.edu/members/colt/,Mary Colt,"Colt, Mary",15.00,20.00,1 month,31,1,,1926-03-22,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-03-22,1926-04-01,https://shakespeareandco.princeton.edu/members/proix/,Troise Proix,"Proix, Troise",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/henry-whirligigs/,Whirligigs,,"Henry, O.",1910,,Lending Library Card,"Sylvia Beach, Troise Proix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b7152822-4421-406d-9472-740daf9b84e0/manifest,https://iiif.princeton.edu/loris/figgy_prod/7b%2F4c%2Fcd%2F7b4ccd00593d400692681d1ae569254b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-03-23,1926-04,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/masefield-tragedy-man-plays/,The Tragedy of Man and Other Plays,,"Masefield, John",1912,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/77%2F51%2Fbc%2F7751bc4eab97498891132d7fedfaf2ac%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-03-23,1926-04-13,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/bennett-old-wives-tale/,The Old Wives' Tale,,"Bennett, Arnold",1908,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/77%2F51%2Fbc%2F7751bc4eab97498891132d7fedfaf2ac%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-03-23,1926-04-24,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,32,,,https://shakespeareandco.princeton.edu/books/mckenna-tomorrow-tomorrow-novel/,Tomorrow and Tomorrow: A Novel,,"McKenna, Stephen",1924,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/77%2F51%2Fbc%2F7751bc4eab97498891132d7fedfaf2ac%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-03-23,1926-03-24,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/mencken-american-mercury/,The American Mercury,,,,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/68%2Fd4%2F40%2F68d4400b6fb84a7e8e81fd67992b0b2f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-03-23,,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/dreiser-genius/,"The ""Genius""",,"Dreiser, Theodore",1915,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/62%2Fac%2Fd2%2F62acd25d62e64216a64fbde4e6ff33ec%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-03-23,1926-03-25,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/bierce-can-things/,Can Such Things Be?,,"Bierce, Ambrose Gwinnett",1893,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/55%2F1d%2F46%2F551d46262c164389967a6e4110dff51b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-03-23,1926-03-24,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/white-fire-flint/,The Fire in the Flint,,"White, Walter Francis",1924,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/55%2F1d%2F46%2F551d46262c164389967a6e4110dff51b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-03-23,1926-03-23,https://shakespeareandco.princeton.edu/members/ames/,W. J. Ames,"Ames, W. J.",,,,,,,,60.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-03-23,1926-03-24,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/oscar-wilde/,Oscar Wilde,2 vols.,,,Unidentified. By or about Oscar Wilde. An unspecified 2 volume edition.,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/68%2Fd4%2F40%2F68d4400b6fb84a7e8e81fd67992b0b2f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-03-23,1926-03-23,https://shakespeareandco.princeton.edu/members/latrilhe-mlle/,Mlle Latrilhe,"Latrilhe, Mlle",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1926-03-23,1927-03-23,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",150.00,,1 year,365,2,,1926-10-11,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,;https://iiif-cloud.princeton.edu/iiif/2/a4%2F8c%2F7f%2Fa48c7f974df34e81af59231b85679646%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1926-03-23,1926-04-23,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",20.00,40.00,1 month,31,2,,1926-03-23,,,,,FRF,,,,,,,Logbook;Lending Library Card;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest;,;https://iiif.princeton.edu/loris/figgy_prod/68%2Fd4%2F40%2F68d4400b6fb84a7e8e81fd67992b0b2f%2Fintermediate_file.jp2/full/full/0/default.jpg;
+Borrow,1926-03-24,1926-03-25,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/hecht-gargoyles/,Gargoyles,,"Hecht, Ben",1922,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/68%2Fd4%2F40%2F68d4400b6fb84a7e8e81fd67992b0b2f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-03-24,1926-03-25,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/hecht-thousand-one-afternoons/,A Thousand and One Afternoons in Chicago,,"Hecht, Ben",1922,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/68%2Fd4%2F40%2F68d4400b6fb84a7e8e81fd67992b0b2f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-03-24,1926-04-28,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,35,,,https://shakespeareandco.princeton.edu/books/morley-tales-rolltop-desk/,Tales from a Rolltop Desk,,"Morley, Christopher",1921,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0a%2Ff4%2Ff6%2F0af4f6a926324bcbacea40ad3dc841a7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-03-25,1926-03-27,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/white-gold/,Gold,,"White, Stewart Edward",1913,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/55%2F1d%2F46%2F551d46262c164389967a6e4110dff51b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-03-25,1926-04-15,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/dos-passos-three-soldiers/,Three Soldiers,,"Dos Passos, John",1921,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/54%2Fb9%2F90%2F54b9902d15d24fa0953f0dc338355e2e%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1926-03-25,1926-04-25,https://shakespeareandco.princeton.edu/members/gruening-mary/,Mary Gruening,"Gruening, Mary",20.00,,1 month,31,2,,1926-03-16,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-03-25,1926-03-26,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/mencken-american-mercury/,The American Mercury,,,,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/68%2Fd4%2F40%2F68d4400b6fb84a7e8e81fd67992b0b2f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-03-25,1926-03-26,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/joyce-portrait-artist-young/,A Portrait of the Artist as a Young Man,,"Joyce, James",1916,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/68%2Fd4%2F40%2F68d4400b6fb84a7e8e81fd67992b0b2f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-03-25,1926-03-26,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/joyce-exiles/,Exiles,,"Joyce, James",1918,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/68%2Fd4%2F40%2F68d4400b6fb84a7e8e81fd67992b0b2f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-03-25,1926-04-25,https://shakespeareandco.princeton.edu/members/nouveau-mlle/,Mlle Nouveau,"Nouveau, Mlle",12.00,20.00,1 month,31,1,Student,1926-03-25,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-03-25,1926-03-27,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/powys-innocent-birds/,Innocent Birds,,"Powys, Theodore Francis",1926,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/55%2F1d%2F46%2F551d46262c164389967a6e4110dff51b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-03-25,1926-03-29,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/lawrence-lost-girl/,The Lost Girl,,"Lawrence, D. H.",1920,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/d9%2Fee%2F33%2Fd9ee33f241e044988aa183d4f24ccbc1%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1926-03-25,1926-03-25,https://shakespeareandco.princeton.edu/members/bennett-frank/,Frank Bennett,"Bennett, Frank",,,,,,,,40.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-03-25,1926-03-29,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/lawrence-trespasser/,The Trespasser,,"Lawrence, D. H.",1912,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/d9%2Fee%2F33%2Fd9ee33f241e044988aa183d4f24ccbc1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-03-26,1926-03-27,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/ellis-essays-war-time/,Essays in War-time: Further Studies in the Task of Social Hygiene,,"Ellis, Havelock",1916,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/68%2Fd4%2F40%2F68d4400b6fb84a7e8e81fd67992b0b2f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-03-26,1926-04-26,https://shakespeareandco.princeton.edu/members/macadam-t-d/,T. D. MacAdam,"MacAdam, T. D.",15.00,20.00,1 month,31,1,,1926-03-26,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-03-26,1926-03-27,https://shakespeareandco.princeton.edu/members/yard/,Amy Yard,"Yard, Amy",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/howells-dark-daylight/,Between the Dark and the Daylight,,"Howells, William Dean",1907,,Lending Library Card,"Sylvia Beach, Mrs Amy Yard Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/802d84c7-0ba4-407d-9636-57ed632f015a/manifest,https://iiif.princeton.edu/loris/figgy_prod/79%2F55%2F53%2F79555388cde54309b0a7ca39c1a7e2f2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-03-26,1926-03-26,https://shakespeareandco.princeton.edu/members/hay-margaret/,Margaret Hay,"Hay, Margaret",,,,,,,,40.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-03-26,1926-03-27,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/ford-joseph-conrad-personal/,Joseph Conrad: A Personal Remembrance,,"Ford, Ford Madox",1924,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/68%2Fd4%2F40%2F68d4400b6fb84a7e8e81fd67992b0b2f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-03-26,1926-03-26,https://shakespeareandco.princeton.edu/members/bernot-berthe/,Berthe Bernot,"Bernot, Berthe",,,,,,,,3.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1926-03-26,1926-03-26,https://shakespeareandco.princeton.edu/members/gastambide/,Ph. Gastambide,"Gastambide, Ph.",,,,,,,,80.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-03-27,1926-04-03,https://shakespeareandco.princeton.edu/members/pottier-ph/,Ph. Pottier,"Pottier, Ph.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/hardy-woodlanders/,The Woodlanders,,"Hardy, Thomas",1887,,Lending Library Card,"Sylvia Beach, Ph. Pottier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac2188bc-d3fc-4d8c-99c5-985d61fb32c1/manifest,https://iiif.princeton.edu/loris/figgy_prod/39%2Fda%2F42%2F39da422031304248a433f6d4ba8a2b88%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-03-27,1926-03-30,https://shakespeareandco.princeton.edu/members/yard/,Amy Yard,"Yard, Amy",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/galsworthy-beyond/,Beyond,,"Galsworthy, John",1917,,Lending Library Card,"Sylvia Beach, Mrs Amy Yard Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/802d84c7-0ba4-407d-9636-57ed632f015a/manifest,https://iiif.princeton.edu/loris/figgy_prod/79%2F55%2F53%2F79555388cde54309b0a7ca39c1a7e2f2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-03-27,1926-03-29,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/conrad-western-eyes/,Under Western Eyes,,"Conrad, Joseph",1911,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/68%2Fd4%2F40%2F68d4400b6fb84a7e8e81fd67992b0b2f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-03-27,1926-03-29,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/conrad-shadow-line-confession/,The Shadow Line: A Confession,,"Conrad, Joseph",1917,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/68%2Fd4%2F40%2F68d4400b6fb84a7e8e81fd67992b0b2f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-03-27,1926-03-30,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/mottram-crime-vanderlyndens/,The Crime at Vanderlynden's,,"Mottram, R. H.",1926,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/55%2F1d%2F46%2F551d46262c164389967a6e4110dff51b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-03-27,1926-03-30,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/odonovan-holy-tree/,The Holy Tree,,"O'Donovan, Gerald",1922,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/55%2F1d%2F46%2F551d46262c164389967a6e4110dff51b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-03-29,1926-04-09,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/dane-legend/,Legend,,"Dane, Clemence",1919,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2F7d%2Fa5%2F237da592c8234d839140f8c72d672a9f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-03-29,1926-04-15,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/lowell-whats-oclock/,What's O'Clock,,"Lowell, Amy",1925,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/d9%2Fee%2F33%2Fd9ee33f241e044988aa183d4f24ccbc1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-03-29,1926-05-10,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,42,,,https://shakespeareandco.princeton.edu/books/obrien-best-short-stories-1925/,The Best Short Stories of 1925: And the Yearbook of the American Short Story,,,1926,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/28%2Ff9%2F7d%2F28f97db617bb43b98744175c11c3170d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-03-29,1926-03-30,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/nathan-world-false-face/,The World in False Face,,"Nathan, George Jean",1923,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/68%2Fd4%2F40%2F68d4400b6fb84a7e8e81fd67992b0b2f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-03-29,1926-03-29,https://shakespeareandco.princeton.edu/members/macadam-t-d/,T. D. MacAdam,"MacAdam, T. D.",,,,,,,,,,,,,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-03-29,1926-04-03,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/george-gifts-sheba/,Gifts of Sheba,,"George, Walter Lionel",1926,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/62%2Fac%2Fd2%2F62acd25d62e64216a64fbde4e6ff33ec%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-03-29,1926-03-30,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/wassermann-faber-lost-years/,"Faber, or the Lost Years",,"Wassermann, Jakob",1925,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/68%2Fd4%2F40%2F68d4400b6fb84a7e8e81fd67992b0b2f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-03-30,1926-03-30,https://shakespeareandco.princeton.edu/members/dunn-3/,Mrs. Dunn,"Dunn, Mrs.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-03-30,1926-04-06,https://shakespeareandco.princeton.edu/members/yard/,Amy Yard,"Yard, Amy",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/september/,September,,,,Unidentified. Likely Frank Swinnerton's *September* (1919).,Lending Library Card,"Sylvia Beach, Mrs Amy Yard Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/802d84c7-0ba4-407d-9636-57ed632f015a/manifest,https://iiif.princeton.edu/loris/figgy_prod/79%2F55%2F53%2F79555388cde54309b0a7ca39c1a7e2f2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-03-30,1926-04-08,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/dos-passos-manhattan-transfer/,Manhattan Transfer,,"Dos Passos, John",1925,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/9f%2F65%2F7c%2F9f657caabb024a00820dd1156308da37%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-03-30,1926-03-31,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/pepys-diary-samuel-pepys/,The Diary of Samuel Pepys,,"Pepys, Samuel",,"At least three editions of Pepys's *Diary* circulated in the lending library. John Murray borrowed volumes 1β3 of an unspecified edition; Dorothee Chareau borrowed volumes 4β6 from the Bell edition, edited by Henry B. Wheatley; Maximilien Vox borrowed the single-volume Globe edition, edited by G. Gregory Smith; HΓ©lΓ¨ne de Wendel borrowed the single-volume Globe edition and volumes 2β3 of the Bell edition; Guillaume Lerolle borrowed volumes 1β2 of the Bell edition; and Monique de Vigan borrowed the Newnes edition, edited by Lord Braybrooke.",Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/68%2Fd4%2F40%2F68d4400b6fb84a7e8e81fd67992b0b2f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-03-30,1926-03-31,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/huneker-iconoclasts-book-dramatists/,"Iconoclasts, a Book of Dramatists: Ibsen, Strindberg, Becque, Hauptmann, Sudermann, Hervieu, Gorky, Duse and d'Annunzio, Maeterlinck and Bernard Shaw",,"Huneker, James",1905,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/68%2Fd4%2F40%2F68d4400b6fb84a7e8e81fd67992b0b2f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-03-30,1926-04-03,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/mann-buddenbrooks/,Buddenbrooks,2 vols.,"Mann, Thomas",1924,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/ab%2F6f%2F33%2Fab6f33d3399e4473a5a02c98c6acc17b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-03-31,1926-04-01,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/huneker-egoists-book-supermen/,"Egoists, a Book of Supermen: Stendhal, Baudelaire, Flaubert, Anatole France, Huysmans, Barrès, Nietzsche, Blake, Ibsen, Stirner, and Ernest Hello",,"Huneker, James",1909,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/68%2Fd4%2F40%2F68d4400b6fb84a7e8e81fd67992b0b2f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-03-31,1926-04-01,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/huneker-promenades-impressionist/,Promenades of an Impressionist,,"Huneker, James",1910,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/68%2Fd4%2F40%2F68d4400b6fb84a7e8e81fd67992b0b2f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-01,1926-04-13,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/hunt-flurried-years/,The Flurried Years,,"Hunt, Violet",1926,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/28%2Ff9%2F7d%2F28f97db617bb43b98744175c11c3170d%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1926-04-01,1926-05-01,https://shakespeareandco.princeton.edu/members/zau/,Y. L. Zau,"Zau, Y. L.",20.00,,1 month,30,2,,1926-03-26,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-04-01,1926-04-03,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/unclear-understand/,[unclear] Understand,,,,Unidentified. Handwriting unclear. Likely Montague Glass's *Y'Understand* (1925).,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/68%2Fd4%2F40%2F68d4400b6fb84a7e8e81fd67992b0b2f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-01,1926-04-08,https://shakespeareandco.princeton.edu/members/proix/,Troise Proix,"Proix, Troise",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/henry-sixes-sevens/,Sixes and Sevens,,"Henry, O.",1911,,Lending Library Card,"Sylvia Beach, Troise Proix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b7152822-4421-406d-9472-740daf9b84e0/manifest,https://iiif.princeton.edu/loris/figgy_prod/7b%2F4c%2Fcd%2F7b4ccd00593d400692681d1ae569254b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-01,1926-04-07,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/shaw-back-methuselah-metabiological/,Back to Methuselah (A Metabiological Pentateuch),,"Shaw, George Bernard",1921,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/68%2Fd4%2F40%2F68d4400b6fb84a7e8e81fd67992b0b2f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-04-01,1926-04-01,https://shakespeareandco.princeton.edu/members/clark-c-o/,C. O. Clark,"Clark, C. O.",,,,,,,,40.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1926-04-01,1926-05-01,https://shakespeareandco.princeton.edu/members/robinson-g-h/,G. H. Robinson,"Robinson, G. H.",15.00,,1 month,30,1,,1926-04-01,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1926-04-01,1926-05-01,https://shakespeareandco.princeton.edu/members/levinson/,Mr. Levinson,"Levinson, Mr.",15.00,,1 month,30,1,,1926-03-08,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1926-04-01,1926-05-01,https://shakespeareandco.princeton.edu/members/kristufkova/,Mlle Kristufkova,"Kristufkova, Mlle",,,1 month,30,,,1926-04-01,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-04-01,1926-04-07,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/byron-don-juan/,Don Juan,,"Byron, George Gordon Byron",1824,"On April 1, 1926, John Murray borrowed volume 1 of an unknown edition.",Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/68%2Fd4%2F40%2F68d4400b6fb84a7e8e81fd67992b0b2f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-02,1926-04-09,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/beresford-monkey-puzzle/,The Monkey-Puzzle,,"Beresford, J. D.",1925,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/05%2Fcc%2F42%2F05cc420c01b74e7885f72bc117cfdb3d%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1926-04-02,1927-04-02,https://shakespeareandco.princeton.edu/members/bertolini/,Kate Bertolini,"Bertolini, Kate",115.00,20.00,1 year,365,1,,1926-04-02,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1926-04-02,1926-05-02,https://shakespeareandco.princeton.edu/members/gibney-s/,S. Gibney,"Gibney, S.",15.00,,1 month,30,1,,1926-03-22,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1926-04-02,1926-05-02,https://shakespeareandco.princeton.edu/members/larselin/,Mr. Larselin,"Larselin, Mr.",12.00,,1 month,30,,,1926-04-02,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-04-02,1926-04-06,https://shakespeareandco.princeton.edu/members/scudder-thomas/,Thomas Scudder,"Scudder, Thomas",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/huxley-little-mexican-stories/,Little Mexican and Other Stories,,"Huxley, Aldous",1924,,Lending Library Card,"Sylvia Beach, Thomas Scudder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f8f57421-cb18-4507-a8e6-9122a13ce859/manifest,https://iiif.princeton.edu/loris/figgy_prod/41%2F2d%2Fc4%2F412dc4f5b2fe432a93d020755e249de3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Supplement,1926-04-03,1926-05-03,https://shakespeareandco.princeton.edu/members/hirst-b/,B. Hirst,"Hirst, B.",5.00,20.00,1 month,30,1,,1926-04-03,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-04-03,1926-04-06,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/parrish-perennial-bachelor/,The Perennial Bachelor,,"Parrish, Anne",1926,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/ab%2F6f%2F33%2Fab6f33d3399e4473a5a02c98c6acc17b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1926-04-03,1926-05-03,https://shakespeareandco.princeton.edu/members/jawschitz-rachel/,Rachel Jawschitz,"Jawschitz, Rachel",15.00,,1 month,30,1,,1926-04-03,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-04-03,1926-04-06,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/smollett-expedition-humphry-clinker/,The Expedition of Humphry Clinker,2 vols.,"Smollett, Tobias",1771,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/53%2F0d%2F85%2F530d85a179be47a3943814c914e80478%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1926-04-03,1926-05-03,https://shakespeareandco.princeton.edu/members/hirst-b/,B. Hirst,"Hirst, B.",15.00,20.00,1 month,30,1,,1926-04-03,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-04-03,1926-04-12,https://shakespeareandco.princeton.edu/members/pottier-ph/,Ph. Pottier,"Pottier, Ph.",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/patmore-patmores-poems/,Coventry Patmore's Poems,Vol. 1,"Patmore, Coventry",,Ph. Pottier borrowed volume 1 of a multivolume edition.,Lending Library Card,"Sylvia Beach, Ph. Pottier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac2188bc-d3fc-4d8c-99c5-985d61fb32c1/manifest,https://iiif.princeton.edu/loris/figgy_prod/39%2Fda%2F42%2F39da422031304248a433f6d4ba8a2b88%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-03,1926-05-12,https://shakespeareandco.princeton.edu/members/rieder/,M. Rieder,"Rieder, M.",,,,,,,,,Returned,39,,,https://shakespeareandco.princeton.edu/books/mcalmon-companion-volume/,A Companion Volume,,"McAlmon, Robert",1923,,Lending Library Card,"Sylvia Beach, Rieder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/559c8919-8881-40ad-b027-67dbf1b23611/manifest,https://iiif.princeton.edu/loris/figgy_prod/e8%2F10%2F7c%2Fe8107c2c950f411d8ceeb6bb8bdc01c7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-03,1926-04-06,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/frederic-damnation-theron-ware/,The Damnation of Theron Ware,,"Frederic, Harold",1896,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/ab%2F6f%2F33%2Fab6f33d3399e4473a5a02c98c6acc17b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1926-04-05,1926-05-05,https://shakespeareandco.princeton.edu/members/yard/,Amy Yard,"Yard, Amy",15.00,,1 month,30,1,,1926-04-05,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Mrs Amy Yard Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/802d84c7-0ba4-407d-9636-57ed632f015a/manifest,https://iiif.princeton.edu/loris/figgy_prod/79%2F55%2F53%2F79555388cde54309b0a7ca39c1a7e2f2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-06,,https://shakespeareandco.princeton.edu/members/lanux-pierre-de/,Pierre de Lanux,"de Lanux, Pierre",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/clutton-brock-shakespeares-hamlet/,"Shakespeare's ""Hamlet""",,"Clutton-Brock, A.",1922,,Lending Library Card,"Sylvia Beach, Pierre de Lanux Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e367ba9f-98cf-408d-9281-2c5771c2fa44/manifest,https://iiif.princeton.edu/loris/figgy_prod/d5%2F0d%2F32%2Fd50d325b995f4426af962cc245d639cd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-06,1926-04-14,https://shakespeareandco.princeton.edu/members/scudder-thomas/,Thomas Scudder,"Scudder, Thomas",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/lorand-life-shortening-habits/,Life Shortening Habits and Rejuvenation,,"Lorand, Arnold",1922,,Lending Library Card,"Sylvia Beach, Thomas Scudder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f8f57421-cb18-4507-a8e6-9122a13ce859/manifest,https://iiif.princeton.edu/loris/figgy_prod/41%2F2d%2Fc4%2F412dc4f5b2fe432a93d020755e249de3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-06,1926-04-08,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/boyd-dark-cloud/,The Dark Cloud,,"Boyd, Thomas",1925,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/ab%2F6f%2F33%2Fab6f33d3399e4473a5a02c98c6acc17b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-06,,https://shakespeareandco.princeton.edu/members/lanux-pierre-de/,Pierre de Lanux,"de Lanux, Pierre",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/shakespeare-hamlet/,Hamlet,,"Shakespeare, William",,"At least three editions circulated in the lending library. Pierre de Lanux borrowed an edition with an introduction by George Brandes and the Cambridge Shakespeare edition, edited by William George Clark and William Aldis Wright. Katherine Dudley borrowed an unspecified 2 volume edition.",Lending Library Card,"Sylvia Beach, Pierre de Lanux Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e367ba9f-98cf-408d-9281-2c5771c2fa44/manifest,https://iiif.princeton.edu/loris/figgy_prod/d5%2F0d%2F32%2Fd50d325b995f4426af962cc245d639cd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-06,1926-04-13,https://shakespeareandco.princeton.edu/members/lanux-pierre-de/,Pierre de Lanux,"de Lanux, Pierre",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/dreiser-american-tragedy/,An American Tragedy,Vol. 2,"Dreiser, Theodore",1925,,Lending Library Card,"Sylvia Beach, Pierre de Lanux Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e367ba9f-98cf-408d-9281-2c5771c2fa44/manifest,https://iiif.princeton.edu/loris/figgy_prod/d5%2F0d%2F32%2Fd50d325b995f4426af962cc245d639cd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-06,1926-04-09,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/benjamin-life-letters-laurence/,The Life and Letters of Laurence Sterne,Vol. 1,"Benjamin, Lewis Saul",1911,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/53%2F0d%2F85%2F530d85a179be47a3943814c914e80478%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-04-06,1926-11-04,https://shakespeareandco.princeton.edu/members/lanux-pierre-de/,Pierre de Lanux,"de Lanux, Pierre",,,,,,,,,Returned,212,,,https://shakespeareandco.princeton.edu/books/shakespeare-hamlet/,Hamlet,,"Shakespeare, William",,"At least three editions circulated in the lending library. Pierre de Lanux borrowed an edition with an introduction by George Brandes and the Cambridge Shakespeare edition, edited by William George Clark and William Aldis Wright. Katherine Dudley borrowed an unspecified 2 volume edition.",Lending Library Card,"Sylvia Beach, Pierre de Lanux Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e367ba9f-98cf-408d-9281-2c5771c2fa44/manifest,https://iiif.princeton.edu/loris/figgy_prod/d5%2F0d%2F32%2Fd50d325b995f4426af962cc245d639cd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-06,,https://shakespeareandco.princeton.edu/members/lanux-pierre-de/,Pierre de Lanux,"de Lanux, Pierre",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/dowden-shakespeare/,Shakespeare,,"Dowden, Edward",1877,"From the literature primers series, edited by John Richard Green.",Lending Library Card,"Sylvia Beach, Pierre de Lanux Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e367ba9f-98cf-408d-9281-2c5771c2fa44/manifest,https://iiif.princeton.edu/loris/figgy_prod/d5%2F0d%2F32%2Fd50d325b995f4426af962cc245d639cd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-04-06,1926-04-06,https://shakespeareandco.princeton.edu/members/levinson/,Mr. Levinson,"Levinson, Mr.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1926-04-06,1926-04-12,https://shakespeareandco.princeton.edu/members/scudder-thomas/,Thomas Scudder,"Scudder, Thomas",5.00,,6 days,6,,,1926-04-06,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Thomas Scudder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/f8f57421-cb18-4507-a8e6-9122a13ce859/manifest,;https://iiif.princeton.edu/loris/figgy_prod/41%2F2d%2Fc4%2F412dc4f5b2fe432a93d020755e249de3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-06,1926-04-14,https://shakespeareandco.princeton.edu/members/scudder-thomas/,Thomas Scudder,"Scudder, Thomas",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/jung-psychological-types/,"Psychological Types: Or, The Psychology of Individuation",,"Jung, Carl Gustav",1923,,Lending Library Card,"Sylvia Beach, Thomas Scudder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f8f57421-cb18-4507-a8e6-9122a13ce859/manifest,https://iiif.princeton.edu/loris/figgy_prod/41%2F2d%2Fc4%2F412dc4f5b2fe432a93d020755e249de3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-06,1926-04-15,https://shakespeareandco.princeton.edu/members/yard/,Amy Yard,"Yard, Amy",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/lucas-wanderer-paris/,A Wanderer in Paris,,"Lucas, E. V.",1909,,Lending Library Card,"Sylvia Beach, Mrs Amy Yard Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/802d84c7-0ba4-407d-9636-57ed632f015a/manifest,https://iiif.princeton.edu/loris/figgy_prod/79%2F55%2F53%2F79555388cde54309b0a7ca39c1a7e2f2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-06,1926-04-08,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/burr-great-house-park/,The Great House in the Park,,"Burr, Anne Robeson Brown",1924,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/ab%2F6f%2F33%2Fab6f33d3399e4473a5a02c98c6acc17b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-04-07,1926-05-07,https://shakespeareandco.princeton.edu/members/moynahan/,Mr. Moynahan,"Moynahan, Mr.",15.00,20.00,1 month,30,1,,1926-04-07,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-04-07,1926-04-11,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/bennett-things-interested-second/,Things That Have Interested Me: Second Series,,"Bennett, Arnold",1923,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/3c%2F71%2F17%2F3c711735a4664267807fc99839f5c138%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-07,1926-04-08,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/oneill-hairy-ape/,The Hairy Ape,,"O'Neill, Eugene",1923,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/3c%2F71%2F17%2F3c711735a4664267807fc99839f5c138%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-08,1926-04-19,https://shakespeareandco.princeton.edu/members/proix/,Troise Proix,"Proix, Troise",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/mackenzie-early-life-adventures/,The Early Life and Adventures of Sylvia Scarlett,,"Mackenzie, Compton",1918,,Lending Library Card,"Sylvia Beach, Troise Proix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b7152822-4421-406d-9472-740daf9b84e0/manifest,https://iiif.princeton.edu/loris/figgy_prod/7b%2F4c%2Fcd%2F7b4ccd00593d400692681d1ae569254b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-04-08,1926-04-08,https://shakespeareandco.princeton.edu/members/kean-l-l/,Mrs. L. L. Kean,"Kean, Mrs. L. L.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-04-08,1926-04-12,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/montague-rough-justice/,Rough Justice,,"Montague, C. E.",1926,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/ab%2F6f%2F33%2Fab6f33d3399e4473a5a02c98c6acc17b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-08,1926-04-10,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/loos-gentlemen-prefer-blondes/,Gentlemen Prefer Blondes: The Illuminating Diary of a Professional Lady,,"Loos, Anita",1925,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/9f%2F65%2F7c%2F9f657caabb024a00820dd1156308da37%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-04-08,1926-04-14,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/dreiser-american-tragedy/,An American Tragedy,Vol. 1,"Dreiser, Theodore",1925,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/9f%2F65%2F7c%2F9f657caabb024a00820dd1156308da37%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-04-08,1926-04-09,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/jordan-smith-strange-altars-book/,On Strange Altars: A Book of Enthusiasms,,"Jordan-Smith, Paul",1924,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/3c%2F71%2F17%2F3c711735a4664267807fc99839f5c138%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1926-04-08,1926-07-08,https://shakespeareandco.princeton.edu/members/pottier-ph/,Ph. Pottier,"Pottier, Ph.",40.00,,3 months,91,1,,1926-04-12,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Ph. Pottier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/ac2188bc-d3fc-4d8c-99c5-985d61fb32c1/manifest,;https://iiif.princeton.edu/loris/figgy_prod/39%2Fda%2F42%2F39da422031304248a433f6d4ba8a2b88%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-08,1926-04-12,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/huneker-overtones-book-temperaments/,"Overtones, a Book of Temperaments: Richard Strauss, Parsifal, Verdi, Balzac, Flaubert, Nietzsche, and TurgeΜnieff",,"Huneker, James",1904,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/3c%2F71%2F17%2F3c711735a4664267807fc99839f5c138%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-08,1926-04-12,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/mckenna-oldest-god/,The Oldest God,,"McKenna, Stephen",1926,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/ab%2F6f%2F33%2Fab6f33d3399e4473a5a02c98c6acc17b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-09,1926-04-27,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/harris-contemporary-portraits/,Contemporary Portraits,,"Harris, Frank",1915,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/05%2Fcc%2F42%2F05cc420c01b74e7885f72bc117cfdb3d%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1926-04-09,1926-04-09,https://shakespeareandco.princeton.edu/members/collins-dorothy/,Dorothy Collins,"Collins, Dorothy",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1926-04-09,1926-04-09,https://shakespeareandco.princeton.edu/members/gorringe-mary1/,Mary Gorringe,"Gorringe, Mary",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-04-09,1926-04-30,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/butler-alps-sanctuaries-piedmont/,Alps and Sanctuaries of Piedmont and the Canton Ticino,,"Butler, Samuel",1882,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2F7d%2Fa5%2F237da592c8234d839140f8c72d672a9f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-09,1926-04-12,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/oneill-beyond-horizon/,Beyond the Horizon,,"O'Neill, Eugene",1920,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/3c%2F71%2F17%2F3c711735a4664267807fc99839f5c138%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-09,1926-04-14,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/benjamin-life-letters-laurence/,The Life and Letters of Laurence Sterne,Vol. 2,"Benjamin, Lewis Saul",1911,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/53%2F0d%2F85%2F530d85a179be47a3943814c914e80478%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-04-10,1926-04-14,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/morley-thunder-left/,Thunder on the Left,,"Morley, Christopher",1925,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/9f%2F65%2F7c%2F9f657caabb024a00820dd1156308da37%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1926-04-10,1926-05-10,https://shakespeareandco.princeton.edu/members/carlaw-c-b/,C. B. Carlaw,"Carlaw, C. B.",20.00,40.00,1 month,30,2,,1926-04-10,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-04-10,1926-05-10,https://shakespeareandco.princeton.edu/members/cohen/,Dr. G. Cohen,"Cohen, Dr. G.",15.00,20.00,1 month,30,1,,1926-04-10,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-04-10,1926-04-13,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/oneill-emperor-jones/,The Emperor Jones,,"O'Neill, Eugene",1921,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/3c%2F71%2F17%2F3c711735a4664267807fc99839f5c138%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-11,1926-04-24,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/huxley-along-road-notes/,Along the Road: Notes and Essays of a Tourist,,"Huxley, Aldous",1925,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/28%2Ff9%2F7d%2F28f97db617bb43b98744175c11c3170d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-04-11,1926-05-10,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,29,,,https://shakespeareandco.princeton.edu/books/shaw-irrational-knot/,The Irrational Knot,,"Shaw, George Bernard",1905,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/32%2F11%2F44%2F3211445456604f26802be4ccce47b278%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-04-12,1926-04-14,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/weigall-impossible/,The Not Impossible She,,"Weigall, Arthur",1926,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/ab%2F6f%2F33%2Fab6f33d3399e4473a5a02c98c6acc17b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-04-12,1926-04-12,https://shakespeareandco.princeton.edu/members/astell/,I. W. Astell,"Astell, I. W.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-04-12,1926-04-26,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/carington-measurement-emotion/,The Measurement of Emotion,,"Carington, Whately",1922,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/37%2F63%2Fee%2F3763eef8329c491da536c985612d8be5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-12,1926-04-26,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/davies-autobiography-super-tramp/,The Autobiography of a Super-Tramp,,"Davies, W. H.",1908,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/37%2F63%2Fee%2F3763eef8329c491da536c985612d8be5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-12,1926-04-14,https://shakespeareandco.princeton.edu/members/pottier-ph/,Ph. Pottier,"Pottier, Ph.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/meredith-tale-chloe/,The Tale of Chloe,,"Meredith, George",1879,,Lending Library Card,"Sylvia Beach, Ph. Pottier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac2188bc-d3fc-4d8c-99c5-985d61fb32c1/manifest,https://iiif.princeton.edu/loris/figgy_prod/39%2Fda%2F42%2F39da422031304248a433f6d4ba8a2b88%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-12,1926-04-13,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/oneill-desire-elms-play/,Desire under the Elms: A Play in Three Parts,,"O'Neill, Eugene",1924,Some editions of *Desire under the Elms* include O'Neill's *Welded* (1924) and [*All God's Chillun Got Wings*](https://shakespeareandco.princeton.edu/books/oneill-gods-chillun-got/) (1924). [M. Villars](https://shakespeareandco.princeton.edu/members/villars/) purchased an edition that includes *All God's Chillun Got Wings.*,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/3c%2F71%2F17%2F3c711735a4664267807fc99839f5c138%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-04-12,1926-07-12,https://shakespeareandco.princeton.edu/members/eloff-fanie/,Fanie Eloff / Mr. S. J. P. Eloff,"Eloff, Fanie",40.00,20.00,3 months,91,1,,1926-04-12,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-04-12,1926-04-14,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/oneill-moon-caribbees-six/,"The Moon of the Caribbees, and Six Other Plays of the Sea",,"O'Neill, Eugene",1919,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/3c%2F71%2F17%2F3c711735a4664267807fc99839f5c138%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-12,1926-04-14,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/shaw-doctors-dilemma/,The Doctor's Dilemma,,"Shaw, George Bernard",1911,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/3c%2F71%2F17%2F3c711735a4664267807fc99839f5c138%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-12,1926-04-14,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/sayers-clouds-witness/,Clouds of Witness,,"Sayers, Dorothy L.",1926,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/ab%2F6f%2F33%2Fab6f33d3399e4473a5a02c98c6acc17b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-12,1926-06-10,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,59,,,https://shakespeareandco.princeton.edu/books/white-fire-flint/,The Fire in the Flint,,"White, Walter Francis",1924,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/dc%2F94%2Ffd%2Fdc94fda0cd9c4ae195f988f5a500f00f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-12,1926-04-13,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/mencken-american-mercury/,The American Mercury,,,,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/3c%2F71%2F17%2F3c711735a4664267807fc99839f5c138%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-13,1926-04-24,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/beerbohm-christmas-garland/,A Christmas Garland,,"Beerbohm, Max",1912,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/77%2F51%2Fbc%2F7751bc4eab97498891132d7fedfaf2ac%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1926-04-13,1926-04-13,https://shakespeareandco.princeton.edu/members/macconnel-m-c/,M. C. MacConnel,"MacConnel, M. C.",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-04-13,1926-04-24,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/beerbohm-even-now/,And Even Now,,"Beerbohm, Max",1920,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/77%2F51%2Fbc%2F7751bc4eab97498891132d7fedfaf2ac%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-04-13,1926-04-24,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/gide-strait-gate/,Strait Is the Gate,,"Gide, AndrΓ©",1924,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/28%2Ff9%2F7d%2F28f97db617bb43b98744175c11c3170d%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1926-04-14,1926-05-14,https://shakespeareandco.princeton.edu/members/champonnier/,Mr. Champonnier,"Champonnier, Mr.",12.00,50.00,1 month,30,1,AdL,1926-04-14,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-04-14,1926-04-15,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/shaw-man-superman/,Man and Superman,,"Shaw, George Bernard",1903,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/3c%2F71%2F17%2F3c711735a4664267807fc99839f5c138%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-14,1926-04-15,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/harris-undreamd-shores/,Undream'd of Shores,,"Harris, Frank",1924,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/3c%2F71%2F17%2F3c711735a4664267807fc99839f5c138%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-14,1926-04-17,https://shakespeareandco.princeton.edu/members/pottier-ph/,Ph. Pottier,"Pottier, Ph.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/austen-pride-prejudice/,Pride and Prejudice,2 vols.,"Austen, Jane",1813,,Lending Library Card,"Sylvia Beach, Ph. Pottier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac2188bc-d3fc-4d8c-99c5-985d61fb32c1/manifest,https://iiif.princeton.edu/loris/figgy_prod/39%2Fda%2F42%2F39da422031304248a433f6d4ba8a2b88%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-14,1926-04-15,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/hamsun-segelfoss-town/,Segelfoss Town,2 vols.,"Hamsun, Knut",1925,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/ab%2F6f%2F33%2Fab6f33d3399e4473a5a02c98c6acc17b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-14,1926-04-15,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/wylie-venetian-glass-nephew/,The Venetian Glass Nephew,,"Wylie, Elinor",1925,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/53%2F0d%2F85%2F530d85a179be47a3943814c914e80478%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1926-04-14,1926-07-14,https://shakespeareandco.princeton.edu/members/kemp-j/,J. Kemp,"Kemp, J.",40.00,,3 months,91,1,,1926-04-12,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1926-04-14,1926-04-14,https://shakespeareandco.princeton.edu/members/kean-l-l/,Mrs. L. L. Kean,"Kean, Mrs. L. L.",,,,,,,,,,,,,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1926-04-14,1926-04-14,https://shakespeareandco.princeton.edu/members/vienne/,Mlle Mathieu de Vienne,"Vienne, Mlle Mathieu de",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1926-04-14,1926-04-14,https://shakespeareandco.princeton.edu/members/harter-irma/,Irma Harter,"Harter, Irma",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-04-15,1926-04-19,https://shakespeareandco.princeton.edu/members/yard/,Amy Yard,"Yard, Amy",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/howells-landlord-lions-head/,The Landlord at Lion's Head: A Novel,,"Howells, William Dean",1896,,Lending Library Card,"Sylvia Beach, Mrs Amy Yard Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/802d84c7-0ba4-407d-9636-57ed632f015a/manifest,https://iiif.princeton.edu/loris/figgy_prod/79%2F55%2F53%2F79555388cde54309b0a7ca39c1a7e2f2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-15,1926-07-13,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,89,,,https://shakespeareandco.princeton.edu/books/mencken-prejudices-first-series/,Prejudices: First Series,,"Mencken, H. L.",1919,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/54%2Fb9%2F90%2F54b9902d15d24fa0953f0dc338355e2e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-04-15,1926-04-22,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/lawrence-kangaroo/,Kangaroo,,"Lawrence, D. H.",1923,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/d9%2Fee%2F33%2Fd9ee33f241e044988aa183d4f24ccbc1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-04-15,1926-04-22,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/lawrence-st-mawr/,St. Mawr,,"Lawrence, D. H.",1925,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/d9%2Fee%2F33%2Fd9ee33f241e044988aa183d4f24ccbc1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-04-15,1926-04-16,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/norris-vandover-brute/,Vandover and the Brute,,"Norris, Frank",1914,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/3c%2F71%2F17%2F3c711735a4664267807fc99839f5c138%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-15,1926-04-16,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/shaw-cashel-byrons-profession/,Cashel Byron's Profession,,"Shaw, George Bernard",1886,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/3c%2F71%2F17%2F3c711735a4664267807fc99839f5c138%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-15,1926-07-13,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,89,,,https://shakespeareandco.princeton.edu/books/untermeyer-modern-american-poetry/,Modern American Poetry: An Introduction,,,1919,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/54%2Fb9%2F90%2F54b9902d15d24fa0953f0dc338355e2e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-04-15,1926-04-17,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/meredith-amazing-marriage/,The Amazing Marriage,,"Meredith, George",1895,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/53%2F0d%2F85%2F530d85a179be47a3943814c914e80478%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1926-04-15,1926-05-15,https://shakespeareandco.princeton.edu/members/mims-catherine/,Catherine Mims,"Mims, Catherine",20.00,,1 month,30,2,,1926-04-12,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1926-04-15,1926-05-15,https://shakespeareandco.princeton.edu/members/lloyd-mary/,Mary Lloyd,"Lloyd, Mary",15.00,20.00,1 month,30,2,,1926-04-15,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-04-15,1926-04-19,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/white-flight/,Flight,,"White, Walter Francis",1926,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/ab%2F6f%2F33%2Fab6f33d3399e4473a5a02c98c6acc17b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-15,1926-04-19,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/harris-yellow-ticket-stories/,The Yellow Ticket and Other Stories,,"Harris, Frank",1914,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/ab%2F6f%2F33%2Fab6f33d3399e4473a5a02c98c6acc17b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1926-04-16,1926-05-16,https://shakespeareandco.princeton.edu/members/scholes/,E. Scholes,"Scholes, E.",16.00,,1 month,30,2,,1926-04-12,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1926-04-16,1926-05-16,https://shakespeareandco.princeton.edu/members/norris/,E. W. Norris,"Norris, E. W.",16.00,,1 month,30,2,Student,1926-04-15,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1926-04-16,1926-05-16,https://shakespeareandco.princeton.edu/members/birkhoff/,Mrs. G. Birkhoff,"Birkhoff, Mrs. G.",20.00,40.00,1 month,30,2,,1926-04-16,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-04-16,1926-05-08,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/forster-passage-india/,A Passage to India,,"Forster, E. M.",1924,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F89%2Fa4%2F5689a4b95685432aa62068f98b57b9df%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-04-16,1926-07-16,https://shakespeareandco.princeton.edu/members/bonifas/,H. Bonifas,"Bonifas, H.",32.00,20.00,3 months,91,1,Professor / Teacher,1926-04-16,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-04-16,1926-04-17,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/shaw-three-plays-puritans/,Three Plays for Puritans,,"Shaw, George Bernard",1901,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/3c%2F71%2F17%2F3c711735a4664267807fc99839f5c138%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-16,1926-04-20,https://shakespeareandco.princeton.edu/members/pfeiffer-pauline/,Pauline Pfeiffer,"Pfeiffer, Pauline",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/woolf-common-reader/,The Common Reader,,"Woolf, Virginia",1925,,Lending Library Card,"Sylvia Beach, Pauline Pfeiffer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6b926df4-13d0-4304-ad64-86df1bc67b0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/e7%2F69%2F22%2Fe76922b82d3e411584d3a32cf3fe8ea6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-16,1926-04-17,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/dos-passos-three-soldiers/,Three Soldiers,,"Dos Passos, John",1921,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/3c%2F71%2F17%2F3c711735a4664267807fc99839f5c138%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-17,1926-04-19,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/rohmer-yellow-shadows/,Yellow Shadows,,"Rohmer, Sax",1926,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/3c%2F71%2F17%2F3c711735a4664267807fc99839f5c138%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-17,1926-04-26,https://shakespeareandco.princeton.edu/members/pottier-ph/,Ph. Pottier,"Pottier, Ph.",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/drinkwater-pilgrim-eternity/,The Pilgrim of Eternity,,"Drinkwater, John",1925,,Lending Library Card,"Sylvia Beach, Ph. Pottier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac2188bc-d3fc-4d8c-99c5-985d61fb32c1/manifest,https://iiif.princeton.edu/loris/figgy_prod/39%2Fda%2F42%2F39da422031304248a433f6d4ba8a2b88%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-17,1926-04-19,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/marriott-isle-dead-ships/,The Isle of Dead Ships,,"Marriott, Crittenden",1909,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/3c%2F71%2F17%2F3c711735a4664267807fc99839f5c138%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-04-17,1926-05-17,https://shakespeareandco.princeton.edu/members/fowler-cicely/,Cicely Fowler,"Fowler, Cicely",15.00,20.00,1 month,30,1,,1926-04-17,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-04-17,1926-04-19,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/criterion/,The Criterion,"Vol. 4, no. 1, Jan 1926 The New Criterion",,,"Renamed *The New Criterion* from January 1926 to January 1927, and *The Monthly Criterion* from May 1927 to March 1928.",Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/53%2F0d%2F85%2F530d85a179be47a3943814c914e80478%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-04-17,1926-04-24,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/sandburg-selected-poems-carl/,Selected Poems of Carl Sandburg,,"Sandburg, Carl",1926,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/28%2Ff9%2F7d%2F28f97db617bb43b98744175c11c3170d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-04-17,1926-04-19,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/norris-little-ships/,Little Ships,,"Norris, Kathleen Thompson",1925,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/53%2F0d%2F85%2F530d85a179be47a3943814c914e80478%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1926-04-19,1926-04-19,https://shakespeareandco.princeton.edu/members/barbet/,S. Barbet / S. Barket,"Barbet, S.",,,,,,,,40.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-04-19,1926-04-22,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/mackenzie-coral-sequel-carnival/,"Coral: A Sequel to ""Carnival""",,"Mackenzie, Compton",1925,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/ab%2F6f%2F33%2Fab6f33d3399e4473a5a02c98c6acc17b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-19,1926-04-21,https://shakespeareandco.princeton.edu/members/proix/,Troise Proix,"Proix, Troise",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/mackenzie-passionate-elopement/,The Passionate Elopement,,"Mackenzie, Compton",1911,,Lending Library Card,"Sylvia Beach, Troise Proix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b7152822-4421-406d-9472-740daf9b84e0/manifest,https://iiif.princeton.edu/loris/figgy_prod/7b%2F4c%2Fcd%2F7b4ccd00593d400692681d1ae569254b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-19,1926-04-28,https://shakespeareandco.princeton.edu/members/proix/,Troise Proix,"Proix, Troise",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/mackenzie-sinister-street/,Sinister Street,,"Mackenzie, Compton",1914,,Lending Library Card,"Sylvia Beach, Troise Proix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b7152822-4421-406d-9472-740daf9b84e0/manifest,https://iiif.princeton.edu/loris/figgy_prod/7b%2F4c%2Fcd%2F7b4ccd00593d400692681d1ae569254b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-19,1926-04-26,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/bennett-sea-sleep/,Sea of Sleep,,"Bennett, Alfred Gordon",1926,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/ab%2F6f%2F33%2Fab6f33d3399e4473a5a02c98c6acc17b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-19,1926-05-03,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/sabatini-carolinian/,The Carolinian,,"Sabatini, Rafael",1925,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/ab%2F6f%2F33%2Fab6f33d3399e4473a5a02c98c6acc17b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-04-19,1926-05-19,https://shakespeareandco.princeton.edu/members/chapman-4/,Josephine Chapman,"Chapman, Josephine",20.00,40.00,1 month,30,2,,1926-04-19,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1926-04-19,1926-04-19,https://shakespeareandco.princeton.edu/members/adams-4/,Mrs. G. Adam,"Adam, Mrs. G.",,,,,,,,40.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-04-19,1926-04-21,https://shakespeareandco.princeton.edu/members/yard/,Amy Yard,"Yard, Amy",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/stephens-crock-gold/,The Crock of Gold,,"Stephens, James",1912,,Lending Library Card,"Sylvia Beach, Mrs Amy Yard Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/802d84c7-0ba4-407d-9636-57ed632f015a/manifest,https://iiif.princeton.edu/loris/figgy_prod/79%2F55%2F53%2F79555388cde54309b0a7ca39c1a7e2f2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-04-19,1926-04-19,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-04-19,1926-04-23,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/mackenzie-early-life-adventures/,The Early Life and Adventures of Sylvia Scarlett,,"Mackenzie, Compton",1918,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/53%2F0d%2F85%2F530d85a179be47a3943814c914e80478%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1926-04-19,1926-04-19,https://shakespeareandco.princeton.edu/members/gastambide/,Ph. Gastambide,"Gastambide, Ph.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1926-04-19,1926-04-19,https://shakespeareandco.princeton.edu/members/keely-frances/,Frances Keely,"Keely, Frances",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1926-04-19,1926-05-19,https://shakespeareandco.princeton.edu/members/chapman-3/,Mrs. E. Chapman,"Chapman, Mrs. E.",20.00,40.00,1 month,30,2,,1926-04-19,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1926-04-19,1926-05-19,https://shakespeareandco.princeton.edu/members/proix/,Troise Proix,"Proix, Troise",15.00,,1 month,30,1,,1926-04-19,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Troise Proix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/b7152822-4421-406d-9472-740daf9b84e0/manifest,;https://iiif.princeton.edu/loris/figgy_prod/7b%2F4c%2Fcd%2F7b4ccd00593d400692681d1ae569254b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-19,1926-04-20,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/dos-passos-streets-night/,Streets of Night,,"Dos Passos, John",1923,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/3c%2F71%2F17%2F3c711735a4664267807fc99839f5c138%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-19,1926-04-22,https://shakespeareandco.princeton.edu/members/pottier-ph/,Ph. Pottier,"Pottier, Ph.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/morris-early-romances-william/,The Early Romances of William Morris in Prose and Verse,,"Morris, William",1907,,Lending Library Card,"Sylvia Beach, Ph. Pottier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac2188bc-d3fc-4d8c-99c5-985d61fb32c1/manifest,https://iiif.princeton.edu/loris/figgy_prod/39%2Fda%2F42%2F39da422031304248a433f6d4ba8a2b88%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-19,1926-04-20,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/stories-dial/,Stories from the Dial,,,1924,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/3c%2F71%2F17%2F3c711735a4664267807fc99839f5c138%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-20,1926-05-06,https://shakespeareandco.princeton.edu/members/hoboken/,Annemarie Seidel / Mme van Hoboken,"Seidel, Annemarie",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/joyce-exiles/,Exiles,,"Joyce, James",1918,,Lending Library Card,"Sylvia Beach, Madame van Hoboken Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4c432725-9cdf-4903-a36d-d7096fdff2f0/manifest,https://iiif.princeton.edu/loris/figgy_prod/2d%2Fb9%2Ffe%2F2db9fe1acc9c4ece947835b0328ba1de%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1926-04-20,1927-04-20,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",115.00,,1 year,365,1,,1926-04-28,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,;https://iiif.princeton.edu/loris/figgy_prod/0a%2Ff4%2Ff6%2F0af4f6a926324bcbacea40ad3dc841a7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-04-20,1926-05-20,https://shakespeareandco.princeton.edu/members/hoboken/,Annemarie Seidel / Mme van Hoboken,"Seidel, Annemarie",15.00,20.00,1 month,30,1,,1926-04-20,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Madame van Hoboken Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/4c432725-9cdf-4903-a36d-d7096fdff2f0/manifest,;https://iiif.princeton.edu/loris/figgy_prod/2d%2Fb9%2Ffe%2F2db9fe1acc9c4ece947835b0328ba1de%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-21,,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/mottram-crime-vanderlyndens/,The Crime at Vanderlynden's,,"Mottram, R. H.",1926,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/28%2Ff9%2F7d%2F28f97db617bb43b98744175c11c3170d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-04-21,1926-04-23,https://shakespeareandco.princeton.edu/members/yard/,Amy Yard,"Yard, Amy",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/kennedy-ladies-lyndon/,The Ladies of Lyndon,,"Kennedy, Margaret",1923,,Lending Library Card,"Sylvia Beach, Mrs Amy Yard Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/802d84c7-0ba4-407d-9636-57ed632f015a/manifest,https://iiif.princeton.edu/loris/figgy_prod/79%2F55%2F53%2F79555388cde54309b0a7ca39c1a7e2f2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-21,1926-04-24,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/warner-lolly-willowes/,Lolly Willowes,,"Warner, Sylvia Townsend",1926,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/07%2Fa3%2F4c%2F07a34cab31e341f5922a6a2e32fa1e5a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-22,1926-04-29,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/le-queux-fatal-face/,The Fatal Face,,"Le Queux, William",1926,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/ab%2F6f%2F33%2Fab6f33d3399e4473a5a02c98c6acc17b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-22,1926-06-21,https://shakespeareandco.princeton.edu/members/sessions-barbara/,Barbara F. Sessions / Mrs. Roger Sessions,"Sessions, Barbara F.",,,,,,,,,Returned,60,,,https://shakespeareandco.princeton.edu/books/fry-vision-design/,Vision and Design,,"Fry, Roger Eliot",1921,,Lending Library Card,"Sylvia Beach, Barbara F. Sessions Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5139edff-7352-4fd9-80cb-0e97158267b4/manifest,https://iiif.princeton.edu/loris/figgy_prod/85%2Fce%2F6b%2F85ce6b408d25457d9074120903d2e5d6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-22,1926-05-03,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/wassermann-goose-man/,The Goose-Man,,"Wassermann, Jakob",1922,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/ab%2F6f%2F33%2Fab6f33d3399e4473a5a02c98c6acc17b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-22,1926-04-29,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/swinnerton-elder-sister/,The Elder Sister,,"Swinnerton, Frank",1925,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/d9%2Fee%2F33%2Fd9ee33f241e044988aa183d4f24ccbc1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-04-22,1926-04-26,https://shakespeareandco.princeton.edu/members/pottier-ph/,Ph. Pottier,"Pottier, Ph.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/bronte-jane-eyre/,Jane Eyre,,"BrontΓ«, Charlotte",1847,,Lending Library Card,"Sylvia Beach, Ph. Pottier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac2188bc-d3fc-4d8c-99c5-985d61fb32c1/manifest,https://iiif.princeton.edu/loris/figgy_prod/39%2Fda%2F42%2F39da422031304248a433f6d4ba8a2b88%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-04-22,1926-05-22,https://shakespeareandco.princeton.edu/members/sessions-barbara/,Barbara F. Sessions / Mrs. Roger Sessions,"Sessions, Barbara F.",12.00,100.00,1 month,30,1,Student,1926-04-22,,,,,FRF,,,,,,,Lending Library Card;Logbook,"Sylvia Beach, Barbara F. Sessions Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",https://figgy.princeton.edu/concern/scanned_resources/5139edff-7352-4fd9-80cb-0e97158267b4/manifest;,https://iiif.princeton.edu/loris/figgy_prod/85%2Fce%2F6b%2F85ce6b408d25457d9074120903d2e5d6%2Fintermediate_file.jp2/full/full/0/default.jpg;
+Borrow,1926-04-22,1926-04-26,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/wylie-venetian-glass-nephew/,The Venetian Glass Nephew,,"Wylie, Elinor",1925,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/d9%2Fee%2F33%2Fd9ee33f241e044988aa183d4f24ccbc1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-04-23,1926-04-27,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/dunsany-tales-wonder/,Tales of Wonder,,"Dunsany, Lord",1916,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/3c%2F71%2F17%2F3c711735a4664267807fc99839f5c138%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1926-04-23,1926-05-23,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",20.00,40.00,1 month,30,2,,1926-04-23,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,;https://iiif.princeton.edu/loris/figgy_prod/3c%2F71%2F17%2F3c711735a4664267807fc99839f5c138%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-23,1926-04-26,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/dreiser-sister-carrie/,Sister Carrie,,"Dreiser, Theodore",1900,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/53%2F0d%2F85%2F530d85a179be47a3943814c914e80478%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-04-23,1926-04-26,https://shakespeareandco.princeton.edu/members/yard/,Amy Yard,"Yard, Amy",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/stephens-land-youth/,In the Land of Youth,,"Stephens, James",1924,,Lending Library Card,"Sylvia Beach, Mrs Amy Yard Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/802d84c7-0ba4-407d-9636-57ed632f015a/manifest,https://iiif.princeton.edu/loris/figgy_prod/79%2F55%2F53%2F79555388cde54309b0a7ca39c1a7e2f2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-23,1926-04-27,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/shaw-heartbreak-house-fantasia/,Heartbreak House: A Fantasia in the Russian Manner on English Themes,,"Shaw, George Bernard",1919,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/3c%2F71%2F17%2F3c711735a4664267807fc99839f5c138%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-24,1926-05-17,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/housman-shropshire-lad/,A Shropshire Lad,,"Housman, A. E.",1896,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/77%2F51%2Fbc%2F7751bc4eab97498891132d7fedfaf2ac%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-04-24,1926-05-17,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/maugham-chinese-screen/,On a Chinese Screen,,"Maugham, W. Somerset",1922,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/77%2F51%2Fbc%2F7751bc4eab97498891132d7fedfaf2ac%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-04-24,1926-05-17,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/housman-last-poems/,Last Poems,,"Housman, A. E.",1922,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/77%2F51%2Fbc%2F7751bc4eab97498891132d7fedfaf2ac%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-04-24,1926-07-23,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,90,,,https://shakespeareandco.princeton.edu/books/frank-dark-mother/,The Dark Mother,,"Frank, Waldo",1920,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/07%2Fa3%2F4c%2F07a34cab31e341f5922a6a2e32fa1e5a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-04-24,1926-05-24,https://shakespeareandco.princeton.edu/members/bayless/,Sisley Bayless,"Bayless, Sisley",15.00,20.00,1 month,30,1,,1926-04-24,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1926-04-24,1926-05-24,https://shakespeareandco.princeton.edu/members/carlisle-hollis-moore/,Hollis Moore Carlisle,"Carlisle, Hollis Moore",20.00,,1 month,30,2,,1926-04-24,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1926-04-24,1926-05-24,https://shakespeareandco.princeton.edu/members/carr/,Louise Carr,"Carr, Louise",16.00,40.00,1 month,30,2,,1926-04-24,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1926-04-24,1926-04-24,https://shakespeareandco.princeton.edu/members/carlisle-hollis-moore/,Hollis Moore Carlisle,"Carlisle, Hollis Moore",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-04-26,,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/yeats-early-poems-stories/,Early Poems and Stories,,"Yeats, William Butler",1925,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/a4%2F8c%2F7f%2Fa48c7f974df34e81af59231b85679646%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1926-04-26,1926-07-26,https://shakespeareandco.princeton.edu/members/macadam-t-d/,T. D. MacAdam,"MacAdam, T. D.",25.00,20.00,3 months,91,1,,1926-04-02,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-04-26,1926-04-29,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/waugh-georgian-stories-1925/,"Georgian Stories, 1925",,,1925,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/d9%2Fee%2F33%2Fd9ee33f241e044988aa183d4f24ccbc1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-04-26,1926-05-05,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/eliot-poems/,Poems,,"Eliot, T. S.",,"Unidentified edition or editions. Monique de Vigan borrowed Eliot's *Poems, 1909 β 1925* (1925).",Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/d9%2Fee%2F33%2Fd9ee33f241e044988aa183d4f24ccbc1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-04-26,1926-04-28,https://shakespeareandco.princeton.edu/members/yard/,Amy Yard,"Yard, Amy",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/galsworthy-country-house/,The Country House,,"Galsworthy, John",1907,,Lending Library Card,"Sylvia Beach, Mrs Amy Yard Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/802d84c7-0ba4-407d-9636-57ed632f015a/manifest,https://iiif.princeton.edu/loris/figgy_prod/79%2F55%2F53%2F79555388cde54309b0a7ca39c1a7e2f2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-26,1926-07-26,https://shakespeareandco.princeton.edu/members/pfeiffer-pauline/,Pauline Pfeiffer,"Pfeiffer, Pauline",,,,,,,,,Returned,91,,,https://shakespeareandco.princeton.edu/books/defoe-moll-flanders/,Moll Flanders,,"Defoe, Daniel",1722,,Lending Library Card,"Sylvia Beach, Pauline Pfeiffer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6b926df4-13d0-4304-ad64-86df1bc67b0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/e7%2F69%2F22%2Fe76922b82d3e411584d3a32cf3fe8ea6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-26,1926-04-28,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/james-finer-grain/,The Finer Grain,,"James, Henry",1910,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/53%2F0d%2F85%2F530d85a179be47a3943814c914e80478%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1926-04-26,1926-04-26,https://shakespeareandco.princeton.edu/members/hyde-h/,H. Hyde,"Hyde, H.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1926-04-26,1926-04-26,https://shakespeareandco.princeton.edu/members/gruening-mary/,Mary Gruening,"Gruening, Mary",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-04-26,1926-04-27,https://shakespeareandco.princeton.edu/members/pottier-ph/,Ph. Pottier,"Pottier, Ph.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/kingsley-westward-ho-voyages/,"Westward Ho! or, The Voyages and Adventures of Sir Amyas Leigh, Knight, of Burrough, in the County of Devon, in the Reign of Her Most Glorious Majesty Queen Elizabeth",,"Kingsley, Charles",1855,,Lending Library Card,"Sylvia Beach, Ph. Pottier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac2188bc-d3fc-4d8c-99c5-985d61fb32c1/manifest,https://iiif.princeton.edu/loris/figgy_prod/39%2Fda%2F42%2F39da422031304248a433f6d4ba8a2b88%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-26,1926-04-28,https://shakespeareandco.princeton.edu/members/pottier-ph/,Ph. Pottier,"Pottier, Ph.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/reade-put-place/,Put Yourself in His Place,,"Reade, Charles",1870,,Lending Library Card,"Sylvia Beach, Ph. Pottier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac2188bc-d3fc-4d8c-99c5-985d61fb32c1/manifest,https://iiif.princeton.edu/loris/figgy_prod/39%2Fda%2F42%2F39da422031304248a433f6d4ba8a2b88%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-27,1926-06,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/dreiser-hey-rub-dub/,Hey Rub-a-Dub-Dub: A Book of the Mystery and Wonder and Terror of Life,,"Dreiser, Theodore",1920,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/05%2Fcc%2F42%2F05cc420c01b74e7885f72bc117cfdb3d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-04-27,1926-05-03,https://shakespeareandco.princeton.edu/members/schirmer/,Mabel Schirmer / Mrs. Robert Schirmer,"Schirmer, Mabel",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/ford-parades/,No More Parades (Parade's End 2),,"Ford, Ford Madox",1925,,Lending Library Card,"Sylvia Beach, Mabel Schirmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4c00d0b2-7cb9-46e1-b628-2eac6ac7bb07/manifest,https://iiif-cloud.princeton.edu/iiif/2/d7%2F7c%2Fd2%2Fd77cd2a970254fe8a0d998bb9dc42a9f%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-04-27,1926-05-03,https://shakespeareandco.princeton.edu/members/schirmer/,Mabel Schirmer / Mrs. Robert Schirmer,"Schirmer, Mabel",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/morand-open-night/,Open All Night,,"Morand, Paul",1923,,Lending Library Card,"Sylvia Beach, Mabel Schirmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4c00d0b2-7cb9-46e1-b628-2eac6ac7bb07/manifest,https://iiif-cloud.princeton.edu/iiif/2/d7%2F7c%2Fd2%2Fd77cd2a970254fe8a0d998bb9dc42a9f%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-04-27,1926-04-28,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/shaw-plays-pleasant-unpleasant/,Plays: Pleasant and Unpleasant,Vol. 2 Pleasant Plays,"Shaw, George Bernard",1898,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/3c%2F71%2F17%2F3c711735a4664267807fc99839f5c138%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-27,1926-04-28,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/conrad-mirror-sea/,The Mirror of the Sea,,"Conrad, Joseph",1906,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/3c%2F71%2F17%2F3c711735a4664267807fc99839f5c138%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-27,1926-04-30,https://shakespeareandco.princeton.edu/members/pottier-ph/,Ph. Pottier,"Pottier, Ph.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/lamb-essays-elia/,The Essays of Elia,,"Lamb, Charles",1823,,Lending Library Card,"Sylvia Beach, Ph. Pottier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac2188bc-d3fc-4d8c-99c5-985d61fb32c1/manifest,https://iiif.princeton.edu/loris/figgy_prod/39%2Fda%2F42%2F39da422031304248a433f6d4ba8a2b88%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1926-04-27,1926-05-27,https://shakespeareandco.princeton.edu/members/stewart-m/,M. Stewart,"Stewart, M.",20.00,,1 month,30,2,,1926-04-27,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-04-28,1926-04-30,https://shakespeareandco.princeton.edu/members/yard/,Amy Yard,"Yard, Amy",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/bennett-hilda-lessways/,Hilda Lessways,,"Bennett, Arnold",1911,,Lending Library Card,"Sylvia Beach, Mrs Amy Yard Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/802d84c7-0ba4-407d-9636-57ed632f015a/manifest,https://iiif.princeton.edu/loris/figgy_prod/79%2F55%2F53%2F79555388cde54309b0a7ca39c1a7e2f2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-28,1926-05-22,https://shakespeareandco.princeton.edu/members/pottier-ph/,Ph. Pottier,"Pottier, Ph.",,,,,,,,,Returned,24,,,https://shakespeareandco.princeton.edu/books/shelley-letters-percy-bysshe/,The Letters of Percy Bysshe Shelley,Vol. 1,"Shelley, Percy Bysshe",1909,,Lending Library Card,"Sylvia Beach, Ph. Pottier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac2188bc-d3fc-4d8c-99c5-985d61fb32c1/manifest,https://iiif.princeton.edu/loris/figgy_prod/39%2Fda%2F42%2F39da422031304248a433f6d4ba8a2b88%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-28,1926-04-29,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/sabatini-bardelys-magnificent/,Bardelys the Magnificent,,"Sabatini, Rafael",1906,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/3c%2F71%2F17%2F3c711735a4664267807fc99839f5c138%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-28,1926-04-30,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/mackenzie-passionate-elopement/,The Passionate Elopement,,"Mackenzie, Compton",1911,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/53%2F0d%2F85%2F530d85a179be47a3943814c914e80478%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1926-04-28,1926-05-28,https://shakespeareandco.princeton.edu/members/shaw-m-r-b/,Margaret RenΓ©e Bryers Shaw / Miss M. R. B. Shaw,"Shaw, Margaret RenΓ©e Bryers",12.00,20.00,1 month,30,1,,1926-04-28,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Margaret Shaw Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/8e3a0ba0-8458-4cc4-a486-5ad2657c1d18/manifest,;https://iiif.princeton.edu/loris/figgy_prod/37%2F10%2F15%2F3710156f1d05470fa074e7eba85ebfed%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-28,1926-05-05,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/dos-passos-manhattan-transfer/,Manhattan Transfer,,"Dos Passos, John",1925,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0a%2Ff4%2Ff6%2F0af4f6a926324bcbacea40ad3dc841a7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-04-28,1926-07-28,https://shakespeareandco.princeton.edu/members/smyth-pigott/,Lady Clare Mary Cecilia Feilding / Lady Clare Smyth-Pigott,"Smyth-Pigott, Clare",100.00,60.00,3 months,91,4,,1926-04-28,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Clair Smyth-Pigott Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/6068331a-83cf-40bf-8850-58d8bc531fdb/manifest,;https://iiif.princeton.edu/loris/figgy_prod/28%2F5c%2F0f%2F285c0f8fd85b49808f3af087f2e76fda%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-28,1926-05-19,https://shakespeareandco.princeton.edu/members/proix/,Troise Proix,"Proix, Troise",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/mackenzie-sylvia-michael/,Sylvia & Michael,,"Mackenzie, Compton",1919,,Lending Library Card,"Sylvia Beach, Troise Proix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b7152822-4421-406d-9472-740daf9b84e0/manifest,https://iiif.princeton.edu/loris/figgy_prod/7b%2F4c%2Fcd%2F7b4ccd00593d400692681d1ae569254b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-28,1926-04-30,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/strindberg-confession-fool/,The Confession of a Fool,,"Strindberg, August",1912,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/3c%2F71%2F17%2F3c711735a4664267807fc99839f5c138%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-28,1926-04-30,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/shaw-john-bulls-island/,John Bull's Other Island,,"Shaw, George Bernard",1907,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/3c%2F71%2F17%2F3c711735a4664267807fc99839f5c138%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-28,1926-05-17,https://shakespeareandco.princeton.edu/members/shaw-m-r-b/,Margaret RenΓ©e Bryers Shaw / Miss M. R. B. Shaw,"Shaw, Margaret RenΓ©e Bryers",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/nicoll-history-early-eighteenth/,"A History of Early Eighteenth Century Drama, 1700 β 1750",,"Nicoll, Allardyce",1925,,Lending Library Card,"Sylvia Beach, Margaret Shaw Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8e3a0ba0-8458-4cc4-a486-5ad2657c1d18/manifest,https://iiif.princeton.edu/loris/figgy_prod/37%2F10%2F15%2F3710156f1d05470fa074e7eba85ebfed%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-28,1926-04-29,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/twain-adventures-huckleberry-finn/,The Adventures of Huckleberry Finn,,"Twain, Mark",1884,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/3c%2F71%2F17%2F3c711735a4664267807fc99839f5c138%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-29,1926-05-05,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/baring-cats-cradle/,Cat's Cradle,,"Baring, Maurice",1925,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/d9%2Fee%2F33%2Fd9ee33f241e044988aa183d4f24ccbc1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-04-29,,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/conrad-outcast-islands/,An Outcast of the Islands,,"Conrad, Joseph",1896,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/a4%2F8c%2F7f%2Fa48c7f974df34e81af59231b85679646%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-04-29,1926-05-03,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/masterman-wrong-letter/,The Wrong Letter,,"Masterman, Walter Sydney",1926,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/ab%2F6f%2F33%2Fab6f33d3399e4473a5a02c98c6acc17b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-04-30,1926-04-30,https://shakespeareandco.princeton.edu/members/masten-richard/,Richard Masten,"Masten, Richard",,,,,,,,150.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-04-30,1926-05-17,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/smollett-adventures-peregrine-pickle/,The Adventures of Peregrine Pickle,2 vols.,"Smollett, Tobias",1751,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/3c%2F71%2F17%2F3c711735a4664267807fc99839f5c138%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-30,1926-05-17,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/crane-men-women-boats/,"Men, Women, and Boats",,"Crane, Stephen",1921,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/3c%2F71%2F17%2F3c711735a4664267807fc99839f5c138%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1926-04-30,1926-06-30,https://shakespeareandco.princeton.edu/members/ames-mrs/,Mrs. Ames,"Ames, Mrs.",24.00,,2 months,61,1,Student,1926-04-30,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1926-04-30,1926-05-30,https://shakespeareandco.princeton.edu/members/chapman-emerson/,Emerson Chapman,"Chapman, Emerson",15.00,20.00,1 month,30,1,,1926-04-30,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-04-30,1926-05-03,https://shakespeareandco.princeton.edu/members/yard/,Amy Yard,"Yard, Amy",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/bennett-clayhanger/,Clayhanger,,"Bennett, Arnold",1910,,Lending Library Card,"Sylvia Beach, Mrs Amy Yard Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/802d84c7-0ba4-407d-9636-57ed632f015a/manifest,https://iiif.princeton.edu/loris/figgy_prod/79%2F55%2F53%2F79555388cde54309b0a7ca39c1a7e2f2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-30,1926-05-03,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/bibesco-whole-story/,The Whole Story,,"Bibesco, Elizabeth",1926,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/53%2F0d%2F85%2F530d85a179be47a3943814c914e80478%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1926-04-30,1926-04-30,https://shakespeareandco.princeton.edu/members/agnet-2/,Mme R. Agnet,"Agnet, Mme R.",,,,,,,,40.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-04-30,1926-05-06,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/swinnerton-nocturne/,Nocturne,,"Swinnerton, Frank",1917,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2F7d%2Fa5%2F237da592c8234d839140f8c72d672a9f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-04-30,1926-05-07,https://shakespeareandco.princeton.edu/members/pottier-ph/,Ph. Pottier,"Pottier, Ph.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/goldsmith-vicar-wakefield/,The Vicar of Wakefield,,"Goldsmith, Oliver",1766,,Lending Library Card,"Sylvia Beach, Ph. Pottier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac2188bc-d3fc-4d8c-99c5-985d61fb32c1/manifest,https://iiif.princeton.edu/loris/figgy_prod/39%2Fda%2F42%2F39da422031304248a433f6d4ba8a2b88%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-05-01,1926-06-01,https://shakespeareandco.princeton.edu/members/sarraute/,Nathalie Sarraute,"Sarraute, Nathalie",20.00,40.00,1 month,31,2,,1926-05-01,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Natalie Sarraute Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/ff1c2d0c-c9f8-4569-90e2-fee6c4529355/manifest,;https://iiif-cloud.princeton.edu/iiif/2/8f%2F8a%2F42%2F8f8a4249e0e748909a3352a6cd41b384%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-05-01,1926-07-07,https://shakespeareandco.princeton.edu/members/sarraute/,Nathalie Sarraute,"Sarraute, Nathalie",,,,,,,,,Returned,67,,,https://shakespeareandco.princeton.edu/books/conrad-lord-jim/,Lord Jim,,"Conrad, Joseph",1900,,Lending Library Card,"Sylvia Beach, Natalie Sarraute Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ff1c2d0c-c9f8-4569-90e2-fee6c4529355/manifest,https://iiif-cloud.princeton.edu/iiif/2/8f%2F8a%2F42%2F8f8a4249e0e748909a3352a6cd41b384%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-05-01,1926-06-05,https://shakespeareandco.princeton.edu/members/sarraute/,Nathalie Sarraute,"Sarraute, Nathalie",,,,,,,,,Returned,35,,,https://shakespeareandco.princeton.edu/books/poe-works-edgar-allan/,The Works of Edgar Allan Poe,,"Poe, Edgar Allan",,"Volumes from at least two sets of Poeβs works circulated in the lending library: the 10-volume *The Complete Works of Edgar Allan Poe* (Putnam, 1902) and the 8-volume *The Works of Edgar Allan Poe* (Lippincott, 1906). On April 4, 1924, Mlle Valerio borrowed volume 10 (*Miscellany*) from *The Complete Works,* and on January 21, 1925, volumes 1 and 3 from an unspecified set. M. Rieder borrowed volumes 7 and 8 from an unspecified set. On May 1, 1926, Nathalie Sarraute borrowed *Poeβs Tales.* Anatole Rivoallan borrowed volume 5 (*Poems*) from the *The Works.* Emilienne Gosse borrowed volume 1 from an unspecific set. Natalie Walker borrowed volume 1 (*Tales*) from the *The Works.* Eric Culley borrowed an unspecified volume from an unspecified set. Jeanine (Delpech) Teissier borrowed volumes 2 and 4 (both *Tales*) from *The Works.* On October 18, 1938, Sarraute purchased *Poeβs Tales.* Bianca (Bienenfeld) Lamblin borrowed *Poeβs Poems.*",Lending Library Card,"Sylvia Beach, Natalie Sarraute Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ff1c2d0c-c9f8-4569-90e2-fee6c4529355/manifest,https://iiif-cloud.princeton.edu/iiif/2/8f%2F8a%2F42%2F8f8a4249e0e748909a3352a6cd41b384%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1926-05-02,1926-06-02,https://shakespeareandco.princeton.edu/members/gibney-s/,S. Gibney,"Gibney, S.",15.00,,1 month,31,1,,1926-04-27,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1926-05-03,1926-05-03,https://shakespeareandco.princeton.edu/members/hirst-b/,B. Hirst,"Hirst, B.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1926-05-03,1926-06-03,https://shakespeareandco.princeton.edu/members/latrilhe-miss/,Miss Latrilhe,"Latrilhe, Miss",12.00,20.00,1 month,31,1,,1926-05-03,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-05-03,1926-05-19,https://shakespeareandco.princeton.edu/members/schirmer/,Mabel Schirmer / Mrs. Robert Schirmer,"Schirmer, Mabel",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/fitzgerald-sad-young-men/,All the Sad Young Men,,"Fitzgerald, F. Scott",1926,,Lending Library Card,"Sylvia Beach, Mabel Schirmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4c00d0b2-7cb9-46e1-b628-2eac6ac7bb07/manifest,https://iiif-cloud.princeton.edu/iiif/2/d7%2F7c%2Fd2%2Fd77cd2a970254fe8a0d998bb9dc42a9f%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-05-03,1926-05-19,https://shakespeareandco.princeton.edu/members/schirmer/,Mabel Schirmer / Mrs. Robert Schirmer,"Schirmer, Mabel",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/morand-lewis-irene/,Lewis and Irene,,"Morand, Paul",1925,,Lending Library Card,"Sylvia Beach, Mabel Schirmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4c00d0b2-7cb9-46e1-b628-2eac6ac7bb07/manifest,https://iiif-cloud.princeton.edu/iiif/2/d7%2F7c%2Fd2%2Fd77cd2a970254fe8a0d998bb9dc42a9f%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-05-03,1926-05-06,https://shakespeareandco.princeton.edu/members/yard/,Amy Yard,"Yard, Amy",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/bennett-twain/,These Twain,,"Bennett, Arnold",1915,,Lending Library Card,"Sylvia Beach, Mrs Amy Yard Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/802d84c7-0ba4-407d-9636-57ed632f015a/manifest,https://iiif.princeton.edu/loris/figgy_prod/79%2F55%2F53%2F79555388cde54309b0a7ca39c1a7e2f2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-05-03,1926-05-04,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/oppenheim-amazing-quest-mr/,The Amazing Quest of Mr. Ernest Bliss,,"Oppenheim, E. Phillips",1919,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/ab%2F6f%2F33%2Fab6f33d3399e4473a5a02c98c6acc17b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-05-03,1926-05-03,https://shakespeareandco.princeton.edu/members/robinson-2/,Mr. Robinson,"Robinson, Mr.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-05-03,1926-05-07,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/ostenso-wild-geese/,Wild Geese,,"Ostenso, Martha",1925,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/ab%2F6f%2F33%2Fab6f33d3399e4473a5a02c98c6acc17b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-05-04,1926-10-01,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,150,,,https://shakespeareandco.princeton.edu/books/hudson-far-away-long/,Far Away and Long Ago,,"Hudson, W. H.",1918,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/a4%2F8c%2F7f%2Fa48c7f974df34e81af59231b85679646%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-05-04,1926-05-07,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/phillpotts-demeters-daughter/,Demeter's Daughter,,"Phillpotts, Eden",1911,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/ab%2F6f%2F33%2Fab6f33d3399e4473a5a02c98c6acc17b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-05-04,1926-05-04,https://shakespeareandco.princeton.edu/members/arthun/,Amber (Arthun) Warburton / Miss Arthun,"Warburton, Amber",,,,,,,,40.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1926-05-04,1926-05-04,https://shakespeareandco.princeton.edu/members/clark-mrs-wellington/,Mrs. Wellington Clark,"Clark, Mrs. Wellington",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-05-04,,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/merezhkovsky-forerunner-romance-leonardo/,The Romance of Leonardo da Vinci: The Forerunner,,"Merezhkovsky, Dmitry",1908,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/37%2F63%2Fee%2F3763eef8329c491da536c985612d8be5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-05-04,1926-05-10,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/huneker-steeplejack/,Steeplejack,Vol. 2,"Huneker, James",1920,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/a4%2F8c%2F7f%2Fa48c7f974df34e81af59231b85679646%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-05-04,1926-05-10,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/huneker-egoists-book-supermen/,"Egoists, a Book of Supermen: Stendhal, Baudelaire, Flaubert, Anatole France, Huysmans, Barrès, Nietzsche, Blake, Ibsen, Stirner, and Ernest Hello",,"Huneker, James",1909,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/a4%2F8c%2F7f%2Fa48c7f974df34e81af59231b85679646%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-05-05,1926-05-11,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/strachey-books-characters-french/,"Books and Characters, French and English",,"Strachey, Giles Lytton",1922,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0a%2Ff4%2Ff6%2F0af4f6a926324bcbacea40ad3dc841a7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-05-05,1926-09-13,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,131,,,https://shakespeareandco.princeton.edu/books/nietzsche-thus-spake-zarathustra/,Thus Spake Zarathustra: A Book for All and None,,"Nietzsche, Friedrich",1883,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/a4%2F8c%2F7f%2Fa48c7f974df34e81af59231b85679646%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1926-05-05,1926-05-05,https://shakespeareandco.princeton.edu/members/yard/,Amy Yard,"Yard, Amy",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-05-06,1926-05-10,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/aiken-bring-bring-stories/,Bring! Bring! and Other Stories,,"Aiken, Conrad",1925,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/d9%2Fee%2F33%2Fd9ee33f241e044988aa183d4f24ccbc1%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1926-05-06,1926-06-06,https://shakespeareandco.princeton.edu/members/chadburn/,P. Chadburn,"Chadburn, P.",12.00,20.00,1 month,31,1,,1926-05-06,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1926-05-06,1926-06-06,https://shakespeareandco.princeton.edu/members/harrison-a/,A. Harrison,"Harrison, A.",15.00,,1 month,31,1,,1926-05-05,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1926-05-06,1926-05-06,https://shakespeareandco.princeton.edu/members/birkhoff/,Mrs. G. Birkhoff,"Birkhoff, Mrs. G.",,,,,,,,40.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-05-06,1926-05-19,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/jones-samuel-butler/,Samuel Butler,Vol. 1 To 1885,"Jones, Henry Festing",1920,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2F7d%2Fa5%2F237da592c8234d839140f8c72d672a9f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-05-06,1926-05-10,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/baring-half-minutes-silence/,Half a Minute's Silence,,"Baring, Maurice",1925,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/d9%2Fee%2F33%2Fd9ee33f241e044988aa183d4f24ccbc1%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1926-05-07,1926-06-07,https://shakespeareandco.princeton.edu/members/binder/,Pearl Binder,"Binder, Pearl",12.00,,1 month,31,1,Student,1926-04-26,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1926-05-07,1926-06-07,https://shakespeareandco.princeton.edu/members/cressman/,Luther Cressman,"Cressman, Luther",20.00,40.00,1 month,31,2,,1926-05-07,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-05-07,1926-05-10,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/scott-portrait-zelide/,The Portrait of ZΓ©lide,,"Scott, Geoffrey",1925,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/53%2F0d%2F85%2F530d85a179be47a3943814c914e80478%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-05-07,1926-05-17,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/brandes-main-currents-nineteenth/,Main Currents in Nineteenth Century Literature,,"Brandes, Georg",1905,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/53%2F0d%2F85%2F530d85a179be47a3943814c914e80478%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-05-07,1926-05-11,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/hurst-appassionata/,Appassionata,,"Hurst, Fannie",1926,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/ab%2F6f%2F33%2Fab6f33d3399e4473a5a02c98c6acc17b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-05-07,1926-06-07,https://shakespeareandco.princeton.edu/members/hargreaves-olga/,Olga Hargreaves,"Hargreaves, Olga",15.00,20.00,1 month,31,1,,1926-05-07,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-05-07,1926-05-10,https://shakespeareandco.princeton.edu/members/pottier-ph/,Ph. Pottier,"Pottier, Ph.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/keats-letters-john-keats/,Letters of John Keats,,"Keats, John",,"George Dillon borrowed volumes 1 and 2, and Stephen D. Tuttle borrowed volume 1 of *The Letters of John Keats,* edited by Maurice Buxton Forman (1931).",Lending Library Card,"Sylvia Beach, Ph. Pottier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac2188bc-d3fc-4d8c-99c5-985d61fb32c1/manifest,https://iiif.princeton.edu/loris/figgy_prod/8a%2Fde%2Fc9%2F8adec9c40e3646808fccc2e96f9a8c6f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-05-07,1926-05-11,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/mackenzie-fairy-gold/,Fairy Gold,,"Mackenzie, Compton",1926,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/ab%2F6f%2F33%2Fab6f33d3399e4473a5a02c98c6acc17b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-05-07,1926-06-07,https://shakespeareandco.princeton.edu/members/booth-helene/,Helene Booth,"Booth, Helene",15.00,20.00,1 month,31,1,,1926-05-07,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1926-05-08,1926-05-08,https://shakespeareandco.princeton.edu/members/carlaw-c-b/,C. B. Carlaw,"Carlaw, C. B.",,,,,,,,40.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-05-08,1926-05-15,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/conrad-rescue-romance-shallows/,The Rescue: A Romance of the Shallows,,"Conrad, Joseph",1920,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F89%2Fa4%2F5689a4b95685432aa62068f98b57b9df%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-05-10,1926-06-22,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,43,,,https://shakespeareandco.princeton.edu/books/dreiser-genius/,"The ""Genius""",,"Dreiser, Theodore",1915,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/32%2F11%2F44%2F3211445456604f26802be4ccce47b278%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-05-10,1926-05-14,https://shakespeareandco.princeton.edu/members/pottier-ph/,Ph. Pottier,"Pottier, Ph.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/bronte-wuthering-heights/,Wuthering Heights,,"BrontΓ«, Emily",1847,,Lending Library Card,"Sylvia Beach, Ph. Pottier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac2188bc-d3fc-4d8c-99c5-985d61fb32c1/manifest,https://iiif.princeton.edu/loris/figgy_prod/8a%2Fde%2Fc9%2F8adec9c40e3646808fccc2e96f9a8c6f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1926-05-10,1926-05-24,https://shakespeareandco.princeton.edu/members/colt/,Mary Colt,"Colt, Mary",7.50,,2 weeks,14,,,1926-05-10,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-05-10,1926-09-10,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,123,,,https://shakespeareandco.princeton.edu/books/turgenev-two-friends-stories/,The Two Friends and Other Stories,,"Turgenev, Ivan",1921,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/a4%2F8c%2F7f%2Fa48c7f974df34e81af59231b85679646%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1926-05-10,1926-06-10,https://shakespeareandco.princeton.edu/members/gibson-r-p/,R. P. Gibson,"Gibson, R. P.",15.00,50.00,1 month,31,1,,1926-05-10,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-05-10,1926-11-02,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,176,,,https://shakespeareandco.princeton.edu/books/turgenev-knock-knock-knock/,Knock Knock Knock and Other Stories,,"Turgenev, Ivan",1922,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/a4%2F8c%2F7f%2Fa48c7f974df34e81af59231b85679646%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-05-10,1926-09-10,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,123,,,https://shakespeareandco.princeton.edu/books/turgenev-eve/,On the Eve,,"Turgenev, Ivan",1895,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/a4%2F8c%2F7f%2Fa48c7f974df34e81af59231b85679646%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-05-10,1926-05-25,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/obrien-best-short-stories-1925/,The Best Short Stories of 1925: And the Yearbook of the American Short Story,,,1926,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/d9%2Fee%2F33%2Fd9ee33f241e044988aa183d4f24ccbc1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-05-10,1926-06-24,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,45,,,https://shakespeareandco.princeton.edu/books/lawrence-plumed-serpent/,The Plumed Serpent,,"Lawrence, D. H.",1926,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/d9%2Fee%2F33%2Fd9ee33f241e044988aa183d4f24ccbc1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-05-11,1926-05-14,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/glaspell-fidelity/,Fidelity: A Novel,,"Glaspell, Susan",1915,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0a%2Ff4%2Ff6%2F0af4f6a926324bcbacea40ad3dc841a7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1926-05-11,1926-06-11,https://shakespeareandco.princeton.edu/members/smith-l-2/,L. Smith,"Smith, L.",15.00,,1 month,31,1,,1926-05-11,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1926-05-12,1926-06-12,https://shakespeareandco.princeton.edu/members/edge-margaret/,Margaret Edge,"Edge, Margaret",20.00,,1 month,31,2,,1926-04-28,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-05-12,1926-05-20,https://shakespeareandco.princeton.edu/members/rieder/,M. Rieder,"Rieder, M.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/woolf-jacobs-room/,Jacob's Room,,"Woolf, Virginia",1922,,Lending Library Card,"Sylvia Beach, Rieder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/559c8919-8881-40ad-b027-67dbf1b23611/manifest,https://iiif.princeton.edu/loris/figgy_prod/e8%2F10%2F7c%2Fe8107c2c950f411d8ceeb6bb8bdc01c7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-05-14,1926-06-14,https://shakespeareandco.princeton.edu/members/cowles/,Michail Cowles,"Cowles, Michail",12.00,50.00,1 month,31,1,Student,1926-05-14,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-05-14,1926-05-17,https://shakespeareandco.princeton.edu/members/pottier-ph/,Ph. Pottier,"Pottier, Ph.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/carlyle-love-letters-thomas/,The Love Letters of Thomas Carlyle and Jane Welsh,Vol. 1,"Carlyle, Thomas;Carlyle, Jane Welsh",1909,,Lending Library Card,"Sylvia Beach, Ph. Pottier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac2188bc-d3fc-4d8c-99c5-985d61fb32c1/manifest,https://iiif.princeton.edu/loris/figgy_prod/8a%2Fde%2Fc9%2F8adec9c40e3646808fccc2e96f9a8c6f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-05-14,1926-09-13,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,122,,,https://shakespeareandco.princeton.edu/books/russell-problems-philosophy/,The Problems of Philosophy,,"Russell, Bertrand",1912,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/a4%2F8c%2F7f%2Fa48c7f974df34e81af59231b85679646%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-05-14,1926-05-15,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/low-wireless-possibilities/,Wireless Possibilities,,"Low, A. M.",1924,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/37%2F63%2Fee%2F3763eef8329c491da536c985612d8be5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-05-14,1926-05-22,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/hurst-appassionata/,Appassionata,,"Hurst, Fannie",1926,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0a%2Ff4%2Ff6%2F0af4f6a926324bcbacea40ad3dc841a7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-05-15,1926-06-15,https://shakespeareandco.princeton.edu/members/butler-m/,Mary Butler,"Butler, Mary",20.00,50.00,1 month,31,2,,1926-05-15,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-05-15,1926-05-19,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/woolf-common-reader/,The Common Reader,,"Woolf, Virginia",1925,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/37%2F63%2Fee%2F3763eef8329c491da536c985612d8be5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-05-15,1926-06-15,https://shakespeareandco.princeton.edu/members/henton-2/,Miss Henton,"Henton, Miss",15.00,20.00,1 month,31,1,,1926-05-15,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1926-05-15,1926-06-15,https://shakespeareandco.princeton.edu/members/henton-l/;https://shakespeareandco.princeton.edu/members/henton/,L. Henton;Mrs. Henton,"Henton, L.;Henton, Mrs.",20.00,,1 month,31,2,,1926-05-15,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-05-15,1926-06-09,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,25,,,https://shakespeareandco.princeton.edu/books/james-awkward-age/,The Awkward Age,,"James, Henry",1899,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F89%2Fa4%2F5689a4b95685432aa62068f98b57b9df%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-05-17,1926-05-27,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/conrad-suspense/,Suspense,,"Conrad, Joseph",1923,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/4d%2F1e%2Fd8%2F4d1ed879bf4f4dc981cf57b20eb3c596%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-05-17,1926-06-17,https://shakespeareandco.princeton.edu/members/shan-ph/,Ph. Shan,"Shan, Ph.",15.00,50.00,1 month,31,1,,1926-05-17,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-05-17,1926-05-27,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/miro-figures-passion-lord/,Figures of the Passion of Our Lord,,"MirΓ³, Gabriel",1924,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/4d%2F1e%2Fd8%2F4d1ed879bf4f4dc981cf57b20eb3c596%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-05-17,1926-05-27,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/mencken-american-mercury/,The American Mercury,,,,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/4d%2F1e%2Fd8%2F4d1ed879bf4f4dc981cf57b20eb3c596%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-05-17,1926-07-05,https://shakespeareandco.princeton.edu/members/shaw-m-r-b/,Margaret RenΓ©e Bryers Shaw / Miss M. R. B. Shaw,"Shaw, Margaret RenΓ©e Bryers",,,,,,,,,Returned,49,,,https://shakespeareandco.princeton.edu/books/murry-pencillings-little-essays/,Pencillings: Little Essays on Literature,,"Murry, John Middleton",1923,,Lending Library Card,"Sylvia Beach, Margaret Shaw Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8e3a0ba0-8458-4cc4-a486-5ad2657c1d18/manifest,https://iiif.princeton.edu/loris/figgy_prod/37%2F10%2F15%2F3710156f1d05470fa074e7eba85ebfed%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-05-17,1926-05-17,https://shakespeareandco.princeton.edu/members/fowler-cicely/,Cicely Fowler,"Fowler, Cicely",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-05-18,1926-06-01,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/forster-passage-india/,A Passage to India,,"Forster, E. M.",1924,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/e7%2F19%2Fa3%2Fe719a35912c145d284a46291686ad651%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-05-18,1926-06-01,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/tagore-red-oleanders/,Red Oleanders: A Drama in One Act,,"Tagore, Rabindranath",1925,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/e7%2F19%2Fa3%2Fe719a35912c145d284a46291686ad651%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1926-05-18,1926-05-18,https://shakespeareandco.princeton.edu/members/proix/,Troise Proix,"Proix, Troise",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1926-05-18,1926-05-18,https://shakespeareandco.princeton.edu/members/goetz-glenn/,Glenn Goetz,"Goetz, Glenn",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-05-19,1926-06-02,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/migration-symbols/,The Migration of Symbols,,,,Unidentified. Goblet d'Alviella's *The Migration of Symbols* (1894) or Donald Mackenzie's *The Migration of Symbols and Their Relations to Beliefs and Customs* (1926).,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/37%2F63%2Fee%2F3763eef8329c491da536c985612d8be5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-05-19,,https://shakespeareandco.princeton.edu/members/borole/,Mrs. L. Bowie,"Bowie, Mrs. L.",20.00,100.00,,,,,1926-05-19,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-05-19,,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/jones-samuel-butler/,Samuel Butler,Vol. 2 From 1885 β 1916,"Jones, Henry Festing",1920,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2F7d%2Fa5%2F237da592c8234d839140f8c72d672a9f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-05-20,1926-05-20,https://shakespeareandco.princeton.edu/members/evans-olga/,Olga Evans,"Evans, Olga",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1926-05-20,1926-11-20,https://shakespeareandco.princeton.edu/members/falla-frederick/,Frederick G. Falla,"Falla, Frederick G.",85.00,100.00,6 months,184,2,,1926-05-20,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-05-20,1926-05-26,https://shakespeareandco.princeton.edu/members/rieder/,M. Rieder,"Rieder, M.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/williams-spring/,Spring and All,,"Williams, William Carlos",1923,,Lending Library Card,"Sylvia Beach, Rieder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/559c8919-8881-40ad-b027-67dbf1b23611/manifest,https://iiif.princeton.edu/loris/figgy_prod/e8%2F10%2F7c%2Fe8107c2c950f411d8ceeb6bb8bdc01c7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-05-21,1926-06-21,https://shakespeareandco.princeton.edu/members/thayer-woodbridge/,Mrs. Woodbridge Thayer,"Thayer, Mrs. Woodbridge",20.00,100.00,1 month,31,2,,1926-05-21,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Mrs. Woodbridge Thayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/89f16bc3-5888-44a7-8405-e3f6b3de1072/manifest,;https://iiif.princeton.edu/loris/figgy_prod/cf%2Fbe%2F45%2Fcfbe4506f5134a9ebe1ca73df3bc0c53%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1926-05-21,1926-08-21,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",40.00,,3 months,92,2,,1926-07-01,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,;https://iiif-cloud.princeton.edu/iiif/2/34%2F63%2Fef%2F3463efdf87f94472a29bed492f604a45%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-05-21,1926-06-03,https://shakespeareandco.princeton.edu/members/schirmer/,Mabel Schirmer / Mrs. Robert Schirmer,"Schirmer, Mabel",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/pater-appreciations-essay-style/,Appreciations: With an Essay on Style,,"Pater, Walter",1889,,Lending Library Card,"Sylvia Beach, Mabel Schirmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4c00d0b2-7cb9-46e1-b628-2eac6ac7bb07/manifest,https://iiif-cloud.princeton.edu/iiif/2/d7%2F7c%2Fd2%2Fd77cd2a970254fe8a0d998bb9dc42a9f%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-05-21,1926-05-25,https://shakespeareandco.princeton.edu/members/thayer-woodbridge/,Mrs. Woodbridge Thayer,"Thayer, Mrs. Woodbridge",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/borden-jericho-sands/,Jericho Sands,,"Borden, Mary",1925,,Lending Library Card,"Sylvia Beach, Mrs. Woodbridge Thayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/89f16bc3-5888-44a7-8405-e3f6b3de1072/manifest,https://iiif.princeton.edu/loris/figgy_prod/cf%2Fbe%2F45%2Fcfbe4506f5134a9ebe1ca73df3bc0c53%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-05-21,1926-07-05,https://shakespeareandco.princeton.edu/members/schirmer/,Mabel Schirmer / Mrs. Robert Schirmer,"Schirmer, Mabel",,,,,,,,,Unknown,45,,,https://shakespeareandco.princeton.edu/books/beer-stephen-crane-study/,Stephen Crane: A Study in American Letters,,"Beer, Thomas",1924,,Lending Library Card;Lending Library Card,"Sylvia Beach, Mabel Schirmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Mabel Schirmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4c00d0b2-7cb9-46e1-b628-2eac6ac7bb07/manifest;https://figgy.princeton.edu/concern/scanned_resources/4c00d0b2-7cb9-46e1-b628-2eac6ac7bb07/manifest,https://iiif-cloud.princeton.edu/iiif/2/d7%2F7c%2Fd2%2Fd77cd2a970254fe8a0d998bb9dc42a9f%2Fintermediate_file/full/full/0/default.jpg;https://iiif-cloud.princeton.edu/iiif/2/5c%2F65%2F2f%2F5c652f21fd1c4c13ae7e4c0e1503b895%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1926-05-21,1926-06-21,https://shakespeareandco.princeton.edu/members/birch-betty/,Betty Birch,"Birch, Betty",20.00,50.00,1 month,31,2,,1926-05-21,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1926-05-21,1926-05-21,https://shakespeareandco.princeton.edu/members/mcdonald-emma/,Emma McDonald,"McDonald, Emma",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-05-21,,https://shakespeareandco.princeton.edu/members/schirmer/,Mabel Schirmer / Mrs. Robert Schirmer,"Schirmer, Mabel",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/douglas-old-calabria/,Old Calabria,,"Douglas, Norman",1915,,Lending Library Card,"Sylvia Beach, Mabel Schirmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4c00d0b2-7cb9-46e1-b628-2eac6ac7bb07/manifest,https://iiif-cloud.princeton.edu/iiif/2/d7%2F7c%2Fd2%2Fd77cd2a970254fe8a0d998bb9dc42a9f%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-05-21,1926-05-25,https://shakespeareandco.princeton.edu/members/thayer-woodbridge/,Mrs. Woodbridge Thayer,"Thayer, Mrs. Woodbridge",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/marriott-isle-dead-ships/,The Isle of Dead Ships,,"Marriott, Crittenden",1909,,Lending Library Card,"Sylvia Beach, Mrs. Woodbridge Thayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/89f16bc3-5888-44a7-8405-e3f6b3de1072/manifest,https://iiif.princeton.edu/loris/figgy_prod/cf%2Fbe%2F45%2Fcfbe4506f5134a9ebe1ca73df3bc0c53%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-05-22,1926-05-28,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/powys-ducdame/,Ducdame,,"Powys, John Cowper",1925,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0a%2Ff4%2Ff6%2F0af4f6a926324bcbacea40ad3dc841a7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-05-22,1926-05-22,https://shakespeareandco.princeton.edu/members/bennett-gwendolyn/,Gwendolyn Bennett,"Bennett, Gwendolyn",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-05-22,1926-07-01,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,40,,,https://shakespeareandco.princeton.edu/books/gorgolini-fascist-movement-italy/,The Fascist Movement in Italian Life,,"Gorgolini, Pietro",1923,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/d9%2Fee%2F33%2Fd9ee33f241e044988aa183d4f24ccbc1%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1926-05-22,1926-05-22,https://shakespeareandco.princeton.edu/members/pottier-ph/,Ph. Pottier,"Pottier, Ph.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1926-05-22,1926-06-22,https://shakespeareandco.princeton.edu/members/armand/,Jeanne Armand,"Armand, Jeanne",20.00,,1 month,31,2,,1926-05-22,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-05-22,1926-05-25,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/turquet-milnes-pascal-proust-studies/,From Pascal to Proust: Studies in the Genealogy of a Philosophy,,"Turquet-Milnes, Gladys Rosaleen",1926,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/d9%2Fee%2F33%2Fd9ee33f241e044988aa183d4f24ccbc1%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1926-05-23,1926-11-23,https://shakespeareandco.princeton.edu/members/davies-6/,Mrs. G. Davies,"Davies, Mrs. G.",85.00,,6 months,184,2,,1926-05-21,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1926-05-24,1926-06-24,https://shakespeareandco.princeton.edu/members/carlisle-hollis-moore/,Hollis Moore Carlisle,"Carlisle, Hollis Moore",20.00,,1 month,31,2,,1926-05-18,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1926-05-25,1926-05-25,https://shakespeareandco.princeton.edu/members/unnamed-member-13/,M. [unnamed member],"[unnamed member], M.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-05-25,1926-05-29,https://shakespeareandco.princeton.edu/members/thayer-woodbridge/,Mrs. Woodbridge Thayer,"Thayer, Mrs. Woodbridge",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/proust-swanns-way/,Swann's Way (Γ la recherche du temps perdu 1),2 vols.,"Proust, Marcel",1922,,Lending Library Card,"Sylvia Beach, Mrs. Woodbridge Thayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/89f16bc3-5888-44a7-8405-e3f6b3de1072/manifest,https://iiif.princeton.edu/loris/figgy_prod/cf%2Fbe%2F45%2Fcfbe4506f5134a9ebe1ca73df3bc0c53%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-05-25,1926-08-25,https://shakespeareandco.princeton.edu/members/de-larnage/,Vicomtesse de Larnage,"de Larnage, Vicomtesse",40.00,,3 months,92,1,,1926-05-25,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1926-05-25,1926-05-25,https://shakespeareandco.princeton.edu/members/carlisle-hollis-moore/,Hollis Moore Carlisle,"Carlisle, Hollis Moore",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-05-25,1926-05-27,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/ocasey-plough-stars/,The Plough and the Stars,,"O'Casey, Sean",1926,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/d9%2Fee%2F33%2Fd9ee33f241e044988aa183d4f24ccbc1%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1926-05-26,1926-05-26,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1926-05-26,,https://shakespeareandco.princeton.edu/members/kendall-alison/,Alison Kendall,"Kendall, Alison",,,,,,,1926-05-26,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-05-27,1926-06-27,https://shakespeareandco.princeton.edu/members/rogers-charles/,Charles Rogers,"Rogers, Charles",15.00,50.00,1 month,31,1,,1926-05-27,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Charles Rogers Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/b3aeeed1-00bf-4b07-bf46-316cdc31fd59/manifest,;https://iiif.princeton.edu/loris/figgy_prod/7b%2Ffd%2Fb9%2F7bfdb9271a374c398644c17d9466b1f8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1926-05-27,1926-06-27,https://shakespeareandco.princeton.edu/members/stewart-m/,M. Stewart,"Stewart, M.",7.50,,1 month,31,,,1926-05-14,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1926-05-27,1926-06-27,https://shakespeareandco.princeton.edu/members/auerbach-g/,G. Auerbach,"Auerbach, G.",15.00,50.00,1 month,31,1,,1926-05-27,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-05-27,1926-05-31,https://shakespeareandco.princeton.edu/members/rogers-charles/,Charles Rogers,"Rogers, Charles",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/strindberg-confession-fool/,The Confession of a Fool,,"Strindberg, August",1912,,Lending Library Card,"Sylvia Beach, Charles Rogers Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b3aeeed1-00bf-4b07-bf46-316cdc31fd59/manifest,https://iiif.princeton.edu/loris/figgy_prod/7b%2Ffd%2Fb9%2F7bfdb9271a374c398644c17d9466b1f8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-05-28,1926-05-28,https://shakespeareandco.princeton.edu/members/marcel-gabriel/,Gabriel Marcel,"Marcel, Gabriel",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1926-05-28,1926-06-28,https://shakespeareandco.princeton.edu/members/shaw-m-r-b/,Margaret RenΓ©e Bryers Shaw / Miss M. R. B. Shaw,"Shaw, Margaret RenΓ©e Bryers",12.00,,1 month,31,1,,1926-07-05,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Margaret Shaw Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/8e3a0ba0-8458-4cc4-a486-5ad2657c1d18/manifest,;https://iiif.princeton.edu/loris/figgy_prod/37%2F10%2F15%2F3710156f1d05470fa074e7eba85ebfed%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-05-28,1926-06-04,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/wren-beau-geste/,Beau Geste,,"Wren, Percival Christopher",1925,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0a%2Ff4%2Ff6%2F0af4f6a926324bcbacea40ad3dc841a7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-05-28,1926-05-28,https://shakespeareandco.princeton.edu/members/cowles/,Michail Cowles,"Cowles, Michail",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1926-05-29,1926-06-29,https://shakespeareandco.princeton.edu/members/medley-p/,P. Medley,"Medley, P.",16.00,100.00,1 month,31,2,Student,1926-05-29,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-05-29,1926-05-31,https://shakespeareandco.princeton.edu/members/thayer-woodbridge/,Mrs. Woodbridge Thayer,"Thayer, Mrs. Woodbridge",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/erskine-private-life-helen/,The Private Life of Helen of Troy,,"Erskine, John",1925,,Lending Library Card,"Sylvia Beach, Mrs. Woodbridge Thayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/89f16bc3-5888-44a7-8405-e3f6b3de1072/manifest,https://iiif.princeton.edu/loris/figgy_prod/cf%2Fbe%2F45%2Fcfbe4506f5134a9ebe1ca73df3bc0c53%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-05-29,1926-06-01,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/cullen-color/,Color,,"Cullen, Countee",1925,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/d9%2Fee%2F33%2Fd9ee33f241e044988aa183d4f24ccbc1%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1926-05-29,1926-05-29,https://shakespeareandco.princeton.edu/members/chapman-emerson/,Emerson Chapman,"Chapman, Emerson",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-05-31,1926-06-04,https://shakespeareandco.princeton.edu/members/rogers-charles/,Charles Rogers,"Rogers, Charles",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/strachey-madonna-barricades-memoirs/,"The Madonna of the Barricades, Being the Memoirs of George, Lord Chertsey, 1847 β 1848",,"Strachey, John St. Loe",1925,,Lending Library Card,"Sylvia Beach, Charles Rogers Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b3aeeed1-00bf-4b07-bf46-316cdc31fd59/manifest,https://iiif.princeton.edu/loris/figgy_prod/7b%2Ffd%2Fb9%2F7bfdb9271a374c398644c17d9466b1f8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-05-31,1926-05-31,https://shakespeareandco.princeton.edu/members/bell/,H. B. Bell,"Bell, H. B.",,,,,,,,40.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1926-05-31,1926-05-31,https://shakespeareandco.princeton.edu/members/thayer-woodbridge/,Mrs. Woodbridge Thayer,"Thayer, Mrs. Woodbridge",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1926-05-31,1926-05-31,https://shakespeareandco.princeton.edu/members/fenner-mary/,Mary Fenner,"Fenner, Mary",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1926-05-31,1926-06-30,https://shakespeareandco.princeton.edu/members/dorr/,Mrs. H. Dorr,"Dorr, Mrs. H.",15.00,50.00,1 month,30,1,,1926-05-31,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-06-01,1926-06-08,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/keyserling-travel-diary-philosopher/,The Travel Diary of a Philosopher,,"Keyserling, Hermann von",1919,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/e7%2F19%2Fa3%2Fe719a35912c145d284a46291686ad651%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1926-06-01,1926-07-01,https://shakespeareandco.princeton.edu/members/sarraute/,Nathalie Sarraute,"Sarraute, Nathalie",12.00,,1 month,30,1,Student,1926-06-05,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Natalie Sarraute Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/ff1c2d0c-c9f8-4569-90e2-fee6c4529355/manifest,;https://iiif-cloud.princeton.edu/iiif/2/8f%2F8a%2F42%2F8f8a4249e0e748909a3352a6cd41b384%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-06-01,1926-06-08,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/ocasey-two-plays/,Two Plays,,"O'Casey, Sean",1925,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/e7%2F19%2Fa3%2Fe719a35912c145d284a46291686ad651%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1926-06-02,1926-06-02,https://shakespeareandco.princeton.edu/members/de-la-niece-charles/,Charles de la Niece,"de la Niece, Charles",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1926-06-02,1926-07-02,https://shakespeareandco.princeton.edu/members/hatch-olive/,Olive Hatch,"Hatch, Olive",15.00,50.00,1 month,30,1,,1926-06-02,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-06-02,1926-07-02,https://shakespeareandco.princeton.edu/members/gorringe-k/,K. Gorringe,"Gorringe, K.",20.00,100.00,1 month,30,2,,1926-06-02,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1926-06-02,1926-06-02,https://shakespeareandco.princeton.edu/members/nouveau-mlle/,Mlle Nouveau,"Nouveau, Mlle",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1926-06-02,1926-07-02,https://shakespeareandco.princeton.edu/members/gibney-s/,S. Gibney,"Gibney, S.",15.00,,1 month,30,1,,1926-05-29,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-06-02,1926-06-03,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/frank-virgin-spain/,Virgin Spain,,"Frank, Waldo",1926,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/37%2F63%2Fee%2F3763eef8329c491da536c985612d8be5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-06-02,1926-09-02,https://shakespeareandco.princeton.edu/members/fleurot-george/,George Fleurot,"Fleurot, George",82.50,,3 months,92,3,,1926-06-02,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1926-06-02,1926-09-02,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",50.00,,3 months,92,2,,1926-06-10,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,;https://iiif.princeton.edu/loris/figgy_prod/37%2F63%2Fee%2F3763eef8329c491da536c985612d8be5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1926-06-03,1926-07-03,https://shakespeareandco.princeton.edu/members/gaskell-leonard/,Leonard Gaskell,"Gaskell, Leonard",15.00,,1 month,30,1,,1926-05-29,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1926-06-03,1926-07-03,https://shakespeareandco.princeton.edu/members/latrilhe-miss/,Miss Latrilhe,"Latrilhe, Miss",12.00,20.00,1 month,30,1,,1926-05-20,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-06-03,1926-06-05,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/edgar-allan-poe/,Edgar Allan Poe,,,,Unidentified. By or about Edgar Allan Poe.,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/37%2F63%2Fee%2F3763eef8329c491da536c985612d8be5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-06-04,1926-06-04,https://shakespeareandco.princeton.edu/members/ives-john/,John Ives,"Ives, John",,,,,,,,40.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-06-04,1926-06-07,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/gibbs-reckless-lady/,The Reckless Lady,,"Gibbs, Philip",1924,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0a%2Ff4%2Ff6%2F0af4f6a926324bcbacea40ad3dc841a7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-06-04,1926-12-04,https://shakespeareandco.princeton.edu/members/ludlow-brown/,Miss Ludlow Brown,"Ludlow Brown, Miss",85.00,100.00,6 months,183,2,,1926-06-04,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-06-04,1926-07-04,https://shakespeareandco.princeton.edu/members/young-2/,Miss Young,"Young, Miss",,100.00,1 month,30,2,,1926-06-04,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-06-04,1926-06-09,https://shakespeareandco.princeton.edu/members/rogers-charles/,Charles Rogers,"Rogers, Charles",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/anderson-dark-laughter/,Dark Laughter,,"Anderson, Sherwood",1926,,Lending Library Card,"Sylvia Beach, Charles Rogers Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b3aeeed1-00bf-4b07-bf46-316cdc31fd59/manifest,https://iiif.princeton.edu/loris/figgy_prod/7b%2Ffd%2Fb9%2F7bfdb9271a374c398644c17d9466b1f8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1926-06-05,1926-07-05,https://shakespeareandco.princeton.edu/members/camescasse/,Pierre Camescasse / Camecarre,"Camescasse, Pierre",15.00,,1 month,30,1,,1926-05-27,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1926-06-05,1926-07-05,https://shakespeareandco.princeton.edu/members/ames-h-j/,H. J. Ames,"Ames, H. J.",16.00,100.00,1 month,30,2,Student,1926-06-05,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1926-06-05,1926-06-05,https://shakespeareandco.princeton.edu/members/jawschitz-rachel/,Rachel Jawschitz,"Jawschitz, Rachel",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-06-05,1926-06-09,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/davies-later-days/,Later Days,,"Davies, W. H.",1925,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/37%2F63%2Fee%2F3763eef8329c491da536c985612d8be5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-06-05,1926-07-05,https://shakespeareandco.princeton.edu/members/barroux/,R. Barroux,"Barroux, R.",12.00,50.00,1 month,30,1,Student,1926-06-05,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1926-06-06,1926-07-06,https://shakespeareandco.princeton.edu/members/kristufkova/,Mlle Kristufkova,"Kristufkova, Mlle",12.00,,1 month,30,1,Student,1926-06-05,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-06-07,1926-06-24,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/gosse-coventry-patmore/,Coventry Patmore,,"Gosse, Edmund",1905,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2F7d%2Fa5%2F237da592c8234d839140f8c72d672a9f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-06-07,1926-06-07,https://shakespeareandco.princeton.edu/members/hargreaves-olga/,Olga Hargreaves,"Hargreaves, Olga",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1926-06-07,1926-06-07,https://shakespeareandco.princeton.edu/members/cressman/,Luther Cressman,"Cressman, Luther",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1926-06-07,1926-06-07,https://shakespeareandco.princeton.edu/members/chadburn/,P. Chadburn,"Chadburn, P.",,,,,,,,70.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1926-06-07,1926-06-07,https://shakespeareandco.princeton.edu/members/chapman-4/,Josephine Chapman,"Chapman, Josephine",,,,,,,,40.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-06-07,1926-06-09,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/beresford-monkey-puzzle/,The Monkey-Puzzle,,"Beresford, J. D.",1925,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0a%2Ff4%2Ff6%2F0af4f6a926324bcbacea40ad3dc841a7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-06-08,1926-06-23,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/lewis-babbitt/,Babbitt,,"Lewis, Sinclair",1922,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/e7%2F19%2Fa3%2Fe719a35912c145d284a46291686ad651%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1926-06-08,1926-06-08,https://shakespeareandco.princeton.edu/members/booth-helene/,Helene Booth,"Booth, Helene",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-06-08,1926-06-25,https://shakespeareandco.princeton.edu/members/valerio/,Mlle Valerio,"Valerio, Mlle",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/fay-original-letters-india/,Original Letters from India (1779 β 1815),,"Fay, Eliza",1925,,Lending Library Card,"Sylvia Beach, Mlle ValΓ©rio Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e87416b2-3502-40ac-8cb0-617f7d87d146/manifest,https://iiif-cloud.princeton.edu/iiif/2/e7%2F19%2Fa3%2Fe719a35912c145d284a46291686ad651%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-06-09,1926-06-16,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/fitzgerald-sad-young-men/,All the Sad Young Men,,"Fitzgerald, F. Scott",1926,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/7d%2F04%2Fa5%2F7d04a546bbe54bbc84c266363ef1a61c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-06-09,1926-09-27,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,110,,,https://shakespeareandco.princeton.edu/books/james-pragmatism-new-name/,Pragmatism: A New Name for Some Old Ways of Thinking; Popular Lectures on Philosophy,,"James, William",1907,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F89%2Fa4%2F5689a4b95685432aa62068f98b57b9df%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-06-09,1926-06-30,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/meredith-diana-crossways/,Diana of the Crossways,,"Meredith, George",1885,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F89%2Fa4%2F5689a4b95685432aa62068f98b57b9df%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-06-09,1926-06-10,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/vaerting-dominant-sex-study/,The Dominant Sex: A Study in the Sociology of Sex Differentiation,,"Vaerting, Mathilde;Vaerting, Mathias",1923,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/37%2F63%2Fee%2F3763eef8329c491da536c985612d8be5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-06-09,1926-07-09,https://shakespeareandco.princeton.edu/members/clavier-andre/,AndrΓ© Clavier,"Clavier, AndrΓ©",12.00,50.00,1 month,30,1,AdL,1926-06-09,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-06-09,1926-06-11,https://shakespeareandco.princeton.edu/members/rogers-charles/,Charles Rogers,"Rogers, Charles",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/de-gobineau-lucky-prisoner/,The Lucky Prisoner,,"de Gobineau, Arthur",1926,,Lending Library Card,"Sylvia Beach, Charles Rogers Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b3aeeed1-00bf-4b07-bf46-316cdc31fd59/manifest,https://iiif.princeton.edu/loris/figgy_prod/7b%2Ffd%2Fb9%2F7bfdb9271a374c398644c17d9466b1f8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-06-09,1926-06-09,https://shakespeareandco.princeton.edu/members/dorr/,Mrs. H. Dorr,"Dorr, Mrs. H.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-06-10,1926-06-28,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/lawrence-sons-lovers/,Sons and Lovers,,"Lawrence, D. H.",1913,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/dc%2F94%2Ffd%2Fdc94fda0cd9c4ae195f988f5a500f00f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-06-10,1926-06-15,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/lewis-art-ruled/,The Art of Being Ruled,,"Lewis, Wyndham",1926,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/37%2F63%2Fee%2F3763eef8329c491da536c985612d8be5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-06-10,1926-07-10,https://shakespeareandco.princeton.edu/members/arndt/,J. Arndt,"Arndt, J.",15.00,50.00,1 month,30,1,,1926-06-10,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1926-06-11,1927-06-11,https://shakespeareandco.princeton.edu/members/burt-maud/,Maud Burt,"Burt, Maud",120.00,,1 year,365,2,,1926-06-26,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-06-11,1926-06-22,https://shakespeareandco.princeton.edu/members/rogers-charles/,Charles Rogers,"Rogers, Charles",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/gibbs-reckless-lady/,The Reckless Lady,,"Gibbs, Philip",1924,,Lending Library Card,"Sylvia Beach, Charles Rogers Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b3aeeed1-00bf-4b07-bf46-316cdc31fd59/manifest,https://iiif.princeton.edu/loris/figgy_prod/7b%2Ffd%2Fb9%2F7bfdb9271a374c398644c17d9466b1f8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Separate Payment,1926-06-11,1926-06-11,https://shakespeareandco.princeton.edu/members/young-2/,Miss Young,"Young, Miss",,100.00,,,,,1926-06-11,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1926-06-11,1926-06-11,https://shakespeareandco.princeton.edu/members/gorringe-k/,K. Gorringe,"Gorringe, K.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-06-12,1926-07-12,https://shakespeareandco.princeton.edu/members/mcgee/,Mrs. McGee,"McGee, Mrs.",20.00,100.00,1 month,30,2,,1926-06-12,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1926-06-15,1926-07-15,https://shakespeareandco.princeton.edu/members/henton-l/;https://shakespeareandco.princeton.edu/members/henton/,L. Henton;Mrs. Henton,"Henton, L.;Henton, Mrs.",20.00,,1 month,30,2,,1926-05-31,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-06-16,1926-06-19,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/mckenna-oldest-god/,The Oldest God,,"McKenna, Stephen",1926,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/7d%2F04%2Fa5%2F7d04a546bbe54bbc84c266363ef1a61c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-06-16,1926-06-16,https://shakespeareandco.princeton.edu/members/carlisle-hollis-moore/,Hollis Moore Carlisle,"Carlisle, Hollis Moore",,,,,,,,40.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1926-06-16,1926-06-16,https://shakespeareandco.princeton.edu/members/gibson-r-p/,R. P. Gibson,"Gibson, R. P.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1926-06-17,1926-06-17,https://shakespeareandco.princeton.edu/members/henton-l/;https://shakespeareandco.princeton.edu/members/henton/,L. Henton;Mrs. Henton,"Henton, L.;Henton, Mrs.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-06-19,1926-06-24,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/hamblin-school-paris/,The School of Paris,,"Hamblin, Robert A.",1925,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/7d%2F04%2Fa5%2F7d04a546bbe54bbc84c266363ef1a61c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1926-06-21,1926-07-21,https://shakespeareandco.princeton.edu/members/thayer-woodbridge/,Mrs. Woodbridge Thayer,"Thayer, Mrs. Woodbridge",15.00,,1 month,30,1,,1926-06-07,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-06-21,1926-06-26,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/tarkington-women/,Women,,"Tarkington, Booth",1925,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/7d%2F04%2Fa5%2F7d04a546bbe54bbc84c266363ef1a61c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1926-06-21,1926-07-21,https://shakespeareandco.princeton.edu/members/gibbons-12/,Miss Gibbons,"Gibbons, Miss",15.00,,1 month,30,1,,1926-06-21,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1926-06-22,1926-06-22,https://shakespeareandco.princeton.edu/members/latrilhe-miss/,Miss Latrilhe,"Latrilhe, Miss",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1926-06-22,1926-07-22,https://shakespeareandco.princeton.edu/members/britton/,Mr. Britton,"Britton, Mr.",15.00,50.00,1 month,30,1,,1926-06-22,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1926-06-22,1926-06-22,https://shakespeareandco.princeton.edu/members/rogers-charles/,Charles Rogers,"Rogers, Charles",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-06-22,1926-07-16,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,24,,,https://shakespeareandco.princeton.edu/books/swinnerton-elder-sister/,The Elder Sister,,"Swinnerton, Frank",1925,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/32%2F11%2F44%2F3211445456604f26802be4ccce47b278%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-06-24,1926-07-02,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/hypatia/,Hypatia,,,,"Unidentified. Dora Russellβs *Hypatia: Or, Woman and Knowledge* (1925) or Charles Kingsley's *Hypatia: Or, New Foes with an Old Face* (1925).",Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/37%2F63%2Fee%2F3763eef8329c491da536c985612d8be5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-06-24,1926-07-24,https://shakespeareandco.princeton.edu/members/johnson-j-r/,J. R. Johnson,"Johnson, J. R.",16.00,100.00,1 month,30,2,Student,1926-06-24,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-06-24,1926-07-01,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/garnett-sailors-return/,The Sailor's Return,,"Garnett, David",1925,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/d9%2Fee%2F33%2Fd9ee33f241e044988aa183d4f24ccbc1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-06-24,1926-07-03,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/anderson-triumph-egg/,The Triumph of the Egg,,"Anderson, Sherwood",1921,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2F7d%2Fa5%2F237da592c8234d839140f8c72d672a9f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1926-06-24,1926-07-24,https://shakespeareandco.princeton.edu/members/pottier-ph/,Ph. Pottier,"Pottier, Ph.",15.00,50.00,1 month,30,1,,1926-06-24,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Ph. Pottier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/ac2188bc-d3fc-4d8c-99c5-985d61fb32c1/manifest,;https://iiif.princeton.edu/loris/figgy_prod/8a%2Fde%2Fc9%2F8adec9c40e3646808fccc2e96f9a8c6f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-06-24,1926-07-01,https://shakespeareandco.princeton.edu/members/pottier-ph/,Ph. Pottier,"Pottier, Ph.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/morley-thunder-left/,Thunder on the Left,,"Morley, Christopher",1925,,Lending Library Card,"Sylvia Beach, Ph. Pottier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac2188bc-d3fc-4d8c-99c5-985d61fb32c1/manifest,https://iiif.princeton.edu/loris/figgy_prod/8a%2Fde%2Fc9%2F8adec9c40e3646808fccc2e96f9a8c6f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-06-24,1926-07-24,https://shakespeareandco.princeton.edu/members/de-lappe-w-r/,W. R. de Lappe,"de Lappe, W. R.",15.00,50.00,1 month,30,1,,1926-06-24,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-06-24,1926-07-02,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/newton-travel-travellers-middle/,Travel and Travellers of the Middle Ages,,,1926,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/37%2F63%2Fee%2F3763eef8329c491da536c985612d8be5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-06-25,1926-06-25,https://shakespeareandco.princeton.edu/members/gaskell-leonard/,Leonard Gaskell,"Gaskell, Leonard",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1926-06-25,1926-07-25,https://shakespeareandco.princeton.edu/members/montefiore/,Mrs. Frederick Montefiore,"Montefiore, Mrs. Frederick",20.00,100.00,1 month,30,2,,1926-06-25,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1926-06-25,1926-06-25,https://shakespeareandco.princeton.edu/members/luard-v/,V. Luard,"Luard, V.",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-06-25,1926-07-02,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/maugham-painted-veil/,The Painted Veil,,"Maugham, W. Somerset",1925,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/05%2Fcc%2F42%2F05cc420c01b74e7885f72bc117cfdb3d%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1926-06-25,1926-07-25,https://shakespeareandco.princeton.edu/members/dalziel-george/,George Dalziel,"Dalziel, George",15.00,50.00,1 month,30,1,,1926-06-25,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-06-26,1926-08-21,https://shakespeareandco.princeton.edu/members/rieder/,M. Rieder,"Rieder, M.",,,,,,,,,Returned,56,,,https://shakespeareandco.princeton.edu/books/swift-select-letters-jonathan/,Select Letters of Jonathan Swift,,"Swift, Jonathan",1926,,Lending Library Card,"Sylvia Beach, Rieder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/559c8919-8881-40ad-b027-67dbf1b23611/manifest,https://iiif.princeton.edu/loris/figgy_prod/e8%2F10%2F7c%2Fe8107c2c950f411d8ceeb6bb8bdc01c7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-06-26,1926-07-26,https://shakespeareandco.princeton.edu/members/detviler-1/,Mrs. M. Detviler,"Detviler, Mrs. M.",20.00,100.00,1 month,30,2,,1926-06-26,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-06-26,1926-07-03,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/frankau-life-erica/,Life and Erica,,"Frankau, Gilbert",1924,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/7d%2F04%2Fa5%2F7d04a546bbe54bbc84c266363ef1a61c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-06-26,1926-06-26,https://shakespeareandco.princeton.edu/members/gil-jack/,Jack Gil,"Gil, Jack",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1926-06-28,1926-06-28,https://shakespeareandco.princeton.edu/members/hatch-olive/,Olive Hatch,"Hatch, Olive",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-06-28,1926-07-28,https://shakespeareandco.princeton.edu/members/hunter-3/,Miss Hunter,"Hunter, Miss",20.00,100.00,1 month,30,2,,1926-06-28,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-06-28,1926-07-20,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/mansfield-something-childish-stories/,Something Childish and Other Stories,,"Mansfield, Katherine",1924,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/1e%2F70%2F91%2F1e709120725846d2b1564a06745d6bfc%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1926-06-28,1926-07-28,https://shakespeareandco.princeton.edu/members/hervey-e-m/,Mrs. E. M. Hervey,"Hervey, Mrs. E. M.",15.00,50.00,1 month,30,1,,1926-06-28,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-06-28,1926-10-04,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,98,,,https://shakespeareandco.princeton.edu/books/meredith-lord-ormont-aminta/,Lord Ormont and His Aminta,,"Meredith, George",1894,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/dc%2F94%2Ffd%2Fdc94fda0cd9c4ae195f988f5a500f00f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1926-06-28,1926-09-28,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",20.00,,3 months,92,,,1926-07-16,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,;https://iiif-cloud.princeton.edu/iiif/2/32%2F11%2F44%2F3211445456604f26802be4ccce47b278%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-06-28,1926-10-04,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,98,,,https://shakespeareandco.princeton.edu/books/oneill-hairy-ape/,The Hairy Ape,,"O'Neill, Eugene",1923,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/dc%2F94%2Ffd%2Fdc94fda0cd9c4ae195f988f5a500f00f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-06-28,1926-07-12,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/walpole-portrait-man-red/,Portrait of a Man with Red Hair: A Romantic Macarbe,,"Walpole, Hugh",1925,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/1e%2F70%2F91%2F1e709120725846d2b1564a06745d6bfc%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1926-06-28,1926-09-28,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",50.00,,3 months,92,2,,1926-06-28,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,;https://iiif-cloud.princeton.edu/iiif/2/1e%2F70%2F91%2F1e709120725846d2b1564a06745d6bfc%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1926-06-29,1926-07-29,https://shakespeareandco.princeton.edu/members/buel/,F. T. Buel,"Buel, F. T.",15.00,50.00,1 month,30,1,,1926-06-29,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-06-29,1926-07-05,https://shakespeareandco.princeton.edu/members/schirmer/,Mabel Schirmer / Mrs. Robert Schirmer,"Schirmer, Mabel",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/cocteau-thomas-impostor/,Thomas the Impostor,,"Cocteau, Jean",1925,,Lending Library Card,"Sylvia Beach, Mabel Schirmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4c00d0b2-7cb9-46e1-b628-2eac6ac7bb07/manifest,https://iiif-cloud.princeton.edu/iiif/2/5c%2F65%2F2f%2F5c652f21fd1c4c13ae7e4c0e1503b895%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-06-29,1926-07-09,https://shakespeareandco.princeton.edu/members/schirmer/,Mabel Schirmer / Mrs. Robert Schirmer,"Schirmer, Mabel",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/lardner-love-nest-stories/,The Love Nest and Other Stories,,"Lardner, Ring",1926,,Lending Library Card,"Sylvia Beach, Mabel Schirmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4c00d0b2-7cb9-46e1-b628-2eac6ac7bb07/manifest,https://iiif-cloud.princeton.edu/iiif/2/5c%2F65%2F2f%2F5c652f21fd1c4c13ae7e4c0e1503b895%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1926-06-29,1926-06-29,https://shakespeareandco.princeton.edu/members/fulton-martha/,Martha Fulton,"Fulton, Martha",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1926-06-30,1926-07-30,https://shakespeareandco.princeton.edu/members/stephenson-b/,B. Stephenson,"Stephenson, B.",,,1 month,30,2,,1926-05-31,,,,,,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1926-06-30,1926-06-30,https://shakespeareandco.princeton.edu/members/de-lappe-w-r/,W. R. de Lappe,"de Lappe, W. R.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1926-06-30,1926-07-30,https://shakespeareandco.princeton.edu/members/ames/,W. J. Ames,"Ames, W. J.",12.00,,1 month,30,1,Student,1926-06-21,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1926-07-01,1926-08-01,https://shakespeareandco.princeton.edu/members/goetz-glenn/,Glenn Goetz,"Goetz, Glenn",15.00,50.00,1 month,31,1,,1926-07-01,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1926-07-01,1926-07-01,https://shakespeareandco.princeton.edu/members/kristufkova/,Mlle Kristufkova,"Kristufkova, Mlle",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1926-07-01,1926-07-01,https://shakespeareandco.princeton.edu/members/tissier/,Marcelle Tissier,"Tissier, Marcelle",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-07-01,1926-07-20,https://shakespeareandco.princeton.edu/members/pottier-ph/,Ph. Pottier,"Pottier, Ph.",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/mansfield-garden-party-stories/,The Garden Party and Other Stories,,"Mansfield, Katherine",1922,,Lending Library Card,"Sylvia Beach, Ph. Pottier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac2188bc-d3fc-4d8c-99c5-985d61fb32c1/manifest,https://iiif.princeton.edu/loris/figgy_prod/8a%2Fde%2Fc9%2F8adec9c40e3646808fccc2e96f9a8c6f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-07-01,1926-07-03,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/tarkington-women/,Women,,"Tarkington, Booth",1925,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/34%2F63%2Fef%2F3463efdf87f94472a29bed492f604a45%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-07-01,1926-07-03,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/huxley-two-three-graces/,Two or Three Graces and Other Stories,,"Huxley, Aldous",1926,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/34%2F63%2Fef%2F3463efdf87f94472a29bed492f604a45%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1926-07-02,1926-08-02,https://shakespeareandco.princeton.edu/members/gibney-s/,S. Gibney,"Gibney, S.",15.00,,1 month,31,1,,1926-06-29,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1926-07-02,1926-09-02,https://shakespeareandco.princeton.edu/members/murrin-norberta/,Sister Norberta Murrin,"Murrin, Sister Norberta",16.00,100.00,2 months,62,2,,1926-07-02,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-07-02,1926-07-05,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/oppenheim-amazing-quest-mr/,The Amazing Quest of Mr. Ernest Bliss,,"Oppenheim, E. Phillips",1919,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/05%2Fcc%2F42%2F05cc420c01b74e7885f72bc117cfdb3d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-07-02,1926-08-13,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,42,,,https://shakespeareandco.princeton.edu/books/verga-mastro-don-gesualdo/,Mastro-don Gesualdo,,"Verga, Giovanni",1923,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/37%2F63%2Fee%2F3763eef8329c491da536c985612d8be5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-07-02,1926-10-02,https://shakespeareandco.princeton.edu/members/belnigon/,Mme Belnigon,"Belnigon, Mme",50.00,100.00,3 months,92,2,,1926-07-02,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-07-03,1926-07-06,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/bullitt-done/,It's Not Done,,"Bullitt, William C.",1926,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/7d%2F04%2Fa5%2F7d04a546bbe54bbc84c266363ef1a61c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-07-03,1926-07-09,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/gorman-james-joyce-first/,"James Joyce, His First Forty Years",,"Gorman, Herbert Sherman",1924,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2F7d%2Fa5%2F237da592c8234d839140f8c72d672a9f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-07-03,1926-08-03,https://shakespeareandco.princeton.edu/members/child/,Marie Child,"Child, Marie",15.00,50.00,1 month,31,1,,1926-07-03,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-07-03,1926-07-23,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/english-literature/,English Literature,Vol. 2,,,Unidentified multivolume work.,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/34%2F63%2Fef%2F3463efdf87f94472a29bed492f604a45%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1926-07-03,1926-09-03,https://shakespeareandco.princeton.edu/members/mccormack-jane/,Jane McCormack,"McCormack, Jane",33.00,50.00,2 months,62,1,,1926-07-03,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1926-07-05,1926-07-05,https://shakespeareandco.princeton.edu/members/tracy-e/,E. Tracy,"Tracy, E.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-07-05,1926-07-08,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/huxley-two-three-graces/,Two or Three Graces and Other Stories,,"Huxley, Aldous",1926,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/05%2Fcc%2F42%2F05cc420c01b74e7885f72bc117cfdb3d%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1926-07-05,1926-07-05,https://shakespeareandco.princeton.edu/members/macadam-t-d/,T. D. MacAdam,"MacAdam, T. D.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1926-07-05,1926-08-05,https://shakespeareandco.princeton.edu/members/tracy-e/,E. Tracy,"Tracy, E.",15.00,,1 month,31,1,,1926-07-05,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1926-07-05,1927-07-05,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",92.00,,1 year,365,1,AdL,1926-07-05,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,;https://iiif-cloud.princeton.edu/iiif/2/53%2F0d%2F85%2F530d85a179be47a3943814c914e80478%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1926-07-05,1927-01-05,https://shakespeareandco.princeton.edu/members/conolly-violet/,Violet Conolly,"Conolly, Violet",58.50,,6 months,184,1,AdL,1926-07-05,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-07-05,1926-08-05,https://shakespeareandco.princeton.edu/members/mitchell-george/,George Mitchell,"Mitchell, George",20.00,100.00,1 month,31,2,,1926-07-05,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1926-07-05,1926-08-05,https://shakespeareandco.princeton.edu/members/camescasse/,Pierre Camescasse / Camecarre,"Camescasse, Pierre",15.00,,1 month,31,1,,1926-06-30,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1926-07-05,1927-07-05,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",81.00,,1 year,365,1,,1926-06-30,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,;https://iiif.princeton.edu/loris/figgy_prod/c2%2Ff7%2F29%2Fc2f7296928344566aa900c8c0644c909%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-07-05,1926-07-05,https://shakespeareandco.princeton.edu/members/medley-p/,P. Medley,"Medley, P.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-07-05,1926-07-07,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/bronte-agnes-grey/,Agnes Grey,,"BrontΓ«, Anne",1847,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/53%2F0d%2F85%2F530d85a179be47a3943814c914e80478%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-07-06,1926-07-09,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/saltus-paliser-case/,The Paliser Case,,"Saltus, Edgar",1919,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/7d%2F04%2Fa5%2F7d04a546bbe54bbc84c266363ef1a61c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-07-07,1926-07-07,https://shakespeareandco.princeton.edu/members/dalziel-george/,George Dalziel,"Dalziel, George",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-07-07,1926-08-07,https://shakespeareandco.princeton.edu/members/hamlin/,Mrs. Cyrus Hamlin,"Hamlin, Mrs. Cyrus",15.00,50.00,1 month,31,1,,1926-07-07,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1926-07-07,1926-07-07,https://shakespeareandco.princeton.edu/members/sarraute/,Nathalie Sarraute,"Sarraute, Nathalie",,,,,,,,40.00,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Natalie Sarraute Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/ff1c2d0c-c9f8-4569-90e2-fee6c4529355/manifest,;https://iiif-cloud.princeton.edu/iiif/2/8f%2F8a%2F42%2F8f8a4249e0e748909a3352a6cd41b384%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-07-07,1926-07-08,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/fletcher-green-ink-stories/,Green Ink and Other Stories,,"Fletcher, Joseph Smith",1926,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/53%2F0d%2F85%2F530d85a179be47a3943814c914e80478%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1926-07-07,1926-07-07,https://shakespeareandco.princeton.edu/members/hervey-e-m/,Mrs. E. M. Hervey,"Hervey, Mrs. E. M.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-07-08,1926-08-06,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,29,,,https://shakespeareandco.princeton.edu/books/eliot-mill-floss/,The Mill on the Floss,,"Eliot, George",1860,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/05%2Fcc%2F42%2F05cc420c01b74e7885f72bc117cfdb3d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-07-08,1926-07-12,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/woolf-night-day/,Night and Day,,"Woolf, Virginia",1919,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/53%2F0d%2F85%2F530d85a179be47a3943814c914e80478%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-07-09,1926-07-12,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/richardson-pointed-roofs/,Pointed Roofs (Pilgrimage 1),,"Richardson, Dorothy M.",1915,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2F7d%2Fa5%2F237da592c8234d839140f8c72d672a9f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-07-09,1926-07-19,https://shakespeareandco.princeton.edu/members/schirmer/,Mabel Schirmer / Mrs. Robert Schirmer,"Schirmer, Mabel",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/de-la-mare-connoisseur-stories/,The Connoisseur and Other Stories,,"De la Mare, Walter",1926,,Lending Library Card,"Sylvia Beach, Mabel Schirmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4c00d0b2-7cb9-46e1-b628-2eac6ac7bb07/manifest,https://iiif-cloud.princeton.edu/iiif/2/5c%2F65%2F2f%2F5c652f21fd1c4c13ae7e4c0e1503b895%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-07-09,1926-07-19,https://shakespeareandco.princeton.edu/members/schirmer/,Mabel Schirmer / Mrs. Robert Schirmer,"Schirmer, Mabel",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/fitzgerald-great-gatsby/,The Great Gatsby,,"Fitzgerald, F. Scott",1925,,Lending Library Card,"Sylvia Beach, Mabel Schirmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4c00d0b2-7cb9-46e1-b628-2eac6ac7bb07/manifest,https://iiif-cloud.princeton.edu/iiif/2/5c%2F65%2F2f%2F5c652f21fd1c4c13ae7e4c0e1503b895%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1926-07-09,1927-07-09,https://shakespeareandco.princeton.edu/members/clavier-andre/,AndrΓ© Clavier,"Clavier, AndrΓ©",92.00,,1 year,365,1,,1926-07-03,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-07-09,1926-07-19,https://shakespeareandco.princeton.edu/members/schirmer/,Mabel Schirmer / Mrs. Robert Schirmer,"Schirmer, Mabel",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/huxley-two-three-graces/,Two or Three Graces and Other Stories,,"Huxley, Aldous",1926,,Lending Library Card,"Sylvia Beach, Mabel Schirmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4c00d0b2-7cb9-46e1-b628-2eac6ac7bb07/manifest,https://iiif-cloud.princeton.edu/iiif/2/5c%2F65%2F2f%2F5c652f21fd1c4c13ae7e4c0e1503b895%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-07-09,1926-07-13,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/ferber-cheerful-request/,Cheerful by Request,,"Ferber, Edna",1918,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/7d%2F04%2Fa5%2F7d04a546bbe54bbc84c266363ef1a61c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-07-09,1926-10-09,https://shakespeareandco.princeton.edu/members/allard/,Mlle Allard / Alard,"Allard, Mlle",40.00,50.00,3 months,92,1,,1926-07-09,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1926-07-10,1926-08-10,https://shakespeareandco.princeton.edu/members/keely-frances/,Frances Keely,"Keely, Frances",,,1 month,31,,,1926-07-10,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1926-07-12,1926-10-12,https://shakespeareandco.princeton.edu/members/eloff-fanie/,Fanie Eloff / Mr. S. J. P. Eloff,"Eloff, Fanie",40.00,,3 months,92,1,,1926-06-29,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-07-12,1926-07-15,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/newton-travel-travellers-middle/,Travel and Travellers of the Middle Ages,,,1926,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/53%2F0d%2F85%2F530d85a179be47a3943814c914e80478%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1926-07-12,1926-07-12,https://shakespeareandco.princeton.edu/members/mcgee/,Mrs. McGee,"McGee, Mrs.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-07-13,1926-07-17,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/montague-rough-justice/,Rough Justice,,"Montague, C. E.",1926,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/7d%2F04%2Fa5%2F7d04a546bbe54bbc84c266363ef1a61c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-07-13,1926-08-13,https://shakespeareandco.princeton.edu/members/keely-r-a/,R. A. Keely,"Keely, R. A.",20.00,100.00,1 month,31,2,,1926-07-13,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1926-07-15,1926-08-15,https://shakespeareandco.princeton.edu/members/henton-l/;https://shakespeareandco.princeton.edu/members/henton/,L. Henton;Mrs. Henton,"Henton, L.;Henton, Mrs.",20.00,,1 month,31,2,,1926-07-03,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-07-15,1926-07-19,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/young-pilgrims-rest/,Pilgrim's Rest,,"Young, Francis Brett",1922,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/53%2F0d%2F85%2F530d85a179be47a3943814c914e80478%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1926-07-15,1926-07-15,https://shakespeareandco.princeton.edu/members/everard-2/,Mrs. Everard,"Everard, Mrs.",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1926-07-16,1926-08-16,https://shakespeareandco.princeton.edu/members/merrel/,Mrs. C. W. Merrel,"Merrel, Mrs. C. W.",15.00,50.00,1 month,31,1,,1926-07-16,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-07-16,1926-09-09,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,55,,,https://shakespeareandco.princeton.edu/books/dreiser-financier/,Financier,,"Dreiser, Theodore",1912,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/32%2F11%2F44%2F3211445456604f26802be4ccce47b278%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-07-17,,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/deland-old-chester-tales/,Old Chester Tales,,"Deland, Margaret",1898,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/7d%2F04%2Fa5%2F7d04a546bbe54bbc84c266363ef1a61c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-07-17,1926-07-30,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/brandon-young-love/,Young Love,,"Brandon, John G.",1925,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/7d%2F04%2Fa5%2F7d04a546bbe54bbc84c266363ef1a61c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-07-17,1926-07-24,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/mackenzie-fairy-gold/,Fairy Gold,,"Mackenzie, Compton",1926,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/7d%2F04%2Fa5%2F7d04a546bbe54bbc84c266363ef1a61c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-07-17,1926-09-20,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,65,,,https://shakespeareandco.princeton.edu/books/sinnett-growth-soul/,The Growth of the Soul,2 vols.,"Sinnett, A. P.",1918,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/7d%2F04%2Fa5%2F7d04a546bbe54bbc84c266363ef1a61c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-07-19,1926-08-19,https://shakespeareandco.princeton.edu/members/cowles/,Michail Cowles,"Cowles, Michail",12.00,50.00,1 month,31,1,Student,1926-07-19,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1926-07-19,1926-08-19,https://shakespeareandco.princeton.edu/members/kellnor-arthur/,Arthur Kellnor,"Kellnor, Arthur",20.00,100.00,1 month,31,2,,1926-07-19,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-07-19,1926-07-27,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/brown-life-william-godwin/,The Life of William Godwin,,"Brown, Ford K.",1926,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/53%2F0d%2F85%2F530d85a179be47a3943814c914e80478%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-07-19,1926-07-27,https://shakespeareandco.princeton.edu/members/schirmer/,Mabel Schirmer / Mrs. Robert Schirmer,"Schirmer, Mabel",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/lowell-whats-oclock/,What's O'Clock,,"Lowell, Amy",1925,,Lending Library Card,"Sylvia Beach, Mabel Schirmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4c00d0b2-7cb9-46e1-b628-2eac6ac7bb07/manifest,https://iiif-cloud.princeton.edu/iiif/2/5c%2F65%2F2f%2F5c652f21fd1c4c13ae7e4c0e1503b895%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1926-07-20,1926-07-20,https://shakespeareandco.princeton.edu/members/derlanger/,Mlle d'Erlanger,"d'Erlanger, Mlle",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-07-20,1926-07-27,https://shakespeareandco.princeton.edu/members/pottier-ph/,Ph. Pottier,"Pottier, Ph.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/eliot-middlemarch/,Middlemarch,,"Eliot, George",1871,,Lending Library Card,"Sylvia Beach, Ph. Pottier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac2188bc-d3fc-4d8c-99c5-985d61fb32c1/manifest,https://iiif.princeton.edu/loris/figgy_prod/8a%2Fde%2Fc9%2F8adec9c40e3646808fccc2e96f9a8c6f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-07-21,1926-08-02,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/lardner-love-nest-stories/,The Love Nest and Other Stories,,"Lardner, Ring",1926,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/1e%2F70%2F91%2F1e709120725846d2b1564a06745d6bfc%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1926-07-21,1926-07-21,https://shakespeareandco.princeton.edu/members/camescasse/,Pierre Camescasse / Camecarre,"Camescasse, Pierre",,,,,,,,45.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-07-21,1926-08-02,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/mckenna-oldest-god/,The Oldest God,,"McKenna, Stephen",1926,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/1e%2F70%2F91%2F1e709120725846d2b1564a06745d6bfc%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-07-22,1926-07-29,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/beresford-kind-man/,That Kind of Man,,"Beresford, J. D.",1926,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/89%2F50%2F02%2F895002cdfd9f40008230e8e772931579%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-07-22,1926-07-29,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/wren-beau-geste/,Beau Geste,,"Wren, Percival Christopher",1925,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/89%2F50%2F02%2F895002cdfd9f40008230e8e772931579%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-07-22,1926-08-22,https://shakespeareandco.princeton.edu/members/howland/,Mrs. M. M. Howland,"Howland, Mrs. M. M.",30.00,100.00,1 month,31,2,,1926-07-22,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-07-22,1926-08-22,https://shakespeareandco.princeton.edu/members/johnson-d-h/,D. H. Johnson,"Johnson, D. H.",12.00,50.00,1 month,31,1,,1926-07-22,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1926-07-22,1926-08-22,https://shakespeareandco.princeton.edu/members/howard-c-w-2/,C. W. Howard,"Howard, C. W.",12.00,50.00,1 month,31,1,,1926-07-22,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1926-07-23,1927-07-23,https://shakespeareandco.princeton.edu/members/weiss-colette/,Colette Weiss,"Weiss, Colette",92.00,,1 year,365,1,AdL,1926-07-06,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-07-23,1926-11-30,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,130,,,https://shakespeareandco.princeton.edu/books/bennett-god-hath-joined/,Whom God Hath Joined,,"Bennett, Arnold",1906,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/34%2F63%2Fef%2F3463efdf87f94472a29bed492f604a45%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-07-23,1926-11-10,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,110,,,https://shakespeareandco.princeton.edu/books/bennett-elsie-child-stories/,Elsie and the Child and Other Stories,,"Bennett, Arnold",1924,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/34%2F63%2Fef%2F3463efdf87f94472a29bed492f604a45%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1926-07-23,1926-07-23,https://shakespeareandco.princeton.edu/members/keely-r-a/,R. A. Keely,"Keely, R. A.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-07-23,1926-08-18,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,26,,,https://shakespeareandco.princeton.edu/books/london-white-fang/,White Fang,,"London, Jack",1906,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/07%2Fa3%2F4c%2F07a34cab31e341f5922a6a2e32fa1e5a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-07-23,1926-08-18,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,26,,,https://shakespeareandco.princeton.edu/books/swinnerton-nocturne/,Nocturne,,"Swinnerton, Frank",1917,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/07%2Fa3%2F4c%2F07a34cab31e341f5922a6a2e32fa1e5a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-07-23,1926-08-13,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/fitzgerald-sad-young-men/,All the Sad Young Men,,"Fitzgerald, F. Scott",1926,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/f7%2F9b%2Fe0%2Ff79be07300994867984b67006c59c079%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1926-07-24,1926-09-24,https://shakespeareandco.princeton.edu/members/kennedy-edmond/,Edmond Kennedy,"Kennedy, Edmond",24.00,,2 months,62,1,Student,1926-07-24,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1926-07-26,1926-08-26,https://shakespeareandco.princeton.edu/members/barker-caroline-r/,Caroline R. Barker,"Barker, Caroline R.",20.00,100.00,1 month,31,2,,1926-07-26,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1926-07-26,1926-08-26,https://shakespeareandco.princeton.edu/members/detviler-1/,Mrs. M. Detviler,"Detviler, Mrs. M.",20.00,,1 month,31,2,,1926-07-13,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1926-07-26,1926-07-26,https://shakespeareandco.princeton.edu/members/hunter-3/,Miss Hunter,"Hunter, Miss",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1926-07-27,1926-07-27,https://shakespeareandco.princeton.edu/members/pottier-ph/,Ph. Pottier,"Pottier, Ph.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Ph. Pottier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/ac2188bc-d3fc-4d8c-99c5-985d61fb32c1/manifest,;https://iiif.princeton.edu/loris/figgy_prod/8a%2Fde%2Fc9%2F8adec9c40e3646808fccc2e96f9a8c6f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-07-27,1926-08-18,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/cabell-silver-stallion/,The Silver Stallion,,"Cabell, James Branch",1926,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/9f%2F65%2F7c%2F9f657caabb024a00820dd1156308da37%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-07-27,1926-08-18,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/ostenso-wild-geese/,Wild Geese,,"Ostenso, Martha",1925,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/9f%2F65%2F7c%2F9f657caabb024a00820dd1156308da37%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-07-27,1926-07-31,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/ford-some-do-not/,Some Do Not... (Parade's End 1),,"Ford, Ford Madox",1924,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/53%2F0d%2F85%2F530d85a179be47a3943814c914e80478%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1926-07-27,1926-07-27,https://shakespeareandco.princeton.edu/members/mitchell-george/,George Mitchell,"Mitchell, George",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1926-07-27,1926-07-27,https://shakespeareandco.princeton.edu/members/cattan-l/,L. Cattan,"Cattan, L.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1926-07-27,1926-07-27,https://shakespeareandco.princeton.edu/members/britton/,Mr. Britton,"Britton, Mr.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-07-28,1926-08-28,https://shakespeareandco.princeton.edu/members/james-t-m/,T. M. James,"James, T. M.",20.00,100.00,1 month,31,2,,1926-07-28,,,,,FRF,,,,,,,Logbook;Lending Library Card;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, T. M. James Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/e196e1ad-ff6e-4b37-a96b-a404958d4dd7/manifest;,;https://iiif.princeton.edu/loris/figgy_prod/cd%2F97%2F9c%2Fcd979c8046984b4e85ce74b1db76c4f8%2Fintermediate_file.jp2/full/full/0/default.jpg;
+Subscription,1926-07-28,1926-08-28,https://shakespeareandco.princeton.edu/members/king-f/,F. King,"King, F.",15.00,50.00,1 month,31,1,,1926-07-28,,,,,FRF,,,,,,,Logbook;Lending Library Card;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, F. King Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/a97cb1d0-5333-49c6-98ba-c3be0511c961/manifest;,;https://iiif.princeton.edu/loris/figgy_prod/74%2F83%2F71%2F74837145e6f747649badd4aea3f765e8%2Fintermediate_file.jp2/full/full/0/default.jpg;
+Borrow,1926-07-28,1926-08-04,https://shakespeareandco.princeton.edu/members/king-f/,F. King,"King, F.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/arlen-charming-people/,These Charming People,,"Arlen, Michael",1923,,Lending Library Card,"Sylvia Beach, F. King Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a97cb1d0-5333-49c6-98ba-c3be0511c961/manifest,https://iiif.princeton.edu/loris/figgy_prod/74%2F83%2F71%2F74837145e6f747649badd4aea3f765e8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-07-28,1926-07-31,https://shakespeareandco.princeton.edu/members/james-t-m/,T. M. James,"James, T. M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/white-flight/,Flight,,"White, Walter Francis",1926,,Lending Library Card,"Sylvia Beach, T. M. James Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e196e1ad-ff6e-4b37-a96b-a404958d4dd7/manifest,https://iiif.princeton.edu/loris/figgy_prod/cd%2F97%2F9c%2Fcd979c8046984b4e85ce74b1db76c4f8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Supplement,1926-07-28,1926-08-28,https://shakespeareandco.princeton.edu/members/maas/,Alice Maas,"Maas, Alice",5.00,,1 month,31,1,,1926-07-28,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-07-28,1926-07-31,https://shakespeareandco.princeton.edu/members/james-t-m/,T. M. James,"James, T. M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/de-gobineau-lucky-prisoner/,The Lucky Prisoner,,"de Gobineau, Arthur",1926,,Lending Library Card,"Sylvia Beach, T. M. James Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e196e1ad-ff6e-4b37-a96b-a404958d4dd7/manifest,https://iiif.princeton.edu/loris/figgy_prod/cd%2F97%2F9c%2Fcd979c8046984b4e85ce74b1db76c4f8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-07-29,1926-08-09,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/de-la-mare-connoisseur-stories/,The Connoisseur and Other Stories,,"De la Mare, Walter",1926,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/89%2F50%2F02%2F895002cdfd9f40008230e8e772931579%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-07-29,1926-08-09,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/tuttle-flood-fate/,The Flood of Fate,,"Tuttle, W. C.",1926,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/89%2F50%2F02%2F895002cdfd9f40008230e8e772931579%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1926-07-29,1927-07-29,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",92.00,,1 year,365,1,AdL,1926-06-28,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,;https://iiif.princeton.edu/loris/figgy_prod/dc%2F94%2Ffd%2Fdc94fda0cd9c4ae195f988f5a500f00f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-07-30,1926-08-30,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,31,,,https://shakespeareandco.princeton.edu/books/forster-howards-end/,Howards End,,"Forster, E. M.",1910,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/34%2F63%2Fef%2F3463efdf87f94472a29bed492f604a45%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1926-07-30,1926-07-30,https://shakespeareandco.princeton.edu/members/johnson-j-r/,J. R. Johnson,"Johnson, J. R.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1926-07-30,1926-08-30,https://shakespeareandco.princeton.edu/members/stephenson-b/,B. Stephenson,"Stephenson, B.",20.00,,1 month,31,2,,1926-06-19,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-07-30,,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/love/,Love,,,,"Unidentified. Gilbert Cannan's *Love* (1914), Elizabeth Von Arnim's *Love* (1925), or William Lyon Phelps's *Love* (1928), etc.",Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/7d%2F04%2Fa5%2F7d04a546bbe54bbc84c266363ef1a61c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-07-31,1926-07-31,https://shakespeareandco.princeton.edu/members/duclos-henri/,Henri Duclos,"Duclos, Henri",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-07-31,1926-08-04,https://shakespeareandco.princeton.edu/members/james-t-m/,T. M. James,"James, T. M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/mackenzie-fairy-gold/,Fairy Gold,,"Mackenzie, Compton",1926,,Lending Library Card,"Sylvia Beach, T. M. James Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e196e1ad-ff6e-4b37-a96b-a404958d4dd7/manifest,https://iiif.princeton.edu/loris/figgy_prod/cd%2F97%2F9c%2Fcd979c8046984b4e85ce74b1db76c4f8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-07-31,1926-08-04,https://shakespeareandco.princeton.edu/members/james-t-m/,T. M. James,"James, T. M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/gostling-lure-french-cha/,The Lure of French ChaΜteaux,,"Gostling, Frances M.",1923,,Lending Library Card,"Sylvia Beach, T. M. James Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e196e1ad-ff6e-4b37-a96b-a404958d4dd7/manifest,https://iiif.princeton.edu/loris/figgy_prod/cd%2F97%2F9c%2Fcd979c8046984b4e85ce74b1db76c4f8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-07-31,1926-08-02,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/powys-ducdame/,Ducdame,,"Powys, John Cowper",1925,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/53%2F0d%2F85%2F530d85a179be47a3943814c914e80478%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1926-07-31,1926-08-31,https://shakespeareandco.princeton.edu/members/johnson-g-e/;https://shakespeareandco.princeton.edu/members/johnson-8/,G. E. Johnson;Miss Johnson,"Johnson, G. E.;Johnson, Miss",20.00,100.00,1 month,31,2,,1926-07-31,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-08-02,1926-08-05,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/hichens-god-within/,The God within Him,,"Hichens, Robert Smythe",1926,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/53%2F0d%2F85%2F530d85a179be47a3943814c914e80478%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1926-08-02,1926-09-02,https://shakespeareandco.princeton.edu/members/ergaz-ida/,Ida Marie Schreiber Ergaz,"Ergaz, Ida Marie Schreiber",15.00,,1 month,31,1,,1926-08-02,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1926-08-02,1926-09-02,https://shakespeareandco.princeton.edu/members/gibney-s/,S. Gibney,"Gibney, S.",15.00,,1 month,31,1,,1926-07-16,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-08-02,1926-08-12,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/firbank-vainglory/,Vainglory,,"Firbank, Ronald",1915,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/1e%2F70%2F91%2F1e709120725846d2b1564a06745d6bfc%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-08-02,1926-08-12,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/wylie-venetian-glass-nephew/,The Venetian Glass Nephew,,"Wylie, Elinor",1925,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/1e%2F70%2F91%2F1e709120725846d2b1564a06745d6bfc%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1926-08-03,1926-09-03,https://shakespeareandco.princeton.edu/members/kirstein-lincoln/,Lincoln Kirstein,"Kirstein, Lincoln",15.00,50.00,1 month,31,1,,1926-08-03,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1926-08-04,1926-11-04,https://shakespeareandco.princeton.edu/members/heurgon-mr/,Mr. Heurgon,"Heurgon, Mr.",80.00,,3 months,92,4,AdL,1926-08-04,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-08-04,1926-08-06,https://shakespeareandco.princeton.edu/members/james-t-m/,T. M. James,"James, T. M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/king-inner-shrine-novel/,The Inner Shrine: A Novel of Today,,"King, Basil",1909,,Lending Library Card,"Sylvia Beach, T. M. James Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e196e1ad-ff6e-4b37-a96b-a404958d4dd7/manifest,https://iiif.princeton.edu/loris/figgy_prod/cd%2F97%2F9c%2Fcd979c8046984b4e85ce74b1db76c4f8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-08-04,1926-08-04,https://shakespeareandco.princeton.edu/members/hennessy/,Mlle Hennessy,"Hennessy, Mlle",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-08-04,1926-08-06,https://shakespeareandco.princeton.edu/members/james-t-m/,T. M. James,"James, T. M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/mencken-prejudices/,Prejudices,,"Mencken, H. L.",,Unidentified series number.,Lending Library Card,"Sylvia Beach, T. M. James Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e196e1ad-ff6e-4b37-a96b-a404958d4dd7/manifest,https://iiif.princeton.edu/loris/figgy_prod/cd%2F97%2F9c%2Fcd979c8046984b4e85ce74b1db76c4f8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-08-04,1926-08-09,https://shakespeareandco.princeton.edu/members/king-f/,F. King,"King, F.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/douglas-south-wind/,South Wind,,"Douglas, Norman",1917,,Lending Library Card,"Sylvia Beach, F. King Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a97cb1d0-5333-49c6-98ba-c3be0511c961/manifest,https://iiif.princeton.edu/loris/figgy_prod/74%2F83%2F71%2F74837145e6f747649badd4aea3f765e8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-08-05,1926-09-05,https://shakespeareandco.princeton.edu/members/conrad-p-w/,P. W. Conrad,"Conrad, P. W.",15.00,50.00,1 month,31,1,,1926-08-05,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1926-08-05,1927-08-05,https://shakespeareandco.princeton.edu/members/lang-netter-3/,Mme Lang-Netter,"Lang-Netter, Mme",92.00,,1 year,365,1,AdL,1926-08-05,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1926-08-05,1926-08-05,https://shakespeareandco.princeton.edu/members/ames-h-j/,H. J. Ames,"Ames, H. J.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1926-08-05,1926-08-05,https://shakespeareandco.princeton.edu/members/detviler-1/,Mrs. M. Detviler,"Detviler, Mrs. M.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-08-05,1926-08-06,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/loos-gentlemen-prefer-blondes/,Gentlemen Prefer Blondes: The Illuminating Diary of a Professional Lady,,"Loos, Anita",1925,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/53%2F0d%2F85%2F530d85a179be47a3943814c914e80478%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-08-06,1926-08-07,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/mansfield-german-pension/,In a German Pension,,"Mansfield, Katherine",1911,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/53%2F0d%2F85%2F530d85a179be47a3943814c914e80478%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-08-06,1926-09-20,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,45,,,https://shakespeareandco.princeton.edu/books/bullitt-done/,It's Not Done,,"Bullitt, William C.",1926,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/05%2Fcc%2F42%2F05cc420c01b74e7885f72bc117cfdb3d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-08-06,1926-08-13,https://shakespeareandco.princeton.edu/members/james-t-m/,T. M. James,"James, T. M.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/masterman-wrong-letter/,The Wrong Letter,,"Masterman, Walter Sydney",1926,,Lending Library Card,"Sylvia Beach, T. M. James Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e196e1ad-ff6e-4b37-a96b-a404958d4dd7/manifest,https://iiif.princeton.edu/loris/figgy_prod/cd%2F97%2F9c%2Fcd979c8046984b4e85ce74b1db76c4f8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-08-06,1926-09-06,https://shakespeareandco.princeton.edu/members/grainger-c-f/,C. F. Grainger,"Grainger, C. F.",20.00,100.00,1 month,31,2,,1926-08-06,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-08-06,1926-09-06,https://shakespeareandco.princeton.edu/members/heard-e-f/,Dr. E. F. Heard,"Heard, Dr. E. F.",15.00,50.00,1 month,31,1,,1926-08-06,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-08-06,1926-08-13,https://shakespeareandco.princeton.edu/members/james-t-m/,T. M. James,"James, T. M.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/merrick-tell-truth/,To Tell You the Truth,,"Merrick, Leonard",1922,,Lending Library Card,"Sylvia Beach, T. M. James Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e196e1ad-ff6e-4b37-a96b-a404958d4dd7/manifest,https://iiif.princeton.edu/loris/figgy_prod/cd%2F97%2F9c%2Fcd979c8046984b4e85ce74b1db76c4f8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-08-06,1926-08-06,https://shakespeareandco.princeton.edu/members/goetz-glenn/,Glenn Goetz,"Goetz, Glenn",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-08-07,1926-09-12,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,36,,,https://shakespeareandco.princeton.edu/books/wassermann-oberlins-three-stages/,Oberlin's Three Stages,,"Wassermann, Jakob",1926,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/89%2F50%2F02%2F895002cdfd9f40008230e8e772931579%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-08-07,1926-08-24,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/hichens-god-within/,The God within Him,,"Hichens, Robert Smythe",1926,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/89%2F50%2F02%2F895002cdfd9f40008230e8e772931579%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-08-07,1926-08-10,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/george-stiff-lip-novel/,The Stiff Lip: A Novel,,"George, Walter Lionel",1922,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/53%2F0d%2F85%2F530d85a179be47a3943814c914e80478%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1926-08-09,1926-09-09,https://shakespeareandco.princeton.edu/members/brenner-e/,E. Brenner,"Brenner, E.",15.00,50.00,1 month,31,1,,1926-08-09,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-08-09,1926-08-12,https://shakespeareandco.princeton.edu/members/king-f/,F. King,"King, F.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/asquith-autobiography-margot-asquith/,The Autobiography of Margot Asquith,,"Asquith, Margot",1920,"Margot Asquith's autobiography was published as *An Autobiography* in 1920, and then retitled *The Autobiography of Margot Asquith* in 1921. Both versions likely circulated in the library.",Lending Library Card,"Sylvia Beach, F. King Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a97cb1d0-5333-49c6-98ba-c3be0511c961/manifest,https://iiif.princeton.edu/loris/figgy_prod/74%2F83%2F71%2F74837145e6f747649badd4aea3f765e8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-08-10,1926-08-12,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/van-vechten-firecrackers-realistic-novel/,Firecrackers: A Realistic Novel,,"Van Vechten, Carl",1925,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/53%2F0d%2F85%2F530d85a179be47a3943814c914e80478%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1926-08-10,1926-09-10,https://shakespeareandco.princeton.edu/members/burke-mrs-alfred/,Mrs. Alfred Burke,"Burke, Mrs. Alfred",20.00,100.00,1 month,31,2,,1926-08-10,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1926-08-10,1926-08-10,https://shakespeareandco.princeton.edu/members/kirstein-lincoln/,Lincoln Kirstein,"Kirstein, Lincoln",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-08-12,1926-08-20,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/machen-house-souls/,The House of Souls,,"Machen, Arthur",1906,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/1e%2F70%2F91%2F1e709120725846d2b1564a06745d6bfc%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1926-08-12,1926-09-12,https://shakespeareandco.princeton.edu/members/hillier/,Mr. Hillier,"Hillier, Mr.",30.00,150.00,1 month,31,3,,1926-08-12,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-08-12,1926-08-17,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/galsworthy-freelands/,The Freelands,,"Galsworthy, John",1915,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/53%2F0d%2F85%2F530d85a179be47a3943814c914e80478%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-08-12,1926-08-18,https://shakespeareandco.princeton.edu/members/king-f/,F. King,"King, F.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/lardner-write-short-stories/,How to Write Short Stories (with Samples),,"Lardner, Ring",1925,,Lending Library Card,"Sylvia Beach, F. King Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a97cb1d0-5333-49c6-98ba-c3be0511c961/manifest,https://iiif.princeton.edu/loris/figgy_prod/74%2F83%2F71%2F74837145e6f747649badd4aea3f765e8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-08-12,1926-08-20,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/wharton-house-mirth/,The House of Mirth,,"Wharton, Edith",1905,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/1e%2F70%2F91%2F1e709120725846d2b1564a06745d6bfc%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1926-08-14,1926-09-14,https://shakespeareandco.princeton.edu/members/chen-hudson/,Hudson Chen,"Chen, Hudson",15.00,50.00,1 month,31,1,,1926-08-14,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1926-08-14,1926-08-14,https://shakespeareandco.princeton.edu/members/cowles/,Michail Cowles,"Cowles, Michail",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-08-15,1926-08-17,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/house-intimate-papers-colonel/,The Intimate Papers of Colonel House,Vol. 1 Behind the Political Curtain 1912 β 1915,"House, Edward M.",1926,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/f7%2F9b%2Fe0%2Ff79be07300994867984b67006c59c079%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-08-15,1926-08-17,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/robinson-collected-poems/,Collected Poems,,"Robinson, Edwin Arlington",1921,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/f7%2F9b%2Fe0%2Ff79be07300994867984b67006c59c079%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1926-08-15,1926-09-15,https://shakespeareandco.princeton.edu/members/henton-l/;https://shakespeareandco.princeton.edu/members/henton/,L. Henton;Mrs. Henton,"Henton, L.;Henton, Mrs.",20.00,,1 month,31,2,,1926-07-28,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-08-17,1926-08-20,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/hamsun-children-age/,Children of the Age,,"Hamsun, Knut",1924,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/53%2F0d%2F85%2F530d85a179be47a3943814c914e80478%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-08-17,,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/house-intimate-papers-colonel/,The Intimate Papers of Colonel House,Vol. 2 From Neutrality to War 1915 β 1917,"House, Edward M.",1926,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/f7%2F9b%2Fe0%2Ff79be07300994867984b67006c59c079%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1926-08-17,1926-09-17,https://shakespeareandco.princeton.edu/members/charlot/,H. E. Charlot,"Charlot, H. E.",20.00,,1 month,31,2,,1926-08-13,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-08-17,,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/chesterton-incredulity-father-brown/,The Incredulity of Father Brown,,"Chesterton, G. K.",1926,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/7d%2F04%2Fa5%2F7d04a546bbe54bbc84c266363ef1a61c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-08-17,1926-08-20,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/hirst-life-letters-thomas/,Life and Letters of Thomas Jefferson,,"Hirst, Francis Wrigley",1925,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/f7%2F9b%2Fe0%2Ff79be07300994867984b67006c59c079%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-08-17,,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/byrne-messer-marco-polo/,Messer Marco Polo,,"Byrne, Donn",1921,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/7d%2F04%2Fa5%2F7d04a546bbe54bbc84c266363ef1a61c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-08-18,1926-10-01,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,44,,,https://shakespeareandco.princeton.edu/books/macaulay-dangerous-ages/,Dangerous Ages,,"Macaulay, Rose",1921,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/07%2Fa3%2F4c%2F07a34cab31e341f5922a6a2e32fa1e5a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-08-18,1926-09-10,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/lewisohn-israel/,Israel,,"Lewisohn, Ludwig",1925,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/9f%2F65%2F7c%2F9f657caabb024a00820dd1156308da37%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-08-18,,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/huxley-two-three-graces/,Two or Three Graces and Other Stories,,"Huxley, Aldous",1926,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/9f%2F65%2F7c%2F9f657caabb024a00820dd1156308da37%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-08-18,1926-10-01,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,44,,,https://shakespeareandco.princeton.edu/books/london-martin-eden/,Martin Eden,,"London, Jack",1909,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/07%2Fa3%2F4c%2F07a34cab31e341f5922a6a2e32fa1e5a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-08-18,1926-10-01,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,44,,,https://shakespeareandco.princeton.edu/books/george-stiff-lip-novel/,The Stiff Lip: A Novel,,"George, Walter Lionel",1922,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/07%2Fa3%2F4c%2F07a34cab31e341f5922a6a2e32fa1e5a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-08-18,1926-08-23,https://shakespeareandco.princeton.edu/members/james-t-m/,T. M. James,"James, T. M.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/richardson-pointed-roofs/,Pointed Roofs (Pilgrimage 1),,"Richardson, Dorothy M.",1915,,Lending Library Card,"Sylvia Beach, T. M. James Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e196e1ad-ff6e-4b37-a96b-a404958d4dd7/manifest,https://iiif.princeton.edu/loris/figgy_prod/cd%2F97%2F9c%2Fcd979c8046984b4e85ce74b1db76c4f8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-08-18,1926-08-23,https://shakespeareandco.princeton.edu/members/james-t-m/,T. M. James,"James, T. M.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/mckenna-saviours-society-first/,The Saviours of Society: Being the First Part of The Realists,,"McKenna, Stephen",1926,,Lending Library Card,"Sylvia Beach, T. M. James Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e196e1ad-ff6e-4b37-a96b-a404958d4dd7/manifest,https://iiif.princeton.edu/loris/figgy_prod/cd%2F97%2F9c%2Fcd979c8046984b4e85ce74b1db76c4f8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-08-18,1926-08-18,https://shakespeareandco.princeton.edu/members/kellnor-arthur/,Arthur Kellnor,"Kellnor, Arthur",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-08-18,1926-08-29,https://shakespeareandco.princeton.edu/members/king-f/,F. King,"King, F.",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/gerhardie-polyglots/,The Polyglots: A Novel,,"Gerhardie, William Alexander",1925,,Lending Library Card,"Sylvia Beach, F. King Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a97cb1d0-5333-49c6-98ba-c3be0511c961/manifest,https://iiif.princeton.edu/loris/figgy_prod/74%2F83%2F71%2F74837145e6f747649badd4aea3f765e8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-08-20,1926-09-18,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,29,,,https://shakespeareandco.princeton.edu/books/merrick-paris-laughed-pranks/,While Paris Laughed: Being Pranks and Passions of the Poet Tricotrin,,"Merrick, Leonard",1918,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/1e%2F70%2F91%2F1e709120725846d2b1564a06745d6bfc%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-08-20,1926-10-14,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,55,,,https://shakespeareandco.princeton.edu/books/graves-english-poetry-irregular/,"On English Poetry: Being an Irregular Approach to the Psychology of This Art, from Evidence Mainly Subjective",,"Graves, Robert",1922,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/f7%2F9b%2Fe0%2Ff79be07300994867984b67006c59c079%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-08-20,1926-08-20,https://shakespeareandco.princeton.edu/members/howland/,Mrs. M. M. Howland,"Howland, Mrs. M. M.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-08-20,1926-09-18,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,29,,,https://shakespeareandco.princeton.edu/books/mackenzie-sinister-street/,Sinister Street,2 vols.,"Mackenzie, Compton",1914,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/1e%2F70%2F91%2F1e709120725846d2b1564a06745d6bfc%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-08-20,,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/warner-lolly-willowes/,Lolly Willowes,,"Warner, Sylvia Townsend",1926,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/53%2F0d%2F85%2F530d85a179be47a3943814c914e80478%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1926-08-21,1927-02-21,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",80.00,,6 months,184,1,AdL,1926-11-10,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,;https://iiif-cloud.princeton.edu/iiif/2/34%2F63%2Fef%2F3463efdf87f94472a29bed492f604a45%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-08-21,1926-09-13,https://shakespeareandco.princeton.edu/members/rieder/,M. Rieder,"Rieder, M.",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/joyce-portrait-artist-young/,A Portrait of the Artist as a Young Man,,"Joyce, James",1916,,Lending Library Card,"Sylvia Beach, Rieder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/559c8919-8881-40ad-b027-67dbf1b23611/manifest,https://iiif.princeton.edu/loris/figgy_prod/e8%2F10%2F7c%2Fe8107c2c950f411d8ceeb6bb8bdc01c7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-08-21,1926-08-21,https://shakespeareandco.princeton.edu/members/chen-hudson/,Hudson Chen,"Chen, Hudson",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-08-21,1926-08-30,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/walpole-duchess-wrexe-decline/,"The Duchess of Wrexe, Her Decline and Death: A Romantic Commentary",,"Walpole, Hugh",1924,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/19%2F8d%2F36%2F198d3652445c468595f2ccdf76b02226%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1926-08-21,1926-08-21,https://shakespeareandco.princeton.edu/members/johnson-j-r/,J. R. Johnson,"Johnson, J. R.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1926-08-21,1926-09-21,https://shakespeareandco.princeton.edu/members/herald-e/,E. Herald,"Herald, E.",15.00,100.00,1 month,31,1,,1926-08-21,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-08-24,1926-08-25,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/woodrow-wilson/,Woodrow Wilson,,,,Unidentified. By or about Woodrow Wilson.,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/f7%2F9b%2Fe0%2Ff79be07300994867984b67006c59c079%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-08-24,1926-09-12,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/vincent-gilles-rais-original/,Gilles de Rais: The Original Bluebeard,,"Vincent, A. L.;Binns, Clare",1926,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/89%2F50%2F02%2F895002cdfd9f40008230e8e772931579%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-08-24,1926-08-24,https://shakespeareandco.princeton.edu/members/gibney-s/,S. Gibney,"Gibney, S.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-08-24,1926-09-12,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/christie-murder-roger-ackroyd/,The Murder of Roger Ackroyd,,"Christie, Agatha",1926,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/89%2F50%2F02%2F895002cdfd9f40008230e8e772931579%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1926-08-24,1926-09-24,https://shakespeareandco.princeton.edu/members/binder/,Pearl Binder,"Binder, Pearl",15.00,,1 month,31,1,,1926-08-18,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-08-25,1926-09-01,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/dreiser-american-tragedy/,An American Tragedy,2 vols.,"Dreiser, Theodore",1925,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/f7%2F9b%2Fe0%2Ff79be07300994867984b67006c59c079%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-08-25,1926-08-25,https://shakespeareandco.princeton.edu/members/merrel/,Mrs. C. W. Merrel,"Merrel, Mrs. C. W.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Crossed out,1926-08-26,,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/moore-esther-waters/,Esther Waters,,"Moore, George",1894,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/54%2Fb9%2F90%2F54b9902d15d24fa0953f0dc338355e2e%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1926-08-26,1927-08-26,https://shakespeareandco.princeton.edu/members/fauquet/,Mme Fauquet,"Fauquet, Mme",115.00,50.00,1 year,365,1,,1926-08-26,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-08-26,,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/meredith-evan-harrington/,Evan Harrington,,"Meredith, George",1861,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/54%2Fb9%2F90%2F54b9902d15d24fa0953f0dc338355e2e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-08-26,1926-10-14,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,49,,,https://shakespeareandco.princeton.edu/books/lewis-arrowsmith/,Arrowsmith,,"Lewis, Sinclair",1925,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/54%2Fb9%2F90%2F54b9902d15d24fa0953f0dc338355e2e%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1926-08-26,1926-09-26,https://shakespeareandco.princeton.edu/members/enckell-olof/,Olof Enckell,"Enckell, Olof",15.00,50.00,1 month,31,1,,1926-08-26,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-08-26,1926-09-10,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/ford-mirror-france/,A Mirror to France,,"Ford, Ford Madox",1926,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/a4%2F8c%2F7f%2Fa48c7f974df34e81af59231b85679646%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1926-08-27,1926-08-27,https://shakespeareandco.princeton.edu/members/johnson-g-e/;https://shakespeareandco.princeton.edu/members/johnson-8/,G. E. Johnson;Miss Johnson,"Johnson, G. E.;Johnson, Miss",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1926-08-27,1926-08-27,https://shakespeareandco.princeton.edu/members/robinson-mrs/,Mrs. Robinson,"Robinson, Mrs.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1926-08-27,1926-08-27,https://shakespeareandco.princeton.edu/members/burke-mrs-alfred/,Mrs. Alfred Burke,"Burke, Mrs. Alfred",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1926-08-27,1926-08-27,https://shakespeareandco.princeton.edu/members/barker-caroline-r/,Caroline R. Barker,"Barker, Caroline R.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1926-08-27,1926-08-27,https://shakespeareandco.princeton.edu/members/howard-c-w-2/,C. W. Howard,"Howard, C. W.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-08-28,,https://shakespeareandco.princeton.edu/members/james-t-m/,T. M. James,"James, T. M.",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/glasgow-barren-ground/,Barren Ground,,"Glasgow, Ellen",1925,,Lending Library Card,"Sylvia Beach, T. M. James Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e196e1ad-ff6e-4b37-a96b-a404958d4dd7/manifest,https://iiif.princeton.edu/loris/figgy_prod/cd%2F97%2F9c%2Fcd979c8046984b4e85ce74b1db76c4f8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-08-28,,https://shakespeareandco.princeton.edu/members/james-t-m/,T. M. James,"James, T. M.",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/bradby-psycho-analysis-place/,Psycho-Analysis and Its Place in Life,,"Bradby, M. K.",1919,,Lending Library Card,"Sylvia Beach, T. M. James Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e196e1ad-ff6e-4b37-a96b-a404958d4dd7/manifest,https://iiif.princeton.edu/loris/figgy_prod/cd%2F97%2F9c%2Fcd979c8046984b4e85ce74b1db76c4f8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-08-28,1926-08-28,https://shakespeareandco.princeton.edu/members/grainger-c-f/,C. F. Grainger,"Grainger, C. F.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-08-30,1926-09-27,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,28,,,https://shakespeareandco.princeton.edu/books/hudson-purple-land/,The Purple Land,,"Hudson, W. H.",1885,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/34%2F63%2Fef%2F3463efdf87f94472a29bed492f604a45%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-08-30,1926-09-02,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/trollope-barchester-towers/,Barchester Towers,,"Trollope, Anthony",1857,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/19%2F8d%2F36%2F198d3652445c468595f2ccdf76b02226%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1926-08-31,1926-09-30,https://shakespeareandco.princeton.edu/members/champion/,B. Champion,"Champion, B.",15.00,50.00,1 month,30,1,,1926-08-31,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-08-31,1926-09-15,https://shakespeareandco.princeton.edu/members/schirmer/,Mabel Schirmer / Mrs. Robert Schirmer,"Schirmer, Mabel",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/butler-way-flesh/,The Way of All Flesh,,"Butler, Samuel",1903,,Lending Library Card,"Sylvia Beach, Mabel Schirmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4c00d0b2-7cb9-46e1-b628-2eac6ac7bb07/manifest,https://iiif-cloud.princeton.edu/iiif/2/5c%2F65%2F2f%2F5c652f21fd1c4c13ae7e4c0e1503b895%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-09-01,1926-09-16,https://shakespeareandco.princeton.edu/members/schirmer/,Mabel Schirmer / Mrs. Robert Schirmer,"Schirmer, Mabel",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/cabell-silver-stallion/,The Silver Stallion,,"Cabell, James Branch",1926,,Lending Library Card,"Sylvia Beach, Mabel Schirmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4c00d0b2-7cb9-46e1-b628-2eac6ac7bb07/manifest,https://iiif-cloud.princeton.edu/iiif/2/5c%2F65%2F2f%2F5c652f21fd1c4c13ae7e4c0e1503b895%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-09-01,1926-09-03,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/fitzgerald-great-gatsby/,The Great Gatsby,,"Fitzgerald, F. Scott",1925,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/f7%2F9b%2Fe0%2Ff79be07300994867984b67006c59c079%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-09-02,1926-10-02,https://shakespeareandco.princeton.edu/members/doughty-howard/,Howard Doughty,"Doughty, Howard",20.00,100.00,1 month,30,2,,1926-09-02,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1926-09-02,1926-09-02,https://shakespeareandco.princeton.edu/members/kirstein-lincoln/,Lincoln Kirstein,"Kirstein, Lincoln",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-09-02,1926-09-04,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/van-vechten-merry-go-round/,The Merry-Go-Round,,"Van Vechten, Carl",1918,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/19%2F8d%2F36%2F198d3652445c468595f2ccdf76b02226%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1926-09-02,1927-03-02,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",130.00,,6 months,181,2,,1926-09-20,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,;https://iiif.princeton.edu/loris/figgy_prod/f7%2F9b%2Fe0%2Ff79be07300994867984b67006c59c079%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-09-02,1926-10-02,https://shakespeareandco.princeton.edu/members/batkin/,P. G. Batkin,"Batkin, P. G.",20.00,100.00,1 month,30,2,,1926-09-02,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-09-03,1926-09-07,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/cummings-enormous-room/,The Enormous Room,,"Cummings, E. E.",1922,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/f7%2F9b%2Fe0%2Ff79be07300994867984b67006c59c079%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-09-04,1926-09-04,https://shakespeareandco.princeton.edu/members/herald-e/,E. Herald,"Herald, E.",,,,,,,,200.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1926-09-04,1926-10-04,https://shakespeareandco.princeton.edu/members/rathje/,Mr. Rathje,"Rathje, Mr.",20.00,100.00,1 month,30,2,,1926-09-04,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-09-04,1926-09-09,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/gibbs-reckless-lady/,The Reckless Lady,,"Gibbs, Philip",1924,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/19%2F8d%2F36%2F198d3652445c468595f2ccdf76b02226%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1926-09-06,1926-09-06,https://shakespeareandco.princeton.edu/members/peck/,Miss Peck,"Peck, Miss",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1926-09-07,1926-10-07,https://shakespeareandco.princeton.edu/members/unnamed-member-14/,[unnamed member],[unnamed member],20.00,100.00,1 month,30,2,,1926-09-07,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-09-07,1926-09-13,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/stein-geography-plays/,Geography and Plays,,"Stein, Gertrude",1922,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/f7%2F9b%2Fe0%2Ff79be07300994867984b67006c59c079%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-09-07,1926-10-07,https://shakespeareandco.princeton.edu/members/harrison-h-k/,Helen K. Harrison,"Harrison, Helen K.",15.00,50.00,1 month,30,1,,1926-09-07,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-09-09,1926-09-11,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/george-gifts-sheba/,Gifts of Sheba,,"George, Walter Lionel",1926,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/19%2F8d%2F36%2F198d3652445c468595f2ccdf76b02226%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1926-09-09,1926-09-09,https://shakespeareandco.princeton.edu/members/conrad-p-w/,P. W. Conrad,"Conrad, P. W.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-09-09,1926-09-13,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/dreiser-hand-potter-tragedy/,The Hand of the Potter: A Tragedy in Four Acts,,"Dreiser, Theodore",1918,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/32%2F11%2F44%2F3211445456604f26802be4ccce47b278%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-09-10,1926-10-01,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/coquiot-paul-cezanne/,Paul CΓ©zanne,,,,"Unidentified. Likely Ambroise Vollard's *Paul CeΜzanne: His Life and Art,* translated by Harold L. Van Doren (1923); or Roger Fry's *CeΜzanne: A Study of his Development* (1927). Michael Reynolds identifies the book that Ernest Hemingway borrowed as Vollard's *Paul CeΜzanne.*",Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/a4%2F8c%2F7f%2Fa48c7f974df34e81af59231b85679646%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-09-10,1926-09-14,https://shakespeareandco.princeton.edu/members/rolo/,Jacques Rolo,"Rolo, Jacques",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/swinburne-william-blake-critical/,William Blake: A Critical Essay,,"Swinburne, Algernon Charles",1868,,Lending Library Card,"Sylvia Beach, Jacques Rolo Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6392fdb0-c221-4d3b-8a38-a342aa9aec90/manifest,https://iiif.princeton.edu/loris/figgy_prod/58%2Ff3%2F21%2F58f321d211e44874b07d245dc4e313e3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-09-10,1926-09-10,https://shakespeareandco.princeton.edu/members/mccormack-jane/,Jane McCormack,"McCormack, Jane",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-09-10,1926-09-15,https://shakespeareandco.princeton.edu/members/rolo/,Jacques Rolo,"Rolo, Jacques",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/dos-passos-manhattan-transfer/,Manhattan Transfer,,"Dos Passos, John",1925,,Lending Library Card,"Sylvia Beach, Jacques Rolo Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6392fdb0-c221-4d3b-8a38-a342aa9aec90/manifest,https://iiif.princeton.edu/loris/figgy_prod/58%2Ff3%2F21%2F58f321d211e44874b07d245dc4e313e3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-09-10,,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/lardner-love-nest-stories/,The Love Nest and Other Stories,,"Lardner, Ring",1926,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/9f%2F65%2F7c%2F9f657caabb024a00820dd1156308da37%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-09-10,1926-09-22,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/dos-passos-garbage-man/,The Garbage Man,,"Dos Passos, John",1926,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/9f%2F65%2F7c%2F9f657caabb024a00820dd1156308da37%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-09-10,1926-10-01,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/turgenev-sportsmans-sketches/,A Sportsman's Sketches,,"Turgenev, Ivan",1895,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/a4%2F8c%2F7f%2Fa48c7f974df34e81af59231b85679646%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1926-09-10,1926-10-10,https://shakespeareandco.princeton.edu/members/rolo/,Jacques Rolo,"Rolo, Jacques",20.00,100.00,1 month,30,2,,1926-09-10,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Jacques Rolo Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/6392fdb0-c221-4d3b-8a38-a342aa9aec90/manifest,;https://iiif.princeton.edu/loris/figgy_prod/58%2Ff3%2F21%2F58f321d211e44874b07d245dc4e313e3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-09-11,1926-09-13,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/wodehouse-sam-sudden/,Sam the Sudden,,"Wodehouse, P. G.",1925,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/19%2F8d%2F36%2F198d3652445c468595f2ccdf76b02226%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1926-09-11,1926-10-11,https://shakespeareandco.princeton.edu/members/kranenburg-hoen/,Mme Kranenburg-Hoen,"Kranenburg-Hoen, Mme",,,1 month,30,,,1926-09-11,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-09-13,1926-09-20,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/drinkwater-pilgrim-eternity/,The Pilgrim of Eternity,,"Drinkwater, John",1925,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/f7%2F9b%2Fe0%2Ff79be07300994867984b67006c59c079%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-09-13,1926-10-15,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,32,,,https://shakespeareandco.princeton.edu/books/suckow-iowa-interiors/,Iowa Interiors,,"Suckow, Ruth",1926,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/19%2F8d%2F36%2F198d3652445c468595f2ccdf76b02226%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-09-13,1926-09-17,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/sinclair-mary-olivier-life/,Mary Olivier: A Life,,"Sinclair, May",1919,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/32%2F11%2F44%2F3211445456604f26802be4ccce47b278%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-09-13,1926-09-14,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/mackworth-time-tide/,Time and Tide,,,,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/19%2F8d%2F36%2F198d3652445c468595f2ccdf76b02226%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-09-13,1926-09-14,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/criterion/,The Criterion,"Vol. 4, no. 2, Apr 1926 The New Criterion",,,"Renamed *The New Criterion* from January 1926 to January 1927, and *The Monthly Criterion* from May 1927 to March 1928.",Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/19%2F8d%2F36%2F198d3652445c468595f2ccdf76b02226%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-09-13,1927-01-08,https://shakespeareandco.princeton.edu/members/rieder/,M. Rieder,"Rieder, M.",,,,,,,,,Returned,117,,,https://shakespeareandco.princeton.edu/books/hawthorne-scarlet-letter/,The Scarlet Letter,,"Hawthorne, Nathaniel",1850,,Lending Library Card,"Sylvia Beach, Rieder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/559c8919-8881-40ad-b027-67dbf1b23611/manifest,https://iiif.princeton.edu/loris/figgy_prod/e8%2F10%2F7c%2Fe8107c2c950f411d8ceeb6bb8bdc01c7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-09-13,1926-09-13,https://shakespeareandco.princeton.edu/members/hillier/,Mr. Hillier,"Hillier, Mr.",,,,,,,,150.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-09-14,1926-09-15,https://shakespeareandco.princeton.edu/members/rolo/,Jacques Rolo,"Rolo, Jacques",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/donne-donne-poetical-works/,The Poems of John Donne,Vol. 1 The Text of the Poems with Appendixes,"Donne, John",1912,,Lending Library Card,"Sylvia Beach, Jacques Rolo Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6392fdb0-c221-4d3b-8a38-a342aa9aec90/manifest,https://iiif.princeton.edu/loris/figgy_prod/58%2Ff3%2F21%2F58f321d211e44874b07d245dc4e313e3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-09-14,1926-09-17,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/hurst-lummox/,Lummox,,"Hurst, Fannie",1923,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/19%2F8d%2F36%2F198d3652445c468595f2ccdf76b02226%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1926-09-14,1926-10-14,https://shakespeareandco.princeton.edu/members/barton-c/,C. F. Barton,"Barton, C. F.",20.00,100.00,1 month,30,2,,1926-09-14,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-09-15,1926-10-19,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,34,,,https://shakespeareandco.princeton.edu/books/sitwell-bombardment/,Before the Bombardment,,"Sitwell, Osbert",1926,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/19%2F8d%2F36%2F198d3652445c468595f2ccdf76b02226%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1926-09-15,1926-10-15,https://shakespeareandco.princeton.edu/members/matisse/,Mme Matisse,"Matisse, Mme",15.00,50.00,1 month,30,1,,1926-09-15,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-09-15,1926-09-20,https://shakespeareandco.princeton.edu/members/rolo/,Jacques Rolo,"Rolo, Jacques",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/lewis-mantrap/,Mantrap,,"Lewis, Sinclair",1926,,Lending Library Card,"Sylvia Beach, Jacques Rolo Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6392fdb0-c221-4d3b-8a38-a342aa9aec90/manifest,https://iiif.princeton.edu/loris/figgy_prod/58%2Ff3%2F21%2F58f321d211e44874b07d245dc4e313e3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1926-09-15,1926-10-15,https://shakespeareandco.princeton.edu/members/henton-l/;https://shakespeareandco.princeton.edu/members/henton/,L. Henton;Mrs. Henton,"Henton, L.;Henton, Mrs.",20.00,,1 month,30,2,,1926-09-01,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-09-15,1926-09-20,https://shakespeareandco.princeton.edu/members/rolo/,Jacques Rolo,"Rolo, Jacques",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/huxley-barren-leaves/,Those Barren Leaves,,"Huxley, Aldous",1925,,Lending Library Card,"Sylvia Beach, Jacques Rolo Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6392fdb0-c221-4d3b-8a38-a342aa9aec90/manifest,https://iiif.princeton.edu/loris/figgy_prod/58%2Ff3%2F21%2F58f321d211e44874b07d245dc4e313e3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1926-09-15,1926-10-15,https://shakespeareandco.princeton.edu/members/parry/;https://shakespeareandco.princeton.edu/members/parry-3/,M. Parry;Mrs. Parry,"Parry, M.;Parry, Mrs.",20.00,100.00,1 month,30,2,,1926-09-15,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1926-09-15,1926-10-15,https://shakespeareandco.princeton.edu/members/everard-2/,Mrs. Everard,"Everard, Mrs.",20.00,,1 month,31,2,,1926-07-15,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1926-09-16,1926-12-16,https://shakespeareandco.princeton.edu/members/smyth-pigott/,Lady Clare Mary Cecilia Feilding / Lady Clare Smyth-Pigott,"Smyth-Pigott, Clare",50.00,,3 months,91,2,,1926-09-16,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Clair Smyth-Pigott Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/6068331a-83cf-40bf-8850-58d8bc531fdb/manifest,;https://iiif.princeton.edu/loris/figgy_prod/28%2F5c%2F0f%2F285c0f8fd85b49808f3af087f2e76fda%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-09-16,1926-10-16,https://shakespeareandco.princeton.edu/members/moore-charles/,Charles H. Moore,"Moore, Charles H.",16.00,100.00,1 month,30,2,Professor / Teacher,1926-09-16,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-09-17,1926-10-17,https://shakespeareandco.princeton.edu/members/atherton-smith/,Miss Atherton-Smith,"Atherton-Smith, Miss",15.00,50.00,1 month,30,1,,1926-09-17,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-09-17,1926-09-24,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/buchan-dancing-floor/,The Dancing Floor,,"Buchan, John",1926,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/32%2F11%2F44%2F3211445456604f26802be4ccce47b278%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-09-17,1926-09-20,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/huxley-two-three-graces/,Two or Three Graces and Other Stories,,"Huxley, Aldous",1926,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/19%2F8d%2F36%2F198d3652445c468595f2ccdf76b02226%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1926-09-17,1926-10-17,https://shakespeareandco.princeton.edu/members/davis-elba/,Ella Davis,"Davis, Ella",12.00,50.00,1 month,30,1,,1926-09-17,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-09-17,1926-10-17,https://shakespeareandco.princeton.edu/members/clancy-louise/,Louise Clancy,"Clancy, Louise",15.00,50.00,1 month,30,1,,1926-09-17,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1926-09-18,1926-09-18,https://shakespeareandco.princeton.edu/members/cowles-1/,Mrs. Cowles,"Cowles, Mrs.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1926-09-18,1926-10-18,https://shakespeareandco.princeton.edu/members/geisel-theodore/,Theodore Geisel / Dr. Seuss,"Geisel, Theodore",15.00,50.00,1 month,30,1,,1926-09-18,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-09-19,1926-11-09,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,51,,,https://shakespeareandco.princeton.edu/books/babbitt-rousseau-romanticism/,Rousseau and Romanticism,,"Babbitt, Irving",1919,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/19%2F8d%2F36%2F198d3652445c468595f2ccdf76b02226%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-09-20,1926-09-21,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/erskine-private-life-helen/,The Private Life of Helen of Troy,,"Erskine, John",1925,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/f7%2F9b%2Fe0%2Ff79be07300994867984b67006c59c079%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-09-20,1926-09-22,https://shakespeareandco.princeton.edu/members/rolo/,Jacques Rolo,"Rolo, Jacques",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/de-la-mare-poems-1901-1908/,"Poems, 1901 β 1908",2 vols.,"De la Mare, Walter",1920,,Lending Library Card,"Sylvia Beach, Jacques Rolo Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6392fdb0-c221-4d3b-8a38-a342aa9aec90/manifest,https://iiif.princeton.edu/loris/figgy_prod/58%2Ff3%2F21%2F58f321d211e44874b07d245dc4e313e3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-09-20,1926-09-29,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/lawrence-rainbow/,The Rainbow,,"Lawrence, D. H.",1915,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/7d%2F04%2Fa5%2F7d04a546bbe54bbc84c266363ef1a61c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-09-20,1926-09-20,https://shakespeareandco.princeton.edu/members/herald-e/,E. Herald,"Herald, E.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-09-20,1926-09-22,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/hurst-mannequin/,Mannequin,,"Hurst, Fannie",1926,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/19%2F8d%2F36%2F198d3652445c468595f2ccdf76b02226%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-09-20,1926-09-25,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/anderson-marching-men/,Marching Men,,"Anderson, Sherwood",1917,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/05%2Fcc%2F42%2F05cc420c01b74e7885f72bc117cfdb3d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-09-20,1926-09-22,https://shakespeareandco.princeton.edu/members/rolo/,Jacques Rolo,"Rolo, Jacques",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/dreiser-hey-rub-dub/,Hey Rub-a-Dub-Dub: A Book of the Mystery and Wonder and Terror of Life,,"Dreiser, Theodore",1920,,Lending Library Card,"Sylvia Beach, Jacques Rolo Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6392fdb0-c221-4d3b-8a38-a342aa9aec90/manifest,https://iiif.princeton.edu/loris/figgy_prod/58%2Ff3%2F21%2F58f321d211e44874b07d245dc4e313e3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-09-21,1926-12-21,https://shakespeareandco.princeton.edu/members/macnaughten-b/,B. MacNaughten,"MacNaughten, B.",60.00,50.00,3 months,91,1,,1926-09-21,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Supplement,1926-09-21,1926-10-18,https://shakespeareandco.princeton.edu/members/geisel-theodore/,Theodore Geisel / Dr. Seuss,"Geisel, Theodore",20.00,50.00,27 days,27,2,,1926-09-21,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1926-09-21,1926-12-21,https://shakespeareandco.princeton.edu/members/watson-h-s/,Mrs. H. S. Watson,"Watson, Mrs. H. S.",85.00,100.00,3 months,91,2,,1926-09-21,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-09-21,1926-09-27,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/butler-authoress-odyssey-wrote/,"The Authoress of the Odyssey: Where and When She Wrote, Who She Was, the Use She Made of the Iliad, and How the Poem Grew under Her Hands",,"Butler, Samuel",1897,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/f7%2F9b%2Fe0%2Ff79be07300994867984b67006c59c079%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-09-22,1926-10-12,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/lewis-mantrap/,Mantrap,,"Lewis, Sinclair",1926,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/9f%2F65%2F7c%2F9f657caabb024a00820dd1156308da37%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-09-22,1926-09-24,https://shakespeareandco.princeton.edu/members/rolo/,Jacques Rolo,"Rolo, Jacques",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/a-e-collected-poems/,Collected Poems,,Γ,1920,,Lending Library Card,"Sylvia Beach, Jacques Rolo Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6392fdb0-c221-4d3b-8a38-a342aa9aec90/manifest,https://iiif.princeton.edu/loris/figgy_prod/58%2Ff3%2F21%2F58f321d211e44874b07d245dc4e313e3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-09-22,1926-10-12,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/broun-gandle-follows-nose/,Gandle Follows His Nose,,"Broun, Heywood Campbell",1926,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/9f%2F65%2F7c%2F9f657caabb024a00820dd1156308da37%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1926-09-22,1926-10-22,https://shakespeareandco.princeton.edu/members/maas-e-f/,Mrs. E. F. Maas,"Maas, Mrs. E. F.",25.00,50.00,1 month,30,1,,1926-09-22,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-09-22,1926-10-08,https://shakespeareandco.princeton.edu/members/rolo/,Jacques Rolo,"Rolo, Jacques",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/james-varieties-religious-experience/,The Varieties of Religious Experience,,"James, William",1902,,Lending Library Card,"Sylvia Beach, Jacques Rolo Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6392fdb0-c221-4d3b-8a38-a342aa9aec90/manifest,https://iiif.princeton.edu/loris/figgy_prod/58%2Ff3%2F21%2F58f321d211e44874b07d245dc4e313e3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-09-22,1926-10-12,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/chesterton-incredulity-father-brown/,The Incredulity of Father Brown,,"Chesterton, G. K.",1926,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/9f%2F65%2F7c%2F9f657caabb024a00820dd1156308da37%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-09-22,1926-09-29,https://shakespeareandco.princeton.edu/members/rolo/,Jacques Rolo,"Rolo, Jacques",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/monroe-new-poetry-anthology/,The New Poetry: Anthology of Twentieth Century Verse in English,,,1918,,Lending Library Card,"Sylvia Beach, Jacques Rolo Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6392fdb0-c221-4d3b-8a38-a342aa9aec90/manifest,https://iiif.princeton.edu/loris/figgy_prod/58%2Ff3%2F21%2F58f321d211e44874b07d245dc4e313e3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-09-22,1926-09-27,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/west-judge/,The Judge,,"West, Rebecca",1922,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/19%2F8d%2F36%2F198d3652445c468595f2ccdf76b02226%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-09-22,1926-10-12,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/erskine-private-life-helen/,The Private Life of Helen of Troy,,"Erskine, John",1925,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/9f%2F65%2F7c%2F9f657caabb024a00820dd1156308da37%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1926-09-23,1926-10-23,https://shakespeareandco.princeton.edu/members/collins-f-b/,F. B. Collins,"Collins, F. B.",28.00,100.00,1 month,30,2,Student,1926-09-23,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-09-24,1926-10-05,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/butler-erewhon/,Erewhon,,"Butler, Samuel",1872,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/32%2F11%2F44%2F3211445456604f26802be4ccce47b278%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-09-25,1926-10-01,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/croly-new-republic/,The New Republic,"Vol. 48, no. 615, Sep 15, 1926",,,"Antoinette Bernheim's lending library card includes the following notation next to her borrow on March 1, 1939: 39/10/2. There is no issue of *The New Republic* on that date.",Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/a4%2F8c%2F7f%2Fa48c7f974df34e81af59231b85679646%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-09-25,1926-10-05,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/harris-man-shakespeare-tragic/,The Man Shakespeare and His Tragic Life Story,,"Harris, Frank",1909,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/05%2Fcc%2F42%2F05cc420c01b74e7885f72bc117cfdb3d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-09-27,1926-10-13,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/wells-christina-albertas-father/,Christina Alberta's Father,,"Wells, H. G.",1925,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/19%2F8d%2F36%2F198d3652445c468595f2ccdf76b02226%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1926-09-27,1926-10-27,https://shakespeareandco.princeton.edu/members/hood-dorothy/,Dorothy Hood,"Hood, Dorothy",35.00,100.00,1 month,30,2,,1926-09-27,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-09-27,1926-11-10,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,44,,,https://shakespeareandco.princeton.edu/books/synge-playboy-western-world/,The Playboy of the Western World,,"Synge, John Millington",1907,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/34%2F63%2Fef%2F3463efdf87f94472a29bed492f604a45%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-09-27,1926-10-30,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,33,,,https://shakespeareandco.princeton.edu/books/bradley-shakespearean-tragedy-lectures/,"Shakespearean Tragedy: Lectures on Hamlet, Othello, King Lear, Macbeth",,"Bradley, A. C.",1904,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/f7%2F9b%2Fe0%2Ff79be07300994867984b67006c59c079%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-09-27,1926-10-07,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/saintsbury-scrap-book/,A Scrap Book,,"Saintsbury, George",1922,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/c2%2Ff7%2F29%2Fc2f7296928344566aa900c8c0644c909%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-09-28,1926-09-28,https://shakespeareandco.princeton.edu/members/heard-e-f/,Dr. E. F. Heard,"Heard, Dr. E. F.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-09-28,1926-10-28,https://shakespeareandco.princeton.edu/members/hathaway-d/,D. Hathaway,"Hathaway, D.",25.00,50.00,1 month,30,1,,1926-09-28,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1926-09-28,1926-09-28,https://shakespeareandco.princeton.edu/members/enckell-olof/,Olof Enckell,"Enckell, Olof",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1926-09-28,1926-12-28,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",20.00,,3 months,91,1,,1926-11-27,,,,,,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,;https://iiif-cloud.princeton.edu/iiif/2/32%2F11%2F44%2F3211445456604f26802be4ccce47b278%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1926-09-29,1926-09-29,https://shakespeareandco.princeton.edu/members/batkin/,P. G. Batkin,"Batkin, P. G.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1926-09-29,1926-09-29,https://shakespeareandco.princeton.edu/members/geisel-theodore/,Theodore Geisel / Dr. Seuss,"Geisel, Theodore",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-09-29,1926-10-08,https://shakespeareandco.princeton.edu/members/rolo/,Jacques Rolo,"Rolo, Jacques",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/moore-esther-waters/,Esther Waters,,"Moore, George",1894,,Lending Library Card,"Sylvia Beach, Jacques Rolo Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6392fdb0-c221-4d3b-8a38-a342aa9aec90/manifest,https://iiif.princeton.edu/loris/figgy_prod/58%2Ff3%2F21%2F58f321d211e44874b07d245dc4e313e3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-09-29,1926-10-29,https://shakespeareandco.princeton.edu/members/crawford-j/,John R. Crawford,"Crawford, John R.",,100.00,1 month,30,2,Professor / Teacher,1926-09-29,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-09-29,1926-10-02,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/deeping-sorrell/,Sorrell and Son,,"Deeping, Warwick",1926,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/7d%2F04%2Fa5%2F7d04a546bbe54bbc84c266363ef1a61c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-09-30,1926-10-30,https://shakespeareandco.princeton.edu/members/myers-r-h/,R. H. Myers,"Myers, R. H.",25.00,50.00,1 month,30,1,,1926-09-30,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1926-10-01,1926-11-01,https://shakespeareandco.princeton.edu/members/dunlop/,Mrs. John Dunlop,"Dunlop, Mrs. John",25.00,,1 month,31,1,,1926-10-01,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1926-10-01,1926-11-01,https://shakespeareandco.princeton.edu/members/kimpell-julia/,Julia Kimpell,"Kimbell, Julia",25.00,50.00,1 month,31,1,,1926-10-01,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1926-10-01,1926-11-01,https://shakespeareandco.princeton.edu/members/ericson-1/,Mrs. Ericson,"Ericson, Mrs.",25.00,,1 month,31,1,,1926-09-25,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-10-01,1926-10-18,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/van-vechten-merry-go-round/,The Merry-Go-Round,,"Van Vechten, Carl",1918,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/4c%2Fb0%2F05%2F4cb0051a29fd4a30ac4d18a9278429f5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-10-01,1926-10-11,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/verga-mastro-don-gesualdo/,Mastro-don Gesualdo,,"Verga, Giovanni",1923,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/a4%2F8c%2F7f%2Fa48c7f974df34e81af59231b85679646%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1926-10-02,1926-10-09,https://shakespeareandco.princeton.edu/members/dare-c-w/,C. W. Dare,"Dare, C. W.",15.00,,1 week,7,,,1926-10-02,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-10-02,1926-10-07,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/mckenna-saviours-society-first/,The Saviours of Society: Being the First Part of The Realists,,"McKenna, Stephen",1926,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/7d%2F04%2Fa5%2F7d04a546bbe54bbc84c266363ef1a61c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1926-10-02,1926-11-02,https://shakespeareandco.princeton.edu/members/medley-p/,P. Medley,"Medley, P.",35.00,100.00,1 month,31,2,,1926-10-02,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1926-10-03,1927-12-03,https://shakespeareandco.princeton.edu/members/reavely/,Miss Reavely,"Reavely, Miss",40.00,,"1 year, 2 months",426,1,Student,1926-11-05,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Miss Reavely Lending Library Card, Box 44, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/9890abe9-3705-4628-9986-8baeff012780/manifest,;https://iiif-cloud.princeton.edu/iiif/2/32%2Fc6%2F6a%2F32c66ae1a4bf4488890133f59b35290d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-10-04,1926-10-05,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/galsworthy-dark-flower/,The Dark Flower,,"Galsworthy, John",1913,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/4d%2F1e%2Fd8%2F4d1ed879bf4f4dc981cf57b20eb3c596%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-10-04,1926-10-06,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/mencken-american-mercury/,The American Mercury,"Vol. 9, no. 34, Oct 1926",,,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/4d%2F1e%2Fd8%2F4d1ed879bf4f4dc981cf57b20eb3c596%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-10-04,,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/dos-passos-manhattan-transfer/,Manhattan Transfer,,"Dos Passos, John",1925,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/dc%2F94%2Ffd%2Fdc94fda0cd9c4ae195f988f5a500f00f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-10-04,1926-10-06,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/huneker-franz-liszt/,Franz Liszt,,"Huneker, James",1911,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/4d%2F1e%2Fd8%2F4d1ed879bf4f4dc981cf57b20eb3c596%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1926-10-04,1926-11-04,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",35.00,100.00,1 month,31,2,,1926-10-04,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,;https://iiif.princeton.edu/loris/figgy_prod/4d%2F1e%2Fd8%2F4d1ed879bf4f4dc981cf57b20eb3c596%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-10-05,1926-10-23,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/mcalmon-companion-volume/,A Companion Volume,,"McAlmon, Robert",1923,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/32%2F11%2F44%2F3211445456604f26802be4ccce47b278%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-10-05,1926-10-09,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/melville-moby-dick-whale/,"Moby-Dick; Or, the Whale",,"Melville, Herman",1851,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/4d%2F1e%2Fd8%2F4d1ed879bf4f4dc981cf57b20eb3c596%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-10-05,1926-10-05,https://shakespeareandco.princeton.edu/members/belnigon/,Mme Belnigon,"Belnigon, Mme",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-10-06,1926-10-09,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/dos-passos-three-soldiers/,Three Soldiers,,"Dos Passos, John",1921,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/4d%2F1e%2Fd8%2F4d1ed879bf4f4dc981cf57b20eb3c596%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-10-06,1926-10-09,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/mencken-american-mercury/,The American Mercury,,,,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/4d%2F1e%2Fd8%2F4d1ed879bf4f4dc981cf57b20eb3c596%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1926-10-06,1927-01-06,https://shakespeareandco.princeton.edu/members/bacon/,Robert Bacon,"Bacon, Robert",60.00,,3 months,92,1,,1926-10-06,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1926-10-06,1927-01-06,https://shakespeareandco.princeton.edu/members/hargreaves-olga/,Olga Hargreaves,"Hargreaves, Olga",60.00,40.00,3 months,92,1,,1926-10-06,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-10-07,1926-11-16,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,40,,,https://shakespeareandco.princeton.edu/books/moore-heloise-abelard/,HΓ©loise and AbΓ©lard,,"Moore, George",1921,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/c2%2Ff7%2F29%2Fc2f7296928344566aa900c8c0644c909%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-10-07,1926-11-07,https://shakespeareandco.princeton.edu/members/mendell-elizabeth/,Elizabeth Mendell,"Mendell, Elizabeth",25.00,50.00,1 month,31,1,,1926-10-07,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-10-07,1926-11-07,https://shakespeareandco.princeton.edu/members/maltby-drusilla/,Drusilla Maltby,"Maltby, Drusilla",25.00,50.00,1 month,31,1,,1926-10-07,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1926-10-07,1926-10-07,https://shakespeareandco.princeton.edu/members/kranenburg-hoen/,Mme Kranenburg-Hoen,"Kranenburg-Hoen, Mme",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-10-07,1926-10-13,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/austen-letters-jane-austen/,Letters of Jane Austen,,"Austen, Jane",1884,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/7d%2F04%2Fa5%2F7d04a546bbe54bbc84c266363ef1a61c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-10-08,1926-10-08,https://shakespeareandco.princeton.edu/members/clancy-louise/,Louise Clancy,"Clancy, Louise",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1926-10-08,1926-10-08,https://shakespeareandco.princeton.edu/members/bierring-e/,E. Bierring,"Bierring, E.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1926-10-08,1927-04-08,https://shakespeareandco.princeton.edu/members/blake-w/,W. Blake,"Blake, W.",100.00,50.00,6 months,182,1,,1926-10-08,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-10-08,1926-10-18,https://shakespeareandco.princeton.edu/members/rolo/,Jacques Rolo,"Rolo, Jacques",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/complete-prose/,Complete Prose,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Jacques Rolo Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6392fdb0-c221-4d3b-8a38-a342aa9aec90/manifest,https://iiif.princeton.edu/loris/figgy_prod/58%2Ff3%2F21%2F58f321d211e44874b07d245dc4e313e3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-10-09,1926-10-11,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/nathan-world-false-face/,The World in False Face,,"Nathan, George Jean",1923,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/4d%2F1e%2Fd8%2F4d1ed879bf4f4dc981cf57b20eb3c596%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-10-09,1926-10-23,https://shakespeareandco.princeton.edu/members/birkanruth-e/,E. Birkanruth,"Birkanruth, E.",12.50,,2 weeks,14,1,,1926-10-09,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-10-10,1926-10-11,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/fitzgerald-sad-young-men/,All the Sad Young Men,,"Fitzgerald, F. Scott",1926,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/4d%2F1e%2Fd8%2F4d1ed879bf4f4dc981cf57b20eb3c596%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1926-10-10,1926-11-10,https://shakespeareandco.princeton.edu/members/rolo/,Jacques Rolo,"Rolo, Jacques",25.00,50.00,1 month,31,1,,1926-10-08,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Jacques Rolo Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/6392fdb0-c221-4d3b-8a38-a342aa9aec90/manifest,;https://iiif.princeton.edu/loris/figgy_prod/58%2Ff3%2F21%2F58f321d211e44874b07d245dc4e313e3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-10-11,1926-10-12,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/lewis-mantrap/,Mantrap,,"Lewis, Sinclair",1926,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/4d%2F1e%2Fd8%2F4d1ed879bf4f4dc981cf57b20eb3c596%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-10-11,1927-01-11,https://shakespeareandco.princeton.edu/members/grover-dm/,D. M. Grover,"Grover, D. M.",60.00,50.00,3 months,92,1,,1926-10-11,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-10-11,1927-01-11,https://shakespeareandco.princeton.edu/members/lo-h/,H. Lo,"Lo, H.",48.00,50.00,3 months,92,1,Student,1926-10-11,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-10-11,1926-10-12,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/miro-figures-passion-lord/,Figures of the Passion of Our Lord,,"MirΓ³, Gabriel",1924,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/4d%2F1e%2Fd8%2F4d1ed879bf4f4dc981cf57b20eb3c596%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-10-11,,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/sherard-life-work-evil/,"The Life, Work, and Evil Fate of Guy de Maupassant",,"Sherard, Robert Harborough",1926,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/a4%2F8c%2F7f%2Fa48c7f974df34e81af59231b85679646%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1926-10-11,1927-01-11,https://shakespeareandco.princeton.edu/members/mccay-1/;https://shakespeareandco.princeton.edu/members/mccay-w-s/,Mrs. McCay / MacCay;W. S. McCay,"McCay, Mrs.;McCay, W. S.",85.00,,3 months,92,2,,1926-10-11,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-10-11,,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/mencken-americana/,Americana,1926,,,"An annual, featuring selections from [*The American Mercury*](https://shakespeareandco.princeton.edu/books/mencken-american-mercury/).",Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/a4%2F8c%2F7f%2Fa48c7f974df34e81af59231b85679646%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-10-12,1926-10-14,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/morley-mince-pie-adventures/,Mince Pie: Adventures on the Sunny Side of Grub Street,,"Morley, Christopher",1919,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/4d%2F1e%2Fd8%2F4d1ed879bf4f4dc981cf57b20eb3c596%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-10-12,1926-10-21,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/hecht-count-bruga/,Count Bruga,,"Hecht, Ben",1926,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/9f%2F65%2F7c%2F9f657caabb024a00820dd1156308da37%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-10-12,1926-10-14,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/loos-gentlemen-prefer-blondes/,Gentlemen Prefer Blondes: The Illuminating Diary of a Professional Lady,,"Loos, Anita",1925,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/4d%2F1e%2Fd8%2F4d1ed879bf4f4dc981cf57b20eb3c596%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-10-12,1926-10-21,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/firbank-vainglory/,Vainglory,,"Firbank, Ronald",1915,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/9f%2F65%2F7c%2F9f657caabb024a00820dd1156308da37%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-10-12,1926-10-21,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/schnitzler-fraulein-else/,Fraulein Else,,"Schnitzler, Arthur",1924,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/9f%2F65%2F7c%2F9f657caabb024a00820dd1156308da37%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1926-10-12,1926-11-12,https://shakespeareandco.princeton.edu/members/bonney/,Louise Bonney,"Bonney, Louise",25.00,50.00,1 month,31,1,,1926-10-12,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-10-13,1926-10-16,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/beresford-kind-man/,That Kind of Man,,"Beresford, J. D.",1926,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/7d%2F04%2Fa5%2F7d04a546bbe54bbc84c266363ef1a61c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-10-13,1926-10-13,https://shakespeareandco.princeton.edu/members/brenner-e/,E. Brenner,"Brenner, E.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1926-10-13,1926-10-13,https://shakespeareandco.princeton.edu/members/jaffe-7/;https://shakespeareandco.princeton.edu/members/jaffe-6/,Mr. Jaffe;Mrs. Jaffe,"Jaffe, Mr.;Jaffe, Mrs.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-10-14,1926-10-15,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/lardner-write-short-stories/,How to Write Short Stories (with Samples),,"Lardner, Ring",1925,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/4d%2F1e%2Fd8%2F4d1ed879bf4f4dc981cf57b20eb3c596%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-10-14,1926-12-07,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,54,,,https://shakespeareandco.princeton.edu/books/bradley-oxford-lectures-poetry/,Oxford Lectures on Poetry,,"Bradley, A. C.",1909,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/f7%2F9b%2Fe0%2Ff79be07300994867984b67006c59c079%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-10-14,1926-10-15,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/flecker-hassan/,Hassan,,"Flecker, James Elroy",1922,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/4d%2F1e%2Fd8%2F4d1ed879bf4f4dc981cf57b20eb3c596%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-10-14,1926-10-15,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/mencken-american-mercury/,The American Mercury,"Vol. 8, no. 30, Jun 1926",,,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/4d%2F1e%2Fd8%2F4d1ed879bf4f4dc981cf57b20eb3c596%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-10-14,1926-10-14,https://shakespeareandco.princeton.edu/members/barton-c/,C. F. Barton,"Barton, C. F.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-10-15,1926-10-16,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/byron-don-juan/,Don Juan,,"Byron, George Gordon Byron",1824,"On April 1, 1926, John Murray borrowed volume 1 of an unknown edition.",Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/4d%2F1e%2Fd8%2F4d1ed879bf4f4dc981cf57b20eb3c596%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-10-15,1926-10-15,https://shakespeareandco.princeton.edu/members/matisse/,Mme Matisse,"Matisse, Mme",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-10-15,1926-10-16,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/thayer-dial/,The Dial,"Vol. 80, no. 6, Jun 1926",,,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/4d%2F1e%2Fd8%2F4d1ed879bf4f4dc981cf57b20eb3c596%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1926-10-15,1927-04-15,https://shakespeareandco.princeton.edu/members/parry/;https://shakespeareandco.princeton.edu/members/parry-3/,M. Parry;Mrs. Parry,"Parry, M.;Parry, Mrs.",120.00,,6 months,182,2,Student,1926-10-15,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-10-15,1926-10-16,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/fitzgerald-great-gatsby/,The Great Gatsby,,"Fitzgerald, F. Scott",1925,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/4d%2F1e%2Fd8%2F4d1ed879bf4f4dc981cf57b20eb3c596%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-10-16,1926-10-21,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/kaye-smith-joanna-godden-married/,Joanna Godden Married and Other Stories,,"Kaye-Smith, Sheila",1926,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/7d%2F04%2Fa5%2F7d04a546bbe54bbc84c266363ef1a61c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-10-16,,https://shakespeareandco.princeton.edu/members/kuntz-1/,Mrs. Charles Kuntz,"Kuntz, Mrs. Charles",150.00,100.00,,,,,1926-10-16,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-10-16,1926-10-18,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/boswell-life-samuel-johnson/,Life of Samuel Johnson,Vol. 1,"Boswell, James",1791,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/4d%2F1e%2Fd8%2F4d1ed879bf4f4dc981cf57b20eb3c596%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-10-16,1926-10-19,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/cabell-silver-stallion/,The Silver Stallion,,"Cabell, James Branch",1926,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/4d%2F1e%2Fd8%2F4d1ed879bf4f4dc981cf57b20eb3c596%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-10-16,1926-11-16,https://shakespeareandco.princeton.edu/members/delapierre/,G. D. De Lapierre,"De Lapierre, G. D.",28.00,,1 month,31,2,AdL,1926-10-16,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-10-16,1926-11-16,https://shakespeareandco.princeton.edu/members/reynolds-a-m/,Mme A. M. Reynolds,"Reynolds, Mme A. M.",25.00,50.00,1 month,31,1,,1926-10-16,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, A.M. Reynolds Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/3421b1cc-cb37-4310-978c-5c8e08086ffb/manifest,;https://iiif.princeton.edu/loris/figgy_prod/80%2F2e%2F42%2F802e42f2392a44d4a01335e66adf9641%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-10-16,1926-11-16,https://shakespeareandco.princeton.edu/members/harrey-c-o/,Mrs. C. O. Harrey,"Harrey, Mrs. C. O.",25.00,50.00,1 month,31,1,,1926-10-16,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1926-10-16,1926-11-16,https://shakespeareandco.princeton.edu/members/moore-charles/,Charles H. Moore,"Moore, Charles H.",16.00,,1 month,31,2,,1926-10-16,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1926-10-16,1927-04-16,https://shakespeareandco.princeton.edu/members/rivard/,Mlle Rivard,"Rivard, Mlle",80.00,,6 months,182,1,,1926-09-22,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-10-16,1926-10-28,https://shakespeareandco.princeton.edu/members/reynolds-a-m/,Mme A. M. Reynolds,"Reynolds, Mme A. M.",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/hichens-god-within/,The God within Him,,"Hichens, Robert Smythe",1926,,Lending Library Card,"Sylvia Beach, A.M. Reynolds Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3421b1cc-cb37-4310-978c-5c8e08086ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/80%2F2e%2F42%2F802e42f2392a44d4a01335e66adf9641%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-10-18,1927-04-18,https://shakespeareandco.princeton.edu/members/child-2/,Freya Child,"Child, Freya",150.00,100.00,6 months,182,2,,1926-10-18,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-10-18,1926-11-18,https://shakespeareandco.princeton.edu/members/wise-ruth/,Ruth Wise,"Wise, Ruth",20.00,50.00,1 month,31,1,,1926-10-18,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1926-10-18,1926-11-18,https://shakespeareandco.princeton.edu/members/goetz-glenn/,Glenn Goetz,"Goetz, Glenn",25.00,,1 month,31,1,,1926-10-12,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-10-18,1926-10-22,https://shakespeareandco.princeton.edu/members/rolo/,Jacques Rolo,"Rolo, Jacques",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/hudson-green-mansions-romance/,Green Mansions: A Romance of the Tropical Forest,,"Hudson, W. H.",1904,,Lending Library Card,"Sylvia Beach, Jacques Rolo Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6392fdb0-c221-4d3b-8a38-a342aa9aec90/manifest,https://iiif.princeton.edu/loris/figgy_prod/58%2Ff3%2F21%2F58f321d211e44874b07d245dc4e313e3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1926-10-18,1926-11-18,https://shakespeareandco.princeton.edu/members/davis-elba/,Ella Davis,"Davis, Ella",20.00,,1 month,31,1,Student,1926-10-18,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-10-18,1926-10-19,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/criterion/,The Criterion,"Vol. 4, no. 3, Jun 1926 The New Criterion",,,"Renamed *The New Criterion* from January 1926 to January 1927, and *The Monthly Criterion* from May 1927 to March 1928.",Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/4d%2F1e%2Fd8%2F4d1ed879bf4f4dc981cf57b20eb3c596%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-10-18,1926-10-28,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/swinnerton-elder-sister/,The Elder Sister,,"Swinnerton, Frank",1925,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/4c%2Fb0%2F05%2F4cb0051a29fd4a30ac4d18a9278429f5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-10-18,1926-10-19,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/james-joyce/,James Joyce,,,,Unidentified. By or about Joyce.,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/4d%2F1e%2Fd8%2F4d1ed879bf4f4dc981cf57b20eb3c596%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-10-19,1926-10-20,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/shaw-plays-pleasant-unpleasant/,Plays: Pleasant and Unpleasant,Vol. 1 Unpleasant Plays,"Shaw, George Bernard",1898,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/4d%2F1e%2Fd8%2F4d1ed879bf4f4dc981cf57b20eb3c596%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-10-19,,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/boyd-irelands-literary-renaissance/,Ireland's Literary Renaissance,,"Boyd, Ernest Augustus",1916,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/54%2Fb9%2F90%2F54b9902d15d24fa0953f0dc338355e2e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-10-19,1926-10-22,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/twain-mark-twains-autobiography/,Mark Twain's Autobiography,,"Twain, Mark",1924,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/4d%2F1e%2Fd8%2F4d1ed879bf4f4dc981cf57b20eb3c596%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-10-19,1926-10-19,https://shakespeareandco.princeton.edu/members/grosskamp-b/,B. Grosskamp,"Grosskamp, B.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1926-10-20,1926-10-20,https://shakespeareandco.princeton.edu/members/norman-1/,Mr. Norman,"Norman, Mr.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-10-20,1926-10-21,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/nathan-critic-drama/,The Critic and the Drama,,"Nathan, George Jean",1922,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/4d%2F1e%2Fd8%2F4d1ed879bf4f4dc981cf57b20eb3c596%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1926-10-20,1926-11-20,https://shakespeareandco.princeton.edu/members/hanson-gudrun/,Gudrun Hanson,"Hanson, Gudrun",20.00,,1 month,31,1,,1926-10-20,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1926-10-20,1927-04-20,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",100.00,,6 months,182,1,,1926-11-20,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,;https://iiif.princeton.edu/loris/figgy_prod/4c%2Fb0%2F05%2F4cb0051a29fd4a30ac4d18a9278429f5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-10-20,1926-10-20,https://shakespeareandco.princeton.edu/members/hanson-gudrun/,Gudrun Hanson,"Hanson, Gudrun",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-10-21,1926-10-25,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/meyerstein-pleasure-lover/,The Pleasure Lover,,"Meyerstein, Edward Harry William",1925,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/7d%2F04%2Fa5%2F7d04a546bbe54bbc84c266363ef1a61c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-10-21,1926-11-10,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/parrish-perennial-bachelor/,The Perennial Bachelor,,"Parrish, Anne",1926,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/1e%2Fc1%2F4a%2F1ec14af0cc374dfda3309dacf9bfb1a2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-10-21,1926-11-10,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/sinclair-far-end/,Far End,,"Sinclair, May",1926,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/1e%2Fc1%2F4a%2F1ec14af0cc374dfda3309dacf9bfb1a2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-10-21,1926-11-10,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/huddleston-mr-paname-paris/,Mr. Paname: A Paris Fantasia,,"Huddleston, Sisley",1927,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/1e%2Fc1%2F4a%2F1ec14af0cc374dfda3309dacf9bfb1a2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-10-21,1926-11-10,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/galsworthy-silver-spoon/,The Silver Spoon (A Modern Comedy),,"Galsworthy, John",1926,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/1e%2Fc1%2F4a%2F1ec14af0cc374dfda3309dacf9bfb1a2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-10-21,1926-10-23,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/swift-gullivers-travels/,Gulliver's Travels,,"Swift, Jonathan",1726,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/4d%2F1e%2Fd8%2F4d1ed879bf4f4dc981cf57b20eb3c596%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-10-22,,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/twain-mark-twains-autobiography/,Mark Twain's Autobiography,,"Twain, Mark",1924,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F21%2F24%2F56212457e89a4758ad58cc01b76d722d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-10-22,1926-10-27,https://shakespeareandco.princeton.edu/members/rolo/,Jacques Rolo,"Rolo, Jacques",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/russell-analysis-mind/,The Analysis of Mind,,"Russell, Bertrand",1921,,Lending Library Card,"Sylvia Beach, Jacques Rolo Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6392fdb0-c221-4d3b-8a38-a342aa9aec90/manifest,https://iiif.princeton.edu/loris/figgy_prod/58%2Ff3%2F21%2F58f321d211e44874b07d245dc4e313e3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-10-22,1926-10-22,https://shakespeareandco.princeton.edu/members/maltby-drusilla/,Drusilla Maltby,"Maltby, Drusilla",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-10-23,1926-10-25,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/ford-mirror-france/,A Mirror to France,,"Ford, Ford Madox",1926,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F21%2F24%2F56212457e89a4758ad58cc01b76d722d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-10-23,,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/village/,Village,,,,"Unidentified. Either Ivan Bunin's *The Village* (1909, 1923) or Robert McAlmon's [*Village: As It Happened through a Fifteen-Year Period*](https://shakespeareandco.princeton.edu/books/mcalmon-village-happened-fifteen/) (1924).",Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/32%2F11%2F44%2F3211445456604f26802be4ccce47b278%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1926-10-23,1926-10-23,https://shakespeareandco.princeton.edu/members/welles/,Mrs. Welles,"Welles, Mrs.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-10-23,1926-10-25,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/mencken-americana/,Americana,,,,"An annual, featuring selections from [*The American Mercury*](https://shakespeareandco.princeton.edu/books/mencken-american-mercury/).",Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F21%2F24%2F56212457e89a4758ad58cc01b76d722d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1926-10-23,1926-11-23,https://shakespeareandco.princeton.edu/members/collins-f-b/,F. B. Collins,"Collins, F. B.",20.00,,1 month,31,1,Student,1926-10-22,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-10-25,1926-10-30,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/maugham-casuarina-tree/,The Casuarina Tree: Six Stories,,"Maugham, W. Somerset",1926,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/7d%2F04%2Fa5%2F7d04a546bbe54bbc84c266363ef1a61c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-10-25,1926-10-25,https://shakespeareandco.princeton.edu/members/hood-dorothy/,Dorothy Hood,"Hood, Dorothy",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-10-25,1926-10-26,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/harris-yellow-ticket-stories/,The Yellow Ticket and Other Stories,,"Harris, Frank",1914,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F21%2F24%2F56212457e89a4758ad58cc01b76d722d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-10-25,1926-10-26,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/france-crime-sylvestre-bonnard/,The Crime of Sylvestre Bonnard,,"France, Anatole",1890,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F21%2F24%2F56212457e89a4758ad58cc01b76d722d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-10-25,1926-10-25,https://shakespeareandco.princeton.edu/members/crawford-j/,John R. Crawford,"Crawford, John R.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Supplement,1926-10-26,,https://shakespeareandco.princeton.edu/members/briggs-g-m/,G. M. Briggs,"Briggs, G. M.",10.00,50.00,,,1,,1926-10-26,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-10-26,1926-10-27,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/hecht-count-bruga/,Count Bruga,,"Hecht, Ben",1926,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F21%2F24%2F56212457e89a4758ad58cc01b76d722d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1926-10-26,1926-12-14,https://shakespeareandco.princeton.edu/members/moffet-anne/,Anne Moffet,"Moffet, Anne",62.00,,7 weeks,49,2,,1926-10-26,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1926-10-26,1926-10-26,https://shakespeareandco.princeton.edu/members/moffet-anne/,Anne Moffet,"Moffet, Anne",,,,,,,,80.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1926-10-26,1926-10-26,https://shakespeareandco.princeton.edu/members/medley-p/,P. Medley,"Medley, P.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-10-26,1926-10-27,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/machen-house-souls/,The House of Souls,,"Machen, Arthur",1906,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F21%2F24%2F56212457e89a4758ad58cc01b76d722d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-10-27,1926-10-28,https://shakespeareandco.princeton.edu/members/reavely/,Miss Reavely,"Reavely, Miss",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/unknown/,[unknown],Vol. 2,,,Unidentified. Miss Reavely borrowed volume 2 of an unspecified item.,Lending Library Card,"Sylvia Beach, Miss Reavely Lending Library Card, Box 44, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9890abe9-3705-4628-9986-8baeff012780/manifest,https://iiif-cloud.princeton.edu/iiif/2/32%2Fc6%2F6a%2F32c66ae1a4bf4488890133f59b35290d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-10-27,1926-10-28,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/france-opinions-jerome-coignard/,The Opinions of JΓ©rΓ΄me Coignard,,"France, Anatole",1913,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F21%2F24%2F56212457e89a4758ad58cc01b76d722d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-10-27,1926-10-28,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/bojer-last-vikings/,The Last of the Vikings,,"Bojer, Johan",1923,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F21%2F24%2F56212457e89a4758ad58cc01b76d722d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-10-27,1926-11-02,https://shakespeareandco.princeton.edu/members/rolo/,Jacques Rolo,"Rolo, Jacques",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/sandburg-selected-poems-carl/,Selected Poems of Carl Sandburg,,"Sandburg, Carl",1926,,Lending Library Card,"Sylvia Beach, Jacques Rolo Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6392fdb0-c221-4d3b-8a38-a342aa9aec90/manifest,https://iiif.princeton.edu/loris/figgy_prod/58%2Ff3%2F21%2F58f321d211e44874b07d245dc4e313e3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-10-27,1926-11-27,https://shakespeareandco.princeton.edu/members/macnaughten-mary/,Mary MacNaughten,"MacNaughten, Mary",25.00,50.00,1 month,31,1,,1926-10-27,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-10-28,1926-10-30,https://shakespeareandco.princeton.edu/members/reynolds-a-m/,Mme A. M. Reynolds,"Reynolds, Mme A. M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/mckenna-saviours-society-first/,The Saviours of Society: Being the First Part of The Realists,,"McKenna, Stephen",1926,,Lending Library Card,"Sylvia Beach, A.M. Reynolds Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3421b1cc-cb37-4310-978c-5c8e08086ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/80%2F2e%2F42%2F802e42f2392a44d4a01335e66adf9641%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1926-10-28,1927-01-28,https://shakespeareandco.princeton.edu/members/kennedy-edmond/,Edmond Kennedy,"Kennedy, Edmond",48.00,,3 months,92,1,Student,1926-10-28,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-10-28,1926-10-29,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/shaw-unsocial-socialist/,An Unsocial Socialist,,"Shaw, George Bernard",1917,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F21%2F24%2F56212457e89a4758ad58cc01b76d722d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-10-28,1926-10-29,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/france-friends-book/,My Friend's Book,,"France, Anatole",1913,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F21%2F24%2F56212457e89a4758ad58cc01b76d722d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1926-10-28,1926-11-28,https://shakespeareandco.princeton.edu/members/engram-dennard/,Dennard Engram,"Engram, Dennard",25.00,,1 month,31,1,,1926-10-27,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-10-28,1926-11-02,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/arnim-introduction-sally/,Introduction to Sally,,"Arnim, Elizabeth von",1926,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/4c%2Fb0%2F05%2F4cb0051a29fd4a30ac4d18a9278429f5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-10-28,1926-11-12,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/hichens-god-within/,The God within Him,,"Hichens, Robert Smythe",1926,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/4c%2Fb0%2F05%2F4cb0051a29fd4a30ac4d18a9278429f5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-10-28,1926-10-28,https://shakespeareandco.princeton.edu/members/ericson-1/,Mrs. Ericson,"Ericson, Mrs.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1926-10-28,1926-10-28,https://shakespeareandco.princeton.edu/members/doerr/,Mme Doerr / Mme Duer,"Doerr, Mme",,,,,,,,7.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1926-10-28,1926-10-28,https://shakespeareandco.princeton.edu/members/harrison-h-k/,Helen K. Harrison,"Harrison, Helen K.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-10-28,1927-01-28,https://shakespeareandco.princeton.edu/members/regel/,Mme de Regel,"de Regel, Mme",60.00,,3 months,92,1,,1926-10-28,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-10-29,1926-10-30,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/france-aspirations-jean-servien/,The Aspirations of Jean Servien,,"France, Anatole",1912,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F21%2F24%2F56212457e89a4758ad58cc01b76d722d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-10-29,1926-11-29,https://shakespeareandco.princeton.edu/members/lucas-mr-b/,Mr. B. Lucas,"Lucas, Mr. B.",20.00,50.00,1 month,31,1,AdL,1926-10-29,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-10-29,1927-02-28,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,122,,,https://shakespeareandco.princeton.edu/books/andrews-trail-ancient-man/,On the Trail of Ancient Man,,"Andrews, Roy Chapman",1926,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/a4%2F8c%2F7f%2Fa48c7f974df34e81af59231b85679646%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1926-10-29,1927-10-29,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",144.00,,1 year,365,1,Professor / Teacher,1926-11-18,,,,,FRF,,,,,,,Lending Library Card;Logbook,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest;,https://iiif-cloud.princeton.edu/iiif/2/54%2Fb9%2F90%2F54b9902d15d24fa0953f0dc338355e2e%2Fintermediate_file/full/full/0/default.jpg;
+Borrow,1926-10-29,1926-11-02,https://shakespeareandco.princeton.edu/members/reavely/,Miss Reavely,"Reavely, Miss",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/dreiser-sister-carrie/,Sister Carrie,,"Dreiser, Theodore",1900,,Lending Library Card,"Sylvia Beach, Miss Reavely Lending Library Card, Box 44, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9890abe9-3705-4628-9986-8baeff012780/manifest,https://iiif-cloud.princeton.edu/iiif/2/32%2Fc6%2F6a%2F32c66ae1a4bf4488890133f59b35290d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-10-30,1926-11-02,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/france-sign-reine-pedauque/,At the Sign of the Reine PΓ©dauque,,"France, Anatole",1912,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F21%2F24%2F56212457e89a4758ad58cc01b76d722d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-10-30,1926-11-02,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/sidgwick-sack-sugar/,Sack and Sugar,,"Sidgwick, Cecily",1927,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/7d%2F04%2Fa5%2F7d04a546bbe54bbc84c266363ef1a61c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-10-30,1926-11-08,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/ford-today-tomorrow/,Today and Tomorrow,,"Ford, Henry",1926,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/f7%2F9b%2Fe0%2Ff79be07300994867984b67006c59c079%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-10-30,1926-10-30,https://shakespeareandco.princeton.edu/members/kimpell-julia/,Julia Kimpell,"Kimbell, Julia",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-10-30,1926-11-30,https://shakespeareandco.princeton.edu/members/diamond-j/,J. Diamond,"Diamond, J.",20.00,50.00,1 month,31,1,Student,1926-10-30,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-10-30,1927-01-30,https://shakespeareandco.princeton.edu/members/gray-d-o/,Mrs. D. O. Gray,"Gray, Mrs. D. O.",85.00,50.00,3 months,92,2,,1926-10-30,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-10-30,1926-11-03,https://shakespeareandco.princeton.edu/members/reynolds-a-m/,Mme A. M. Reynolds,"Reynolds, Mme A. M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/mackenzie-fairy-gold/,Fairy Gold,,"Mackenzie, Compton",1926,,Lending Library Card,"Sylvia Beach, A.M. Reynolds Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3421b1cc-cb37-4310-978c-5c8e08086ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/80%2F2e%2F42%2F802e42f2392a44d4a01335e66adf9641%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-10-30,1926-11-02,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/morley-tales-rolltop-desk/,Tales from a Rolltop Desk,,"Morley, Christopher",1921,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F21%2F24%2F56212457e89a4758ad58cc01b76d722d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-11-02,1926-11-04,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/france-wicker-work-woman/,Wicker Work Woman,,"France, Anatole",1910,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F21%2F24%2F56212457e89a4758ad58cc01b76d722d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-11-02,1926-11-05,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/forrest-ways-escape/,Ways of Escape,,"Forrest, Noel",1926,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/7d%2F04%2Fa5%2F7d04a546bbe54bbc84c266363ef1a61c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-11-02,1926-11-08,https://shakespeareandco.princeton.edu/members/rolo/,Jacques Rolo,"Rolo, Jacques",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/autumn/,Autumn,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Jacques Rolo Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6392fdb0-c221-4d3b-8a38-a342aa9aec90/manifest,https://iiif.princeton.edu/loris/figgy_prod/58%2Ff3%2F21%2F58f321d211e44874b07d245dc4e313e3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-11-02,1926-11-04,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/dos-passos-streets-night/,Streets of Night,,"Dos Passos, John",1923,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F21%2F24%2F56212457e89a4758ad58cc01b76d722d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-11-02,1926-11-05,https://shakespeareandco.princeton.edu/members/reavely/,Miss Reavely,"Reavely, Miss",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/joyce-portrait-artist-young/,A Portrait of the Artist as a Young Man,,"Joyce, James",1916,,Lending Library Card,"Sylvia Beach, Miss Reavely Lending Library Card, Box 44, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9890abe9-3705-4628-9986-8baeff012780/manifest,https://iiif-cloud.princeton.edu/iiif/2/32%2Fc6%2F6a%2F32c66ae1a4bf4488890133f59b35290d%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1926-11-02,1926-11-02,https://shakespeareandco.princeton.edu/members/goetz-glenn/,Glenn Goetz,"Goetz, Glenn",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1926-11-03,1926-11-03,https://shakespeareandco.princeton.edu/members/davis-elba/,Ella Davis,"Davis, Ella",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-11-03,1927-05-03,https://shakespeareandco.princeton.edu/members/huard-renice/,Renice Huard,"Huard, Renice",80.00,50.00,6 months,181,1,,1926-11-03,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-11-03,1926-11-10,https://shakespeareandco.princeton.edu/members/reynolds-a-m/,Mme A. M. Reynolds,"Reynolds, Mme A. M.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/fletcher-sea-fog/,Sea Fog,,"Fletcher, Joseph Smith",1925,,Lending Library Card,"Sylvia Beach, A.M. Reynolds Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3421b1cc-cb37-4310-978c-5c8e08086ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/80%2F2e%2F42%2F802e42f2392a44d4a01335e66adf9641%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-11-04,1926-11-05,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/france-mother-pearl/,Mother of Pearl,,"France, Anatole",1908,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F21%2F24%2F56212457e89a4758ad58cc01b76d722d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-11-04,1927-02-28,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,116,,,https://shakespeareandco.princeton.edu/books/stein-composition-explanation/,Composition as Explanation,,"Stein, Gertrude",1926,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/a4%2F8c%2F7f%2Fa48c7f974df34e81af59231b85679646%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1926-11-04,1926-12-04,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",35.00,,1 month,30,2,,1926-11-02,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F21%2F24%2F56212457e89a4758ad58cc01b76d722d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1926-11-04,1927-02-04,https://shakespeareandco.princeton.edu/members/francis-p/,P. Francis,"Francis, P.",48.00,50.00,3 months,92,1,Student,1926-11-04,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-11-04,1926-11-05,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/harris-bomb/,The Bomb,,"Harris, Frank",1908,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F21%2F24%2F56212457e89a4758ad58cc01b76d722d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-11-05,1926-11-15,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/walpole-harmer-john-unworldly/,Harmer John: An Unworldly Story,,"Walpole, Hugh",1926,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/7d%2F04%2Fa5%2F7d04a546bbe54bbc84c266363ef1a61c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-11-05,1926-11-06,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/france-elm-tree-mall/,The Elm-Tree on the Mall: A Chronicle of Our Own Times,,"France, Anatole",1910,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F21%2F24%2F56212457e89a4758ad58cc01b76d722d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-11-05,1926-11-06,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/gorky-three/,Three of Them,,"Gorky, Maxim",1905,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F21%2F24%2F56212457e89a4758ad58cc01b76d722d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-11-05,1926-12-05,https://shakespeareandco.princeton.edu/members/natzio-catherine/,Catherine Natzio,"Natzio, Catherine",25.00,50.00,1 month,30,1,,1926-11-05,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-11-05,,https://shakespeareandco.princeton.edu/members/reavely/,Miss Reavely,"Reavely, Miss",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/joyce-dubliners/,Dubliners,,"Joyce, James",1914,,Lending Library Card,"Sylvia Beach, Miss Reavely Lending Library Card, Box 44, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9890abe9-3705-4628-9986-8baeff012780/manifest,https://iiif-cloud.princeton.edu/iiif/2/32%2Fc6%2F6a%2F32c66ae1a4bf4488890133f59b35290d%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1926-11-05,1926-11-05,https://shakespeareandco.princeton.edu/members/reavely/,Miss Reavely,"Reavely, Miss",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/murry-adelphi/,The Adelphi,"Vol. 4, no. 4, Oct 1926",,,,Lending Library Card,"Sylvia Beach, Miss Reavely Lending Library Card, Box 44, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9890abe9-3705-4628-9986-8baeff012780/manifest,https://iiif-cloud.princeton.edu/iiif/2/32%2Fc6%2F6a%2F32c66ae1a4bf4488890133f59b35290d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-11-06,1926-11-08,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/bojer-power-lie/,The Power of a Lie,,"Bojer, Johan",1909,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F21%2F24%2F56212457e89a4758ad58cc01b76d722d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1926-11-06,1926-11-20,https://shakespeareandco.princeton.edu/members/kelley/,Mrs. Kelley,"Kelley, Mrs.",17.50,,2 weeks,14,2,,1926-11-06,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1926-11-06,1926-11-06,https://shakespeareandco.princeton.edu/members/hathaway-d/,D. Hathaway,"Hathaway, D.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-11-06,1926-11-08,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/france-jocasta-famished-cat/,Jocasta and the Famished Cat,,"France, Anatole",1925,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F21%2F24%2F56212457e89a4758ad58cc01b76d722d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-11-08,1927-05-08,https://shakespeareandco.princeton.edu/members/jacobs-herbert/,Herbert Jacobs,"Jacobs, Herbert",80.00,50.00,6 months,181,1,Student,1926-11-08,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-11-08,1926-11-09,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/france-life-letters/,On Life & Letters,,"France, Anatole",1910,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F21%2F24%2F56212457e89a4758ad58cc01b76d722d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-11-08,1926-11-09,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/bojer-god-woman/,God and Woman,,"Bojer, Johan",1921,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F21%2F24%2F56212457e89a4758ad58cc01b76d722d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-11-08,1926-11-09,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/mencken-american-mercury/,The American Mercury,"Vol. 9, no. 35, Nov 1926",,,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F21%2F24%2F56212457e89a4758ad58cc01b76d722d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-11-08,1927-03-26,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,138,,,https://shakespeareandco.princeton.edu/books/jesperson-growth-structure-english/,Growth and Structure of the English Language,,"Jesperson, Otto",1905,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/f7%2F9b%2Fe0%2Ff79be07300994867984b67006c59c079%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-11-08,1926-12-08,https://shakespeareandco.princeton.edu/members/daybell-denis/,Denis Daybell,"Daybell, Denis",35.00,100.00,1 month,30,2,,1926-11-08,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-11-09,1926-11-15,https://shakespeareandco.princeton.edu/members/reavely/,Miss Reavely,"Reavely, Miss",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/james-joyce/,James Joyce,,,,Unidentified. By or about Joyce.,Lending Library Card,"Sylvia Beach, Miss Reavely Lending Library Card, Box 44, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9890abe9-3705-4628-9986-8baeff012780/manifest,https://iiif-cloud.princeton.edu/iiif/2/32%2Fc6%2F6a%2F32c66ae1a4bf4488890133f59b35290d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-11-09,1926-11-26,https://shakespeareandco.princeton.edu/members/schirmer/,Mabel Schirmer / Mrs. Robert Schirmer,"Schirmer, Mabel",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/hemingway-time/,In Our Time,,"Hemingway, Ernest",,Unidentified edition. Either Hemingway's *in our time* (1924) or *In Our Time* (1925).,Lending Library Card,"Sylvia Beach, Mabel Schirmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4c00d0b2-7cb9-46e1-b628-2eac6ac7bb07/manifest,https://iiif-cloud.princeton.edu/iiif/2/5c%2F65%2F2f%2F5c652f21fd1c4c13ae7e4c0e1503b895%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1926-11-09,1926-12-09,https://shakespeareandco.princeton.edu/members/vanston/,Mr. Vanston,"Vanston, Mr.",25.00,,1 month,30,1,,1926-11-08,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-11-09,1926-11-12,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/forbes-o-genteel-lady/,O Genteel Lady!,,"Forbes, Esther",1926,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/19%2F8d%2F36%2F198d3652445c468595f2ccdf76b02226%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1926-11-09,1926-11-09,https://shakespeareandco.princeton.edu/members/myers-r-h/,R. H. Myers,"Myers, R. H.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-11-09,1926-11-10,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/dos-passos-manhattan-transfer/,Manhattan Transfer,,"Dos Passos, John",1925,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F21%2F24%2F56212457e89a4758ad58cc01b76d722d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-11-09,1926-11-10,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/france-life-letters/,On Life & Letters,,"France, Anatole",1910,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F21%2F24%2F56212457e89a4758ad58cc01b76d722d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-11-09,1927-05-09,https://shakespeareandco.princeton.edu/members/morse/,Mrs. G. L. Morse,"Morse, Mrs. G. L.",150.00,100.00,6 months,181,2,,1926-11-09,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-11-09,1927-05-09,https://shakespeareandco.princeton.edu/members/eisemann-jacques/,Jacques Eisenmann,"Eisenmann, Jacques",120.00,50.00,6 months,181,2,AdL,1926-11-09,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-11-10,1926-11-12,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/bojer-great-hunger/,The Great Hunger,,"Bojer, Johan",,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F21%2F24%2F56212457e89a4758ad58cc01b76d722d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-11-10,1926-11-12,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/morley-thunder-left/,Thunder on the Left,,"Morley, Christopher",1925,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F21%2F24%2F56212457e89a4758ad58cc01b76d722d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1926-11-10,1927-11-10,https://shakespeareandco.princeton.edu/members/genevoix/,Mme Genevoix,"Genevoix, Mme",60.00,,1 year,365,,,1926-11-10,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-11-10,1926-11-17,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/joyce-dubliners/,Dubliners,,"Joyce, James",1914,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/34%2F63%2Fef%2F3463efdf87f94472a29bed492f604a45%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1926-11-10,1926-12-10,https://shakespeareandco.princeton.edu/members/jones-enos/,Enos Jones,"Jones, Enos",35.00,100.00,1 month,30,2,,1926-11-10,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1926-11-10,1926-11-20,https://shakespeareandco.princeton.edu/members/myers-r-h/,R. H. Myers,"Myers, R. H.",8.00,,10 days,10,,,1926-11-10,,,,,,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-11-10,1926-11-13,https://shakespeareandco.princeton.edu/members/reynolds-a-m/,Mme A. M. Reynolds,"Reynolds, Mme A. M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/wren-beau-geste/,Beau Geste,,"Wren, Percival Christopher",1925,,Lending Library Card,"Sylvia Beach, A.M. Reynolds Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3421b1cc-cb37-4310-978c-5c8e08086ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/80%2F2e%2F42%2F802e42f2392a44d4a01335e66adf9641%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-11-10,1926-11-13,https://shakespeareandco.princeton.edu/members/reynolds-a-m/,Mme A. M. Reynolds,"Reynolds, Mme A. M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/buchan-dancing-floor/,The Dancing Floor,,"Buchan, John",1926,,Lending Library Card,"Sylvia Beach, A.M. Reynolds Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3421b1cc-cb37-4310-978c-5c8e08086ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/80%2F2e%2F42%2F802e42f2392a44d4a01335e66adf9641%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-11-12,1926-11-12,https://shakespeareandco.princeton.edu/members/cody/;https://shakespeareandco.princeton.edu/members/cody-morrill/,Frances Cody;Morrill Cody,"Cody, Frances;Cody, Morrill",,,,,,,,40.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-11-12,1926-11-20,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/sinclair-far-end/,Far End,,"Sinclair, May",1926,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/4c%2Fb0%2F05%2F4cb0051a29fd4a30ac4d18a9278429f5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-11-12,1926-11-20,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/warner-lolly-willowes/,Lolly Willowes,,"Warner, Sylvia Townsend",1926,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/1e%2Fc1%2F4a%2F1ec14af0cc374dfda3309dacf9bfb1a2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-11-12,1926-11-20,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/fitzgerald-sad-young-men/,All the Sad Young Men,,"Fitzgerald, F. Scott",1926,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/1e%2Fc1%2F4a%2F1ec14af0cc374dfda3309dacf9bfb1a2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-11-12,1926-12-03,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/ferber-show-boat/,Show Boat,,"Ferber, Edna",1926,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/1e%2Fc1%2F4a%2F1ec14af0cc374dfda3309dacf9bfb1a2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-11-12,,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/chesterton-manalive/,Manalive,,"Chesterton, G. K.",1912,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F21%2F24%2F56212457e89a4758ad58cc01b76d722d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-11-12,,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/dostoyevsky-brothers-karamazov/,The Brothers Karamazov,,"Dostoyevsky, Fyodor",1880,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F21%2F24%2F56212457e89a4758ad58cc01b76d722d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-11-12,1926-11-13,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/oneill-great-god-brown/,The Great God Brown,,"O'Neill, Eugene",1926,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F4d%2Fc2%2Fb44dc2e479c743ab81c35f675dc69e9f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-11-12,1926-11-20,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/unclear-4/,[unclear]y,,,,Unidentified. Handwriting unclear.,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/1e%2Fc1%2F4a%2F1ec14af0cc374dfda3309dacf9bfb1a2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-11-12,1926-11-13,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/swinnerton-summer-storm/,Summer Storm,,"Swinnerton, Frank",1926,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/19%2F8d%2F36%2F198d3652445c468595f2ccdf76b02226%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1926-11-12,1926-12-12,https://shakespeareandco.princeton.edu/members/cody/;https://shakespeareandco.princeton.edu/members/cody-morrill/,Frances Cody;Morrill Cody,"Cody, Frances;Cody, Morrill",35.00,,1 month,30,2,,1926-11-12,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-11-13,1926-11-15,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/mencken-notes-democracy/,Notes on Democracy,,"Mencken, H. L.",1926,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F4d%2Fc2%2Fb44dc2e479c743ab81c35f675dc69e9f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-11-13,1926-11-15,https://shakespeareandco.princeton.edu/members/reynolds-a-m/,Mme A. M. Reynolds,"Reynolds, Mme A. M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/simonton-hells-playground/,Hell's Playground,,"Simonton, Ida Vera",1912,,Lending Library Card,"Sylvia Beach, A.M. Reynolds Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3421b1cc-cb37-4310-978c-5c8e08086ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/80%2F2e%2F42%2F802e42f2392a44d4a01335e66adf9641%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-11-13,1926-11-15,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/dostoyevsky-possessed/,The Possessed,,"Dostoyevsky, Fyodor",1872,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F4d%2Fc2%2Fb44dc2e479c743ab81c35f675dc69e9f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-11-13,1926-11-15,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/sidgwick-sack-sugar/,Sack and Sugar,,"Sidgwick, Cecily",1927,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/19%2F8d%2F36%2F198d3652445c468595f2ccdf76b02226%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-11-15,1926-11-20,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/macaulay-crewe-train/,Crewe Train,,"Macaulay, Rose",1926,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/7d%2F04%2Fa5%2F7d04a546bbe54bbc84c266363ef1a61c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-11-15,1926-11-15,https://shakespeareandco.princeton.edu/members/dunlop/,Mrs. John Dunlop,"Dunlop, Mrs. John",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1926-11-15,1926-11-15,https://shakespeareandco.princeton.edu/members/harrey-c-o/,Mrs. C. O. Harrey,"Harrey, Mrs. C. O.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-11-15,1926-11-16,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/barbey-daurevilly-diaboliques/,The Diaboliques,,"Barbey d'Aurevilly, Jules",1925,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F4d%2Fc2%2Fb44dc2e479c743ab81c35f675dc69e9f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-11-15,1926-11-22,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/dostoyevsky-idiot/,The Idiot,,"Dostoyevsky, Fyodor",1874,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F4d%2Fc2%2Fb44dc2e479c743ab81c35f675dc69e9f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-11-15,1926-11-15,https://shakespeareandco.princeton.edu/members/reynolds-a-m/,Mme A. M. Reynolds,"Reynolds, Mme A. M.",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/phillpotts-peacock-house-mysteries/,"Peacock House, and Other Mysteries",,"Phillpotts, Eden",1926,,Lending Library Card,"Sylvia Beach, A.M. Reynolds Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3421b1cc-cb37-4310-978c-5c8e08086ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/80%2F2e%2F42%2F802e42f2392a44d4a01335e66adf9641%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-11-15,1926-11-17,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/le-gallienne-romantic-90s/,The Romantic '90s,,"Le Gallienne, Richard",1925,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/19%2F8d%2F36%2F198d3652445c468595f2ccdf76b02226%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-11-15,1926-11-20,https://shakespeareandco.princeton.edu/members/reavely/,Miss Reavely,"Reavely, Miss",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/fiske-destiny-man-viewed/,"The Destiny of Man, Viewed in the Light of His Origin",,"Fiske, John",1884,,Lending Library Card,"Sylvia Beach, Miss Reavely Lending Library Card, Box 44, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9890abe9-3705-4628-9986-8baeff012780/manifest,https://iiif-cloud.princeton.edu/iiif/2/32%2Fc6%2F6a%2F32c66ae1a4bf4488890133f59b35290d%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1926-11-15,1926-11-15,https://shakespeareandco.princeton.edu/members/reynolds-a-m/,Mme A. M. Reynolds,"Reynolds, Mme A. M.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-11-16,1926-11-30,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/mackenzie-sinister-street/,Sinister Street,Vol. 1,"Mackenzie, Compton",1914,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/c2%2Ff7%2F29%2Fc2f7296928344566aa900c8c0644c909%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-11-16,1926-11-18,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/paul-bunyan/,Paul Bunyan,,,,"Unidentified. Either Esther Shephard's *Paul Bunyan,* with illustrations by Rockwell Kent (1924) or James Stevens's *Paul Bunyan* (1925).",Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F4d%2Fc2%2Fb44dc2e479c743ab81c35f675dc69e9f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-11-16,1926-11-17,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/van-vechten-excavations-book-advocacies/,Excavations: A Book of Advocacies,,"Van Vechten, Carl",1926,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F4d%2Fc2%2Fb44dc2e479c743ab81c35f675dc69e9f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1926-11-16,1926-12-16,https://shakespeareandco.princeton.edu/members/hanson/,Mrs. James Hanson,"Hanson, Mrs. James",35.00,,1 month,30,2,,1926-11-16,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1926-11-16,1926-12-16,https://shakespeareandco.princeton.edu/members/reynolds-a-m/,Mme A. M. Reynolds,"Reynolds, Mme A. M.",25.00,50.00,1 month,30,1,,1926-10-27,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, A.M. Reynolds Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/3421b1cc-cb37-4310-978c-5c8e08086ffb/manifest,;https://iiif.princeton.edu/loris/figgy_prod/80%2F2e%2F42%2F802e42f2392a44d4a01335e66adf9641%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-11-17,1926-11-22,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/honore-de-balzac-celibates/,The Celibates,,"Balzac, HonorΓ© de",1897,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/34%2F63%2Fef%2F3463efdf87f94472a29bed492f604a45%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-11-17,1926-11-18,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/hudson-purple-land/,The Purple Land,,"Hudson, W. H.",1885,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F4d%2Fc2%2Fb44dc2e479c743ab81c35f675dc69e9f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-11-17,1926-12-17,https://shakespeareandco.princeton.edu/members/gordon-jan/,Jan Gordon,"Gordon, Jan",35.00,100.00,1 month,30,2,,1926-11-17,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-11-18,1926-12-18,https://shakespeareandco.princeton.edu/members/wise-ruth/,Ruth Wise,"Wise, Ruth",20.00,,1 month,30,1,Student,1926-10-21,,,,,,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-11-18,1926-11-18,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/goldberg-havelock-ellis-biographical/,Havelock Ellis: A Biographical and Critical Survey,,"Goldberg, Isaac",1926,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F4d%2Fc2%2Fb44dc2e479c743ab81c35f675dc69e9f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-11-18,1926-11-19,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/schnitzler-fraulein-else/,Fraulein Else,,"Schnitzler, Arthur",1924,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F4d%2Fc2%2Fb44dc2e479c743ab81c35f675dc69e9f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-11-18,,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/garnett-sailors-return/,The Sailor's Return,,"Garnett, David",1925,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/a4%2F8c%2F7f%2Fa48c7f974df34e81af59231b85679646%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1926-11-18,1926-11-18,https://shakespeareandco.princeton.edu/members/hanson-gudrun/,Gudrun Hanson,"Hanson, Gudrun",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1926-11-19,1926-11-19,https://shakespeareandco.princeton.edu/members/bonney/,Louise Bonney,"Bonney, Louise",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1926-11-19,1926-12-19,https://shakespeareandco.princeton.edu/members/henton-l/;https://shakespeareandco.princeton.edu/members/henton/,L. Henton;Mrs. Henton,"Henton, L.;Henton, Mrs.",35.00,,1 month,30,2,,1926-11-12,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-11-19,1926-11-20,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/asbury-methodism/,Up from Methodism,,"Asbury, Herbert",1926,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F4d%2Fc2%2Fb44dc2e479c743ab81c35f675dc69e9f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-11-19,1926-11-22,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/strindberg-plays-august-strindberg-third/,Plays by August Strindberg: Third Series,,"Strindberg, August",1921,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F4d%2Fc2%2Fb44dc2e479c743ab81c35f675dc69e9f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-11-19,1926-11-20,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/de-la-mare-riddle/,The Riddle,,"De la Mare, Walter",1923,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/19%2F8d%2F36%2F198d3652445c468595f2ccdf76b02226%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1926-11-19,1926-12-19,https://shakespeareandco.princeton.edu/members/edwards-b/,B. Edwards,"Edwards, B.",25.00,50.00,1 month,30,1,,1926-11-19,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1926-11-19,1926-11-19,https://shakespeareandco.princeton.edu/members/hoyt/,Miss Hoyt,"Hoyt, Miss",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-11-20,,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/walpole-jeremy-hamlet/,Jeremy and Hamlet,,"Walpole, Hugh",1923,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/4c%2Fb0%2F05%2F4cb0051a29fd4a30ac4d18a9278429f5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-11-20,1926-11-27,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/wodehouse-sam-sudden/,Sam the Sudden,,"Wodehouse, P. G.",1925,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/4c%2Fb0%2F05%2F4cb0051a29fd4a30ac4d18a9278429f5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-11-20,1926-11-22,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/ford-marsden-case-romance/,The Marsden Case: A Romance,,"Ford, Ford Madox",1923,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/19%2F8d%2F36%2F198d3652445c468595f2ccdf76b02226%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-11-20,1926-12-03,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/woodrow-burned-evidence/,Burned Evidence,,"Woodrow, Mrs. Wilson",1926,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/1e%2Fc1%2F4a%2F1ec14af0cc374dfda3309dacf9bfb1a2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-11-20,1926-11-24,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/fisher-sons-wife/,Her Son's Wife,,"Fisher, Dorothy Canfield",1926,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/7d%2F04%2Fa5%2F7d04a546bbe54bbc84c266363ef1a61c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-11-20,1926-12-03,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/mansfield-german-pension/,In a German Pension,,"Mansfield, Katherine",1911,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/1e%2Fc1%2F4a%2F1ec14af0cc374dfda3309dacf9bfb1a2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-11-20,1926-12-03,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/sidgwick-sack-sugar/,Sack and Sugar,,"Sidgwick, Cecily",1927,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/1e%2Fc1%2F4a%2F1ec14af0cc374dfda3309dacf9bfb1a2%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1926-11-20,1927-05-20,https://shakespeareandco.princeton.edu/members/falla-frederick/,Frederick G. Falla,"Falla, Frederick G.",150.00,,6 months,181,2,,1926-11-19,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1926-11-20,1926-12-20,https://shakespeareandco.princeton.edu/members/rastorgoneff/,Al. Rastorgoneff / Rostorgoueff,"Rastorgoneff, Al.",25.00,,1 month,30,1,,1926-11-16,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-11-20,1926-11-24,https://shakespeareandco.princeton.edu/members/reynolds-a-m/,Mme A. M. Reynolds,"Reynolds, Mme A. M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/burr-great-house-park/,The Great House in the Park,,"Burr, Anne Robeson Brown",1924,,Lending Library Card,"Sylvia Beach, A.M. Reynolds Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3421b1cc-cb37-4310-978c-5c8e08086ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/80%2F2e%2F42%2F802e42f2392a44d4a01335e66adf9641%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-11-20,1926-11-22,https://shakespeareandco.princeton.edu/members/reavely/,Miss Reavely,"Reavely, Miss",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/davies-later-days/,Later Days,,"Davies, W. H.",1925,,Lending Library Card,"Sylvia Beach, Miss Reavely Lending Library Card, Box 44, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9890abe9-3705-4628-9986-8baeff012780/manifest,https://iiif-cloud.princeton.edu/iiif/2/32%2Fc6%2F6a%2F32c66ae1a4bf4488890133f59b35290d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-11-20,1926-11-22,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/gogol-overcoat-stories/,The Overcoat and Other Stories,,"Gogol, Nikolai",1923,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F4d%2Fc2%2Fb44dc2e479c743ab81c35f675dc69e9f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-11-22,1926-11-23,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/van-vechten-nigger-heaven/,Nigger Heaven,,"Van Vechten, Carl",1926,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F4d%2Fc2%2Fb44dc2e479c743ab81c35f675dc69e9f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-11-22,1926-11-27,https://shakespeareandco.princeton.edu/members/reavely/,Miss Reavely,"Reavely, Miss",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/hudson-letters-w-h/,"Letters from W. H. Hudson, 1901 β 1922",,"Hudson, W. H.",1923,,Lending Library Card,"Sylvia Beach, Miss Reavely Lending Library Card, Box 44, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9890abe9-3705-4628-9986-8baeff012780/manifest,https://iiif-cloud.princeton.edu/iiif/2/32%2Fc6%2F6a%2F32c66ae1a4bf4488890133f59b35290d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-11-22,1926-11-23,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/dostoyevsky-house-dead/,The House of the Dead,,"Dostoyevsky, Fyodor",1911,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F4d%2Fc2%2Fb44dc2e479c743ab81c35f675dc69e9f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-11-22,1926-11-25,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/wilson-painted-room/,The Painted Room,,"Wilson, Margaret",1926,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/19%2F8d%2F36%2F198d3652445c468595f2ccdf76b02226%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-11-22,1926-11-27,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/baker-modern-american-plays/,Modern American Plays,,"Baker, George Pierce",1920,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/34%2F63%2Fef%2F3463efdf87f94472a29bed492f604a45%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-11-23,1926-11-24,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/galsworthy-white-monkey/,The White Monkey (A Modern Comedy),,"Galsworthy, John",1924,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F4d%2Fc2%2Fb44dc2e479c743ab81c35f675dc69e9f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-11-23,1926-11-26,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/dostoyevsky-gambler/,The Gambler,,"Dostoyevsky, Fyodor",1866,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F4d%2Fc2%2Fb44dc2e479c743ab81c35f675dc69e9f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-11-24,1926-12-01,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/dostoyevsky-insulted-injured/,The Insulted and Injured,,"Dostoyevsky, Fyodor",1915,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F4d%2Fc2%2Fb44dc2e479c743ab81c35f675dc69e9f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-11-24,1926-11-24,https://shakespeareandco.princeton.edu/members/rubin-caroline/,Caroline Rubin,"Rubin, Caroline",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1926-11-24,1926-12-31,https://shakespeareandco.princeton.edu/members/rubin-caroline/,Caroline Rubin,"Rubin, Caroline",42.00,,"1 month, 7 days",37,2,,1926-11-24,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-11-24,1926-11-26,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/galsworthy-captures/,Captures,,"Galsworthy, John",1923,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F4d%2Fc2%2Fb44dc2e479c743ab81c35f675dc69e9f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1926-11-24,1926-12-24,https://shakespeareandco.princeton.edu/members/rubin-howard/,Howard Rubin,"Rubin, Howard",33.00,,1 month,30,1,,1926-11-24,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1926-11-24,1927-05-24,https://shakespeareandco.princeton.edu/members/collet-madeleine/,Madeleine Collet,"Collet, Madeleine",80.00,50.00,6 months,181,1,AdL,1926-11-24,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-11-24,1926-11-27,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/wells-world-william-clissold/,The World of William Clissold,Vol. 1,"Wells, H. G.",1926,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/7d%2F04%2Fa5%2F7d04a546bbe54bbc84c266363ef1a61c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-11-24,1926-11-24,https://shakespeareandco.princeton.edu/members/rubin-howard/,Howard Rubin,"Rubin, Howard",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-11-24,1926-11-27,https://shakespeareandco.princeton.edu/members/reynolds-a-m/,Mme A. M. Reynolds,"Reynolds, Mme A. M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/vachell-woman-exile/,A Woman in Exile,,"Vachell, Horace Annesley",1926,,Lending Library Card,"Sylvia Beach, A.M. Reynolds Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3421b1cc-cb37-4310-978c-5c8e08086ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/80%2F2e%2F42%2F802e42f2392a44d4a01335e66adf9641%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-11-24,1926-11-24,https://shakespeareandco.princeton.edu/members/jones-enos/,Enos Jones,"Jones, Enos",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-11-25,1926-12-17,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/ford-man-stand/,A Man Could Stand Up (Parade's End 3),,"Ford, Ford Madox",1926,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/89%2F50%2F02%2F895002cdfd9f40008230e8e772931579%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-11-25,1926-11-27,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/macaulay-crewe-train/,Crewe Train,,"Macaulay, Rose",1926,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/19%2F8d%2F36%2F198d3652445c468595f2ccdf76b02226%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-11-26,1926-11-30,https://shakespeareandco.princeton.edu/members/schirmer/,Mabel Schirmer / Mrs. Robert Schirmer,"Schirmer, Mabel",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/erskine-private-life-helen/,The Private Life of Helen of Troy,,"Erskine, John",1925,,Lending Library Card,"Sylvia Beach, Mabel Schirmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4c00d0b2-7cb9-46e1-b628-2eac6ac7bb07/manifest,https://iiif-cloud.princeton.edu/iiif/2/5c%2F65%2F2f%2F5c652f21fd1c4c13ae7e4c0e1503b895%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-11-26,1926-11-29,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/dostoyevsky-crime-punishment/,Crime and Punishment,,"Dostoyevsky, Fyodor",1914,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F4d%2Fc2%2Fb44dc2e479c743ab81c35f675dc69e9f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1926-11-26,1927-11-26,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",120.00,,1 year,365,2,AdL,1926-11-26,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-11-26,1926-11-27,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/galsworthy-country-house/,The Country House,,"Galsworthy, John",1907,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F4d%2Fc2%2Fb44dc2e479c743ab81c35f675dc69e9f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-11-27,1926-11-29,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/arnim-introduction-sally/,Introduction to Sally,,"Arnim, Elizabeth von",1926,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/19%2F8d%2F36%2F198d3652445c468595f2ccdf76b02226%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-11-27,1926-12-01,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/hurst-mannequin/,Mannequin,,"Hurst, Fannie",1926,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/7d%2F04%2Fa5%2F7d04a546bbe54bbc84c266363ef1a61c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-11-27,1926-11-29,https://shakespeareandco.princeton.edu/members/reavely/,Miss Reavely,"Reavely, Miss",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/aldington-french-studies-reviews/,French Studies and Reviews,,"Aldington, Richard",1926,,Lending Library Card,"Sylvia Beach, Miss Reavely Lending Library Card, Box 44, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9890abe9-3705-4628-9986-8baeff012780/manifest,https://iiif-cloud.princeton.edu/iiif/2/32%2Fc6%2F6a%2F32c66ae1a4bf4488890133f59b35290d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-11-27,1926-12-01,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/milne-four-plays/,Four Plays,,"Milne, A. A.",1926,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/34%2F63%2Fef%2F3463efdf87f94472a29bed492f604a45%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-11-27,1926-12-17,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/hurst-appassionata/,Appassionata,,"Hurst, Fannie",1926,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/32%2F11%2F44%2F3211445456604f26802be4ccce47b278%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1926-11-27,1926-11-27,https://shakespeareandco.princeton.edu/members/diamond-j/,J. Diamond,"Diamond, J.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-11-27,1926-12-22,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,25,,,https://shakespeareandco.princeton.edu/books/sinclair-divine-fire/,The Divine Fire,,"Sinclair, May",1904,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/4c%2Fb0%2F05%2F4cb0051a29fd4a30ac4d18a9278429f5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1926-11-28,1927-11-28,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",144.00,,1 year,365,1,Student,1927-01-04,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,;https://iiif-cloud.princeton.edu/iiif/2/05%2Fcc%2F42%2F05cc420c01b74e7885f72bc117cfdb3d%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1926-11-29,1927-02-28,https://shakespeareandco.princeton.edu/members/celli/,Mme Celli,"Celli, Mme",48.00,50.00,3 months,91,1,Professor / Teacher,1926-11-29,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1926-11-29,1926-11-29,https://shakespeareandco.princeton.edu/members/lucas-mr-b/,Mr. B. Lucas,"Lucas, Mr. B.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1926-11-29,1926-12-29,https://shakespeareandco.princeton.edu/members/kean-l-l/,Mrs. L. L. Kean,"Kean, Mrs. L. L.",20.00,,1 month,30,1,Student,1926-11-29,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-11-29,1926-12-01,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/frank-rahab/,Rahab,,"Frank, Waldo",1922,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F4d%2Fc2%2Fb44dc2e479c743ab81c35f675dc69e9f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-11-29,1926-12-02,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/chekhov-black-monk/,The Black Monk and Other Stories,,"Chekhov, Anton",1915,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F4d%2Fc2%2Fb44dc2e479c743ab81c35f675dc69e9f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-11-29,1926-12-02,https://shakespeareandco.princeton.edu/members/reavely/,Miss Reavely,"Reavely, Miss",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/matthews-essays-english/,Essays on English,,"Matthews, Brander",1921,,Lending Library Card,"Sylvia Beach, Miss Reavely Lending Library Card, Box 44, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9890abe9-3705-4628-9986-8baeff012780/manifest,https://iiif-cloud.princeton.edu/iiif/2/32%2Fc6%2F6a%2F32c66ae1a4bf4488890133f59b35290d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-11-29,1926-12-01,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/maxwell-gabrielle-romance/,Gabrielle: A Romance,,"Maxwell, W. B.",1926,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/19%2F8d%2F36%2F198d3652445c468595f2ccdf76b02226%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-11-30,1926-12-01,https://shakespeareandco.princeton.edu/members/schirmer/,Mabel Schirmer / Mrs. Robert Schirmer,"Schirmer, Mabel",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/masefield-trial-jesus/,The Trial of Jesus,,"Masefield, John",1925,,Lending Library Card,"Sylvia Beach, Mabel Schirmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4c00d0b2-7cb9-46e1-b628-2eac6ac7bb07/manifest,https://iiif-cloud.princeton.edu/iiif/2/5c%2F65%2F2f%2F5c652f21fd1c4c13ae7e4c0e1503b895%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-11-30,1926-12-01,https://shakespeareandco.princeton.edu/members/schirmer/,Mabel Schirmer / Mrs. Robert Schirmer,"Schirmer, Mabel",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/strindberg-plays-august-strindberg-third/,Plays by August Strindberg: Third Series,,"Strindberg, August",1921,,Lending Library Card,"Sylvia Beach, Mabel Schirmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4c00d0b2-7cb9-46e1-b628-2eac6ac7bb07/manifest,https://iiif-cloud.princeton.edu/iiif/2/5c%2F65%2F2f%2F5c652f21fd1c4c13ae7e4c0e1503b895%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-11-30,1926-12-13,https://shakespeareandco.princeton.edu/members/schirmer/,Mabel Schirmer / Mrs. Robert Schirmer,"Schirmer, Mabel",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/molnar-fashions-men-swan/,"Fashions for Men, and The Swan: Two Plays",,"MolnΓ‘r, Ferenc",1922,,Lending Library Card,"Sylvia Beach, Mabel Schirmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4c00d0b2-7cb9-46e1-b628-2eac6ac7bb07/manifest,https://iiif-cloud.princeton.edu/iiif/2/5c%2F65%2F2f%2F5c652f21fd1c4c13ae7e4c0e1503b895%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-11-30,1926-12-01,https://shakespeareandco.princeton.edu/members/schirmer/,Mabel Schirmer / Mrs. Robert Schirmer,"Schirmer, Mabel",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/strindberg-plays-august-strindberg-second/,Plays by August Strindberg: Second Series,,"Strindberg, August",1913,,Lending Library Card,"Sylvia Beach, Mabel Schirmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4c00d0b2-7cb9-46e1-b628-2eac6ac7bb07/manifest,https://iiif-cloud.princeton.edu/iiif/2/5c%2F65%2F2f%2F5c652f21fd1c4c13ae7e4c0e1503b895%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-11-30,1926-12-01,https://shakespeareandco.princeton.edu/members/schirmer/,Mabel Schirmer / Mrs. Robert Schirmer,"Schirmer, Mabel",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/schnitzler-anatol/,Anatol and Other Plays,,"Schnitzler, Arthur",,,Lending Library Card,"Sylvia Beach, Mabel Schirmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4c00d0b2-7cb9-46e1-b628-2eac6ac7bb07/manifest,https://iiif-cloud.princeton.edu/iiif/2/5c%2F65%2F2f%2F5c652f21fd1c4c13ae7e4c0e1503b895%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-11-30,1926-12-03,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/lewis-tarr/,Tarr,,"Lewis, Wyndham",1918,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/86%2F42%2F18%2F8642189e397a42fd995c54f2307c5d76%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-11-30,1926-12-14,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/montague-dramatic-values/,Dramatic Values,,"Montague, C. E.",1911,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/c2%2Ff7%2F29%2Fc2f7296928344566aa900c8c0644c909%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-11-30,1926-12-13,https://shakespeareandco.princeton.edu/members/schirmer/,Mabel Schirmer / Mrs. Robert Schirmer,"Schirmer, Mabel",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/miln-green-goddess/,The Green Goddess,,"Miln, Louise Jordan",1922,,Lending Library Card,"Sylvia Beach, Mabel Schirmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4c00d0b2-7cb9-46e1-b628-2eac6ac7bb07/manifest,https://iiif-cloud.princeton.edu/iiif/2/5c%2F65%2F2f%2F5c652f21fd1c4c13ae7e4c0e1503b895%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-11-30,1926-12-01,https://shakespeareandco.princeton.edu/members/schirmer/,Mabel Schirmer / Mrs. Robert Schirmer,"Schirmer, Mabel",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/dos-passos-garbage-man/,The Garbage Man,,"Dos Passos, John",1926,,Lending Library Card,"Sylvia Beach, Mabel Schirmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4c00d0b2-7cb9-46e1-b628-2eac6ac7bb07/manifest,https://iiif-cloud.princeton.edu/iiif/2/5c%2F65%2F2f%2F5c652f21fd1c4c13ae7e4c0e1503b895%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-11-30,1926-12-01,https://shakespeareandco.princeton.edu/members/schirmer/,Mabel Schirmer / Mrs. Robert Schirmer,"Schirmer, Mabel",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/loving-ten-minute-plays/,Ten Minute Plays,,,1923,,Lending Library Card,"Sylvia Beach, Mabel Schirmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4c00d0b2-7cb9-46e1-b628-2eac6ac7bb07/manifest,https://iiif-cloud.princeton.edu/iiif/2/5c%2F65%2F2f%2F5c652f21fd1c4c13ae7e4c0e1503b895%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-11-30,1926-12-01,https://shakespeareandco.princeton.edu/members/reynolds-a-m/,Mme A. M. Reynolds,"Reynolds, Mme A. M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/muir-black-pavilion-adventure/,The Black Pavilion: An Adventure of the Lothian Coast,,"Muir, Augustus",1926,,Lending Library Card,"Sylvia Beach, A.M. Reynolds Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3421b1cc-cb37-4310-978c-5c8e08086ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/80%2F2e%2F42%2F802e42f2392a44d4a01335e66adf9641%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-12-01,1926-12-03,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/hemingway-time/,In Our Time,,"Hemingway, Ernest",,Unidentified edition. Either Hemingway's *in our time* (1924) or *In Our Time* (1925).,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F4d%2Fc2%2Fb44dc2e479c743ab81c35f675dc69e9f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-12-01,1927-01-25,https://shakespeareandco.princeton.edu/members/schirmer/,Mabel Schirmer / Mrs. Robert Schirmer,"Schirmer, Mabel",,,,,,,,,Returned,55,,,https://shakespeareandco.princeton.edu/books/milne-four-plays/,Four Plays,,"Milne, A. A.",1926,,Lending Library Card,"Sylvia Beach, Mabel Schirmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4c00d0b2-7cb9-46e1-b628-2eac6ac7bb07/manifest,https://iiif-cloud.princeton.edu/iiif/2/5c%2F65%2F2f%2F5c652f21fd1c4c13ae7e4c0e1503b895%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-12-01,1926-12-13,https://shakespeareandco.princeton.edu/members/schirmer/,Mabel Schirmer / Mrs. Robert Schirmer,"Schirmer, Mabel",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/nathan-critic-drama/,The Critic and the Drama,,"Nathan, George Jean",1922,,Lending Library Card,"Sylvia Beach, Mabel Schirmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4c00d0b2-7cb9-46e1-b628-2eac6ac7bb07/manifest,https://iiif-cloud.princeton.edu/iiif/2/5c%2F65%2F2f%2F5c652f21fd1c4c13ae7e4c0e1503b895%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-12-01,1926-12-13,https://shakespeareandco.princeton.edu/members/schirmer/,Mabel Schirmer / Mrs. Robert Schirmer,"Schirmer, Mabel",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/dane-will-shakespeare-invention/,Will Shakespeare: An Invention in Four Acts,,"Dane, Clemence",1921,,Lending Library Card,"Sylvia Beach, Mabel Schirmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4c00d0b2-7cb9-46e1-b628-2eac6ac7bb07/manifest,https://iiif-cloud.princeton.edu/iiif/2/5c%2F65%2F2f%2F5c652f21fd1c4c13ae7e4c0e1503b895%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-12-01,1926-12-18,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/village/,Village,,,,"Unidentified. Either Ivan Bunin's *The Village* (1909, 1923) or Robert McAlmon's [*Village: As It Happened through a Fifteen-Year Period*](https://shakespeareandco.princeton.edu/books/mcalmon-village-happened-fifteen/) (1924).",Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/34%2F63%2Fef%2F3463efdf87f94472a29bed492f604a45%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-12-01,1926-12-07,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/gorman-victorian-american-henry/,A Victorian American: Henry Wadsworth Longfellow,,"Gorman, Herbert Sherman",1926,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/f7%2F9b%2Fe0%2Ff79be07300994867984b67006c59c079%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-12-01,1926-12-03,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/frank-dark-mother/,The Dark Mother,,"Frank, Waldo",1920,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F4d%2Fc2%2Fb44dc2e479c743ab81c35f675dc69e9f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-12-01,1926-12-13,https://shakespeareandco.princeton.edu/members/schirmer/,Mabel Schirmer / Mrs. Robert Schirmer,"Schirmer, Mabel",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/glaspell-three-plays/,Three Plays,,"Glaspell, Susan",1924,,Lending Library Card,"Sylvia Beach, Mabel Schirmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4c00d0b2-7cb9-46e1-b628-2eac6ac7bb07/manifest,https://iiif-cloud.princeton.edu/iiif/2/5c%2F65%2F2f%2F5c652f21fd1c4c13ae7e4c0e1503b895%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-12-01,1926-12-14,https://shakespeareandco.princeton.edu/members/reynolds-a-m/,Mme A. M. Reynolds,"Reynolds, Mme A. M.",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/weigall-impossible/,The Not Impossible She,,"Weigall, Arthur",1926,,Lending Library Card,"Sylvia Beach, A.M. Reynolds Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3421b1cc-cb37-4310-978c-5c8e08086ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/80%2F2e%2F42%2F802e42f2392a44d4a01335e66adf9641%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-12-01,,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/galsworthy-fraternity/,Fraternity,,"Galsworthy, John",1909,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/19%2F8d%2F36%2F198d3652445c468595f2ccdf76b02226%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-12-01,1926-12-08,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/pleasure/,Pleasure,,,,Unidentified.,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/7d%2F04%2Fa5%2F7d04a546bbe54bbc84c266363ef1a61c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-12-01,,https://shakespeareandco.princeton.edu/members/schirmer/,Mabel Schirmer / Mrs. Robert Schirmer,"Schirmer, Mabel",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/baker-modern-american-plays/,Modern American Plays,,"Baker, George Pierce",1920,,Lending Library Card,"Sylvia Beach, Mabel Schirmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4c00d0b2-7cb9-46e1-b628-2eac6ac7bb07/manifest,https://iiif-cloud.princeton.edu/iiif/2/5c%2F65%2F2f%2F5c652f21fd1c4c13ae7e4c0e1503b895%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1926-12-02,1926-12-02,https://shakespeareandco.princeton.edu/members/macnaughten-mary/,Mary MacNaughten,"MacNaughten, Mary",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-12-02,1926-12-04,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/asquith-ghost-book-sixteen/,The Ghost Book: Sixteen New Stories of the Uncanny,,,1926,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F4d%2Fc2%2Fb44dc2e479c743ab81c35f675dc69e9f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-12-03,1926-12-04,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/frank-holiday/,Holiday,,"Frank, Waldo",1923,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F4d%2Fc2%2Fb44dc2e479c743ab81c35f675dc69e9f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-12-03,1926-12-20,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/hume-golden-dancer/,The Golden Dancer,,"Hume, Cyril",1926,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/1e%2Fc1%2F4a%2F1ec14af0cc374dfda3309dacf9bfb1a2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-12-03,1926-12-08,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/wells-world-william-clissold/,The World of William Clissold,,"Wells, H. G.",1926,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/86%2F42%2F18%2F8642189e397a42fd995c54f2307c5d76%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-12-03,1926-12-20,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/chekhov-wood-demon/,The Wood Demon,,"Chekhov, Anton",1926,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/1e%2Fc1%2F4a%2F1ec14af0cc374dfda3309dacf9bfb1a2%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1926-12-03,1927-06-03,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",300.00,,6 months,182,4,,1926-12-03,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,;https://iiif-cloud.princeton.edu/iiif/2/1e%2Fc1%2F4a%2F1ec14af0cc374dfda3309dacf9bfb1a2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-12-03,1926-12-04,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/frank-chalk-face/,Chalk Face,,"Frank, Waldo",1924,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F4d%2Fc2%2Fb44dc2e479c743ab81c35f675dc69e9f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-12-03,1926-12-20,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/van-vechten-excavations-book-advocacies/,Excavations: A Book of Advocacies,,"Van Vechten, Carl",1926,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/1e%2Fc1%2F4a%2F1ec14af0cc374dfda3309dacf9bfb1a2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-12-03,1926-12-20,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/bell-pilgrim-spain/,A Pilgrim in Spain,,"Bell, Aubrey F. G.",1924,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/1e%2Fc1%2F4a%2F1ec14af0cc374dfda3309dacf9bfb1a2%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1926-12-03,1926-12-03,https://shakespeareandco.princeton.edu/members/montefiore/,Mrs. Frederick Montefiore,"Montefiore, Mrs. Frederick",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1926-12-04,1927-01-04,https://shakespeareandco.princeton.edu/members/hanson/,Mrs. James Hanson,"Hanson, Mrs. James",35.00,,1 month,31,2,,1926-11-16,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-12-04,1927-01-04,https://shakespeareandco.princeton.edu/members/lanux-pierre-de/,Pierre de Lanux,"de Lanux, Pierre",,,,,,,,,Returned,31,,,https://shakespeareandco.princeton.edu/books/williams-spring/,Spring and All,,"Williams, William Carlos",1923,,Lending Library Card,"Sylvia Beach, Pierre de Lanux Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e367ba9f-98cf-408d-9281-2c5771c2fa44/manifest,https://iiif.princeton.edu/loris/figgy_prod/d5%2F0d%2F32%2Fd50d325b995f4426af962cc245d639cd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1926-12-04,1926-12-18,https://shakespeareandco.princeton.edu/members/hanson-5/,Mrs. Hanson,"Hanson, Mrs.",17.50,,2 weeks,14,,,1926-12-03,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-12-04,1926-12-06,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/de-la-mare-connoisseur-stories/,The Connoisseur and Other Stories,,"De la Mare, Walter",1926,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F4d%2Fc2%2Fb44dc2e479c743ab81c35f675dc69e9f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-12-04,1927-01-11,https://shakespeareandco.princeton.edu/members/wickham/,Anna Wickham,"Wickham, Anna",,,,,,,,,Returned,38,,,https://shakespeareandco.princeton.edu/books/millay-harp-weaver-poems/,The Harp-Weaver and Other Poems,,"Millay, Edna St. Vincent",1923,,Lending Library Card,"Sylvia Beach, Mrs Anna Wickham Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bc6574f8-8f79-401d-86c6-731bea6280d0/manifest,https://iiif.princeton.edu/loris/figgy_prod/00%2F1a%2F05%2F001a0543e1b74e3c9a74d85d73d1ac45%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-12-04,1926-12-08,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/ossendowski-beasts-men-gods/,"Beasts, Men and Gods",,"Ossendowski, Ferdynand Antoni",1922,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F4d%2Fc2%2Fb44dc2e479c743ab81c35f675dc69e9f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1926-12-04,1927-01-04,https://shakespeareandco.princeton.edu/members/heurgon-mr/,Mr. Heurgon,"Heurgon, Mr.",56.00,,1 month,31,4,AdL,1926-12-04,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1926-12-04,1926-12-18,https://shakespeareandco.princeton.edu/members/fichet-3/,Mlle Fichet,"Fichet, Mlle",10.00,,2 weeks,14,1,Student,1926-12-04,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1926-12-04,,https://shakespeareandco.princeton.edu/members/montefiore/,Mrs. Frederick Montefiore,"Montefiore, Mrs. Frederick",12.00,,,,2,,1926-12-04,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-12-04,1927-01-04,https://shakespeareandco.princeton.edu/members/lanux-pierre-de/,Pierre de Lanux,"de Lanux, Pierre",,,,,,,,,Returned,31,,,https://shakespeareandco.princeton.edu/books/rodker-future-futurism/,The Future of Futurism,,"Rodker, John",1920,,Lending Library Card,"Sylvia Beach, Pierre de Lanux Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e367ba9f-98cf-408d-9281-2c5771c2fa44/manifest,https://iiif.princeton.edu/loris/figgy_prod/d5%2F0d%2F32%2Fd50d325b995f4426af962cc245d639cd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-12-04,1927-01-11,https://shakespeareandco.princeton.edu/members/wickham/,Anna Wickham,"Wickham, Anna",,,,,,,,,Returned,38,,,https://shakespeareandco.princeton.edu/books/millay-poems/,Poems,,"Millay, Edna St. Vincent",1923,,Lending Library Card,"Sylvia Beach, Mrs Anna Wickham Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bc6574f8-8f79-401d-86c6-731bea6280d0/manifest,https://iiif.princeton.edu/loris/figgy_prod/00%2F1a%2F05%2F001a0543e1b74e3c9a74d85d73d1ac45%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-12-04,1927-01-04,https://shakespeareandco.princeton.edu/members/lanux-pierre-de/,Pierre de Lanux,"de Lanux, Pierre",,,,,,,,,Returned,31,,,https://shakespeareandco.princeton.edu/books/carnevali-hurried-man/,A Hurried Man,,"Carnevali, Emanuel",1925,,Lending Library Card,"Sylvia Beach, Pierre de Lanux Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e367ba9f-98cf-408d-9281-2c5771c2fa44/manifest,https://iiif.princeton.edu/loris/figgy_prod/d5%2F0d%2F32%2Fd50d325b995f4426af962cc245d639cd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-12-04,1927-01-04,https://shakespeareandco.princeton.edu/members/lanux-pierre-de/,Pierre de Lanux,"de Lanux, Pierre",,,,,,,,,Returned,31,,,https://shakespeareandco.princeton.edu/books/cummings-xli-poems/,XLI Poems,,"Cummings, E. E.",1925,,Lending Library Card,"Sylvia Beach, Pierre de Lanux Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e367ba9f-98cf-408d-9281-2c5771c2fa44/manifest,https://iiif.princeton.edu/loris/figgy_prod/d5%2F0d%2F32%2Fd50d325b995f4426af962cc245d639cd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Supplement,1926-12-06,1926-12-19,https://shakespeareandco.princeton.edu/members/briggs-g-m/,G. M. Briggs,"Briggs, G. M.",10.00,,13 days,13,1,,1926-12-06,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1926-12-06,1926-12-20,https://shakespeareandco.princeton.edu/members/munne/,Mrs. Dunne,"Dunne, Mrs.",12.50,,2 weeks,14,1,,1926-12-06,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-12-06,,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/handy-blues-anthology/,Blues: An Anthology,,,1926,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/1e%2Fc1%2F4a%2F1ec14af0cc374dfda3309dacf9bfb1a2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-12-06,1926-12-08,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/hurst-mannequin/,Mannequin,,"Hurst, Fannie",1926,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F4d%2Fc2%2Fb44dc2e479c743ab81c35f675dc69e9f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1926-12-07,1927-01-07,https://shakespeareandco.princeton.edu/members/wickham/,Anna Wickham,"Wickham, Anna",35.00,,1 month,31,2,,1926-12-08,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Mrs Anna Wickham Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/bc6574f8-8f79-401d-86c6-731bea6280d0/manifest,;https://iiif.princeton.edu/loris/figgy_prod/00%2F1a%2F05%2F001a0543e1b74e3c9a74d85d73d1ac45%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-12-08,1926-12-09,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/cabell-beyond-life/,Beyond Life,,"Cabell, James Branch",1919,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/26%2Fe3%2F97%2F26e397bfa6d74b4e80b5ba215fcce1f6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-12-08,,https://shakespeareandco.princeton.edu/members/wickham/,Anna Wickham,"Wickham, Anna",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/thayer-dial/,The Dial,"Vol. 81, no. 5, Nov 1926",,,,Lending Library Card,"Sylvia Beach, Mrs Anna Wickham Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bc6574f8-8f79-401d-86c6-731bea6280d0/manifest,https://iiif.princeton.edu/loris/figgy_prod/00%2F1a%2F05%2F001a0543e1b74e3c9a74d85d73d1ac45%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-12-08,,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/stevens-brawny-man/,Brawny-Man,,"Stevens, James",1926,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/26%2Fe3%2F97%2F26e397bfa6d74b4e80b5ba215fcce1f6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-12-08,,https://shakespeareandco.princeton.edu/members/wickham/,Anna Wickham,"Wickham, Anna",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/hunt-tales-uneasy-2/,Tales of the Uneasy,,"Hunt, Violet",1911,,Lending Library Card,"Sylvia Beach, Mrs Anna Wickham Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bc6574f8-8f79-401d-86c6-731bea6280d0/manifest,https://iiif.princeton.edu/loris/figgy_prod/00%2F1a%2F05%2F001a0543e1b74e3c9a74d85d73d1ac45%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-12-08,,https://shakespeareandco.princeton.edu/members/wickham/,Anna Wickham,"Wickham, Anna",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/dane-wandering-stars/,Wandering Stars,,"Dane, Clemence",1924,,Lending Library Card,"Sylvia Beach, Mrs Anna Wickham Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bc6574f8-8f79-401d-86c6-731bea6280d0/manifest,https://iiif.princeton.edu/loris/figgy_prod/00%2F1a%2F05%2F001a0543e1b74e3c9a74d85d73d1ac45%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-12-08,1926-12-11,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/cather-professors-house/,The Professor's House,,"Cather, Willa",1925,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/86%2F42%2F18%2F8642189e397a42fd995c54f2307c5d76%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1926-12-08,1927-02-08,https://shakespeareandco.princeton.edu/members/martin-maud/,Maud Martin,"Martin, Maud",12.50,50.00,2 months,62,1,,1926-12-08,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Maud Martin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/934c6444-6b2c-4d42-acea-282118c23e5a/manifest,;https://iiif.princeton.edu/loris/figgy_prod/af%2Fe7%2F19%2Fafe71980292a468abf89a1d496347cac%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-12-08,1926-12-13,https://shakespeareandco.princeton.edu/members/martin-maud/,Maud Martin,"Martin, Maud",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/guedalla-second-empire/,The Second Empire,,"Guedalla, Phillip",1922,,Lending Library Card,"Sylvia Beach, Maud Martin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/934c6444-6b2c-4d42-acea-282118c23e5a/manifest,https://iiif.princeton.edu/loris/figgy_prod/af%2Fe7%2F19%2Fafe71980292a468abf89a1d496347cac%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1926-12-09,1927-01-09,https://shakespeareandco.princeton.edu/members/howland-mrs/,Mrs. Howland,"Howland, Mrs.",,50.00,1 month,31,1,,1926-12-09,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-12-09,1926-12-09,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/dostoyevsky-stavrogins-confession/,Stavrogin's Confession,,"Dostoyevsky, Fyodor",1922,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/26%2Fe3%2F97%2F26e397bfa6d74b4e80b5ba215fcce1f6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-12-10,1926-12-13,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/leskov-sentry-stories/,The Sentry and Other Stories,,"Leskov, Nikola Semyonovich",1922,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/26%2Fe3%2F97%2F26e397bfa6d74b4e80b5ba215fcce1f6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-12-10,1926-12-13,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/gorky-three/,Three of Them,,"Gorky, Maxim",1905,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/26%2Fe3%2F97%2F26e397bfa6d74b4e80b5ba215fcce1f6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1926-12-11,1927-01-11,https://shakespeareandco.princeton.edu/members/davenport-russell/,Russell Davenport,"Davenport, Russell",35.00,100.00,1 month,31,2,,1926-12-11,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1926-12-11,1927-01-11,https://shakespeareandco.princeton.edu/members/gruening-martha/,Martha Gruening,"Gruening, Martha",25.00,,1 month,31,1,,1926-12-11,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-12-11,1926-12-13,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/galsworthy-silver-spoon/,The Silver Spoon (A Modern Comedy),,"Galsworthy, John",1926,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/19%2F8d%2F36%2F198d3652445c468595f2ccdf76b02226%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1926-12-11,1926-12-11,https://shakespeareandco.princeton.edu/members/bacon/,Robert Bacon,"Bacon, Robert",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-12-13,1926-12-15,https://shakespeareandco.princeton.edu/members/martin-maud/,Maud Martin,"Martin, Maud",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/wassermann-wedlock/,Wedlock,,"Wassermann, Jakob",1926,,Lending Library Card,"Sylvia Beach, Maud Martin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/934c6444-6b2c-4d42-acea-282118c23e5a/manifest,https://iiif.princeton.edu/loris/figgy_prod/af%2Fe7%2F19%2Fafe71980292a468abf89a1d496347cac%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-12-13,1926-12-15,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/gorky-creatures-men/,Creatures That Once Were Men,,"Gorky, Maxim",1905,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/26%2Fe3%2F97%2F26e397bfa6d74b4e80b5ba215fcce1f6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-12-13,1926-12-15,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/stern-tents-israel/,Tents of Israel,,"Stern, G. B.",1924,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/86%2F42%2F18%2F8642189e397a42fd995c54f2307c5d76%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-12-13,,https://shakespeareandco.princeton.edu/members/schirmer/,Mabel Schirmer / Mrs. Robert Schirmer,"Schirmer, Mabel",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/douglas-old-calabria/,Old Calabria,,"Douglas, Norman",1915,,Lending Library Card,"Sylvia Beach, Mabel Schirmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4c00d0b2-7cb9-46e1-b628-2eac6ac7bb07/manifest,https://iiif-cloud.princeton.edu/iiif/2/3c%2F01%2Fbb%2F3c01bb93590c49deb8a039711760f633%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-12-13,1926-12-15,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/bojer-great-hunger/,The Great Hunger,,"Bojer, Johan",,,Lending Library Card,"Sylvia Beach, John Murray Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/47d81458-d644-4e5e-b1f3-3718e8e612b2/manifest,https://iiif.princeton.edu/loris/figgy_prod/26%2Fe3%2F97%2F26e397bfa6d74b4e80b5ba215fcce1f6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-12-13,1926-12-15,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/cather-lost-lady/,A Lost Lady,,"Cather, Willa",1923,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/86%2F42%2F18%2F8642189e397a42fd995c54f2307c5d76%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1926-12-13,1927-01-13,https://shakespeareandco.princeton.edu/members/lewis-charles/,Charles Lewis,"Lewis, Charles",35.00,50.00,1 month,31,2,,1926-12-13,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-12-13,1926-12-17,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/gaskell-wives-daughters/,Wives and Daughters,,"Gaskell, Elizabeth",1864,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/19%2F8d%2F36%2F198d3652445c468595f2ccdf76b02226%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1926-12-14,1927-01-14,https://shakespeareandco.princeton.edu/members/dickil/,Francis Dickie,"Dickie, Francis",25.00,50.00,1 month,31,1,,1926-12-14,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-12-14,1927-01-14,https://shakespeareandco.princeton.edu/members/dutton/,G. B. Dutton,"Dutton, G. B.",28.00,100.00,1 month,31,2,Professor / Teacher,1926-12-14,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-12-14,1927-03-14,https://shakespeareandco.princeton.edu/members/atkin/,Ann / Annie Atkin,"Atkin, Ann / Annie",48.00,,3 months,90,1,Student,1926-12-14,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1926-12-14,1926-12-14,https://shakespeareandco.princeton.edu/members/murray-john-3/,John Murray,"Murray, John",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-12-14,1926-12-21,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/huxley-antic-hay/,Antic Hay,,"Huxley, Aldous",1923,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/c2%2Ff7%2F29%2Fc2f7296928344566aa900c8c0644c909%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-12-14,1926-12-15,https://shakespeareandco.princeton.edu/members/reynolds-a-m/,Mme A. M. Reynolds,"Reynolds, Mme A. M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/leroux-mystery-yellow-room/,The Mystery of the Yellow Room,,"Leroux, Gaston",1908,,Lending Library Card,"Sylvia Beach, A.M. Reynolds Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3421b1cc-cb37-4310-978c-5c8e08086ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/80%2F2e%2F42%2F802e42f2392a44d4a01335e66adf9641%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-12-14,1926-12-14,https://shakespeareandco.princeton.edu/members/robbins-frances/,Frances Robbins,"Robbins, Frances",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-12-14,1926-12-20,https://shakespeareandco.princeton.edu/members/reynolds-a-m/,Mme A. M. Reynolds,"Reynolds, Mme A. M.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/gibbs-young-anarchy/,The Young Anarchy,,"Gibbs, Philip",1926,,Lending Library Card,"Sylvia Beach, A.M. Reynolds Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3421b1cc-cb37-4310-978c-5c8e08086ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/80%2F2e%2F42%2F802e42f2392a44d4a01335e66adf9641%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1926-12-15,1927-03-15,https://shakespeareandco.princeton.edu/members/birch-betty/,Betty Birch,"Birch, Betty",85.00,,3 months,90,2,,1926-11-30,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1926-12-15,1926-12-15,https://shakespeareandco.princeton.edu/members/wise-ruth/,Ruth Wise,"Wise, Ruth",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-12-15,1926-12-20,https://shakespeareandco.princeton.edu/members/martin-maud/,Maud Martin,"Martin, Maud",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/shields-juno-study-early/,Juno: A Study in Early Roman Religion,,"Shields, Emily Ledyard",1926,,Lending Library Card,"Sylvia Beach, Maud Martin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/934c6444-6b2c-4d42-acea-282118c23e5a/manifest,https://iiif.princeton.edu/loris/figgy_prod/af%2Fe7%2F19%2Fafe71980292a468abf89a1d496347cac%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-12-15,1926-12-15,https://shakespeareandco.princeton.edu/members/edwards-b/,B. Edwards,"Edwards, B.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1926-12-15,1926-12-15,https://shakespeareandco.princeton.edu/members/macnaughten-b/,B. MacNaughten,"MacNaughten, B.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-12-15,1926-12-20,https://shakespeareandco.princeton.edu/members/reynolds-a-m/,Mme A. M. Reynolds,"Reynolds, Mme A. M.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/hergesheimer-tampico/,Tampico,,"Hergesheimer, Joseph",1926,,Lending Library Card,"Sylvia Beach, A.M. Reynolds Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3421b1cc-cb37-4310-978c-5c8e08086ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/80%2F2e%2F42%2F802e42f2392a44d4a01335e66adf9641%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-12-15,1926-12-23,https://shakespeareandco.princeton.edu/members/reynolds-a-m/,Mme A. M. Reynolds,"Reynolds, Mme A. M.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/diamonds/,Diamonds,,,,Unidentified.,Lending Library Card,"Sylvia Beach, A.M. Reynolds Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3421b1cc-cb37-4310-978c-5c8e08086ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/80%2F2e%2F42%2F802e42f2392a44d4a01335e66adf9641%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-12-15,1926-12-15,https://shakespeareandco.princeton.edu/members/watson-h-s/,Mrs. H. S. Watson,"Watson, Mrs. H. S.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-12-16,1927-03-12,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,86,,,https://shakespeareandco.princeton.edu/books/meier-graefe-spanish-journey/,The Spanish Journey,,"Meier-Graefe, Julius",1926,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/a4%2F8c%2F7f%2Fa48c7f974df34e81af59231b85679646%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1926-12-16,1926-12-16,https://shakespeareandco.princeton.edu/members/norris/,E. W. Norris,"Norris, E. W.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-12-16,1926-12-17,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/sinclair-far-end/,Far End,,"Sinclair, May",1926,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/eb%2F77%2Fc5%2Feb77c58d7a7645d9b4ccd853a4eb6191%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1926-12-16,1927-01-16,https://shakespeareandco.princeton.edu/members/reynolds-a-m/,Mme A. M. Reynolds,"Reynolds, Mme A. M.",25.00,,1 month,31,1,,1926-12-20,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, A.M. Reynolds Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/3421b1cc-cb37-4310-978c-5c8e08086ffb/manifest,;https://iiif.princeton.edu/loris/figgy_prod/80%2F2e%2F42%2F802e42f2392a44d4a01335e66adf9641%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-12-16,1926-12-16,https://shakespeareandco.princeton.edu/members/gordon-jan/,Jan Gordon,"Gordon, Jan",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-12-16,1927-03-16,https://shakespeareandco.princeton.edu/members/fortescue/,Mrs. Charles Fortescue,"Fortescue, Mrs. Charles",60.00,50.00,3 months,90,1,,1926-12-16,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1926-12-16,1926-12-16,https://shakespeareandco.princeton.edu/members/stokes/,M. Stokes,"Stokes, M.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-12-17,1926-12-22,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/byrne-hangmans-house/,Hangman's House,,"Byrne, Donn",1926,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/32%2F11%2F44%2F3211445456604f26802be4ccce47b278%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-12-17,1926-12-20,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/gaskell-sylvias-lovers/,Sylvia's Lovers,,"Gaskell, Elizabeth",1863,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/19%2F8d%2F36%2F198d3652445c468595f2ccdf76b02226%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1926-12-17,1927-06-17,https://shakespeareandco.princeton.edu/members/beck-suzanne/,Suzanne Beck,"Beck, Suzanne",100.00,50.00,6 months,182,1,,1926-12-17,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-12-17,1927-06-17,https://shakespeareandco.princeton.edu/members/glackens-ira/,Ira Glackens / I. D. Glackens,"Glackens, Ira",150.00,100.00,6 months,182,1,,1926-12-17,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1926-12-17,1926-12-17,https://shakespeareandco.princeton.edu/members/fichet-3/,Mlle Fichet,"Fichet, Mlle",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-12-17,1927-01-17,https://shakespeareandco.princeton.edu/members/desgroseillers-g/;https://shakespeareandco.princeton.edu/members/desgrosseilliers/,G. Desgroseillers;Mme Desgrosseilliers,"Desgroseillers, G.;Desgrosseilliers, Mme",20.00,50.00,1 month,31,1,Student,1926-12-17,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Crossed out,1926-12-17,,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/ellis-dance-life/,The Dance of Life,,"Ellis, Havelock",1923,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/32%2F11%2F44%2F3211445456604f26802be4ccce47b278%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-12-17,1926-12-28,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/goldring-merchants-souls/,The Merchants of Souls,,"Goldring, Douglas",1926,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/eb%2F77%2Fc5%2Feb77c58d7a7645d9b4ccd853a4eb6191%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-12-18,1927-01-08,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/dane-way-things-happen/,The Way Things Happen: A Story in Three Acts,,"Dane, Clemence",1924,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/34%2F63%2Fef%2F3463efdf87f94472a29bed492f604a45%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-12-20,1927-03-07,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,77,,,https://shakespeareandco.princeton.edu/books/ellis-dance-life/,The Dance of Life,,"Ellis, Havelock",1923,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/1e%2Fc1%2F4a%2F1ec14af0cc374dfda3309dacf9bfb1a2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-12-20,1927-01-04,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/harris-undreamd-shores/,Undream'd of Shores,,"Harris, Frank",1924,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/1e%2Fc1%2F4a%2F1ec14af0cc374dfda3309dacf9bfb1a2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-12-20,,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/wassermann-wedlock/,Wedlock,,"Wassermann, Jakob",1926,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/19%2F8d%2F36%2F198d3652445c468595f2ccdf76b02226%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-12-20,1927-01-10,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/mcalmon-companion-volume/,A Companion Volume,,"McAlmon, Robert",1923,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/dc%2F94%2Ffd%2Fdc94fda0cd9c4ae195f988f5a500f00f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-12-20,1926-12-20,https://shakespeareandco.princeton.edu/members/martin-maud/,Maud Martin,"Martin, Maud",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-12-20,1927-01-11,https://shakespeareandco.princeton.edu/members/wickham/,Anna Wickham,"Wickham, Anna",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/monro-contemporary-poets/,Some Contemporary Poets (1920),,"Monro, Harold",1920,,Lending Library Card,"Sylvia Beach, Mrs Anna Wickham Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bc6574f8-8f79-401d-86c6-731bea6280d0/manifest,https://iiif.princeton.edu/loris/figgy_prod/00%2F1a%2F05%2F001a0543e1b74e3c9a74d85d73d1ac45%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-12-20,1927-01-04,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/howells-indian-summer/,Indian Summer,,"Howells, William Dean",1886,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/1e%2Fc1%2F4a%2F1ec14af0cc374dfda3309dacf9bfb1a2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-12-20,1927-01-04,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/saltus-imperial-purple/,Imperial Purple,,"Saltus, Edgar",1892,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/1e%2Fc1%2F4a%2F1ec14af0cc374dfda3309dacf9bfb1a2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-12-21,1927-01-11,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/inge-outspoken-essays/,Outspoken Essays,,"Inge, William Ralph",1919,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/c2%2Ff7%2F29%2Fc2f7296928344566aa900c8c0644c909%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-12-22,1927-01-14,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/ford-marsden-case-romance/,The Marsden Case: A Romance,,"Ford, Ford Madox",1923,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/4c%2Fb0%2F05%2F4cb0051a29fd4a30ac4d18a9278429f5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1926-12-22,1926-12-22,https://shakespeareandco.princeton.edu/members/mccann-miss/,Miss McCann,"McCann, Miss",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-12-22,1927-01-10,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/galsworthy-silver-spoon/,The Silver Spoon (A Modern Comedy),,"Galsworthy, John",1926,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/32%2F11%2F44%2F3211445456604f26802be4ccce47b278%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1926-12-23,1927-01-23,https://shakespeareandco.princeton.edu/members/pocock-miss/,Miss Pocock,"Pocock, Miss",25.00,,1 month,31,1,,1926-12-23,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-12-23,1926-12-30,https://shakespeareandco.princeton.edu/members/reynolds-a-m/,Mme A. M. Reynolds,"Reynolds, Mme A. M.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/wassermann-wedlock/,Wedlock,,"Wassermann, Jakob",1926,,Lending Library Card,"Sylvia Beach, A.M. Reynolds Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3421b1cc-cb37-4310-978c-5c8e08086ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/80%2F2e%2F42%2F802e42f2392a44d4a01335e66adf9641%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-12-23,1926-12-30,https://shakespeareandco.princeton.edu/members/reynolds-a-m/,Mme A. M. Reynolds,"Reynolds, Mme A. M.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/walpole-harmer-john-unworldly/,Harmer John: An Unworldly Story,,"Walpole, Hugh",1926,,Lending Library Card,"Sylvia Beach, A.M. Reynolds Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3421b1cc-cb37-4310-978c-5c8e08086ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/80%2F2e%2F42%2F802e42f2392a44d4a01335e66adf9641%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-12-23,1926-12-27,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/oriordan-adam-dublin-romance/,Adam of Dublin: A Romance of To-day,,"O'Riordan, Conal",1920,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/85%2Fd2%2F01%2F85d201c5b2ca4f55bd89e96d9ebeb8bd%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1926-12-23,1927-01-23,https://shakespeareandco.princeton.edu/members/pocock-2/,Miss Pocock,"Pocock, Miss",35.00,,1 month,31,2,,1926-12-23,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1926-12-24,1927-01-24,https://shakespeareandco.princeton.edu/members/clark-m-a/,M. A. Clark,"Clark, M. A.",20.00,,1 month,31,1,Student,1926-12-24,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1926-12-24,1927-06-24,https://shakespeareandco.princeton.edu/members/davies-6/,Mrs. G. Davies,"Davies, Mrs. G.",150.00,,6 months,182,2,,1926-12-24,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1926-12-27,1926-12-27,https://shakespeareandco.princeton.edu/members/doughty-howard/,Howard Doughty,"Doughty, Howard",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1926-12-27,1926-12-27,https://shakespeareandco.princeton.edu/members/walls/,Mrs. C. Walls,"Walls, Mrs. C.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1926-12-27,1926-12-30,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/mother/,Mother,,,,"Unidentified. Maxim Gorky's *Mother* (1907), Kathleen Norris's *Mother: A Story* (1911), or Edgar A. Guest's *Mother* (1925), etc.",Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/85%2Fd2%2F01%2F85d201c5b2ca4f55bd89e96d9ebeb8bd%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-12-28,1927-01-05,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/wilson-dragons-blood/,Dragon's Blood,,"Wilson, Romer",1926,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/eb%2F77%2Fc5%2Feb77c58d7a7645d9b4ccd853a4eb6191%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1926-12-29,1927-01-29,https://shakespeareandco.princeton.edu/members/bruel-andree/,AndrΓ©e Bruel,"Bruel, AndrΓ©e",25.00,,1 month,31,1,,1926-12-29,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1926-12-30,1927-01-30,https://shakespeareandco.princeton.edu/members/buckley/,Fr. Buckley,"Buckley, Fr.",35.00,100.00,1 month,31,2,,1926-12-30,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1926-12-30,1927-01-05,https://shakespeareandco.princeton.edu/members/reynolds-a-m/,Mme A. M. Reynolds,"Reynolds, Mme A. M.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/brandon-young-love/,Young Love,,"Brandon, John G.",1925,,Lending Library Card,"Sylvia Beach, A.M. Reynolds Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3421b1cc-cb37-4310-978c-5c8e08086ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/80%2F2e%2F42%2F802e42f2392a44d4a01335e66adf9641%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1926-12-30,1927-01-03,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/dreiser-american-tragedy/,An American Tragedy,Vol. 1,"Dreiser, Theodore",1925,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/85%2Fd2%2F01%2F85d201c5b2ca4f55bd89e96d9ebeb8bd%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1926-12-30,1927-01-05,https://shakespeareandco.princeton.edu/members/reynolds-a-m/,Mme A. M. Reynolds,"Reynolds, Mme A. M.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/swinnerton-elder-sister/,The Elder Sister,,"Swinnerton, Frank",1925,,Lending Library Card,"Sylvia Beach, A.M. Reynolds Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3421b1cc-cb37-4310-978c-5c8e08086ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/80%2F2e%2F42%2F802e42f2392a44d4a01335e66adf9641%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-01-03,1927-01-07,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/dreiser-american-tragedy/,An American Tragedy,Vol. 2,"Dreiser, Theodore",1925,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/85%2Fd2%2F01%2F85d201c5b2ca4f55bd89e96d9ebeb8bd%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-01-04,1927-03-07,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,62,,,https://shakespeareandco.princeton.edu/books/james-aspern-papers/,The Aspern Papers,,"James, Henry",1888,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/1e%2Fc1%2F4a%2F1ec14af0cc374dfda3309dacf9bfb1a2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-01-04,1927-01-15,https://shakespeareandco.princeton.edu/members/lanux-pierre-de/,Pierre de Lanux,"de Lanux, Pierre",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/benson-goodbye-stranger/,"Goodbye, Stranger",,"Benson, Stella",1926,,Lending Library Card,"Sylvia Beach, Pierre de Lanux Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e367ba9f-98cf-408d-9281-2c5771c2fa44/manifest,https://iiif.princeton.edu/loris/figgy_prod/d5%2F0d%2F32%2Fd50d325b995f4426af962cc245d639cd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-01-04,1927-01-15,https://shakespeareandco.princeton.edu/members/lanux-pierre-de/,Pierre de Lanux,"de Lanux, Pierre",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/fletcher-great-brighton-mystery/,The Great Brighton Mystery,,"Fletcher, Joseph Smith",1925,,Lending Library Card,"Sylvia Beach, Pierre de Lanux Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e367ba9f-98cf-408d-9281-2c5771c2fa44/manifest,https://iiif.princeton.edu/loris/figgy_prod/d5%2F0d%2F32%2Fd50d325b995f4426af962cc245d639cd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-01-04,1927-01-15,https://shakespeareandco.princeton.edu/members/lanux-pierre-de/,Pierre de Lanux,"de Lanux, Pierre",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/fisher-sons-wife/,Her Son's Wife,,"Fisher, Dorothy Canfield",1926,,Lending Library Card,"Sylvia Beach, Pierre de Lanux Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e367ba9f-98cf-408d-9281-2c5771c2fa44/manifest,https://iiif.princeton.edu/loris/figgy_prod/d5%2F0d%2F32%2Fd50d325b995f4426af962cc245d639cd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-01-04,1927-01-06,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/hemingway-time/,In Our Time,,"Hemingway, Ernest",,Unidentified edition. Either Hemingway's *in our time* (1924) or *In Our Time* (1925).,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/05%2Fcc%2F42%2F05cc420c01b74e7885f72bc117cfdb3d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-01-05,1927-01-11,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/oriordan-young-lady-dazincourt/,Young Lady Dazincourt: A Discovery,,"O'Riordan, Conal",1926,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/eb%2F77%2Fc5%2Feb77c58d7a7645d9b4ccd853a4eb6191%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1927-01-05,1927-01-05,https://shakespeareandco.princeton.edu/members/reynolds-a-m/,Mme A. M. Reynolds,"Reynolds, Mme A. M.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1927-01-05,1927-04-05,https://shakespeareandco.princeton.edu/members/reavely/,Miss Reavely,"Reavely, Miss",48.00,,3 months,90,1,Student,1926-12-23,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-01-06,,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/lardner-gullibles-travels-etc/,"Gullible's Travels, Etc.",,"Lardner, Ring",1917,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/05%2Fcc%2F42%2F05cc420c01b74e7885f72bc117cfdb3d%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1927-01-06,1928-01-06,https://shakespeareandco.princeton.edu/members/frieseke-sarah/,Sarah Anne Frieseke,"Frieseke, Sarah Anne",2.50,,1 year,365,2,,1927-01-06,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1927-01-07,1927-02-07,https://shakespeareandco.princeton.edu/members/gray-freeman/,Freeman Gray,"Gray, Freeman",25.00,,1 month,31,1,,1927-01-07,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-01-07,1927-01-10,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/erskine-private-life-helen/,The Private Life of Helen of Troy,,"Erskine, John",1925,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/85%2Fd2%2F01%2F85d201c5b2ca4f55bd89e96d9ebeb8bd%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-01-08,1927-01-14,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/mumford-golden-day/,The Golden Day,,"Mumford, Lewis",1926,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/f7%2F9b%2Fe0%2Ff79be07300994867984b67006c59c079%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1927-01-08,1927-02-08,https://shakespeareandco.princeton.edu/members/hutchins-ethel/,Ethel Hutchins,"Hutchins, Ethel",25.00,50.00,1 month,31,1,,1927-01-08,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-01-08,1927-01-15,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/dreiser-sister-carrie/,Sister Carrie,,"Dreiser, Theodore",1900,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/34%2F63%2Fef%2F3463efdf87f94472a29bed492f604a45%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-01-08,1927-01-20,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/huxley-essays-popular-science/,Essays in Popular Science,,"Huxley, Julian",1927,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/f7%2F9b%2Fe0%2Ff79be07300994867984b67006c59c079%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1927-01-08,1927-02-08,https://shakespeareandco.princeton.edu/members/harmer/,Mrs. Harmer,"Harmer, Mrs.",250.00,100.00,1 month,31,2,,1927-01-08,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-01-08,1927-02-12,https://shakespeareandco.princeton.edu/members/rieder/,M. Rieder,"Rieder, M.",,,,,,,,,Returned,35,,,https://shakespeareandco.princeton.edu/books/hostel-unclear/,Hostel [unclear],,,,Unidentified. Handwriting unclear.,Lending Library Card,"Sylvia Beach, Rieder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/559c8919-8881-40ad-b027-67dbf1b23611/manifest,https://iiif.princeton.edu/loris/figgy_prod/e8%2F10%2F7c%2Fe8107c2c950f411d8ceeb6bb8bdc01c7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1927-01-08,1927-01-08,https://shakespeareandco.princeton.edu/members/fauquet/,Mme Fauquet,"Fauquet, Mme",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-01-09,1927-01-15,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/stephen-george-eliot/,George Eliot,,"Stephen, Leslie",1902,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2F7d%2Fa5%2F237da592c8234d839140f8c72d672a9f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-01-10,1927-01-17,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/van-vechten-nigger-heaven/,Nigger Heaven,,"Van Vechten, Carl",1926,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/05%2Fcc%2F42%2F05cc420c01b74e7885f72bc117cfdb3d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-01-10,,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/millin-gods-stepchildren/,God's Stepchildren,,"Millin, Sarah Gertrude",1924,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/dc%2F94%2Ffd%2Fdc94fda0cd9c4ae195f988f5a500f00f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-01-10,1927-01-11,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/hurst-mannequin/,Mannequin,,"Hurst, Fannie",1926,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/85%2Fd2%2F01%2F85d201c5b2ca4f55bd89e96d9ebeb8bd%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-01-10,1927-01-17,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/walsh-quarter/,This Quarter,"Vol. 1, no. 2, Autumn 1925 β Winter 1926",,,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/05%2Fcc%2F42%2F05cc420c01b74e7885f72bc117cfdb3d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-01-10,1927-01-22,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/bullitt-done/,It's Not Done,,"Bullitt, William C.",1926,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/32%2F11%2F44%2F3211445456604f26802be4ccce47b278%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1927-01-11,1927-02-11,https://shakespeareandco.princeton.edu/members/dandieu-arnaud/,Arnaud Dandieu,"Dandieu, Arnaud",20.00,50.00,1 month,31,1,,1927-01-11,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-01-11,1927-10-13,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,275,,,https://shakespeareandco.princeton.edu/books/summers-history-witchcraft-demonology/,A History of Witchcraft and Demonology,,"Summers, Montague",1926,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/85%2Fd2%2F01%2F85d201c5b2ca4f55bd89e96d9ebeb8bd%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1927-01-11,1927-04-11,https://shakespeareandco.princeton.edu/members/jackson-mrs/,Mrs. Jackson,"Jackson, Mrs.",85.00,,3 months,91,2,,1927-01-11,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1927-01-11,1927-04-11,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",48.00,,3 months,90,1,,1927-01-11,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,;https://iiif.princeton.edu/loris/figgy_prod/23%2F7d%2Fa5%2F237da592c8234d839140f8c72d672a9f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-01-11,1927-01-25,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/jesperson-growth-structure-english/,Growth and Structure of the English Language,,"Jesperson, Otto",1905,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/c2%2Ff7%2F29%2Fc2f7296928344566aa900c8c0644c909%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-01-11,1927-01-15,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/sinclair-creators-comedy/,The Creators: A Comedy,,"Sinclair, May",1910,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/eb%2F77%2Fc5%2Feb77c58d7a7645d9b4ccd853a4eb6191%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1927-01-12,1927-04-12,https://shakespeareandco.princeton.edu/members/rathbrun/,Mrs. Rathbrun,"Rathbrun, Mrs.",85.00,50.00,3 months,90,2,,1927-01-12,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-01-13,1927-01-17,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/trollope-bertrams/,The Bertrams,,"Trollope, Anthony",1859,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/85%2Fd2%2F01%2F85d201c5b2ca4f55bd89e96d9ebeb8bd%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-01-14,1927-02-22,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,39,,,https://shakespeareandco.princeton.edu/books/swinnerton-three-lovers/,The Three Lovers,,"Swinnerton, Frank",1922,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/4c%2Fb0%2F05%2F4cb0051a29fd4a30ac4d18a9278429f5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-01-14,,https://shakespeareandco.princeton.edu/members/du-bos/,Charles Du Bos,"Du Bos, Charles",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/murry-life-jesus/,The Life of Jesus,,"Murry, John Middleton",1927,,Lending Library Card,"Sylvia Beach, Charles Du Bos Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1f0465a4-aae1-4922-9398-dc3d8312fda9/manifest,https://iiif.princeton.edu/loris/figgy_prod/b6%2Fff%2F1b%2Fb6ff1b678a67443997383556c64e8edb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1927-01-14,1927-07-14,https://shakespeareandco.princeton.edu/members/levis-mirepoix/,M. de LΓ©vis-Mirepoix,"LΓ©vis-Mirepoix, M. de",80.00,,6 months,181,1,Student,1927-01-14,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-01-15,1927-06-02,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,138,,,https://shakespeareandco.princeton.edu/books/graves-contemporary-techniques-poetry/,Contemporary Techniques of Poetry: A Political Analogy,,"Graves, Robert",1925,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/54%2Fb9%2F90%2F54b9902d15d24fa0953f0dc338355e2e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-01-15,1927-01-17,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/cather-mortal-enemy/,My Mortal Enemy,,"Cather, Willa",1926,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/eb%2F77%2Fc5%2Feb77c58d7a7645d9b4ccd853a4eb6191%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-01-15,1927-02-22,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,38,,,https://shakespeareandco.princeton.edu/books/joyce-exiles/,Exiles,,"Joyce, James",1918,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/34%2F63%2Fef%2F3463efdf87f94472a29bed492f604a45%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-01-15,1927-04-16,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,91,,,https://shakespeareandco.princeton.edu/books/sterne-works-sterne-life/,"The Works of Sterne: The Life and Opinions of Tristram Shandy, Gentleman & A Sentimental Journey through France and Italy","Vol. 1 The Life and Opinions of Tristram Shandy, Gentleman","Sterne, Laurence",1900,"For additional borrows, see [*Tristram Shandy*](https://shakespeareandco.princeton.edu/books/sterne-life-opinions-tristram/) and [*A Sentimental Journey*](https://shakespeareandco.princeton.edu/books/sterne-sentimental-journey-france/).",Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/54%2Fb9%2F90%2F54b9902d15d24fa0953f0dc338355e2e%2Fintermediate_file/full/full/0/default.jpg
+Supplement,1927-01-15,1927-07-11,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",32.00,,"5 months, 26 days",177,,,1927-01-15,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,;https://iiif.princeton.edu/loris/figgy_prod/23%2F7d%2Fa5%2F237da592c8234d839140f8c72d672a9f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-01-15,1927-01-22,https://shakespeareandco.princeton.edu/members/lanux-pierre-de/,Pierre de Lanux,"de Lanux, Pierre",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/crofts-inspector-french-cheyne/,Inspector French and the Cheyne Mystery,,"Crofts, Freeman Wills",1926,,Lending Library Card,"Sylvia Beach, Pierre de Lanux Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e367ba9f-98cf-408d-9281-2c5771c2fa44/manifest,https://iiif.princeton.edu/loris/figgy_prod/d5%2F0d%2F32%2Fd50d325b995f4426af962cc245d639cd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-01-15,1927-01-22,https://shakespeareandco.princeton.edu/members/lanux-pierre-de/,Pierre de Lanux,"de Lanux, Pierre",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/deeping-sorrell/,Sorrell and Son,,"Deeping, Warwick",1926,,Lending Library Card,"Sylvia Beach, Pierre de Lanux Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e367ba9f-98cf-408d-9281-2c5771c2fa44/manifest,https://iiif.princeton.edu/loris/figgy_prod/d5%2F0d%2F32%2Fd50d325b995f4426af962cc245d639cd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-01-15,1927-01-19,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/butcher-memories-george-meredith/,Memories of George Meredith,,"Butcher, Alice Mary Brandreth",1919,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2F7d%2Fa5%2F237da592c8234d839140f8c72d672a9f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-01-17,1927-02-03,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/mordell-erotic-motive-literature/,The Erotic Motive In Literature,,"Mordell, Albert",1919,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/05%2Fcc%2F42%2F05cc420c01b74e7885f72bc117cfdb3d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-01-17,1927-01-24,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/trollope-claverings/,The Claverings,,"Trollope, Anthony",1866,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/85%2Fd2%2F01%2F85d201c5b2ca4f55bd89e96d9ebeb8bd%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-01-17,1927-01-25,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/baring-daphne-adeane/,Daphne Adeane,,"Baring, Maurice",1927,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/eb%2F77%2Fc5%2Feb77c58d7a7645d9b4ccd853a4eb6191%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1927-01-18,1927-02-18,https://shakespeareandco.princeton.edu/members/proix/,Troise Proix,"Proix, Troise",25.00,50.00,1 month,31,1,,1927-01-18,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Troise Proix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/b7152822-4421-406d-9472-740daf9b84e0/manifest,;https://iiif.princeton.edu/loris/figgy_prod/e6%2Fa5%2F3a%2Fe6a53a0fee174f0589dc02ffbad33ba5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1927-01-18,1927-02-18,https://shakespeareandco.princeton.edu/members/akinson-n/,N. Atkinson,"Akinson, N.",28.00,50.00,1 month,31,2,Student,1927-01-18,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-01-18,1927-01-24,https://shakespeareandco.princeton.edu/members/proix/,Troise Proix,"Proix, Troise",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/oneill-great-god-brown/,The Great God Brown,,"O'Neill, Eugene",1926,,Lending Library Card,"Sylvia Beach, Troise Proix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b7152822-4421-406d-9472-740daf9b84e0/manifest,https://iiif.princeton.edu/loris/figgy_prod/e6%2Fa5%2F3a%2Fe6a53a0fee174f0589dc02ffbad33ba5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1927-01-18,1928-01-18,https://shakespeareandco.princeton.edu/members/rieder/,M. Rieder,"Rieder, M.",80.00,,1 year,365,1,AdL,1927-05-14,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Rieder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/559c8919-8881-40ad-b027-67dbf1b23611/manifest,https://iiif.princeton.edu/loris/figgy_prod/e8%2F10%2F7c%2Fe8107c2c950f411d8ceeb6bb8bdc01c7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1927-01-19,1927-04-19,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",60.00,,3 months,90,1,,1927-01-19,,,,,FRF,,,,,,,Lending Library Card;Logbook,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest;,https://iiif.princeton.edu/loris/figgy_prod/91%2Fde%2F94%2F91de94d5ff724fa6bdd4c1f5e8b2b9af%2Fintermediate_file.jp2/full/full/0/default.jpg;
+Borrow,1927-01-19,,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/sampson-cambridge-book-prose/,The Cambridge Book of Prose and Verse,,,1924,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/89%2F50%2F02%2F895002cdfd9f40008230e8e772931579%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-01-19,,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/sampson-cambridge-book-prose/,The Cambridge Book of Prose and Verse,,,1924,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/91%2Fde%2F94%2F91de94d5ff724fa6bdd4c1f5e8b2b9af%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-01-19,1927-02-03,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/hammerton-george-meredith-life/,George Meredith: His Life and Art in Anecdote and Criticism,,"Hammerton, John Alexander",1909,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2F7d%2Fa5%2F237da592c8234d839140f8c72d672a9f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1927-01-20,1927-02-20,https://shakespeareandco.princeton.edu/members/dreyfus-3/,Mme Dreyfus,"Dreyfus, Mme",35.00,100.00,1 month,31,2,,1927-01-20,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-01-20,1927-04-19,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,89,,,https://shakespeareandco.princeton.edu/books/kroeber-anthropology/,Anthropology,,"Kroeber, A. L.",1923,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/f7%2F9b%2Fe0%2Ff79be07300994867984b67006c59c079%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1927-01-21,1927-07-21,https://shakespeareandco.princeton.edu/members/neel-1/,Mme W. J. Neel,"Neel, Mme W. J.",150.00,,6 months,181,2,,1927-01-21,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-01-21,1927-03-02,https://shakespeareandco.princeton.edu/members/wyck/,William van Wyck,"van Wyck, William",,,,,,,,,Returned,40,,,https://shakespeareandco.princeton.edu/books/beck-divine-lady-romance/,The Divine Lady: A Romance of Nelson and Emma Hamilton,,"Beck, L. Adams",1924,,Lending Library Card,"Sylvia Beach, William van Wyck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f6b2d812-ade2-4fc6-912e-aab71c67a4a0/manifest,https://iiif.princeton.edu/loris/figgy_prod/88%2F8a%2F65%2F888a650ab2574f1993c068b67cc41b2f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1927-01-21,1927-02-21,https://shakespeareandco.princeton.edu/members/desgroseillers-g/;https://shakespeareandco.princeton.edu/members/desgrosseilliers/,G. Desgroseillers;Mme Desgrosseilliers,"Desgroseillers, G.;Desgrosseilliers, Mme",28.00,,1 month,31,2,Student,1927-01-21,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1927-01-21,1927-04-21,https://shakespeareandco.princeton.edu/members/wyck/,William van Wyck,"van Wyck, William",60.00,50.00,3 months,90,1,,1927-01-24,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, William van Wyck Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/f6b2d812-ade2-4fc6-912e-aab71c67a4a0/manifest,;https://iiif.princeton.edu/loris/figgy_prod/88%2F8a%2F65%2F888a650ab2574f1993c068b67cc41b2f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-01-22,1927-02-26,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,35,,,https://shakespeareandco.princeton.edu/books/bennett-lord-raingo/,Lord Raingo,,"Bennett, Arnold",1926,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/32%2F11%2F44%2F3211445456604f26802be4ccce47b278%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-01-22,1927-04-21,https://shakespeareandco.princeton.edu/members/soupault/,Philippe Soupault,"Soupault, Philippe",,,,,,,,,Returned,89,,,https://shakespeareandco.princeton.edu/books/landor-imaginary-conversations/,Imaginary Conversations,"Vol. 5 Dialogues of Famous Women, and Miscellaneous Dialogues","Landor, Walter Savage",1882,,Lending Library Card,"Sylvia Beach, Philippe Soupault Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f06f5625-99f4-4c18-839c-4e86ad0eb1b3/manifest,https://iiif.princeton.edu/loris/figgy_prod/ac%2F42%2Fc3%2Fac42c34e9ee847f29f71aaa2698162a8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1927-01-22,1927-02-22,https://shakespeareandco.princeton.edu/members/lanux-pierre-de/,Pierre de Lanux,"de Lanux, Pierre",35.00,,1 month,31,2,AdL,1927-01-22,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Pierre de Lanux Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/e367ba9f-98cf-408d-9281-2c5771c2fa44/manifest,;https://iiif.princeton.edu/loris/figgy_prod/d5%2F0d%2F32%2Fd50d325b995f4426af962cc245d639cd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-01-22,1927-02-26,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,35,,,https://shakespeareandco.princeton.edu/books/eliot-adam-bede/,Adam Bede,,"Eliot, George",1859,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/32%2F11%2F44%2F3211445456604f26802be4ccce47b278%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-01-22,1927-02-07,https://shakespeareandco.princeton.edu/members/lanux-pierre-de/,Pierre de Lanux,"de Lanux, Pierre",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/buchan-dancing-floor/,The Dancing Floor,,"Buchan, John",1926,,Lending Library Card,"Sylvia Beach, Pierre de Lanux Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e367ba9f-98cf-408d-9281-2c5771c2fa44/manifest,https://iiif.princeton.edu/loris/figgy_prod/d5%2F0d%2F32%2Fd50d325b995f4426af962cc245d639cd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-01-22,1927-02-07,https://shakespeareandco.princeton.edu/members/lanux-pierre-de/,Pierre de Lanux,"de Lanux, Pierre",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/christie-murder-roger-ackroyd/,The Murder of Roger Ackroyd,,"Christie, Agatha",1926,,Lending Library Card,"Sylvia Beach, Pierre de Lanux Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e367ba9f-98cf-408d-9281-2c5771c2fa44/manifest,https://iiif.princeton.edu/loris/figgy_prod/d5%2F0d%2F32%2Fd50d325b995f4426af962cc245d639cd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-01-24,1927-01-28,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/walpole-fortitude/,Fortitude,,"Walpole, Hugh",1913,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/85%2Fd2%2F01%2F85d201c5b2ca4f55bd89e96d9ebeb8bd%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1927-01-24,1927-02-24,https://shakespeareandco.princeton.edu/members/more-alice/,Alice More,"More, Alice",20.00,50.00,1 month,31,1,Student,1927-01-24,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1927-01-24,1927-02-24,https://shakespeareandco.princeton.edu/members/pocock-3/,Miss Pocock,"Pocock, Miss",20.00,,1 month,31,1,Student,1927-01-24,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-01-24,1927-02-02,https://shakespeareandco.princeton.edu/members/proix/,Troise Proix,"Proix, Troise",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/shaw-translations-tom-fooleries/,Translations and Tom Fooleries,,"Shaw, George Bernard",1926,,Lending Library Card,"Sylvia Beach, Troise Proix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b7152822-4421-406d-9472-740daf9b84e0/manifest,https://iiif.princeton.edu/loris/figgy_prod/e6%2Fa5%2F3a%2Fe6a53a0fee174f0589dc02ffbad33ba5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1927-01-25,1927-04-25,https://shakespeareandco.princeton.edu/members/cohen-max-b/,Max B. Cohen,"Cohen, Max B.",68.00,100.00,3 months,90,2,,1927-01-25,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-01-25,1927-01-28,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/deland-kays/,The Kays,,"Deland, Margaret",1926,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/eb%2F77%2Fc5%2Feb77c58d7a7645d9b4ccd853a4eb6191%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-01-25,1927-02-08,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/lawrence-sons-lovers/,Sons and Lovers,,"Lawrence, D. H.",1913,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/c2%2Ff7%2F29%2Fc2f7296928344566aa900c8c0644c909%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1927-01-26,1928-01-26,https://shakespeareandco.princeton.edu/members/jackson-3/,Mrs. J. Jackson,"Jackson, Mrs. J.",115.00,40.00,1 year,365,1,,1926-01-26,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-01-26,1927-02-07,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/dell-black-knight/,The Black Knight,,"Dell, Ethel M.",1926,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/91%2Fde%2F94%2F91de94d5ff724fa6bdd4c1f5e8b2b9af%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1927-01-26,1927-04-26,https://shakespeareandco.princeton.edu/members/gill-miss/,Miss Gill,"Gill, Miss",48.00,50.00,3 months,90,1,Student,1927-01-26,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-01-26,1927-02-07,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/phillpotts-peacock-house-mysteries/,"Peacock House, and Other Mysteries",,"Phillpotts, Eden",1926,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/91%2Fde%2F94%2F91de94d5ff724fa6bdd4c1f5e8b2b9af%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-01-26,1927-06-27,https://shakespeareandco.princeton.edu/members/prevost-jean/,Jean PrΓ©vost,"PrΓ©vost, Jean",,,,,,,,,Returned,152,,,https://shakespeareandco.princeton.edu/books/blake-blakes-works/,Willam Blake's Works,,"Blake, William",,"At least three editions of Blake's collected works circulated in the lending library. Monique de Vigan borrowed The Poetical Works of William Blake, edited by William Michael Rossetti (Bell, 1874). Jean PrΓ©vost, John Rodker, Guy de Pourtales, Catherine Yarrow, Ella Cassigne, FranΓ§oise Bernheim, and Francoise de Marcilly (in 1939) borrowed The Poetical Works of William Blake, edited by John Sampson (Oxford, 1905). Armand Petitjean, Antoinette Bernheim, and Francoise de Marcilly (in 1938) borrowed Poetry and Prose of William Blake, edited by Geoffrey Keynes (Nonesuch, 1927).",Lending Library Card,"Sylvia Beach, Jean Prevost Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5d0e2f99-a5d7-4f67-a5ad-3bfb7a37c721/manifest,https://iiif.princeton.edu/loris/figgy_prod/ac%2F52%2F28%2Fac5228d1c77b4137b8113bd56527f8c8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1927-01-28,1927-04-28,https://shakespeareandco.princeton.edu/members/kennedy-edmond/,Edmond Kennedy,"Kennedy, Edmond",48.00,,3 months,90,1,Student,1927-01-11,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-01-28,1927-02-02,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/walpole-maradick-forty-transition/,Maradick at Forty: A Transition,,"Walpole, Hugh",1910,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/85%2Fd2%2F01%2F85d201c5b2ca4f55bd89e96d9ebeb8bd%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1927-01-28,1927-04-28,https://shakespeareandco.princeton.edu/members/dollar/,Nora Dollar,"Dollar, Nora",50.00,50.00,3 months,90,1,Student,1927-01-28,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-01-28,1927-02-05,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/mckenna-sonia-two-worlds/,Sonia: Between Two Worlds,,"McKenna, Stephen",1917,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/eb%2F77%2Fc5%2Feb77c58d7a7645d9b4ccd853a4eb6191%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-02-02,1927-02-03,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/wylie-orphan-angel/,The Orphan Angel,,"Wylie, Elinor",1926,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/85%2Fd2%2F01%2F85d201c5b2ca4f55bd89e96d9ebeb8bd%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-02-02,1927-02-10,https://shakespeareandco.princeton.edu/members/proix/,Troise Proix,"Proix, Troise",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/meredith-tragic-comedians-study/,The Tragic Comedians: A Study in a Well-Known Story,,"Meredith, George",1898,,Lending Library Card,"Sylvia Beach, Troise Proix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b7152822-4421-406d-9472-740daf9b84e0/manifest,https://iiif.princeton.edu/loris/figgy_prod/e6%2Fa5%2F3a%2Fe6a53a0fee174f0589dc02ffbad33ba5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-02-03,1927-02-07,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/hemingway-sun-also-rises/,The Sun Also Rises,,"Hemingway, Ernest",1926,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/af%2Fcd%2F4b%2Fafcd4b7698644be4ad8edf82445910ee%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1927-02-03,1927-03-03,https://shakespeareandco.princeton.edu/members/davenport-russell/,Russell Davenport,"Davenport, Russell",25.00,,1 month,28,1,,1927-02-03,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-02-03,1927-02-16,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/meredith-egoist/,The Egoist,2 vols.,"Meredith, George",1879,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2F7d%2Fa5%2F237da592c8234d839140f8c72d672a9f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1927-02-04,1927-03-04,https://shakespeareandco.princeton.edu/members/floede-c-e/,C. E. Floede,"Floede, C. E.",35.00,100.00,1 month,28,2,,1927-02-04,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-02-04,1927-02-05,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/tarkington-women/,Women,,"Tarkington, Booth",1925,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/85%2Fd2%2F01%2F85d201c5b2ca4f55bd89e96d9ebeb8bd%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1927-02-05,1928-02-05,https://shakespeareandco.princeton.edu/members/flecker/,Mrs. Flecker,"Flecker, Mrs.",144.00,,1 year,365,1,,1927-02-01,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-02-05,1927-02-07,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/millay-wayfarer/,Wayfarer,,"Millay, Kathleen",1926,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/85%2Fd2%2F01%2F85d201c5b2ca4f55bd89e96d9ebeb8bd%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-02-07,1927-02-14,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/conrad-suspense/,Suspense,,"Conrad, Joseph",1923,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/af%2Fcd%2F4b%2Fafcd4b7698644be4ad8edf82445910ee%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-02-07,1927-02-09,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/beer-mauve-decade/,The Mauve Decade,,"Beer, Thomas",1926,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/85%2Fd2%2F01%2F85d201c5b2ca4f55bd89e96d9ebeb8bd%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-02-07,1927-02-12,https://shakespeareandco.princeton.edu/members/lanux-pierre-de/,Pierre de Lanux,"de Lanux, Pierre",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/oppenheim-missing-delora/,The Missing Delora,,"Oppenheim, E. Phillips",1910,,Lending Library Card,"Sylvia Beach, Pierre de Lanux Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e367ba9f-98cf-408d-9281-2c5771c2fa44/manifest,https://iiif.princeton.edu/loris/figgy_prod/d5%2F0d%2F32%2Fd50d325b995f4426af962cc245d639cd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-02-07,1927-02-08,https://shakespeareandco.princeton.edu/members/wickham/,Anna Wickham,"Wickham, Anna",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/joyce-ulysses/,Ulysses,,"Joyce, James",1922,,Lending Library Card,"Sylvia Beach, Mrs Anna Wickham Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bc6574f8-8f79-401d-86c6-731bea6280d0/manifest,https://iiif.princeton.edu/loris/figgy_prod/00%2F1a%2F05%2F001a0543e1b74e3c9a74d85d73d1ac45%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-02-07,1927-02-12,https://shakespeareandco.princeton.edu/members/lanux-pierre-de/,Pierre de Lanux,"de Lanux, Pierre",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/obrien-best-short-stories-1925/,The Best Short Stories of 1925: And the Yearbook of the American Short Story,,,1926,,Lending Library Card,"Sylvia Beach, Pierre de Lanux Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e367ba9f-98cf-408d-9281-2c5771c2fa44/manifest,https://iiif.princeton.edu/loris/figgy_prod/d5%2F0d%2F32%2Fd50d325b995f4426af962cc245d639cd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-02-08,1927-02-14,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/lawrence-plumed-serpent/,The Plumed Serpent,,"Lawrence, D. H.",1926,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/91%2Fde%2F94%2F91de94d5ff724fa6bdd4c1f5e8b2b9af%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-02-08,1927-02-14,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/gibbs-young-anarchy/,The Young Anarchy,,"Gibbs, Philip",1926,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/91%2Fde%2F94%2F91de94d5ff724fa6bdd4c1f5e8b2b9af%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1927-02-08,1927-05-08,https://shakespeareandco.princeton.edu/members/gruening-martha/,Martha Gruening,"Gruening, Martha",60.00,,3 months,89,1,,1927-02-08,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-02-08,1927-02-15,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/henry-four-million/,The Four Million,,"Henry, O.",1906,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/c2%2Ff7%2F29%2Fc2f7296928344566aa900c8c0644c909%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-02-09,1928-02-15,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,371,,,https://shakespeareandco.princeton.edu/books/gorman-james-joyce-first/,"James Joyce, His First Forty Years",,"Gorman, Herbert Sherman",1924,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/af%2Fcd%2F4b%2Fafcd4b7698644be4ad8edf82445910ee%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-02-09,1927-02-12,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/car/,Car,,,,Unidentified.,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/eb%2F77%2Fc5%2Feb77c58d7a7645d9b4ccd853a4eb6191%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-02-10,1927-02-24,https://shakespeareandco.princeton.edu/members/proix/,Troise Proix,"Proix, Troise",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/meredith-amazing-marriage/,The Amazing Marriage,,"Meredith, George",1895,,Lending Library Card,"Sylvia Beach, Troise Proix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b7152822-4421-406d-9472-740daf9b84e0/manifest,https://iiif.princeton.edu/loris/figgy_prod/e6%2Fa5%2F3a%2Fe6a53a0fee174f0589dc02ffbad33ba5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-02-12,1927-02-16,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/lewis-arrowsmith/,Arrowsmith,,"Lewis, Sinclair",1925,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/85%2Fd2%2F01%2F85d201c5b2ca4f55bd89e96d9ebeb8bd%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-02-12,1927-02-18,https://shakespeareandco.princeton.edu/members/lanux-pierre-de/,Pierre de Lanux,"de Lanux, Pierre",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/anderson-dark-laughter/,Dark Laughter,,"Anderson, Sherwood",1926,,Lending Library Card,"Sylvia Beach, Pierre de Lanux Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e367ba9f-98cf-408d-9281-2c5771c2fa44/manifest,https://iiif.princeton.edu/loris/figgy_prod/d5%2F0d%2F32%2Fd50d325b995f4426af962cc245d639cd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-02-12,1927-02-18,https://shakespeareandco.princeton.edu/members/lanux-pierre-de/,Pierre de Lanux,"de Lanux, Pierre",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/dane-legend/,Legend,,"Dane, Clemence",1919,,Lending Library Card,"Sylvia Beach, Pierre de Lanux Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e367ba9f-98cf-408d-9281-2c5771c2fa44/manifest,https://iiif.princeton.edu/loris/figgy_prod/d5%2F0d%2F32%2Fd50d325b995f4426af962cc245d639cd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1927-02-12,1927-03-12,https://shakespeareandco.princeton.edu/members/clark-m-a/,M. A. Clark,"Clark, M. A.",25.00,,1 month,28,1,,1927-02-12,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1927-02-12,1927-03-12,https://shakespeareandco.princeton.edu/members/mowschine-a/,A. Mowschine,"Mowschine, A.",28.00,100.00,1 month,28,1,Student,1927-02-12,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-02-12,1927-04-30,https://shakespeareandco.princeton.edu/members/rieder/,M. Rieder,"Rieder, M.",,,,,,,,,Returned,77,,,https://shakespeareandco.princeton.edu/books/dell-janet-march-novel/,Janet March: A Novel,,"Dell, Floyd",1923,,Lending Library Card,"Sylvia Beach, Rieder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/559c8919-8881-40ad-b027-67dbf1b23611/manifest,https://iiif.princeton.edu/loris/figgy_prod/e8%2F10%2F7c%2Fe8107c2c950f411d8ceeb6bb8bdc01c7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-02-12,1927-02-21,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/murry-still-life/,Still Life,,"Murry, John Middleton",1916,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/eb%2F77%2Fc5%2Feb77c58d7a7645d9b4ccd853a4eb6191%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-02-14,1927-02-21,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/bullitt-done/,It's Not Done,,"Bullitt, William C.",1926,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/91%2Fde%2F94%2F91de94d5ff724fa6bdd4c1f5e8b2b9af%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-02-14,1927-03-14,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,28,,,https://shakespeareandco.princeton.edu/books/moore-heloise-abelard/,HΓ©loise and AbΓ©lard,,"Moore, George",1921,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/af%2Fcd%2F4b%2Fafcd4b7698644be4ad8edf82445910ee%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-02-14,1927-02-21,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/deland-kays/,The Kays,,"Deland, Margaret",1926,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/91%2Fde%2F94%2F91de94d5ff724fa6bdd4c1f5e8b2b9af%2Fintermediate_file.jp2/full/full/0/default.jpg
+Supplement,1927-02-14,1927-04-19,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",25.00,,"2 months, 5 days",64,1,,1927-02-14,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-02-15,1927-02-21,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/galsworthy-fraternity/,Fraternity,,"Galsworthy, John",1909,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/c2%2Ff7%2F29%2Fc2f7296928344566aa900c8c0644c909%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1927-02-15,1927-03-15,https://shakespeareandco.princeton.edu/members/adams-4/,Mrs. G. Adam,"Adam, Mrs. G.",35.00,,1 month,28,2,,1927-01-25,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-02-16,1927-02-21,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/pirandello-shoot-notebooks-serafino/,"Shoot! The Notebooks of Serafino Gubbio, Cinematograph Operator",,"Pirandello, Luigi",1926,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/85%2Fd2%2F01%2F85d201c5b2ca4f55bd89e96d9ebeb8bd%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1927-02-16,1927-05-16,https://shakespeareandco.princeton.edu/members/guenot/,Mlle GuΓ©not,"GuΓ©not, Mlle",68.00,50.00,3 months,89,2,Student,1927-02-16,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1927-02-16,1927-03-16,https://shakespeareandco.princeton.edu/members/james-mary/,Mary James,"James, Mary",25.00,50.00,1 month,28,1,,1927-02-16,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-02-16,1927-02-26,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/meredith-shaving-shagpat-farina/,Shaving of Shagpat and Farina,,"Meredith, George",1857,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2F7d%2Fa5%2F237da592c8234d839140f8c72d672a9f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-02-18,1927-03-02,https://shakespeareandco.princeton.edu/members/lanux-pierre-de/,Pierre de Lanux,"de Lanux, Pierre",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/fielding-footsteps-stopped/,The Footsteps That Stopped,,"Fielding, A.",1926,,Lending Library Card,"Sylvia Beach, Pierre de Lanux Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e367ba9f-98cf-408d-9281-2c5771c2fa44/manifest,https://iiif.princeton.edu/loris/figgy_prod/d5%2F0d%2F32%2Fd50d325b995f4426af962cc245d639cd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Supplement,1927-02-18,1927-02-25,https://shakespeareandco.princeton.edu/members/dandieu-arnaud/,Arnaud Dandieu,"Dandieu, Arnaud",5.00,,1 week,7,,,1927-02-18,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-02-18,1927-02-20,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/hemingway-men-without-women/,Men without Women,,"Hemingway, Ernest",1927,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/af%2Fcd%2F4b%2Fafcd4b7698644be4ad8edf82445910ee%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-02-18,1927-03-02,https://shakespeareandco.princeton.edu/members/lanux-pierre-de/,Pierre de Lanux,"de Lanux, Pierre",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/roberts-time-man/,The Time of Man,,"Roberts, Elizabeth Madox",1926,,Lending Library Card,"Sylvia Beach, Pierre de Lanux Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e367ba9f-98cf-408d-9281-2c5771c2fa44/manifest,https://iiif.princeton.edu/loris/figgy_prod/d5%2F0d%2F32%2Fd50d325b995f4426af962cc245d639cd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1927-02-19,1927-03-19,https://shakespeareandco.princeton.edu/members/mccay-1/;https://shakespeareandco.princeton.edu/members/mccay-w-s/,Mrs. McCay / MacCay;W. S. McCay,"McCay, Mrs.;McCay, W. S.",35.00,,1 month,28,2,,1927-02-19,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-02-20,1927-03-21,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,29,,,https://shakespeareandco.princeton.edu/books/russell-abc-relativity/,The ABC of Relativity,,"Russell, Bertrand",1925,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/af%2Fcd%2F4b%2Fafcd4b7698644be4ad8edf82445910ee%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-02-20,1927-07-07,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,137,,,https://shakespeareandco.princeton.edu/books/ruskin-stones-venice/,The Stones of Venice,,"Ruskin, John",1851,"The lending library cards of Mlle Ottocar and Pierre Vogein indicate that they borrowed ""2 vols"" of *The Stones of Venice,* but do not specify which 2 volumes.",Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/af%2Fcd%2F4b%2Fafcd4b7698644be4ad8edf82445910ee%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-02-21,1927-02-24,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/maxwell-gabrielle-romance/,Gabrielle: A Romance,,"Maxwell, W. B.",1926,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/91%2Fde%2F94%2F91de94d5ff724fa6bdd4c1f5e8b2b9af%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-02-21,,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/graves-lars-porsena-future/,"Lars Porsena, or, The Future of Swearing and Improper Language",,"Graves, Robert",1927,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/eb%2F77%2Fc5%2Feb77c58d7a7645d9b4ccd853a4eb6191%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-02-21,1927-03-02,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/stevens-brawny-man/,Brawny-Man,,"Stevens, James",1926,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/eb%2F77%2Fc5%2Feb77c58d7a7645d9b4ccd853a4eb6191%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-02-21,1927-03-08,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/gosse-critical-kit-kats/,Critical Kit-Kats,,"Gosse, Edmund",1896,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/c2%2Ff7%2F29%2Fc2f7296928344566aa900c8c0644c909%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-02-21,1927-02-23,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/garnett-go-must/,Go She Must!,,"Garnett, David",1927,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/85%2Fd2%2F01%2F85d201c5b2ca4f55bd89e96d9ebeb8bd%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1927-02-21,1927-08-21,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",80.00,,6 months,181,1,,1927-04-14,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/34%2F63%2Fef%2F3463efdf87f94472a29bed492f604a45%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-02-21,1927-02-24,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/fisher-sons-wife/,Her Son's Wife,,"Fisher, Dorothy Canfield",1926,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/91%2Fde%2F94%2F91de94d5ff724fa6bdd4c1f5e8b2b9af%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-02-22,1927-03-17,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/dos-passos-manhattan-transfer/,Manhattan Transfer,,"Dos Passos, John",1925,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/4c%2Fb0%2F05%2F4cb0051a29fd4a30ac4d18a9278429f5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-02-22,1927-03-05,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/ford-some-do-not/,Some Do Not... (Parade's End 1),,"Ford, Ford Madox",1924,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/34%2F63%2Fef%2F3463efdf87f94472a29bed492f604a45%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1927-02-22,1927-03-22,https://shakespeareandco.princeton.edu/members/desgroseillers-g/;https://shakespeareandco.princeton.edu/members/desgrosseilliers/,G. Desgroseillers;Mme Desgrosseilliers,"Desgroseillers, G.;Desgrosseilliers, Mme",28.00,,1 month,28,2,Student,1927-02-22,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1927-02-22,1927-05-22,https://shakespeareandco.princeton.edu/members/brown-anna-wood/,Anna Wood Brown,"Brown, Anna Wood",60.00,,3 months,89,1,,1927-02-22,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-02-23,1927-02-28,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/polo-travels-marco-polo/,The Travels of Marco Polo,,"Polo, Marco",,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/85%2Fd2%2F01%2F85d201c5b2ca4f55bd89e96d9ebeb8bd%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-02-24,,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/arlen-green-hat/,The Green Hat: A Romance for a Few People,,"Arlen, Michael",1924,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/dc%2F94%2Ffd%2Fdc94fda0cd9c4ae195f988f5a500f00f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-02-24,,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/arnim-introduction-sally/,Introduction to Sally,,"Arnim, Elizabeth von",1926,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/91%2Fde%2F94%2F91de94d5ff724fa6bdd4c1f5e8b2b9af%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-02-24,,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/garnett-go-must/,Go She Must!,,"Garnett, David",1927,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/91%2Fde%2F94%2F91de94d5ff724fa6bdd4c1f5e8b2b9af%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1927-02-24,1927-03-24,https://shakespeareandco.princeton.edu/members/girard/,Mme R. Girard,"Girard, Mme R.",35.00,100.00,1 month,28,2,,1927-02-24,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-02-26,1927-03-05,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/deland-kays/,The Kays,,"Deland, Margaret",1926,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/32%2F11%2F44%2F3211445456604f26802be4ccce47b278%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-02-26,1927-03-07,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/whitehead-religion-making-lowell/,"Religion in the Making: Lowell Lectures, 1926",,"Whitehead, Alfred North",1926,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/f7%2F9b%2Fe0%2Ff79be07300994867984b67006c59c079%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-02-26,1927-03-07,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/harris-oscar-wilde-life/,Oscar Wilde: His Life and Confessions,2 vols.,"Harris, Frank",1916,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2F7d%2Fa5%2F237da592c8234d839140f8c72d672a9f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1927-02-28,1927-08-28,https://shakespeareandco.princeton.edu/members/maas-e-f/,Mrs. E. F. Maas,"Maas, Mrs. E. F.",80.00,,6 months,181,1,,1927-02-28,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1927-02-28,1927-05-28,https://shakespeareandco.princeton.edu/members/briggs-g-m/,G. M. Briggs,"Briggs, G. M.",85.00,,3 months,89,2,,1927-02-28,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1927-02-28,1927-03-28,https://shakespeareandco.princeton.edu/members/astell/,I. W. Astell,"Astell, I. W.",35.00,100.00,1 month,28,2,,1927-02-28,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-02-28,1927-03-07,https://shakespeareandco.princeton.edu/members/wharton/,Mme James Wharton,"Wharton, Mme James",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/hyslop-great-abnormals/,The Great Abnormals,,"Hyslop, Theo B.",1925,,Lending Library Card,"Sylvia Beach, Madame James Wharton Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ec3dcef6-48f0-4bb5-bafe-a518306c14c4/manifest,https://iiif.princeton.edu/loris/figgy_prod/0a%2Ff5%2F5e%2F0af55ee7589246fb803cbd4fd6f75565%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1927-02-28,1927-03-28,https://shakespeareandco.princeton.edu/members/wharton/,Mme James Wharton,"Wharton, Mme James",25.00,50.00,1 month,28,1,,1927-02-28,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Madame James Wharton Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/ec3dcef6-48f0-4bb5-bafe-a518306c14c4/manifest,;https://iiif.princeton.edu/loris/figgy_prod/0a%2Ff5%2F5e%2F0af55ee7589246fb803cbd4fd6f75565%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-02-28,1927-03-02,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/fitzgerald-great-gatsby/,The Great Gatsby,,"Fitzgerald, F. Scott",1925,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/85%2Fd2%2F01%2F85d201c5b2ca4f55bd89e96d9ebeb8bd%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1927-02-28,1927-03-28,https://shakespeareandco.princeton.edu/members/decker/,Mrs. M. Decker,"Decker, Mrs. M.",20.00,50.00,1 month,28,1,Student,1927-02-28,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1927-02-28,1927-05-28,https://shakespeareandco.princeton.edu/members/pourtales-de/,Mme G. de Pourtales,"de Pourtales, Mme G.",85.00,100.00,3 months,89,2,,1927-02-28,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1927-03-01,1927-03-01,https://shakespeareandco.princeton.edu/members/webber-jane/,Jane Webber,"Webber, Jane",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1927-03-01,1927-04-01,https://shakespeareandco.princeton.edu/members/wegg-t/,T. Wegg,"Wegg, T.",25.00,50.00,1 month,31,1,,1927-03-01,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-03-01,1927-03-12,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/garnett-go-must/,Go She Must!,,"Garnett, David",1927,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/a4%2F8c%2F7f%2Fa48c7f974df34e81af59231b85679646%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1927-03-01,1927-03-01,https://shakespeareandco.princeton.edu/members/mowschine-a/,A. Mowschine,"Mowschine, A.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1927-03-01,1927-04-01,https://shakespeareandco.princeton.edu/members/flint/,Mrs. H. A. Flint,"Flint, Mrs. H. A.",25.00,50.00,1 month,31,1,,1927-03-01,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-03-02,1927-03-08,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/waugh-love-days-modern/,Love in These Days: A Modern Story,,"Waugh, Alec",1926,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/eb%2F77%2Fc5%2Feb77c58d7a7645d9b4ccd853a4eb6191%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-03-02,1927-03-03,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/graves-lars-porsena-future/,"Lars Porsena, or, The Future of Swearing and Improper Language",,"Graves, Robert",1927,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/85%2Fd2%2F01%2F85d201c5b2ca4f55bd89e96d9ebeb8bd%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1927-03-03,1927-03-03,https://shakespeareandco.princeton.edu/members/zweigsmith/,Miss Zweigsmith,"Zweigsmith, Miss",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1927-03-03,1927-03-03,https://shakespeareandco.princeton.edu/members/small/,Miss Small,"Small, Miss",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1927-03-03,1927-03-03,https://shakespeareandco.princeton.edu/members/trechot/,Trechot,Trechot,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1927-03-03,1927-04-03,https://shakespeareandco.princeton.edu/members/hughes-mrs/,Mrs. Charles Hughes,"Hughes, Mrs. Charles",25.00,50.00,1 month,31,1,,1927-03-03,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1927-03-03,1927-04-03,https://shakespeareandco.princeton.edu/members/wilson-margaret/,Margaret Wilson,"Wilson, Margaret",25.00,50.00,1 month,31,1,,1927-03-03,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Margaret Wilson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/fe7f66f2-3c71-46c1-bdfd-221223e78c85/manifest,;https://iiif.princeton.edu/loris/figgy_prod/f9%2F06%2Fa4%2Ff906a421c56f46129bb48547145550b6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-03-03,1927-03-04,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/jolas-transition/,transition,,,,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/85%2Fd2%2F01%2F85d201c5b2ca4f55bd89e96d9ebeb8bd%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1927-03-03,1927-03-03,https://shakespeareandco.princeton.edu/members/oko-pearl/,Pearl Oko,"Oko, Pearl",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-03-03,1927-03-16,https://shakespeareandco.princeton.edu/members/wilson-margaret/,Margaret Wilson,"Wilson, Margaret",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/ellis-sexual-inversion-studies/,Sexual Inversion (Studies in the Psychology of Sex 2),,"Ellis, Havelock",1900,,Lending Library Card,"Sylvia Beach, Margaret Wilson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fe7f66f2-3c71-46c1-bdfd-221223e78c85/manifest,https://iiif.princeton.edu/loris/figgy_prod/f9%2F06%2Fa4%2Ff906a421c56f46129bb48547145550b6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-03-04,1927-03-05,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/read-reason-romanticism-essays/,Reason and Romanticism: Essays in Literary Criticism,,"Read, Herbert",1926,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/85%2Fd2%2F01%2F85d201c5b2ca4f55bd89e96d9ebeb8bd%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1927-03-04,1927-04-04,https://shakespeareandco.princeton.edu/members/fuerst-walter-rene/,Walter RenΓ© Fuerst / W. R. Fuerst,"Fuerst, Walter RenΓ©",25.00,100.00,1 month,31,1,Student,1927-03-04,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1927-03-05,1928-03-05,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",144.00,50.00,1 year,366,1,,1927-03-05,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",;https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,;https://iiif.princeton.edu/loris/figgy_prod/5d%2F94%2F00%2F5d9400637a2e4682a81940685b942a72%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-03-05,1927-04-14,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,40,,,https://shakespeareandco.princeton.edu/books/gosse-silhouettes/,Silhouettes,,"Gosse, Edmund",1925,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/34%2F63%2Fef%2F3463efdf87f94472a29bed492f604a45%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-03-05,1927-03-16,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/van-vechten-merry-go-round/,The Merry-Go-Round,,"Van Vechten, Carl",1918,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/5d%2F94%2F00%2F5d9400637a2e4682a81940685b942a72%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-03-05,1927-04-28,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,54,,,https://shakespeareandco.princeton.edu/books/locke-new-negro/,The New Negro,,"Locke, Alain",1925,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/32%2F11%2F44%2F3211445456604f26802be4ccce47b278%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-03-05,1927-03-08,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/technique-contemporary-theatre/,Technique of Contemporary Theatre,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/85%2Fd2%2F01%2F85d201c5b2ca4f55bd89e96d9ebeb8bd%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-03-05,1927-04-28,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,54,,,https://shakespeareandco.princeton.edu/books/toomer-cane/,Cane,,"Toomer, Jean",1923,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/32%2F11%2F44%2F3211445456604f26802be4ccce47b278%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-03-07,1927-03-25,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/wilde-profundis/,De Profundis,,"Wilde, Oscar",1905,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2F7d%2Fa5%2F237da592c8234d839140f8c72d672a9f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-03-07,1927-03-14,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/hergesheimer-tampico/,Tampico,,"Hergesheimer, Joseph",1926,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/1e%2Fc1%2F4a%2F1ec14af0cc374dfda3309dacf9bfb1a2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-03-07,1927-03-12,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/eastman-leon-trotsky-portrait/,Leon Trotsky: The Portrait of Youth,,"Eastman, Max",1925,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/f7%2F9b%2Fe0%2Ff79be07300994867984b67006c59c079%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-03-07,1927-04-07,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,31,,,https://shakespeareandco.princeton.edu/books/ellis-dance-life/,The Dance of Life,,"Ellis, Havelock",1923,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/1e%2Fc1%2F4a%2F1ec14af0cc374dfda3309dacf9bfb1a2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-03-08,1927-03-29,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/eliot-essays-george-eliot/,"The Essays of ""George Eliot""",,"Eliot, George",1883,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/c2%2Ff7%2F29%2Fc2f7296928344566aa900c8c0644c909%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-03-08,1927-03-11,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/ford-man-stand/,A Man Could Stand Up (Parade's End 3),,"Ford, Ford Madox",1926,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/eb%2F77%2Fc5%2Feb77c58d7a7645d9b4ccd853a4eb6191%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1927-03-08,1927-06-08,https://shakespeareandco.princeton.edu/members/birnie/,Mrs. L. Birnie,"Birnie, Mrs. L.",60.00,50.00,3 months,92,1,,1927-03-08,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1927-03-09,1927-04-09,https://shakespeareandco.princeton.edu/members/gilbert-h-j/,H. J. Gilbert,"Gilbert, H. J.",35.00,100.00,1 month,31,2,,1927-03-09,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-03-11,1927-03-17,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/mackenzie-heavenly-ladder/,The Heavenly Ladder,,"Mackenzie, Compton",1924,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/eb%2F77%2Fc5%2Feb77c58d7a7645d9b4ccd853a4eb6191%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1927-03-12,1927-06-12,https://shakespeareandco.princeton.edu/members/clark-m-a/,M. A. Clark,"Clark, M. A.",68.00,,3 months,92,1,Student,1927-03-11,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-03-12,1927-04-10,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,29,,,https://shakespeareandco.princeton.edu/books/oneill-great-god-brown/,The Great God Brown,,"O'Neill, Eugene",1926,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/f7%2F9b%2Fe0%2Ff79be07300994867984b67006c59c079%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1927-03-12,1927-03-12,https://shakespeareandco.princeton.edu/members/paris/,Miss Paris,"Paris, Miss",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1927-03-12,1927-04-12,https://shakespeareandco.princeton.edu/members/levy-julien/,Julien Levy / Julian Levy,"Levy, Julien",25.00,50.00,1 month,31,1,,1927-03-12,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Supplement,1927-03-12,,https://shakespeareandco.princeton.edu/members/hughes-mrs/,Mrs. Charles Hughes,"Hughes, Mrs. Charles",10.00,50.00,,,,,1927-03-12,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-03-13,1927-04-15,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,33,,,https://shakespeareandco.princeton.edu/books/le-queux-blackmailed/,Blackmailed,,"Le Queux, William",1927,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/91%2Fde%2F94%2F91de94d5ff724fa6bdd4c1f5e8b2b9af%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-03-13,1927-04-15,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,33,,,https://shakespeareandco.princeton.edu/books/maugham-casuarina-tree/,The Casuarina Tree: Six Stories,,"Maugham, W. Somerset",1926,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/91%2Fde%2F94%2F91de94d5ff724fa6bdd4c1f5e8b2b9af%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-03-14,1927-09-28,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,198,,,https://shakespeareandco.princeton.edu/books/eastman-enjoyment-poetry/,Enjoyment of Poetry,,"Eastman, Max",1921,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/af%2Fcd%2F4b%2Fafcd4b7698644be4ad8edf82445910ee%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-03-14,1927-04-16,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,33,,,https://shakespeareandco.princeton.edu/books/cather-mortal-enemy/,My Mortal Enemy,,"Cather, Willa",1926,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/1e%2Fc1%2F4a%2F1ec14af0cc374dfda3309dacf9bfb1a2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-03-14,1927-04-07,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,24,,,https://shakespeareandco.princeton.edu/books/erskine-galahad-enough-life/,Galahad: Enough of His Life to Explain His Reputation,,"Erskine, John",1926,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/1e%2Fc1%2F4a%2F1ec14af0cc374dfda3309dacf9bfb1a2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-03-14,1927-04-16,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,33,,,https://shakespeareandco.princeton.edu/books/lewis-tarr/,Tarr,,"Lewis, Wyndham",1918,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/1e%2Fc1%2F4a%2F1ec14af0cc374dfda3309dacf9bfb1a2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-03-15,1927-03-26,https://shakespeareandco.princeton.edu/members/reynolds-a-m/,Mme A. M. Reynolds,"Reynolds, Mme A. M.",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/tynan-infatuation-peter/,The Infatuation of Peter,,"Tynan, Katharine",1926,,Lending Library Card,"Sylvia Beach, A.M. Reynolds Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3421b1cc-cb37-4310-978c-5c8e08086ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/2c%2F77%2Fcc%2F2c77cce6a00643d3ac3807fa5086962a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1927-03-15,1927-04-15,https://shakespeareandco.princeton.edu/members/grillet-winfrid/,Winfrid Grillet,"Grillet, Winfrid",20.00,50.00,1 month,31,1,Professor / Teacher,1927-03-15,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1927-03-15,1927-04-15,https://shakespeareandco.princeton.edu/members/reynolds-a-m/,Mme A. M. Reynolds,"Reynolds, Mme A. M.",25.00,50.00,1 month,31,1,,1927-03-15,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, A.M. Reynolds Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/3421b1cc-cb37-4310-978c-5c8e08086ffb/manifest,;https://iiif.princeton.edu/loris/figgy_prod/2c%2F77%2Fcc%2F2c77cce6a00643d3ac3807fa5086962a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1927-03-15,1927-04-15,https://shakespeareandco.princeton.edu/members/garrigue/,Mrs. W. A. Garrigue,"Garrigue, Mrs. W. A.",25.00,50.00,1 month,31,1,,1927-03-15,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-03-15,1927-03-22,https://shakespeareandco.princeton.edu/members/reynolds-a-m/,Mme A. M. Reynolds,"Reynolds, Mme A. M.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/hurst-appassionata/,Appassionata,,"Hurst, Fannie",1926,,Lending Library Card,"Sylvia Beach, A.M. Reynolds Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3421b1cc-cb37-4310-978c-5c8e08086ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/2c%2F77%2Fcc%2F2c77cce6a00643d3ac3807fa5086962a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1927-03-16,1927-09-16,https://shakespeareandco.princeton.edu/members/bishop-john-peale/,John Peale Bishop,"Bishop, John Peale",150.00,,6 months,184,2,,1927-03-16,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-03-16,1927-03-29,https://shakespeareandco.princeton.edu/members/wilson-margaret/,Margaret Wilson,"Wilson, Margaret",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/ellis-evolution-modesty-phenomena/,The Evolution of Modesty; The Phenomena of Sexual Periodicity; Auto-Erotism (Studies in the Psychology of Sex 1),,"Ellis, Havelock",1897,,Lending Library Card,"Sylvia Beach, Margaret Wilson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fe7f66f2-3c71-46c1-bdfd-221223e78c85/manifest,https://iiif.princeton.edu/loris/figgy_prod/f9%2F06%2Fa4%2Ff906a421c56f46129bb48547145550b6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-03-16,1927-03-31,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/fisher-sons-wife/,Her Son's Wife,,"Fisher, Dorothy Canfield",1926,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/5d%2F94%2F00%2F5d9400637a2e4682a81940685b942a72%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1927-03-16,1927-04-16,https://shakespeareandco.princeton.edu/members/lur-saluces/,A. de Lur-Saluces,"Lur-Saluces, A. de",35.00,,1 month,31,2,,1927-03-16,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-03-17,1927-05-17,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,61,,,https://shakespeareandco.princeton.edu/books/thackeray-newcomes/,The Newcomes: Memoirs of a Most Respectable Family,,"Thackeray, William Makepeace",1855,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/4c%2Fb0%2F05%2F4cb0051a29fd4a30ac4d18a9278429f5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-03-17,1927-05-17,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,61,,,https://shakespeareandco.princeton.edu/books/meredith-diana-crossways/,Diana of the Crossways,,"Meredith, George",1885,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/4c%2Fb0%2F05%2F4cb0051a29fd4a30ac4d18a9278429f5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1927-03-17,1927-04-17,https://shakespeareandco.princeton.edu/members/webber-jane/,Jane Webber,"Webber, Jane",35.00,,1 month,31,2,,1927-03-16,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-03-17,1927-03-25,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/firbank-vainglory/,Vainglory,,"Firbank, Ronald",1915,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/eb%2F77%2Fc5%2Feb77c58d7a7645d9b4ccd853a4eb6191%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-03-17,1927-05-17,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,61,,,https://shakespeareandco.princeton.edu/books/lawrence-lost-girl/,The Lost Girl,,"Lawrence, D. H.",1920,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/4c%2Fb0%2F05%2F4cb0051a29fd4a30ac4d18a9278429f5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1927-03-18,1927-04-18,https://shakespeareandco.princeton.edu/members/oppenheimer-e/,E. Oppenheimer,"Oppenheimer, E.",20.00,50.00,1 month,31,1,Student,1927-03-18,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-03-19,1927-04-21,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,33,,,https://shakespeareandco.princeton.edu/books/perry-philosophy-recent-past/,Philosophy of the Recent Past: An Outline of European and American Philosophy Since 1860,,"Perry, Ralph Barton",1926,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/f7%2F9b%2Fe0%2Ff79be07300994867984b67006c59c079%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1927-03-19,1927-06-19,https://shakespeareandco.princeton.edu/members/martin-maud/,Maud Martin,"Martin, Maud",85.00,100.00,3 months,92,2,,1927-03-19,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Maud Martin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/934c6444-6b2c-4d42-acea-282118c23e5a/manifest,;https://iiif.princeton.edu/loris/figgy_prod/af%2Fe7%2F19%2Fafe71980292a468abf89a1d496347cac%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1927-03-19,1927-09-19,https://shakespeareandco.princeton.edu/members/gardiner-charles/,Charles Gardiner,"Gardiner, Charles",100.00,50.00,6 months,184,1,,1927-03-19,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1927-03-19,1927-04-19,https://shakespeareandco.princeton.edu/members/moore-charles/,Charles H. Moore,"Moore, Charles H.",16.00,,1 month,31,2,,1927-03-16,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1927-03-19,1927-04-19,https://shakespeareandco.princeton.edu/members/mckinstray-elizabeth/,Elizabeth McKinstray,"McKinstray, Elizabeth",27.00,50.00,1 month,31,1,,1927-03-19,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-03-21,1927-03-23,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/maynard-best-poets-english/,"Our Best Poets, English and American",,"Maynard, Theodore",1922,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/85%2Fd2%2F01%2F85d201c5b2ca4f55bd89e96d9ebeb8bd%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1927-03-21,1927-04-21,https://shakespeareandco.princeton.edu/members/gray-freeman/,Freeman Gray,"Gray, Freeman",25.00,,1 month,31,1,,1927-03-21,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-03-22,1927-03-26,https://shakespeareandco.princeton.edu/members/reynolds-a-m/,Mme A. M. Reynolds,"Reynolds, Mme A. M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/maxwell-case-bevan-yorke/,The Case of Bevan Yorke,,"Maxwell, W. B.",1927,,Lending Library Card,"Sylvia Beach, A.M. Reynolds Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3421b1cc-cb37-4310-978c-5c8e08086ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/2c%2F77%2Fcc%2F2c77cce6a00643d3ac3807fa5086962a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-03-22,1927-03-30,https://shakespeareandco.princeton.edu/members/reynolds-a-m/,Mme A. M. Reynolds,"Reynolds, Mme A. M.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/hichens-spirit-prison/,A Spirit in Prison,,"Hichens, Robert Smythe",1908,,Lending Library Card,"Sylvia Beach, A.M. Reynolds Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3421b1cc-cb37-4310-978c-5c8e08086ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/2c%2F77%2Fcc%2F2c77cce6a00643d3ac3807fa5086962a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-03-24,1927-03-29,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/milne-four-plays/,Four Plays,,"Milne, A. A.",1926,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/85%2Fd2%2F01%2F85d201c5b2ca4f55bd89e96d9ebeb8bd%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-03-25,1927-03-29,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/hine-hurcotts/,The Hurcotts,,"Hine, Muriel",1927,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/eb%2F77%2Fc5%2Feb77c58d7a7645d9b4ccd853a4eb6191%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-03-25,1927-03-28,https://shakespeareandco.princeton.edu/members/wharton/,Mme James Wharton,"Wharton, Mme James",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/goldberg-havelock-ellis-biographical/,Havelock Ellis: A Biographical and Critical Survey,,"Goldberg, Isaac",1926,,Lending Library Card,"Sylvia Beach, Madame James Wharton Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ec3dcef6-48f0-4bb5-bafe-a518306c14c4/manifest,https://iiif.princeton.edu/loris/figgy_prod/0a%2Ff5%2F5e%2F0af55ee7589246fb803cbd4fd6f75565%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-03-25,1927-04-06,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/wilde-poems-fairy-tales/,The Poems and Fairy Tales of Oscar Wilde,,"Wilde, Oscar",1920,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2F7d%2Fa5%2F237da592c8234d839140f8c72d672a9f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-03-26,1927-03-30,https://shakespeareandco.princeton.edu/members/reynolds-a-m/,Mme A. M. Reynolds,"Reynolds, Mme A. M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/sinclair-far-end/,Far End,,"Sinclair, May",1926,,Lending Library Card,"Sylvia Beach, A.M. Reynolds Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3421b1cc-cb37-4310-978c-5c8e08086ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/2c%2F77%2Fcc%2F2c77cce6a00643d3ac3807fa5086962a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-03-28,1927-04-09,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/hemingway-sun-also-rises/,The Sun Also Rises,,"Hemingway, Ernest",1926,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/eb%2F77%2Fc5%2Feb77c58d7a7645d9b4ccd853a4eb6191%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1927-03-28,1927-06-28,https://shakespeareandco.princeton.edu/members/manson/,Mrs. V. S. Manson,"Manson, Mrs. V. S.",85.00,100.00,3 months,92,2,Student,1927-03-28,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-03-29,1927-03-31,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/walpole-portrait-man-red/,Portrait of a Man with Red Hair: A Romantic Macarbe,,"Walpole, Hugh",1925,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/85%2Fd2%2F01%2F85d201c5b2ca4f55bd89e96d9ebeb8bd%2Fintermediate_file/full/full/0/default.jpg
+Separate Payment,1927-03-29,1927-03-29,https://shakespeareandco.princeton.edu/members/hughes-mrs/,Mrs. Charles Hughes,"Hughes, Mrs. Charles",,400.00,,,,,1927-03-29,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-03-29,1927-04-04,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/mackenzie-sylvia-michael/,Sylvia & Michael,,"Mackenzie, Compton",1919,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/c2%2Ff7%2F29%2Fc2f7296928344566aa900c8c0644c909%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-03-29,1927-04-05,https://shakespeareandco.princeton.edu/members/wilson-margaret/,Margaret Wilson,"Wilson, Margaret",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/ellis-sexual-selection-man/,Sexual Selection in Man (Studies in the Psychology of Sex 4),,"Ellis, Havelock",1905,,Lending Library Card,"Sylvia Beach, Margaret Wilson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fe7f66f2-3c71-46c1-bdfd-221223e78c85/manifest,https://iiif.princeton.edu/loris/figgy_prod/f9%2F06%2Fa4%2Ff906a421c56f46129bb48547145550b6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-03-30,1927-04-09,https://shakespeareandco.princeton.edu/members/reynolds-a-m/,Mme A. M. Reynolds,"Reynolds, Mme A. M.",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/lewis-elmer-gantry/,Elmer Gantry,,"Lewis, Sinclair",1927,,Lending Library Card,"Sylvia Beach, A.M. Reynolds Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3421b1cc-cb37-4310-978c-5c8e08086ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/2c%2F77%2Fcc%2F2c77cce6a00643d3ac3807fa5086962a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-03-30,1927-04-07,https://shakespeareandco.princeton.edu/members/reynolds-a-m/,Mme A. M. Reynolds,"Reynolds, Mme A. M.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/oriordan-young-lady-dazincourt/,Young Lady Dazincourt: A Discovery,,"O'Riordan, Conal",1926,,Lending Library Card,"Sylvia Beach, A.M. Reynolds Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3421b1cc-cb37-4310-978c-5c8e08086ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/2c%2F77%2Fcc%2F2c77cce6a00643d3ac3807fa5086962a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1927-03-31,1927-04-30,https://shakespeareandco.princeton.edu/members/harding-2/,Mrs. Stan Harding,"Harding, Mrs. Stan",25.00,50.00,1 month,30,1,,1927-03-31,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-03-31,1927-04-09,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/sinclair-far-end/,Far End,,"Sinclair, May",1926,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/5d%2F94%2F00%2F5d9400637a2e4682a81940685b942a72%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-03-31,1927-04-02,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/de-la-mare-return/,The Return,,"De la Mare, Walter",1910,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/85%2Fd2%2F01%2F85d201c5b2ca4f55bd89e96d9ebeb8bd%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1927-04-01,1927-10-01,https://shakespeareandco.princeton.edu/members/frothingham/,Mrs. R. Frothingham,"Frothingham, Mrs. R.",100.00,50.00,6 months,183,1,,1927-04-01,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-04-02,1927-04-02,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/eliot-poems/,Poems,,"Eliot, T. S.",,"Unidentified edition or editions. Monique de Vigan borrowed Eliot's *Poems, 1909 β 1925* (1925).",Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/85%2Fd2%2F01%2F85d201c5b2ca4f55bd89e96d9ebeb8bd%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1927-04-02,1927-04-02,https://shakespeareandco.princeton.edu/members/oppenheimer-e/,E. Oppenheimer,"Oppenheimer, E.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-04-02,1927-04-02,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/de-la-mare-veil-poems/,The Veil and Other Poems,,"De la Mare, Walter",1922,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/85%2Fd2%2F01%2F85d201c5b2ca4f55bd89e96d9ebeb8bd%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1927-04-03,1927-05-03,https://shakespeareandco.princeton.edu/members/wilson-margaret/,Margaret Wilson,"Wilson, Margaret",25.00,50.00,1 month,30,1,,1927-04-05,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Margaret Wilson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/fe7f66f2-3c71-46c1-bdfd-221223e78c85/manifest,;https://iiif.princeton.edu/loris/figgy_prod/f9%2F06%2Fa4%2Ff906a421c56f46129bb48547145550b6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1927-04-04,1927-05-04,https://shakespeareandco.princeton.edu/members/fitzpatrick-2/,Major Fitzpatrick,"Fitzpatrick, Major",25.00,50.00,1 month,30,1,,1927-04-04,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-04-04,1927-04-26,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/james-portrait-lady/,The Portrait of a Lady,,"James, Henry",1881,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/c2%2Ff7%2F29%2Fc2f7296928344566aa900c8c0644c909%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1927-04-04,1927-04-04,https://shakespeareandco.princeton.edu/members/hughes-mrs/,Mrs. Charles Hughes,"Hughes, Mrs. Charles",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-04-04,1927-04-06,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/machen-shining-pyramid/,The Shining Pyramid,,"Machen, Arthur",1925,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/66%2Fef%2F35%2F66ef35619855464ba39b7e9e4d35b657%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1927-04-04,1927-04-04,https://shakespeareandco.princeton.edu/members/robillot-mr/,Mr. Robillot,"Robillot, Mr.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-04-04,1927-04-08,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/monro-contemporary-poets/,Some Contemporary Poets (1920),,"Monro, Harold",1920,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/66%2Fef%2F35%2F66ef35619855464ba39b7e9e4d35b657%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1927-04-05,1927-05-05,https://shakespeareandco.princeton.edu/members/reavely/,Miss Reavely,"Reavely, Miss",20.00,,1 month,30,1,,1927-03-26,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-04-05,1927-04-14,https://shakespeareandco.princeton.edu/members/wilson-margaret/,Margaret Wilson,"Wilson, Margaret",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/melville-moby-dick-whale/,"Moby-Dick; Or, the Whale",,"Melville, Herman",1851,,Lending Library Card,"Sylvia Beach, Margaret Wilson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fe7f66f2-3c71-46c1-bdfd-221223e78c85/manifest,https://iiif.princeton.edu/loris/figgy_prod/f9%2F06%2Fa4%2Ff906a421c56f46129bb48547145550b6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1927-04-05,1927-04-05,https://shakespeareandco.princeton.edu/members/radin-miss/,Miss Radin,"Radin, Miss",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1927-04-05,1927-04-05,https://shakespeareandco.princeton.edu/members/ramage-betty/,Betty Ramage,"Ramage, Betty",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1927-04-06,1927-04-20,https://shakespeareandco.princeton.edu/members/hyde-miss/,Miss Hyde,"Hyde, Miss",50.00,12.50,2 weeks,14,1,,1927-04-06,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-04-06,1927-04-12,https://shakespeareandco.princeton.edu/members/reynolds-a-m/,Mme A. M. Reynolds,"Reynolds, Mme A. M.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/asquith-ghost-book-sixteen/,The Ghost Book: Sixteen New Stories of the Uncanny,,,1926,,Lending Library Card,"Sylvia Beach, A.M. Reynolds Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3421b1cc-cb37-4310-978c-5c8e08086ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/2c%2F77%2Fcc%2F2c77cce6a00643d3ac3807fa5086962a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-04-06,1927-04-15,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/wilde-plays-oscar-wilde/,The Plays of Oscar Wilde,,"Wilde, Oscar",,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2F7d%2Fa5%2F237da592c8234d839140f8c72d672a9f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-04-06,1927-04-11,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/feuchtwanger-jew-suss/,Jew SΓΌss,,"Feuchtwanger, Lion",1926,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/66%2Fef%2F35%2F66ef35619855464ba39b7e9e4d35b657%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1927-04-06,1927-04-06,https://shakespeareandco.princeton.edu/members/parry/;https://shakespeareandco.princeton.edu/members/parry-3/,M. Parry;Mrs. Parry,"Parry, M.;Parry, Mrs.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1927-04-06,1927-05-06,https://shakespeareandco.princeton.edu/members/barwick/,Mrs. W. Barwick,"Barwick, Mrs. W.",25.00,50.00,1 month,30,1,,1927-04-06,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1927-04-07,1927-04-07,https://shakespeareandco.princeton.edu/members/remer/,Mrs. de Remer,"de Remer, Mrs.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1927-04-07,1927-05-07,https://shakespeareandco.princeton.edu/members/stokes/,M. Stokes,"Stokes, M.",25.00,50.00,1 month,30,1,,1927-04-07,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-04-09,1927-04-28,https://shakespeareandco.princeton.edu/members/reynolds-a-m/,Mme A. M. Reynolds,"Reynolds, Mme A. M.",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/dos-passos-three-soldiers/,Three Soldiers,,"Dos Passos, John",1921,,Lending Library Card,"Sylvia Beach, A.M. Reynolds Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3421b1cc-cb37-4310-978c-5c8e08086ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/2c%2F77%2Fcc%2F2c77cce6a00643d3ac3807fa5086962a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-04-09,1927-04-30,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/arlen-green-hat/,The Green Hat: A Romance for a Few People,,"Arlen, Michael",1924,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/5d%2F94%2F00%2F5d9400637a2e4682a81940685b942a72%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1927-04-09,1927-04-09,https://shakespeareandco.princeton.edu/members/mcalmon-robert/,Robert McAlmon,"McAlmon, Robert",,,,,,,,,,,28.00,FRF,https://shakespeareandco.princeton.edu/books/hudson-green-mansions-romance/,Green Mansions: A Romance of the Tropical Forest,,"Hudson, W. H.",1904,,Lending Library Card,"Sylvia Beach, Robert McAlmon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/889ff3f8-b62c-42f6-8e88-1dd95434b2f5/manifest,https://iiif-cloud.princeton.edu/iiif/2/f9%2Fd2%2F1a%2Ff9d21aff41154755aa10b62eeeec7846%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1927-04-09,1927-04-09,https://shakespeareandco.princeton.edu/members/mcalmon-robert/,Robert McAlmon,"McAlmon, Robert",,,,,,,,,,,28.00,FRF,https://shakespeareandco.princeton.edu/books/goncourt-renee-mauperin/,RenΓ©e Mauperin,,"Goncourt, Edmond de",1902,,Lending Library Card,"Sylvia Beach, Robert McAlmon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/889ff3f8-b62c-42f6-8e88-1dd95434b2f5/manifest,https://iiif-cloud.princeton.edu/iiif/2/f9%2Fd2%2F1a%2Ff9d21aff41154755aa10b62eeeec7846%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1927-04-09,1927-04-09,https://shakespeareandco.princeton.edu/members/mcalmon-robert/,Robert McAlmon,"McAlmon, Robert",,,,,,,,,,,28.00,FRF,https://shakespeareandco.princeton.edu/books/defoe-moll-flanders/,Moll Flanders,,"Defoe, Daniel",1722,,Lending Library Card,"Sylvia Beach, Robert McAlmon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/889ff3f8-b62c-42f6-8e88-1dd95434b2f5/manifest,https://iiif-cloud.princeton.edu/iiif/2/f9%2Fd2%2F1a%2Ff9d21aff41154755aa10b62eeeec7846%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1927-04-09,1927-05-09,https://shakespeareandco.princeton.edu/members/lurie/,L. Lurie,"Lurie, L.",25.00,50.00,1 month,30,1,,1927-04-09,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-04-09,,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/ford-today-tomorrow/,Today and Tomorrow,,"Ford, Henry",1926,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/af%2Fcd%2F4b%2Fafcd4b7698644be4ad8edf82445910ee%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1927-04-09,1927-04-09,https://shakespeareandco.princeton.edu/members/mcalmon-robert/,Robert McAlmon,"McAlmon, Robert",,,,,,,,,,,28.00,FRF,https://shakespeareandco.princeton.edu/books/maupassant-vie/,Une Vie,,"Maupassant, Guy de",1883,,Lending Library Card,"Sylvia Beach, Robert McAlmon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/889ff3f8-b62c-42f6-8e88-1dd95434b2f5/manifest,https://iiif-cloud.princeton.edu/iiif/2/f9%2Fd2%2F1a%2Ff9d21aff41154755aa10b62eeeec7846%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-04-09,1927-04-25,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/sedgwick-old-countess/,The Old Countess,,"Sedgwick, Anne Douglas",1927,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/eb%2F77%2Fc5%2Feb77c58d7a7645d9b4ccd853a4eb6191%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-04-09,1927-04-25,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/loos-gentlemen-prefer-blondes/,Gentlemen Prefer Blondes: The Illuminating Diary of a Professional Lady,,"Loos, Anita",1925,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/eb%2F77%2Fc5%2Feb77c58d7a7645d9b4ccd853a4eb6191%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-04-09,1927-04-25,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/hardy-woodlanders/,The Woodlanders,,"Hardy, Thomas",1887,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/eb%2F77%2Fc5%2Feb77c58d7a7645d9b4ccd853a4eb6191%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-04-09,1927-04-25,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/forster-passage-india/,A Passage to India,,"Forster, E. M.",1924,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/eb%2F77%2Fc5%2Feb77c58d7a7645d9b4ccd853a4eb6191%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1927-04-09,1927-04-09,https://shakespeareandco.princeton.edu/members/neill/,Miss Neill,"Neill, Miss",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1927-04-11,1927-04-11,https://shakespeareandco.princeton.edu/members/hyde-miss/,Miss Hyde,"Hyde, Miss",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-04-11,1927-04-28,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/walpole-secret-city-novel/,The Secret City: A Novel in Three Parts,,"Walpole, Hugh",1919,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/66%2Fef%2F35%2F66ef35619855464ba39b7e9e4d35b657%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1927-04-12,1927-04-12,https://shakespeareandco.princeton.edu/members/mcalmon-robert/,Robert McAlmon,"McAlmon, Robert",,,,,,,,,,,42.00,FRF,https://shakespeareandco.princeton.edu/books/black-like/,Why Do They Like It?,,"Black, E. L.",1927,,Lending Library Card,"Sylvia Beach, Robert McAlmon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/889ff3f8-b62c-42f6-8e88-1dd95434b2f5/manifest,https://iiif-cloud.princeton.edu/iiif/2/f9%2Fd2%2F1a%2Ff9d21aff41154755aa10b62eeeec7846%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1927-04-12,1927-04-12,https://shakespeareandco.princeton.edu/members/gill-miss/,Miss Gill,"Gill, Miss",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-04-12,1927-04-15,https://shakespeareandco.princeton.edu/members/reynolds-a-m/,Mme A. M. Reynolds,"Reynolds, Mme A. M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/arnim-introduction-sally/,Introduction to Sally,,"Arnim, Elizabeth von",1926,,Lending Library Card,"Sylvia Beach, A.M. Reynolds Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3421b1cc-cb37-4310-978c-5c8e08086ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/2c%2F77%2Fcc%2F2c77cce6a00643d3ac3807fa5086962a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-04-14,1927-04-21,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/coppard-field-mustard/,The Field of Mustard,,"Coppard, A. E.",1927,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/34%2F63%2Fef%2F3463efdf87f94472a29bed492f604a45%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1927-04-14,1927-04-14,https://shakespeareandco.princeton.edu/members/amor-2/,Mrs. Amor,"Amor, Mrs.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1927-04-14,1927-04-14,https://shakespeareandco.princeton.edu/members/akinson-n/,N. Atkinson,"Akinson, N.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1927-04-14,1927-05-14,https://shakespeareandco.princeton.edu/members/lady-colvin/,Lady E. Colvin,"Colvin, Lady E.",25.00,50.00,1 month,30,1,,1927-04-14,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-04-14,1927-04-25,https://shakespeareandco.princeton.edu/members/wilson-margaret/,Margaret Wilson,"Wilson, Margaret",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/anderson-dark-laughter/,Dark Laughter,,"Anderson, Sherwood",1926,,Lending Library Card,"Sylvia Beach, Margaret Wilson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fe7f66f2-3c71-46c1-bdfd-221223e78c85/manifest,https://iiif.princeton.edu/loris/figgy_prod/f9%2F06%2Fa4%2Ff906a421c56f46129bb48547145550b6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-04-15,1927-04-28,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/symons-william-blake/,William Blake,,"Symons, Arthur",1907,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2F7d%2Fa5%2F237da592c8234d839140f8c72d672a9f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1927-04-15,1927-05-15,https://shakespeareandco.princeton.edu/members/parker/,Mr. Parker,"Parker, Mr.",25.00,,1 month,30,1,,1927-04-15,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1927-04-15,1927-05-15,https://shakespeareandco.princeton.edu/members/reynolds-a-m/,Mme A. M. Reynolds,"Reynolds, Mme A. M.",25.00,,1 month,30,1,,1927-04-30,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, A.M. Reynolds Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/3421b1cc-cb37-4310-978c-5c8e08086ffb/manifest,;https://iiif.princeton.edu/loris/figgy_prod/2c%2F77%2Fcc%2F2c77cce6a00643d3ac3807fa5086962a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-04-15,1927-04-20,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/kaye-smith-joanna-godden-married/,Joanna Godden Married and Other Stories,,"Kaye-Smith, Sheila",1926,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/91%2Fde%2F94%2F91de94d5ff724fa6bdd4c1f5e8b2b9af%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-04-15,1927-04-20,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/huddleston-mr-paname-paris/,Mr. Paname: A Paris Fantasia,,"Huddleston, Sisley",1927,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/91%2Fde%2F94%2F91de94d5ff724fa6bdd4c1f5e8b2b9af%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1927-04-15,1927-04-15,https://shakespeareandco.princeton.edu/members/fuerst-walter-rene/,Walter RenΓ© Fuerst / W. R. Fuerst,"Fuerst, Walter RenΓ©",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-04-15,1927-04-28,https://shakespeareandco.princeton.edu/members/reynolds-a-m/,Mme A. M. Reynolds,"Reynolds, Mme A. M.",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/galsworthy-silver-spoon/,The Silver Spoon (A Modern Comedy),,"Galsworthy, John",1926,,Lending Library Card,"Sylvia Beach, A.M. Reynolds Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3421b1cc-cb37-4310-978c-5c8e08086ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/2c%2F77%2Fcc%2F2c77cce6a00643d3ac3807fa5086962a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-04-15,1927-04-28,https://shakespeareandco.princeton.edu/members/reynolds-a-m/,Mme A. M. Reynolds,"Reynolds, Mme A. M.",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/connington-dangerfield-talisman/,The Dangerfield Talisman,,"Connington, J. J.",1927,,Lending Library Card,"Sylvia Beach, A.M. Reynolds Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3421b1cc-cb37-4310-978c-5c8e08086ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/2c%2F77%2Fcc%2F2c77cce6a00643d3ac3807fa5086962a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-04-15,1927-04-30,https://shakespeareandco.princeton.edu/members/reynolds-a-m/,Mme A. M. Reynolds,"Reynolds, Mme A. M.",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/macgill-sid-puddiefoot/,Sid Puddiefoot,,"MacGill, Patrick",1926,,Lending Library Card,"Sylvia Beach, A.M. Reynolds Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3421b1cc-cb37-4310-978c-5c8e08086ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/2c%2F77%2Fcc%2F2c77cce6a00643d3ac3807fa5086962a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-04-16,1927-05-09,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/tang-china-revolt/,China in Revolt,,"T'ang, Leang-Li",1927,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/cf%2F06%2F22%2Fcf06228a89d44628a53d29b68b3a1538%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-04-16,1927-05-09,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/bryant-mirrors-moscow/,Mirrors of Moscow,,"Bryant, Louise",1923,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/cf%2F06%2F22%2Fcf06228a89d44628a53d29b68b3a1538%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-04-16,1927-05-09,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/le-gallienne-romantic-90s/,The Romantic '90s,,"Le Gallienne, Richard",1925,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/1e%2Fc1%2F4a%2F1ec14af0cc374dfda3309dacf9bfb1a2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-04-16,1927-05-09,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/strachey-queen-victoria/,Queen Victoria,,"Strachey, Giles Lytton",1921,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/1e%2Fc1%2F4a%2F1ec14af0cc374dfda3309dacf9bfb1a2%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1927-04-16,1927-05-16,https://shakespeareandco.princeton.edu/members/paul-dubois/,Louis Paul-Dubois,"Paul-Dubois, Louis",35.00,100.00,1 month,30,2,,1927-04-16,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1927-04-17,1927-07-17,https://shakespeareandco.princeton.edu/members/arndt/,J. Arndt,"Arndt, J.",60.00,,3 months,91,1,,1927-04-16,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1927-04-18,1927-10-18,https://shakespeareandco.princeton.edu/members/oppenheimer-e/,E. Oppenheimer,"Oppenheimer, E.",150.00,,6 months,183,2,,1927-04-07,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1927-04-19,1927-05-19,https://shakespeareandco.princeton.edu/members/millar-marguerite/,Marguerite Millar,"Millar, Marguerite",25.00,50.00,1 month,30,1,,1927-04-19,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1927-04-19,1927-04-19,https://shakespeareandco.princeton.edu/members/desgroseillers-g/;https://shakespeareandco.princeton.edu/members/desgrosseilliers/,G. Desgroseillers;Mme Desgrosseilliers,"Desgroseillers, G.;Desgrosseilliers, Mme",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1927-04-19,1927-04-19,https://shakespeareandco.princeton.edu/members/grillet-winfrid/,Winfrid Grillet,"Grillet, Winfrid",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1927-04-20,1928-04-20,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",144.00,,1 year,366,1,,1927-05-11,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,;https://iiif.princeton.edu/loris/figgy_prod/eb%2F77%2Fc5%2Feb77c58d7a7645d9b4ccd853a4eb6191%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-04-20,1927-04-23,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/waugh-love-days-modern/,Love in These Days: A Modern Story,,"Waugh, Alec",1926,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/91%2Fde%2F94%2F91de94d5ff724fa6bdd4c1f5e8b2b9af%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1927-04-20,1927-05-20,https://shakespeareandco.princeton.edu/members/hopping/,Mrs. J. H. Hopping,"Hopping, Mrs. J. H.",25.00,50.00,1 month,30,1,,1927-04-20,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1927-04-20,1927-04-20,https://shakespeareandco.princeton.edu/members/harding-2/,Mrs. Stan Harding,"Harding, Mrs. Stan",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1927-04-20,1927-04-20,https://shakespeareandco.princeton.edu/members/lur-saluces/,A. de Lur-Saluces,"Lur-Saluces, A. de",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1927-04-20,1928-04-20,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",180.00,,1 year,366,1,,1927-09-16,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,;https://iiif.princeton.edu/loris/figgy_prod/4c%2Fb0%2F05%2F4cb0051a29fd4a30ac4d18a9278429f5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-04-20,1927-04-23,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/burke-sun-splendour/,The Sun in Splendour,,"Burke, Thomas",1926,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/91%2Fde%2F94%2F91de94d5ff724fa6bdd4c1f5e8b2b9af%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1927-04-20,1927-05-20,https://shakespeareandco.princeton.edu/members/hargreaves-olga/,Olga Hargreaves,"Hargreaves, Olga",25.00,,1 month,30,1,,1927-04-09,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-04-21,1927-04-25,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/wilder-cabala/,The Cabala,,"Wilder, Thornton",1926,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/34%2F63%2Fef%2F3463efdf87f94472a29bed492f604a45%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1927-04-21,1927-10-21,https://shakespeareandco.princeton.edu/members/tracy-e/,E. Tracy,"Tracy, E.",,,6 months,183,2,,1927-04-21,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1927-04-22,1927-04-22,https://shakespeareandco.princeton.edu/members/cohen-max-b/,Max B. Cohen,"Cohen, Max B.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1927-04-23,1927-07-23,https://shakespeareandco.princeton.edu/members/embrie-margaret-train/,Margaret Train Embrie,"Embrie, Margaret Train",85.00,100.00,3 months,91,2,,1927-04-23,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-04-23,1927-04-30,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/swinnerton-three-lovers/,The Three Lovers,,"Swinnerton, Frank",1922,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/91%2Fde%2F94%2F91de94d5ff724fa6bdd4c1f5e8b2b9af%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-04-23,1927-04-30,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/fielding-footsteps-stopped/,The Footsteps That Stopped,,"Fielding, A.",1926,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/91%2Fde%2F94%2F91de94d5ff724fa6bdd4c1f5e8b2b9af%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-04-23,1927-04-30,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/jacobs-castaways/,The Castaways,,"Jacobs, William Wymark",1917,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/91%2Fde%2F94%2F91de94d5ff724fa6bdd4c1f5e8b2b9af%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-04-23,1927-04-30,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/beresford-kind-man/,That Kind of Man,,"Beresford, J. D.",1926,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/91%2Fde%2F94%2F91de94d5ff724fa6bdd4c1f5e8b2b9af%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-04-23,1927-04-30,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/macaulay-crewe-train/,Crewe Train,,"Macaulay, Rose",1926,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/91%2Fde%2F94%2F91de94d5ff724fa6bdd4c1f5e8b2b9af%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1927-04-23,1927-05-23,https://shakespeareandco.princeton.edu/members/decamp-charles/,Charles B. DeCamp,"DeCamp, Charles B.",35.00,100.00,1 month,30,,,1927-04-23,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-04-23,,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/maycock-inquisition-establishment-great/,The Inquisition from Its Establishment to the Great Schism,,"Maycock, A. L.",1927,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/a4%2F8c%2F7f%2Fa48c7f974df34e81af59231b85679646%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-04-25,1927-04-30,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/maugham-chinese-screen/,On a Chinese Screen,,"Maugham, W. Somerset",1922,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/eb%2F77%2Fc5%2Feb77c58d7a7645d9b4ccd853a4eb6191%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-04-25,1927-04-30,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/de-la-mare-connoisseur-stories/,The Connoisseur and Other Stories,,"De la Mare, Walter",1926,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/34%2F63%2Fef%2F3463efdf87f94472a29bed492f604a45%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1927-04-25,1927-10-25,https://shakespeareandco.princeton.edu/members/blake-w/,W. Blake,"Blake, W.",80.00,,6 months,183,1,,1927-04-25,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-04-25,1927-05-02,https://shakespeareandco.princeton.edu/members/wilson-margaret/,Margaret Wilson,"Wilson, Margaret",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/crane-maggie-girl-streets/,Maggie: A Girl of the Streets,,"Crane, Stephen",1893,,Lending Library Card,"Sylvia Beach, Margaret Wilson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fe7f66f2-3c71-46c1-bdfd-221223e78c85/manifest,https://iiif.princeton.edu/loris/figgy_prod/f9%2F06%2Fa4%2Ff906a421c56f46129bb48547145550b6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-04-26,1927-05-10,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/huxley-barren-leaves/,Those Barren Leaves,,"Huxley, Aldous",1925,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/c2%2Ff7%2F29%2Fc2f7296928344566aa900c8c0644c909%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1927-04-26,1927-04-26,https://shakespeareandco.princeton.edu/members/souvtchinsky/,Mme Souvtchinsky / Mme Soutchinsky / Mme Soutvinsky / Mme Soukinschsky,"Souvtchinsky, Mme",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1927-04-26,1927-04-26,https://shakespeareandco.princeton.edu/members/larre/,Larre,Larre,,,,,,,,150.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1927-04-27,1927-05-27,https://shakespeareandco.princeton.edu/members/hume/,S. J. Hume,"Hume, S. J.",25.00,100.00,1 month,30,1,,1927-04-27,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1927-04-27,1927-04-27,https://shakespeareandco.princeton.edu/members/embrie-margaret-train/,Margaret Train Embrie,"Embrie, Margaret Train",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1927-04-27,1927-05-27,https://shakespeareandco.princeton.edu/members/reynolds-mr/,Mr. Reynolds,"Reynolds, Mr.",20.00,50.00,1 month,30,1,Professor / Teacher,1927-04-27,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1927-04-27,1927-04-27,https://shakespeareandco.princeton.edu/members/dollar/,Nora Dollar,"Dollar, Nora",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-04-28,1927-04-30,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/newman-hard-boiled-virgin/,The Hard-Boiled Virgin,,"Newman, Frances",1926,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/66%2Fef%2F35%2F66ef35619855464ba39b7e9e4d35b657%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1927-04-28,1927-07-28,https://shakespeareandco.princeton.edu/members/birch-betty/,Betty Birch,"Birch, Betty",85.00,,3 months,91,2,,1927-04-28,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1927-04-28,1927-04-28,https://shakespeareandco.princeton.edu/members/astell/,I. W. Astell,"Astell, I. W.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1927-04-28,1927-07-28,https://shakespeareandco.princeton.edu/members/kennedy-edmond/,Edmond Kennedy,"Kennedy, Edmond",48.00,,3 months,91,1,Student,1927-01-29,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-04-28,1927-05-11,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/blake-blakes-works/,Willam Blake's Works,,"Blake, William",,"At least three editions of Blake's collected works circulated in the lending library. Monique de Vigan borrowed The Poetical Works of William Blake, edited by William Michael Rossetti (Bell, 1874). Jean PrΓ©vost, John Rodker, Guy de Pourtales, Catherine Yarrow, Ella Cassigne, FranΓ§oise Bernheim, and Francoise de Marcilly (in 1939) borrowed The Poetical Works of William Blake, edited by John Sampson (Oxford, 1905). Armand Petitjean, Antoinette Bernheim, and Francoise de Marcilly (in 1938) borrowed Poetry and Prose of William Blake, edited by Geoffrey Keynes (Nonesuch, 1927).",Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2F7d%2Fa5%2F237da592c8234d839140f8c72d672a9f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-04-28,1927-05-31,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,33,,,https://shakespeareandco.princeton.edu/books/dos-passos-manhattan-transfer/,Manhattan Transfer,,"Dos Passos, John",1925,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/32%2F11%2F44%2F3211445456604f26802be4ccce47b278%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-04-28,1927-05-07,https://shakespeareandco.princeton.edu/members/reynolds-a-m/,Mme A. M. Reynolds,"Reynolds, Mme A. M.",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/fletcher-secret-barbican-stories/,The Secret of the Barbican and Other Stories,,"Fletcher, Joseph Smith",1924,,Lending Library Card,"Sylvia Beach, A.M. Reynolds Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3421b1cc-cb37-4310-978c-5c8e08086ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/2c%2F77%2Fcc%2F2c77cce6a00643d3ac3807fa5086962a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-04-28,1927-05-07,https://shakespeareandco.princeton.edu/members/reynolds-a-m/,Mme A. M. Reynolds,"Reynolds, Mme A. M.",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/loaded-dice/,Loaded Dice,,,,Unidentified. Either Ellery H. Clark's *Loaded Dice* (1909) or Edwin L. Sabin's *Loaded Dice* (1920).,Lending Library Card,"Sylvia Beach, A.M. Reynolds Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3421b1cc-cb37-4310-978c-5c8e08086ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/2c%2F77%2Fcc%2F2c77cce6a00643d3ac3807fa5086962a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1927-04-28,1927-07-28,https://shakespeareandco.princeton.edu/members/pissot-3/,Mlle Pissot,"Pissot, Mlle",48.00,,3 months,91,1,Student,1927-04-28,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1927-04-29,1927-04-29,https://shakespeareandco.princeton.edu/members/fitzpatrick-2/,Major Fitzpatrick,"Fitzpatrick, Major",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1927-04-29,1927-04-29,https://shakespeareandco.princeton.edu/members/francis-p/,P. Francis,"Francis, P.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1927-04-29,1927-04-29,https://shakespeareandco.princeton.edu/members/daughlin/,Mrs. Daughlin,"Daughlin, Mrs.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-04-30,1927-05-13,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/oflaherty-mr-gilhooley/,Mr. Gilhooley,,"O'Flaherty, Liam",1926,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/91%2Fde%2F94%2F91de94d5ff724fa6bdd4c1f5e8b2b9af%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-04-30,1927-05-14,https://shakespeareandco.princeton.edu/members/rieder/,M. Rieder,"Rieder, M.",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/garnett-lady-fox/,Lady into Fox,,"Garnett, David",1922,,Lending Library Card,"Sylvia Beach, Rieder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/559c8919-8881-40ad-b027-67dbf1b23611/manifest,https://iiif.princeton.edu/loris/figgy_prod/e8%2F10%2F7c%2Fe8107c2c950f411d8ceeb6bb8bdc01c7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-04-30,1927-05-13,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/wassermann-wedlock/,Wedlock,,"Wassermann, Jakob",1926,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/91%2Fde%2F94%2F91de94d5ff724fa6bdd4c1f5e8b2b9af%2Fintermediate_file.jp2/full/full/0/default.jpg
+Separate Payment,1927-04-30,1927-04-30,https://shakespeareandco.princeton.edu/members/tracy-e/,E. Tracy,"Tracy, E.",120.00,100.00,,,,,1927-04-30,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-04-30,1927-05-07,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/marriott-one-act-plays-day/,One Act Plays of To-Day,,,,"Unidentified. From the series, One Act Plays of To-Day.",Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/34%2F63%2Fef%2F3463efdf87f94472a29bed492f604a45%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-04-30,1927-05-03,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/benson-goodbye-stranger/,"Goodbye, Stranger",,"Benson, Stella",1926,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/66%2Fef%2F35%2F66ef35619855464ba39b7e9e4d35b657%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1927-04-30,1927-05-16,https://shakespeareandco.princeton.edu/members/kuntz-1/,Mrs. Charles Kuntz,"Kuntz, Mrs. Charles",35.00,,16 days,16,,,1927-04-30,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1927-04-30,1928-04-30,https://shakespeareandco.princeton.edu/members/loomis-merritt/,Merritt Loomis,"Loomis, Merritt",180.00,100.00,1 year,366,1,,1927-04-30,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-04-30,1927-05-07,https://shakespeareandco.princeton.edu/members/reynolds-a-m/,Mme A. M. Reynolds,"Reynolds, Mme A. M.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/fielding-footsteps-stopped/,The Footsteps That Stopped,,"Fielding, A.",1926,,Lending Library Card,"Sylvia Beach, A.M. Reynolds Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3421b1cc-cb37-4310-978c-5c8e08086ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/2c%2F77%2Fcc%2F2c77cce6a00643d3ac3807fa5086962a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1927-04-30,1927-05-30,https://shakespeareandco.princeton.edu/members/mcallister-francis/,Francis McAllister,"McAllister, Francis",25.00,50.00,1 month,30,1,,1927-04-30,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-04-30,1927-05-14,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/anderson-dark-laughter/,Dark Laughter,,"Anderson, Sherwood",1926,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/5d%2F94%2F00%2F5d9400637a2e4682a81940685b942a72%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-05-02,1927-06-28,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,57,,,https://shakespeareandco.princeton.edu/books/morris-rebellious-puritan-portrait/,The Rebellious Puritan: Portrait of Mr. Hawthorne,,"Morris, Lloyd R.",1927,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/01%2Fd1%2Fdc%2F01d1dcd966d14171baa47e3f1d26f10a%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1927-05-02,1927-06-02,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",35.00,100.00,1 month,31,2,,1927-05-02,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,;https://iiif-cloud.princeton.edu/iiif/2/01%2Fd1%2Fdc%2F01d1dcd966d14171baa47e3f1d26f10a%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1927-05-02,1927-06-02,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",25.00,50.00,1 month,31,1,,1927-05-02,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,;https://iiif-cloud.princeton.edu/iiif/2/63%2Ff7%2Fe6%2F63f7e6120b6d40ab89dc8af2e5726d7a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-05-02,1927-06-28,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,57,,,https://shakespeareandco.princeton.edu/books/beatrice/,Beatrice,,,,Unidentified. Likely H. Rider Haggard's *Beatrice: A Novel* (1890).,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/01%2Fd1%2Fdc%2F01d1dcd966d14171baa47e3f1d26f10a%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1927-05-02,1927-05-02,https://shakespeareandco.princeton.edu/members/lurie/,L. Lurie,"Lurie, L.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-05-02,1927-05-09,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/defoe-moll-flanders/,Moll Flanders,,"Defoe, Daniel",1722,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/63%2Ff7%2Fe6%2F63f7e6120b6d40ab89dc8af2e5726d7a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-05-02,1927-05-03,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/newman-hard-boiled-virgin/,The Hard-Boiled Virgin,,"Newman, Frances",1926,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/eb%2F77%2Fc5%2Feb77c58d7a7645d9b4ccd853a4eb6191%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1927-05-02,1927-06-02,https://shakespeareandco.princeton.edu/members/hamilton-s/,Shelley Hamilton,"Hamilton, Shelley",25.00,50.00,1 month,31,1,,1927-05-02,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1927-05-02,1927-08-02,https://shakespeareandco.princeton.edu/members/barnes-djuna/,Djuna Barnes,"Barnes, Djuna",85.00,,3 months,92,2,,1927-05-02,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-05-03,1927-05-07,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/huxley-jesting-pilate-diary/,Jesting Pilate: The Diary of a Journey,,"Huxley, Aldous",1926,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/66%2Fef%2F35%2F66ef35619855464ba39b7e9e4d35b657%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1927-05-03,1927-06-03,https://shakespeareandco.princeton.edu/members/engelhard/,Mrs. E. D. Engelhard,"Engelhard, Mrs. E. D.",35.00,100.00,1 month,31,2,,1927-05-03,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1927-05-03,1927-06-03,https://shakespeareandco.princeton.edu/members/bauer-k/,Kath Bauer,"Bauer, Kath",25.00,50.00,1 month,31,1,,1927-05-03,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-05-03,1927-05-11,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/young-portrait-clare/,Portrait of Clare,,"Young, Francis Brett",1927,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/eb%2F77%2Fc5%2Feb77c58d7a7645d9b4ccd853a4eb6191%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1927-05-03,1927-05-03,https://shakespeareandco.princeton.edu/members/jacobs-herbert/,Herbert Jacobs,"Jacobs, Herbert",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1927-05-05,1928-05-05,https://shakespeareandco.princeton.edu/members/norledge/,Mme Norledge,"Norledge, Mme",250.00,,1 year,366,2,,1927-05-03,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1927-05-05,1927-06-05,https://shakespeareandco.princeton.edu/members/mortimer-1/,Mr. Mortimer,"Mortimer, Mr.",20.00,50.00,1 month,31,1,Student,1927-05-05,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1927-05-05,1927-08-05,https://shakespeareandco.princeton.edu/members/hayes-mary/,Mary Hayes / Mrs. Carlton Hayes,"Hayes, Mary",68.00,100.00,3 months,92,2,Professor / Teacher,1927-05-05,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1927-05-06,1927-06-06,https://shakespeareandco.princeton.edu/members/goutet-andre/,AndrΓ© Goutet,"Goutet, AndrΓ©",20.00,50.00,1 month,31,1,Student,1927-05-06,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1927-05-06,1927-05-06,https://shakespeareandco.princeton.edu/members/hargreaves-olga/,Olga Hargreaves,"Hargreaves, Olga",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-05-07,1927-05-10,https://shakespeareandco.princeton.edu/members/rolo/,Jacques Rolo,"Rolo, Jacques",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/dane-legend/,Legend,,"Dane, Clemence",1919,,Lending Library Card,"Sylvia Beach, Jacques Rolo Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6392fdb0-c221-4d3b-8a38-a342aa9aec90/manifest,https://iiif.princeton.edu/loris/figgy_prod/74%2F8c%2F5f%2F748c5fb55abf427087f60af4ab9c211a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-05-07,1927-05-10,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/woolf-jacobs-room/,Jacob's Room,,"Woolf, Virginia",1922,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/66%2Fef%2F35%2F66ef35619855464ba39b7e9e4d35b657%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-05-07,1927-05-10,https://shakespeareandco.princeton.edu/members/reynolds-a-m/,Mme A. M. Reynolds,"Reynolds, Mme A. M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/bashford-behind-fog/,Behind the Fog,,"Bashford, H. H.",1927,,Lending Library Card,"Sylvia Beach, A.M. Reynolds Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3421b1cc-cb37-4310-978c-5c8e08086ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/2c%2F77%2Fcc%2F2c77cce6a00643d3ac3807fa5086962a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-05-07,1927-05-10,https://shakespeareandco.princeton.edu/members/reynolds-a-m/,Mme A. M. Reynolds,"Reynolds, Mme A. M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/gorky-decadence/,Decadence,,"Gorky, Maxim",1927,,Lending Library Card,"Sylvia Beach, A.M. Reynolds Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3421b1cc-cb37-4310-978c-5c8e08086ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/2c%2F77%2Fcc%2F2c77cce6a00643d3ac3807fa5086962a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-05-07,1927-05-09,https://shakespeareandco.princeton.edu/members/rolo/,Jacques Rolo,"Rolo, Jacques",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/robinson-collected-poems/,Collected Poems,,"Robinson, Edwin Arlington",1921,,Lending Library Card,"Sylvia Beach, Jacques Rolo Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6392fdb0-c221-4d3b-8a38-a342aa9aec90/manifest,https://iiif.princeton.edu/loris/figgy_prod/74%2F8c%2F5f%2F748c5fb55abf427087f60af4ab9c211a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1927-05-07,1927-06-07,https://shakespeareandco.princeton.edu/members/rolo/,Jacques Rolo,"Rolo, Jacques",35.00,100.00,1 month,31,2,,1927-05-07,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Jacques Rolo Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/6392fdb0-c221-4d3b-8a38-a342aa9aec90/manifest,;https://iiif.princeton.edu/loris/figgy_prod/74%2F8c%2F5f%2F748c5fb55abf427087f60af4ab9c211a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-05-07,1927-05-10,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/mansfield-german-pension/,In a German Pension,,"Mansfield, Katherine",1911,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2F06%2Fd2%2F2106d277bd754d6dafddd7d2757a5841%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-05-09,1927-05-17,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/gollomb-scotland-yard/,Scotland Yard,,"Gollomb, Joseph",1927,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/cf%2F06%2F22%2Fcf06228a89d44628a53d29b68b3a1538%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-05-09,1927-05-11,https://shakespeareandco.princeton.edu/members/rolo/,Jacques Rolo,"Rolo, Jacques",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/fitzgerald-great-gatsby/,The Great Gatsby,,"Fitzgerald, F. Scott",1925,,Lending Library Card,"Sylvia Beach, Jacques Rolo Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6392fdb0-c221-4d3b-8a38-a342aa9aec90/manifest,https://iiif.princeton.edu/loris/figgy_prod/74%2F8c%2F5f%2F748c5fb55abf427087f60af4ab9c211a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-05-09,1927-05-16,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/barbey-daurevilly-diaboliques/,The Diaboliques,,"Barbey d'Aurevilly, Jules",1925,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/63%2Ff7%2Fe6%2F63f7e6120b6d40ab89dc8af2e5726d7a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-05-09,1927-05-10,https://shakespeareandco.princeton.edu/members/rolo/,Jacques Rolo,"Rolo, Jacques",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/dickinson-selected-poems-emily/,Selected Poems of Emily Dickinson,,"Dickinson, Emily",1924,,Lending Library Card,"Sylvia Beach, Jacques Rolo Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6392fdb0-c221-4d3b-8a38-a342aa9aec90/manifest,https://iiif.princeton.edu/loris/figgy_prod/74%2F8c%2F5f%2F748c5fb55abf427087f60af4ab9c211a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-05-09,1927-06-07,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,29,,,https://shakespeareandco.princeton.edu/books/lewis-elmer-gantry/,Elmer Gantry,,"Lewis, Sinclair",1927,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/cf%2F06%2F22%2Fcf06228a89d44628a53d29b68b3a1538%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1927-05-09,1927-05-09,https://shakespeareandco.princeton.edu/members/eisemann-jacques/,Jacques Eisenmann,"Eisenmann, Jacques",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1927-05-09,1927-05-09,https://shakespeareandco.princeton.edu/members/morse/,Mrs. G. L. Morse,"Morse, Mrs. G. L.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-05-09,1927-05-31,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/huxley-jesting-pilate-diary/,Jesting Pilate: The Diary of a Journey,,"Huxley, Aldous",1926,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/cf%2F06%2F22%2Fcf06228a89d44628a53d29b68b3a1538%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-05-09,1927-05-17,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/three-plays/,Three Plays,,,,"Unidentified. Padraic Colum's *Three Plays) (1917), Luigi Pirandello's *Three Plays* (1922), or William Archer's *Three Plays* (1927), etc.",Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/cf%2F06%2F22%2Fcf06228a89d44628a53d29b68b3a1538%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-05-10,1927-05-19,https://shakespeareandco.princeton.edu/members/reynolds-a-m/,Mme A. M. Reynolds,"Reynolds, Mme A. M.",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/sinclair-allinghams/,The Allinghams,,"Sinclair, May",1927,,Lending Library Card,"Sylvia Beach, A.M. Reynolds Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3421b1cc-cb37-4310-978c-5c8e08086ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/2c%2F77%2Fcc%2F2c77cce6a00643d3ac3807fa5086962a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-05-10,1927-05-14,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/mansfield-bliss-short-stories/,Bliss and Other Stories,,"Mansfield, Katherine",1920,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2F06%2Fd2%2F2106d277bd754d6dafddd7d2757a5841%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-05-10,1927-05-13,https://shakespeareandco.princeton.edu/members/rolo/,Jacques Rolo,"Rolo, Jacques",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/stewart-mr-mrs-haddock/,"Mr. and Mrs. Haddock in Paris, France",,"Stewart, Donald Ogden",1926,,Lending Library Card,"Sylvia Beach, Jacques Rolo Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6392fdb0-c221-4d3b-8a38-a342aa9aec90/manifest,https://iiif.princeton.edu/loris/figgy_prod/74%2F8c%2F5f%2F748c5fb55abf427087f60af4ab9c211a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1927-05-10,1927-06-10,https://shakespeareandco.princeton.edu/members/noxon/;https://shakespeareandco.princeton.edu/members/noxon-mr/,Mme Noxon;Mr. Noxon,"Noxon, Mme;Noxon, Mr.",20.00,100.00,1 month,31,1,,1927-05-10,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1927-05-10,1927-05-10,https://shakespeareandco.princeton.edu/members/gilbert-h-j/,H. J. Gilbert,"Gilbert, H. J.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-05-10,1927-05-19,https://shakespeareandco.princeton.edu/members/reynolds-a-m/,Mme A. M. Reynolds,"Reynolds, Mme A. M.",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/fletcher-green-ink-stories/,Green Ink and Other Stories,,"Fletcher, Joseph Smith",1926,,Lending Library Card,"Sylvia Beach, A.M. Reynolds Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3421b1cc-cb37-4310-978c-5c8e08086ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/2c%2F77%2Fcc%2F2c77cce6a00643d3ac3807fa5086962a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-05-10,1927-05-31,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/hudson-green-mansions-romance/,Green Mansions: A Romance of the Tropical Forest,,"Hudson, W. H.",1904,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/c2%2Ff7%2F29%2Fc2f7296928344566aa900c8c0644c909%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-05-11,1927-05-17,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/swinnerton-nocturne/,Nocturne,,"Swinnerton, Frank",1917,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2F7d%2Fa5%2F237da592c8234d839140f8c72d672a9f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1927-05-11,1927-05-11,https://shakespeareandco.princeton.edu/members/strachey/,Miss Strachey,"Strachey, Miss",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-05-11,1927-05-15,https://shakespeareandco.princeton.edu/members/rolo/,Jacques Rolo,"Rolo, Jacques",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/sitwell-wooden-pegasus/,The Wooden Pegasus,,"Sitwell, Edith",1920,,Lending Library Card,"Sylvia Beach, Jacques Rolo Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6392fdb0-c221-4d3b-8a38-a342aa9aec90/manifest,https://iiif.princeton.edu/loris/figgy_prod/74%2F8c%2F5f%2F748c5fb55abf427087f60af4ab9c211a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-05-13,1927-05-21,https://shakespeareandco.princeton.edu/members/rolo/,Jacques Rolo,"Rolo, Jacques",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/lajpat-rai-young-india-interpretation/,Young India: An Interpretation and a History of the Nationalist Movement from Within,,"Lajpat Rai, Lala",1916,,Lending Library Card,"Sylvia Beach, Jacques Rolo Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6392fdb0-c221-4d3b-8a38-a342aa9aec90/manifest,https://iiif.princeton.edu/loris/figgy_prod/74%2F8c%2F5f%2F748c5fb55abf427087f60af4ab9c211a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-05-13,1927-05-17,https://shakespeareandco.princeton.edu/members/rolo/,Jacques Rolo,"Rolo, Jacques",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/james-awkward-age/,The Awkward Age,,"James, Henry",1899,,Lending Library Card,"Sylvia Beach, Jacques Rolo Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6392fdb0-c221-4d3b-8a38-a342aa9aec90/manifest,https://iiif.princeton.edu/loris/figgy_prod/74%2F8c%2F5f%2F748c5fb55abf427087f60af4ab9c211a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-05-14,1927-07-13,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,60,,,https://shakespeareandco.princeton.edu/books/lewis-babbitt/,Babbitt,,"Lewis, Sinclair",1922,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/5d%2F94%2F00%2F5d9400637a2e4682a81940685b942a72%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-05-14,1927-07-18,https://shakespeareandco.princeton.edu/members/rieder/,M. Rieder,"Rieder, M.",,,,,,,,,Returned,65,,,https://shakespeareandco.princeton.edu/books/meredith-egoist/,The Egoist,2 vols.,"Meredith, George",1879,,Lending Library Card,"Sylvia Beach, Rieder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/559c8919-8881-40ad-b027-67dbf1b23611/manifest,https://iiif.princeton.edu/loris/figgy_prod/e8%2F10%2F7c%2Fe8107c2c950f411d8ceeb6bb8bdc01c7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-05-14,,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/kelley-home-james/,"Home, James",,"Kelley, Ethel",1927,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/eb%2F77%2Fc5%2Feb77c58d7a7645d9b4ccd853a4eb6191%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-05-14,1927-05-23,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/woolf-lighthouse/,To the Lighthouse,,"Woolf, Virginia",1927,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/eb%2F77%2Fc5%2Feb77c58d7a7645d9b4ccd853a4eb6191%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-05-14,1927-05-18,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/mansfield-doves-nest-stories/,The Doves' Nest and Other Stories,,"Mansfield, Katherine",1923,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2F06%2Fd2%2F2106d277bd754d6dafddd7d2757a5841%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1927-05-15,1927-05-30,https://shakespeareandco.princeton.edu/members/reynolds-a-m/,Mme A. M. Reynolds,"Reynolds, Mme A. M.",12.50,,15 days,15,1,,1927-05-19,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, A.M. Reynolds Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3421b1cc-cb37-4310-978c-5c8e08086ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/2c%2F77%2Fcc%2F2c77cce6a00643d3ac3807fa5086962a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-05-16,1927-05-19,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/james-ambassadors/,The Ambassadors,,"James, Henry",1903,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/63%2Ff7%2Fe6%2F63f7e6120b6d40ab89dc8af2e5726d7a%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1927-05-16,1927-05-16,https://shakespeareandco.princeton.edu/members/stimson-e/,E. Stimson / Stimpson,"Stimson, E.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1927-05-16,1927-06-16,https://shakespeareandco.princeton.edu/members/josephson-m/,Mrs. M. Josephson,"Josephson, Mrs. M.",25.00,50.00,1 month,31,1,,1927-05-16,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1927-05-16,1927-06-16,https://shakespeareandco.princeton.edu/members/paul-dubois/,Louis Paul-Dubois,"Paul-Dubois, Louis",35.00,,1 month,31,2,,1927-05-13,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-05-17,1927-05-19,https://shakespeareandco.princeton.edu/members/rolo/,Jacques Rolo,"Rolo, Jacques",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/hughes-weary-blues/,The Weary Blues,,"Hughes, Langston",1926,,Lending Library Card,"Sylvia Beach, Jacques Rolo Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6392fdb0-c221-4d3b-8a38-a342aa9aec90/manifest,https://iiif.princeton.edu/loris/figgy_prod/74%2F8c%2F5f%2F748c5fb55abf427087f60af4ab9c211a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1927-05-17,1927-08-17,https://shakespeareandco.princeton.edu/members/larking/,Mrs. Arthur Larking,"Larking, Mrs. Arthur",85.00,100.00,3 months,92,2,,1927-05-17,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-05-17,1927-08-10,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,85,,,https://shakespeareandco.princeton.edu/books/stern-thunderstorm/,Thunderstorm,,"Stern, G. B.",1925,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/4c%2Fb0%2F05%2F4cb0051a29fd4a30ac4d18a9278429f5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1927-05-17,,https://shakespeareandco.princeton.edu/members/wegg-t/,T. Wegg,"Wegg, T.",12.50,,,,,,1927-05-17,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-05-17,1927-05-21,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/september/,September,,,,Unidentified. Likely Frank Swinnerton's *September* (1919).,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/76%2F98%2F6f%2F76986faad2d441dcac813f1d24693e18%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1927-05-17,1927-05-17,https://shakespeareandco.princeton.edu/members/bauer-2/,Bauer,Bauer,,,,,,,,200.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1927-05-17,1927-05-17,https://shakespeareandco.princeton.edu/members/heaton-ellis-2/,Lady Heaton-Ellis,"Heaton-Ellis, Lady",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1927-05-17,1927-05-17,https://shakespeareandco.princeton.edu/members/wegg-t/,T. Wegg,"Wegg, T.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-05-18,1927-05-21,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/marriott-one-act-plays-day/,One Act Plays of To-Day,,,,"Unidentified. From the series, One Act Plays of To-Day.",Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2F06%2Fd2%2F2106d277bd754d6dafddd7d2757a5841%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1927-05-18,1927-06-18,https://shakespeareandco.princeton.edu/members/morse-june/,June Morse,"Morse, June",25.00,50.00,1 month,31,1,,1927-05-18,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-05-19,1927-05-21,https://shakespeareandco.princeton.edu/members/rolo/,Jacques Rolo,"Rolo, Jacques",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/sitwell-bucolic-comedies/,Bucolic Comedies,,"Sitwell, Edith",1923,,Lending Library Card,"Sylvia Beach, Jacques Rolo Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6392fdb0-c221-4d3b-8a38-a342aa9aec90/manifest,https://iiif.princeton.edu/loris/figgy_prod/74%2F8c%2F5f%2F748c5fb55abf427087f60af4ab9c211a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1927-05-19,1927-08-19,https://shakespeareandco.princeton.edu/members/konstant/,Mme Antoine Konstant,"Konstant, Mme Antoine",85.00,100.00,3 months,92,2,,1927-05-19,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1927-05-19,1927-05-19,https://shakespeareandco.princeton.edu/members/reynolds-mr/,Mr. Reynolds,"Reynolds, Mr.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1927-05-19,1927-06-19,https://shakespeareandco.princeton.edu/members/pennant/,Mrs. Pennant,"Pennant, Mrs.",25.00,,1 month,31,1,,1927-03-10,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-05-19,1927-05-24,https://shakespeareandco.princeton.edu/members/reynolds-a-m/,Mme A. M. Reynolds,"Reynolds, Mme A. M.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/young-portrait-clare/,Portrait of Clare,,"Young, Francis Brett",1927,,Lending Library Card,"Sylvia Beach, A.M. Reynolds Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3421b1cc-cb37-4310-978c-5c8e08086ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/2c%2F77%2Fcc%2F2c77cce6a00643d3ac3807fa5086962a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-05-19,1927-05-27,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/james-roderick-hudson/,Roderick Hudson,2 vols.,"James, Henry",1875,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/63%2Ff7%2Fe6%2F63f7e6120b6d40ab89dc8af2e5726d7a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-05-19,1927-05-21,https://shakespeareandco.princeton.edu/members/reynolds-a-m/,Mme A. M. Reynolds,"Reynolds, Mme A. M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/dreiser-chains-lesser-novels/,Chains: Lesser Novels and Stories,,"Dreiser, Theodore",1927,,Lending Library Card,"Sylvia Beach, A.M. Reynolds Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3421b1cc-cb37-4310-978c-5c8e08086ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/2c%2F77%2Fcc%2F2c77cce6a00643d3ac3807fa5086962a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1927-05-20,1927-05-20,https://shakespeareandco.princeton.edu/members/osborne/,Mme Osborne,"Osborne, Mme",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-05-21,1927-05-21,https://shakespeareandco.princeton.edu/members/rolo/,Jacques Rolo,"Rolo, Jacques",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/gorky-decadence/,Decadence,,"Gorky, Maxim",1927,,Lending Library Card,"Sylvia Beach, Jacques Rolo Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6392fdb0-c221-4d3b-8a38-a342aa9aec90/manifest,https://iiif.princeton.edu/loris/figgy_prod/74%2F8c%2F5f%2F748c5fb55abf427087f60af4ab9c211a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-05-21,1927-05-21,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/stephens-ladies/,Here Are Ladies,,"Stephens, James",1913,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/76%2F98%2F6f%2F76986faad2d441dcac813f1d24693e18%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-05-21,1927-05-28,https://shakespeareandco.princeton.edu/members/reynolds-a-m/,Mme A. M. Reynolds,"Reynolds, Mme A. M.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/sedgwick-old-countess/,The Old Countess,,"Sedgwick, Anne Douglas",1927,,Lending Library Card,"Sylvia Beach, A.M. Reynolds Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3421b1cc-cb37-4310-978c-5c8e08086ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/2c%2F77%2Fcc%2F2c77cce6a00643d3ac3807fa5086962a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-05-21,1927-05-23,https://shakespeareandco.princeton.edu/members/rolo/,Jacques Rolo,"Rolo, Jacques",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/dos-passos-streets-night/,Streets of Night,,"Dos Passos, John",1923,,Lending Library Card,"Sylvia Beach, Jacques Rolo Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6392fdb0-c221-4d3b-8a38-a342aa9aec90/manifest,https://iiif.princeton.edu/loris/figgy_prod/74%2F8c%2F5f%2F748c5fb55abf427087f60af4ab9c211a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-05-21,1927-06-01,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/hudson-book-naturalist/,The Book of a Naturalist,,"Hudson, W. H.",1919,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2F06%2Fd2%2F2106d277bd754d6dafddd7d2757a5841%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1927-05-22,1927-08-22,https://shakespeareandco.princeton.edu/members/brown-anna-wood/,Anna Wood Brown,"Brown, Anna Wood",60.00,,3 months,92,1,,1927-05-20,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-05-23,1927-05-28,https://shakespeareandco.princeton.edu/members/viele-mary-wharton/,Mary (Wharton) VielΓ© / Mrs. H. K. VielΓ© / Mrs. VielΓ© Griffin,"VielΓ©, Mary",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/stein-three-lives/,Three Lives,,"Stein, Gertrude",1909,,Lending Library Card,"Sylvia Beach, Mary VielΓ© Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e2ab8b31-bc39-4cb6-98d6-467e78ecb3be/manifest,https://iiif.princeton.edu/loris/figgy_prod/69%2F36%2Ffb%2F6936fb4e49724ed5a2beab6c3f7d4c50%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1927-05-23,1927-05-23,https://shakespeareandco.princeton.edu/members/mortimer-1/,Mr. Mortimer,"Mortimer, Mr.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-05-23,1927-05-27,https://shakespeareandco.princeton.edu/members/rolo/,Jacques Rolo,"Rolo, Jacques",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/dowson-poems-ernest-dowson/,The Poems of Ernest Dowson,,"Dowson, Ernest Christopher",1905,,Lending Library Card,"Sylvia Beach, Jacques Rolo Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6392fdb0-c221-4d3b-8a38-a342aa9aec90/manifest,https://iiif.princeton.edu/loris/figgy_prod/74%2F8c%2F5f%2F748c5fb55abf427087f60af4ab9c211a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-05-23,1927-05-28,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/arlen-young-men-love/,Young Men in Love,,"Arlen, Michael",1927,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/eb%2F77%2Fc5%2Feb77c58d7a7645d9b4ccd853a4eb6191%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1927-05-23,1927-06-23,https://shakespeareandco.princeton.edu/members/viele-mary-wharton/,Mary (Wharton) VielΓ© / Mrs. H. K. VielΓ© / Mrs. VielΓ© Griffin,"VielΓ©, Mary",25.00,,1 month,31,1,,1927-05-23,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Mary VielΓ© Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/e2ab8b31-bc39-4cb6-98d6-467e78ecb3be/manifest,;https://iiif.princeton.edu/loris/figgy_prod/69%2F36%2Ffb%2F6936fb4e49724ed5a2beab6c3f7d4c50%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1927-05-23,1927-08-23,https://shakespeareandco.princeton.edu/members/seyd/,Mr. Seyd,"Seyd, Mr.",85.00,,3 months,92,2,,1927-05-16,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Supplement,1927-05-24,1927-09-24,https://shakespeareandco.princeton.edu/members/oppenheimer-e/,E. Oppenheimer,"Oppenheimer, E.",,,4 months,123,1,,1927-05-24,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-05-24,1927-05-28,https://shakespeareandco.princeton.edu/members/reynolds-a-m/,Mme A. M. Reynolds,"Reynolds, Mme A. M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/taylor-one-crystal-mother/,One Crystal and a Mother,,"Taylor, Ellen Du Poise",1927,,Lending Library Card,"Sylvia Beach, A.M. Reynolds Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3421b1cc-cb37-4310-978c-5c8e08086ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/2c%2F77%2Fcc%2F2c77cce6a00643d3ac3807fa5086962a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-05-25,1927-05-27,https://shakespeareandco.princeton.edu/members/rolo/,Jacques Rolo,"Rolo, Jacques",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/ruskin-ethics-dust/,The Ethics of the Dust,,"Ruskin, John",1865,,Lending Library Card,"Sylvia Beach, Jacques Rolo Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6392fdb0-c221-4d3b-8a38-a342aa9aec90/manifest,https://iiif.princeton.edu/loris/figgy_prod/74%2F8c%2F5f%2F748c5fb55abf427087f60af4ab9c211a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-05-25,1927-06-04,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/richardson-revolving-lights-pilgrimage/,Revolving Lights (Pilgrimage 7),,"Richardson, Dorothy M.",1923,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/76%2F98%2F6f%2F76986faad2d441dcac813f1d24693e18%2Fintermediate_file.jp2/full/full/0/default.jpg
+Crossed out,1927-05-25,,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/richardson-pointed-roofs/,Pointed Roofs (Pilgrimage 1),,"Richardson, Dorothy M.",1915,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/76%2F98%2F6f%2F76986faad2d441dcac813f1d24693e18%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-05-27,1927-06-04,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/dickens-tale-two-cities/,A Tale of Two Cities,,"Dickens, Charles",1859,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/63%2Ff7%2Fe6%2F63f7e6120b6d40ab89dc8af2e5726d7a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-05-27,1927-06-02,https://shakespeareandco.princeton.edu/members/rolo/,Jacques Rolo,"Rolo, Jacques",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/frank-dark-mother/,The Dark Mother,,"Frank, Waldo",1920,,Lending Library Card,"Sylvia Beach, Jacques Rolo Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6392fdb0-c221-4d3b-8a38-a342aa9aec90/manifest,https://iiif.princeton.edu/loris/figgy_prod/74%2F8c%2F5f%2F748c5fb55abf427087f60af4ab9c211a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-05-27,1927-06-02,https://shakespeareandco.princeton.edu/members/rolo/,Jacques Rolo,"Rolo, Jacques",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/cabell-beyond-life/,Beyond Life,,"Cabell, James Branch",1919,,Lending Library Card,"Sylvia Beach, Jacques Rolo Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6392fdb0-c221-4d3b-8a38-a342aa9aec90/manifest,https://iiif.princeton.edu/loris/figgy_prod/74%2F8c%2F5f%2F748c5fb55abf427087f60af4ab9c211a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1927-05-27,1927-06-27,https://shakespeareandco.princeton.edu/members/cooke-jane-c/,Jane C. Cooke,"Cooke, Jane C.",35.00,100.00,1 month,31,2,,1927-05-27,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-05-28,1927-06-04,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/thompson-hounds-spring/,The Hounds of Spring,,"Thompson, Sylvia",1926,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/eb%2F77%2Fc5%2Feb77c58d7a7645d9b4ccd853a4eb6191%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1927-05-28,1927-06-28,https://shakespeareandco.princeton.edu/members/ballard/,Harriet Ballard,"Ballard, Harriet",25.00,50.00,1 month,31,1,,1927-05-28,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1927-05-28,1927-05-28,https://shakespeareandco.princeton.edu/members/reynolds-a-m/,Mme A. M. Reynolds,"Reynolds, Mme A. M.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1927-05-28,1927-09-28,https://shakespeareandco.princeton.edu/members/ballinger/,Mrs. H. R. Ballinger,"Ballinger, Mrs. H. R.",85.00,,4 months,123,1,,1927-05-28,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1927-05-28,1927-06-28,https://shakespeareandco.princeton.edu/members/bridges/,Mrs. W. Bridges,"Bridges, Mrs. W.",35.00,100.00,1 month,31,2,,1927-05-28,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-05-28,1927-05-30,https://shakespeareandco.princeton.edu/members/viele-mary-wharton/,Mary (Wharton) VielΓ© / Mrs. H. K. VielΓ© / Mrs. VielΓ© Griffin,"VielΓ©, Mary",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/lewisohn-roman-summer/,Roman Summer,,"Lewisohn, Ludwig",1927,,Lending Library Card,"Sylvia Beach, Mary VielΓ© Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e2ab8b31-bc39-4cb6-98d6-467e78ecb3be/manifest,https://iiif.princeton.edu/loris/figgy_prod/69%2F36%2Ffb%2F6936fb4e49724ed5a2beab6c3f7d4c50%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-05-30,1927-06-04,https://shakespeareandco.princeton.edu/members/viele-mary-wharton/,Mary (Wharton) VielΓ© / Mrs. H. K. VielΓ© / Mrs. VielΓ© Griffin,"VielΓ©, Mary",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/oflaherty-thy-neighbours-wife/,Thy Neighbour's Wife,,"O'Flaherty, Liam",1923,,Lending Library Card,"Sylvia Beach, Mary VielΓ© Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e2ab8b31-bc39-4cb6-98d6-467e78ecb3be/manifest,https://iiif.princeton.edu/loris/figgy_prod/69%2F36%2Ffb%2F6936fb4e49724ed5a2beab6c3f7d4c50%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1927-05-30,1927-05-30,https://shakespeareandco.princeton.edu/members/guenot/,Mlle GuΓ©not,"GuΓ©not, Mlle",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1927-05-30,1927-05-30,https://shakespeareandco.princeton.edu/members/stone/,Miss Stone,"Stone, Miss",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1927-05-30,1927-06-30,https://shakespeareandco.princeton.edu/members/hurlbutt-mary/,Mary Hurlbutt,"Hurlbutt, Mary",25.00,50.00,1 month,31,1,,1927-05-30,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1927-05-31,1927-06-30,https://shakespeareandco.princeton.edu/members/desclos-6/,Desclos,"Desclos, Mlle",20.00,,1 month,30,1,Student,1927-05-31,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-05-31,1927-06-14,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/hodgson-life-james-elroy/,The Life of James Elroy Flecker,,"Hodgson, Geraldine Emma",1925,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/c2%2Ff7%2F29%2Fc2f7296928344566aa900c8c0644c909%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-05-31,,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/ervine-parnell/,Parnell,,"Ervine, St. John G.",1925,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/a4%2F8c%2F7f%2Fa48c7f974df34e81af59231b85679646%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1927-06-01,1927-09-01,https://shakespeareandco.princeton.edu/members/briggs-g-m/,G. M. Briggs,"Briggs, G. M.",85.00,,3 months,92,2,,1927-06-01,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-06-01,1927-06-04,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/maugham-painted-veil/,The Painted Veil,,"Maugham, W. Somerset",1925,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2F06%2Fd2%2F2106d277bd754d6dafddd7d2757a5841%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1927-06-02,1927-06-02,https://shakespeareandco.princeton.edu/members/hirst-m/,M. Hirst,"Hirst, M.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-06-02,1927-06-03,https://shakespeareandco.princeton.edu/members/rindges/,Mrs. M. B. Rindges,"Rindges, Mrs. M. B.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/stephens-ladies/,Here Are Ladies,,"Stephens, James",1913,,Lending Library Card,"Sylvia Beach, M. B. Rindges Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4c02429f-1968-4bcc-93ab-6a0ebb9507b7/manifest,https://iiif.princeton.edu/loris/figgy_prod/6e%2F28%2Ff6%2F6e28f6511d724bbfbcbb46c572751bd6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-06-02,1927-06-23,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/disraeli-sybil-two-nations/,"Sybil: Or, the Two Nations",,"Disraeli, Benjamin",1845,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/54%2Fb9%2F90%2F54b9902d15d24fa0953f0dc338355e2e%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1927-06-02,1927-07-02,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",35.00,50.00,1 month,30,2,,1927-06-04,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,;https://iiif-cloud.princeton.edu/iiif/2/63%2Ff7%2Fe6%2F63f7e6120b6d40ab89dc8af2e5726d7a%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1927-06-02,1927-07-02,https://shakespeareandco.princeton.edu/members/rindges/,Mrs. M. B. Rindges,"Rindges, Mrs. M. B.",25.00,,1 month,30,1,,1927-06-02,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, M. B. Rindges Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/4c02429f-1968-4bcc-93ab-6a0ebb9507b7/manifest,;https://iiif.princeton.edu/loris/figgy_prod/6e%2F28%2Ff6%2F6e28f6511d724bbfbcbb46c572751bd6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1927-06-02,1927-07-02,https://shakespeareandco.princeton.edu/members/bauer-k/,Kath Bauer,"Bauer, Kath",25.00,,1 month,30,1,,1927-06-02,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-06-02,1927-06-05,https://shakespeareandco.princeton.edu/members/rolo/,Jacques Rolo,"Rolo, Jacques",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/yeats-later-poems/,Later Poems,,"Yeats, William Butler",1922,,Lending Library Card,"Sylvia Beach, Jacques Rolo Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6392fdb0-c221-4d3b-8a38-a342aa9aec90/manifest,https://iiif.princeton.edu/loris/figgy_prod/74%2F8c%2F5f%2F748c5fb55abf427087f60af4ab9c211a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-06-03,1927-06-08,https://shakespeareandco.princeton.edu/members/rindges/,Mrs. M. B. Rindges,"Rindges, Mrs. M. B.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/kaye-smith-joanna-godden/,Joanna Godden,,"Kaye-Smith, Sheila",1921,,Lending Library Card,"Sylvia Beach, M. B. Rindges Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4c02429f-1968-4bcc-93ab-6a0ebb9507b7/manifest,https://iiif.princeton.edu/loris/figgy_prod/6e%2F28%2Ff6%2F6e28f6511d724bbfbcbb46c572751bd6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-06-04,1927-06-13,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/sabatini-fortunes-fool/,Fortune's Fool,,"Sabatini, Rafael",1923,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/63%2Ff7%2Fe6%2F63f7e6120b6d40ab89dc8af2e5726d7a%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1927-06-04,1928-06-04,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",144.00,,1 year,366,1,,1927-01-26,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-06-04,1927-06-09,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/mckenna-secretary-state/,The Secretary of State,,"McKenna, Stephen",1927,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2Fce%2F48%2F50ce48455c1948d7bb7d3a7a46fd437b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1927-06-04,1927-07-04,https://shakespeareandco.princeton.edu/members/denis-graterolle/,Elisabeth Denis-Graterolle / Mme Maurice Denis,"Denis-Graterolle, Elisabeth",25.00,,1 month,30,1,,1927-06-04,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-06-04,1927-06-13,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/cellini-life-benvenuto-cellini/,The Life of Benvenuto Cellini,,"Cellini, Benvenuto",1906,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/63%2Ff7%2Fe6%2F63f7e6120b6d40ab89dc8af2e5726d7a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-06-04,1927-06-08,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/van-vechten-merry-go-round/,The Merry-Go-Round,,"Van Vechten, Carl",1918,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2F06%2Fd2%2F2106d277bd754d6dafddd7d2757a5841%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1927-06-04,1927-06-04,https://shakespeareandco.princeton.edu/members/mcalmon-robert/,Robert McAlmon,"McAlmon, Robert",,,,,,,,,,,6.50,FRF,https://shakespeareandco.princeton.edu/books/monroe-poetry/,Poetry,,,,,Lending Library Card,"Sylvia Beach, Robert McAlmon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/889ff3f8-b62c-42f6-8e88-1dd95434b2f5/manifest,https://iiif-cloud.princeton.edu/iiif/2/f9%2Fd2%2F1a%2Ff9d21aff41154755aa10b62eeeec7846%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1927-06-04,1927-06-04,https://shakespeareandco.princeton.edu/members/josephson-m/,Mrs. M. Josephson,"Josephson, Mrs. M.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-06-04,1927-06-13,https://shakespeareandco.princeton.edu/members/viele-mary-wharton/,Mary (Wharton) VielΓ© / Mrs. H. K. VielΓ© / Mrs. VielΓ© Griffin,"VielΓ©, Mary",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/woolf-lighthouse/,To the Lighthouse,,"Woolf, Virginia",1927,,Lending Library Card,"Sylvia Beach, Mary VielΓ© Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e2ab8b31-bc39-4cb6-98d6-467e78ecb3be/manifest,https://iiif.princeton.edu/loris/figgy_prod/69%2F36%2Ffb%2F6936fb4e49724ed5a2beab6c3f7d4c50%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-06-04,1927-06-07,https://shakespeareandco.princeton.edu/members/rolo/,Jacques Rolo,"Rolo, Jacques",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/swinburne-swinburne-collected-poems/,Swinburne's Collected Poems,Vol. 2,"Swinburne, Algernon Charles",,A. Rolo borrowed volume 2 of an unspecified edition.,Lending Library Card,"Sylvia Beach, Jacques Rolo Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6392fdb0-c221-4d3b-8a38-a342aa9aec90/manifest,https://iiif.princeton.edu/loris/figgy_prod/74%2F8c%2F5f%2F748c5fb55abf427087f60af4ab9c211a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-06-04,1927-06-15,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/dreiser-sister-carrie/,Sister Carrie,,"Dreiser, Theodore",1900,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/76%2F98%2F6f%2F76986faad2d441dcac813f1d24693e18%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1927-06-07,1927-06-07,https://shakespeareandco.princeton.edu/members/du-bos/,Charles Du Bos,"Du Bos, Charles",,,,,,,,,,,18.00,FRF,https://shakespeareandco.princeton.edu/books/murry-adelphi/,The Adelphi,"Vol. 4, no. 12, Jun 1927",,,,Lending Library Card,"Sylvia Beach, Charles Du Bos Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1f0465a4-aae1-4922-9398-dc3d8312fda9/manifest,https://iiif.princeton.edu/loris/figgy_prod/b6%2Fff%2F1b%2Fb6ff1b678a67443997383556c64e8edb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1927-06-07,1927-06-07,https://shakespeareandco.princeton.edu/members/rollo/,Mr. Rollo,"Rollo, Mr.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Purchase,1927-06-07,1927-06-07,https://shakespeareandco.princeton.edu/members/du-bos/,Charles Du Bos,"Du Bos, Charles",,,,,,,,,,,53.00,FRF,https://shakespeareandco.princeton.edu/books/eliot-poems/,Poems,,"Eliot, T. S.",,"Unidentified edition or editions. Monique de Vigan borrowed Eliot's *Poems, 1909 β 1925* (1925).",Lending Library Card,"Sylvia Beach, Charles Du Bos Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1f0465a4-aae1-4922-9398-dc3d8312fda9/manifest,https://iiif.princeton.edu/loris/figgy_prod/b6%2Fff%2F1b%2Fb6ff1b678a67443997383556c64e8edb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1927-06-07,1927-06-07,https://shakespeareandco.princeton.edu/members/du-bos/,Charles Du Bos,"Du Bos, Charles",,,,,,,,,,,53.00,FRF,https://shakespeareandco.princeton.edu/books/criterion/,The Criterion,"Vol. 4, no. 3, Jun 1926 The New Criterion",,,"Renamed *The New Criterion* from January 1926 to January 1927, and *The Monthly Criterion* from May 1927 to March 1928.",Lending Library Card,"Sylvia Beach, Charles Du Bos Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1f0465a4-aae1-4922-9398-dc3d8312fda9/manifest,https://iiif.princeton.edu/loris/figgy_prod/b6%2Fff%2F1b%2Fb6ff1b678a67443997383556c64e8edb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1927-06-07,1927-06-07,https://shakespeareandco.princeton.edu/members/du-bos/,Charles Du Bos,"Du Bos, Charles",,,,,,,,,,,53.00,FRF,https://shakespeareandco.princeton.edu/books/criterion/,The Criterion,"Vol. 5, no. 3, Jun 1927 The Monthly Criterion",,,"Renamed *The New Criterion* from January 1926 to January 1927, and *The Monthly Criterion* from May 1927 to March 1928.",Lending Library Card,"Sylvia Beach, Charles Du Bos Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1f0465a4-aae1-4922-9398-dc3d8312fda9/manifest,https://iiif.princeton.edu/loris/figgy_prod/b6%2Fff%2F1b%2Fb6ff1b678a67443997383556c64e8edb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1927-06-07,1927-12-07,https://shakespeareandco.princeton.edu/members/hervey-mr/;https://shakespeareandco.princeton.edu/members/hervey-2/,Mr. Hervey;Mrs. Hervey,"Hervey, Mr.;Hervey, Mrs.",300.00,,6 months,183,4,,1927-06-07,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1927-06-07,1927-06-07,https://shakespeareandco.princeton.edu/members/stokes/,M. Stokes,"Stokes, M.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1927-06-08,1927-06-08,https://shakespeareandco.princeton.edu/members/kemp-j/,J. Kemp,"Kemp, J.",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-06-08,1927-06-11,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/frank-rahab/,Rahab,,"Frank, Waldo",1922,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2F06%2Fd2%2F2106d277bd754d6dafddd7d2757a5841%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1927-06-08,1927-06-08,https://shakespeareandco.princeton.edu/members/goutet-andre/,AndrΓ© Goutet,"Goutet, AndrΓ©",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-06-08,1927-06-14,https://shakespeareandco.princeton.edu/members/rindges/,Mrs. M. B. Rindges,"Rindges, Mrs. M. B.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/keyserling-world-making/,The World in the Making,,"Keyserling, Hermann von",1926,,Lending Library Card,"Sylvia Beach, M. B. Rindges Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4c02429f-1968-4bcc-93ab-6a0ebb9507b7/manifest,https://iiif.princeton.edu/loris/figgy_prod/6e%2F28%2Ff6%2F6e28f6511d724bbfbcbb46c572751bd6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-06-09,1927-06-11,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/sinclair-allinghams/,The Allinghams,,"Sinclair, May",1927,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2Fce%2F48%2F50ce48455c1948d7bb7d3a7a46fd437b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1927-06-09,1927-06-09,https://shakespeareandco.princeton.edu/members/noxon/;https://shakespeareandco.princeton.edu/members/noxon-mr/,Mme Noxon;Mr. Noxon,"Noxon, Mme;Noxon, Mr.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1927-06-10,,https://shakespeareandco.princeton.edu/members/jones-v-m/,V. M. Jones,"Jones, V. M.",,,,,,,1927-06-10,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1927-06-11,1927-06-11,https://shakespeareandco.princeton.edu/members/morse-june/,June Morse,"Morse, June",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-06-11,1927-06-17,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/benson-goodbye-stranger/,"Goodbye, Stranger",,"Benson, Stella",1926,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2Fce%2F48%2F50ce48455c1948d7bb7d3a7a46fd437b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-06-11,1927-06-13,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/lardner-story-wonder-man/,The Story of a Wonder Man: Being the Autobiography of Ring Lardner,,"Lardner, Ring",1927,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2F6e%2Fea%2F256eeabe8a054470a7abd5bdd9d57873%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-06-11,1927-06-18,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/mansfield-something-childish-stories/,Something Childish and Other Stories,,"Mansfield, Katherine",1924,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2F06%2Fd2%2F2106d277bd754d6dafddd7d2757a5841%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-06-11,,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/jolas-transition/,transition,,,,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2F6e%2Fea%2F256eeabe8a054470a7abd5bdd9d57873%2Fintermediate_file/full/full/0/default.jpg
+Crossed out,1927-06-11,,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/hemingway-sun-also-rises/,The Sun Also Rises,,"Hemingway, Ernest",1926,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2F6e%2Fea%2F256eeabe8a054470a7abd5bdd9d57873%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1927-06-11,1927-06-11,https://shakespeareandco.princeton.edu/members/manson/,Mrs. V. S. Manson,"Manson, Mrs. V. S.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-06-13,1927-06-18,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/sabatini-bardelys-magnificent/,Bardelys the Magnificent,,"Sabatini, Rafael",1906,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/63%2Ff7%2Fe6%2F63f7e6120b6d40ab89dc8af2e5726d7a%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1927-06-13,1927-09-13,https://shakespeareandco.princeton.edu/members/hanson/,Mrs. James Hanson,"Hanson, Mrs. James",85.00,,3 months,92,2,,1927-06-13,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1927-06-13,1927-06-13,https://shakespeareandco.princeton.edu/members/paul-dubois/,Louis Paul-Dubois,"Paul-Dubois, Louis",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-06-13,1927-06-20,https://shakespeareandco.princeton.edu/members/viele-mary-wharton/,Mary (Wharton) VielΓ© / Mrs. H. K. VielΓ© / Mrs. VielΓ© Griffin,"VielΓ©, Mary",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/lewis-elmer-gantry/,Elmer Gantry,,"Lewis, Sinclair",1927,,Lending Library Card,"Sylvia Beach, Mary VielΓ© Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e2ab8b31-bc39-4cb6-98d6-467e78ecb3be/manifest,https://iiif.princeton.edu/loris/figgy_prod/69%2F36%2Ffb%2F6936fb4e49724ed5a2beab6c3f7d4c50%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-06-13,1927-06-23,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/melville-white-jacket/,White-Jacket,,"Melville, Herman",1850,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/63%2Ff7%2Fe6%2F63f7e6120b6d40ab89dc8af2e5726d7a%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1927-06-14,1927-12-14,https://shakespeareandco.princeton.edu/members/kahn-l/,Mrs. L. Kahn,"Kahn, Mrs. L.",80.00,50.00,6 months,183,1,,1927-06-14,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-06-14,1927-06-20,https://shakespeareandco.princeton.edu/members/rindges/,Mrs. M. B. Rindges,"Rindges, Mrs. M. B.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/walpole-harmer-john-unworldly/,Harmer John: An Unworldly Story,,"Walpole, Hugh",1926,,Lending Library Card,"Sylvia Beach, M. B. Rindges Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4c02429f-1968-4bcc-93ab-6a0ebb9507b7/manifest,https://iiif.princeton.edu/loris/figgy_prod/6e%2F28%2Ff6%2F6e28f6511d724bbfbcbb46c572751bd6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-06-14,1927-06-21,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/chesterton-napoleon-notting-hill/,The Napoleon of Notting Hill,,"Chesterton, G. K.",1904,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/c2%2Ff7%2F29%2Fc2f7296928344566aa900c8c0644c909%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-06-15,,https://shakespeareandco.princeton.edu/members/pfeiffer-virginia/,Virginia Pfeiffer,"Pfeiffer, Virginia",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/adams-mont-saint-michel/,Mont-Saint-Michel and Chartres,,"Adams, Henry",1904,,Lending Library Card,"Sylvia Beach, Virginia Pfeiffer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5f9e74fc-c06a-4c36-a2d1-878b8fce2cd2/manifest,https://iiif.princeton.edu/loris/figgy_prod/6f%2F67%2Fe2%2F6f67e29939464801800978b3b657885b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1927-06-15,1927-12-15,https://shakespeareandco.princeton.edu/members/pfeiffer-virginia/,Virginia Pfeiffer,"Pfeiffer, Virginia",80.00,,6 months,183,1,,1927-06-15,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Virginia Pfeiffer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/5f9e74fc-c06a-4c36-a2d1-878b8fce2cd2/manifest,;https://iiif.princeton.edu/loris/figgy_prod/6f%2F67%2Fe2%2F6f67e29939464801800978b3b657885b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1927-06-15,1927-07-15,https://shakespeareandco.princeton.edu/members/dunn-clara/,Clara Dunn,"Dunn, Clara",35.00,100.00,1 month,30,2,,1927-06-15,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-06-15,1927-06-23,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/huxley-barren-leaves/,Those Barren Leaves,,"Huxley, Aldous",1925,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/76%2F98%2F6f%2F76986faad2d441dcac813f1d24693e18%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1927-06-16,1927-06-16,https://shakespeareandco.princeton.edu/members/mason-3/,Mr. Mason,"Mason, Mr.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1927-06-16,1927-06-16,https://shakespeareandco.princeton.edu/members/laufman/,Laufman,Laufman,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1927-06-16,1927-06-16,https://shakespeareandco.princeton.edu/members/engelhard/,Mrs. E. D. Engelhard,"Engelhard, Mrs. E. D.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1927-06-17,1927-06-17,https://shakespeareandco.princeton.edu/members/glackens-ira/,Ira Glackens / I. D. Glackens,"Glackens, Ira",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1927-06-17,1927-07-17,https://shakespeareandco.princeton.edu/members/monnier-dr/,Dr. Monnier,"Monnier, Dr.",35.00,,1 month,30,2,,1927-06-17,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-06-17,1927-06-22,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/wilson-painted-room/,The Painted Room,,"Wilson, Margaret",1926,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2Fce%2F48%2F50ce48455c1948d7bb7d3a7a46fd437b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-06-18,1927-06-23,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/james-tragic-muse/,The Tragic Muse,2 vols.,"James, Henry",1890,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/63%2Ff7%2Fe6%2F63f7e6120b6d40ab89dc8af2e5726d7a%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1927-06-18,1927-07-18,https://shakespeareandco.princeton.edu/members/mowschine-a/,A. Mowschine,"Mowschine, A.",20.00,50.00,1 month,30,1,,1927-06-18,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-06-18,1927-06-25,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/macaulay-prophetic-comedy/,What Not: A Prophetic Comedy,,"Macaulay, Rose",1918,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2F06%2Fd2%2F2106d277bd754d6dafddd7d2757a5841%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1927-06-19,1927-07-19,https://shakespeareandco.princeton.edu/members/pennant/,Mrs. Pennant,"Pennant, Mrs.",35.00,,1 month,30,2,,1927-05-21,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-06-20,1927-06-25,https://shakespeareandco.princeton.edu/members/rindges/,Mrs. M. B. Rindges,"Rindges, Mrs. M. B.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/meier-graefe-spanish-journey/,The Spanish Journey,,"Meier-Graefe, Julius",1926,,Lending Library Card,"Sylvia Beach, M. B. Rindges Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4c02429f-1968-4bcc-93ab-6a0ebb9507b7/manifest,https://iiif.princeton.edu/loris/figgy_prod/6e%2F28%2Ff6%2F6e28f6511d724bbfbcbb46c572751bd6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-06-20,1927-06-27,https://shakespeareandco.princeton.edu/members/viele-mary-wharton/,Mary (Wharton) VielΓ© / Mrs. H. K. VielΓ© / Mrs. VielΓ© Griffin,"VielΓ©, Mary",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/meyerstein-pleasure-lover/,The Pleasure Lover,,"Meyerstein, Edward Harry William",1925,,Lending Library Card,"Sylvia Beach, Mary VielΓ© Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e2ab8b31-bc39-4cb6-98d6-467e78ecb3be/manifest,https://iiif.princeton.edu/loris/figgy_prod/69%2F36%2Ffb%2F6936fb4e49724ed5a2beab6c3f7d4c50%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1927-06-21,1927-07-05,https://shakespeareandco.princeton.edu/members/hopping/,Mrs. J. H. Hopping,"Hopping, Mrs. J. H.",12.50,,2 weeks,14,,,1927-06-20,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1927-06-21,1927-09-21,https://shakespeareandco.princeton.edu/members/miller-irene/,Irene Miller,"Miller, Irene",85.00,100.00,3 months,92,2,,1927-06-21,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-06-21,1927-06-28,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/macaulay-orphan-island/,Orphan Island,,"Macaulay, Rose",1924,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/c2%2Ff7%2F29%2Fc2f7296928344566aa900c8c0644c909%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1927-06-22,1927-06-22,https://shakespeareandco.princeton.edu/members/lawrie/,Mrs. Lawrie,"Lawrie, Mrs.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-06-22,1927-06-29,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/adams-revelry/,Revelry,,"Adams, Samuel Hopkins",1926,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2Fce%2F48%2F50ce48455c1948d7bb7d3a7a46fd437b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-06-22,1927-07-07,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/criterion/,The Criterion,"Vol. 5, no. 1, Jan 1927 The New Criterion",,,"Renamed *The New Criterion* from January 1926 to January 1927, and *The Monthly Criterion* from May 1927 to March 1928.",Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/54%2Fb9%2F90%2F54b9902d15d24fa0953f0dc338355e2e%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1927-06-22,1927-07-22,https://shakespeareandco.princeton.edu/members/haverstick/,G. Haverstick,"Haverstick, G.",25.00,50.00,1 month,30,1,,1927-06-22,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1927-06-22,1927-07-22,https://shakespeareandco.princeton.edu/members/jeankelevitch-valentine/,Valentine Jeankelevitch,"Jeankelevitch, Valentine",25.00,50.00,1 month,30,1,,1927-06-22,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-06-23,1927-07-01,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/huxley-along-road-notes/,Along the Road: Notes and Essays of a Tourist,,"Huxley, Aldous",1925,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/76%2F98%2F6f%2F76986faad2d441dcac813f1d24693e18%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-06-23,1927-06-25,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/james-author-beltraffio/,The Author of Beltraffio,,"James, Henry",1884,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/11%2F9e%2Fb5%2F119eb5cdc3064bfe88e4bd36df632963%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-06-23,1927-07-15,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/james-lesson-master/,The Lesson of the Master,,"James, Henry",1888,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/11%2F9e%2Fb5%2F119eb5cdc3064bfe88e4bd36df632963%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1927-06-23,1927-07-23,https://shakespeareandco.princeton.edu/members/doty-a-s-g/,A. S. G. Doty,"Doty, A. S. G.",35.00,100.00,1 month,30,2,,1927-06-23,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1927-06-23,1927-06-23,https://shakespeareandco.princeton.edu/members/talbert/,Mr. Talbert,"Talbert, Mr.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1927-06-24,1927-06-24,https://shakespeareandco.princeton.edu/members/smith-w-h/,W. H. Smith,"Smith, W. H.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1927-06-24,1927-09-24,https://shakespeareandco.princeton.edu/members/davies-6/,Mrs. G. Davies,"Davies, Mrs. G.",85.00,100.00,3 months,92,2,,1927-06-23,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-06-25,1927-07-02,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/james-wings-dove/,The Wings of the Dove,2 vols.,"James, Henry",1902,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/11%2F9e%2Fb5%2F119eb5cdc3064bfe88e4bd36df632963%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1927-06-25,1927-06-25,https://shakespeareandco.princeton.edu/members/rindges/,Mrs. M. B. Rindges,"Rindges, Mrs. M. B.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1927-06-25,1927-06-25,https://shakespeareandco.princeton.edu/members/cooke-jane-c/,Jane C. Cooke,"Cooke, Jane C.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-06-25,1927-06-29,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/lowndes-lodger/,The Lodger,,"Lowndes, Marie Belloc",1913,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2F06%2Fd2%2F2106d277bd754d6dafddd7d2757a5841%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1927-06-27,1927-07-08,https://shakespeareandco.princeton.edu/members/viele-mary-wharton/,Mary (Wharton) VielΓ© / Mrs. H. K. VielΓ© / Mrs. VielΓ© Griffin,"VielΓ©, Mary",12.50,,11 days,11,1,,1927-06-27,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Mary VielΓ© Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/e2ab8b31-bc39-4cb6-98d6-467e78ecb3be/manifest,;https://iiif.princeton.edu/loris/figgy_prod/69%2F36%2Ffb%2F6936fb4e49724ed5a2beab6c3f7d4c50%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1927-06-27,1927-06-27,https://shakespeareandco.princeton.edu/members/martin-maud/,Maud Martin,"Martin, Maud",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-06-27,1927-06-29,https://shakespeareandco.princeton.edu/members/viele-mary-wharton/,Mary (Wharton) VielΓ© / Mrs. H. K. VielΓ© / Mrs. VielΓ© Griffin,"VielΓ©, Mary",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/hecht-count-bruga/,Count Bruga,,"Hecht, Ben",1926,,Lending Library Card,"Sylvia Beach, Mary VielΓ© Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e2ab8b31-bc39-4cb6-98d6-467e78ecb3be/manifest,https://iiif.princeton.edu/loris/figgy_prod/69%2F36%2Ffb%2F6936fb4e49724ed5a2beab6c3f7d4c50%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-06-28,1927-09-26,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,90,,,https://shakespeareandco.princeton.edu/books/jesperson-language-nature-development/,"Language: Its Nature, Development, and Origin",,"Jesperson, Otto",1922,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/c2%2Ff7%2F29%2Fc2f7296928344566aa900c8c0644c909%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-06-29,1927-07-11,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/carnevali-hurried-man/,A Hurried Man,,"Carnevali, Emanuel",1925,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2F06%2Fd2%2F2106d277bd754d6dafddd7d2757a5841%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-06-29,1927-07-05,https://shakespeareandco.princeton.edu/members/viele-mary-wharton/,Mary (Wharton) VielΓ© / Mrs. H. K. VielΓ© / Mrs. VielΓ© Griffin,"VielΓ©, Mary",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/gerhardie-polyglots/,The Polyglots: A Novel,,"Gerhardie, William Alexander",1925,,Lending Library Card,"Sylvia Beach, Mary VielΓ© Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e2ab8b31-bc39-4cb6-98d6-467e78ecb3be/manifest,https://iiif.princeton.edu/loris/figgy_prod/69%2F36%2Ffb%2F6936fb4e49724ed5a2beab6c3f7d4c50%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-06-29,1927-07-05,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/maurice-stars/,Not in Our Stars,,"Maurice, Michael",1923,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2Fce%2F48%2F50ce48455c1948d7bb7d3a7a46fd437b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-06-29,1927-07-05,https://shakespeareandco.princeton.edu/members/viele-mary-wharton/,Mary (Wharton) VielΓ© / Mrs. H. K. VielΓ© / Mrs. VielΓ© Griffin,"VielΓ©, Mary",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/macaulay-prophetic-comedy/,What Not: A Prophetic Comedy,,"Macaulay, Rose",1918,,Lending Library Card,"Sylvia Beach, Mary VielΓ© Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e2ab8b31-bc39-4cb6-98d6-467e78ecb3be/manifest,https://iiif.princeton.edu/loris/figgy_prod/69%2F36%2Ffb%2F6936fb4e49724ed5a2beab6c3f7d4c50%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1927-06-29,1927-06-29,https://shakespeareandco.princeton.edu/members/hilton-miss-v/,V. Hilton,"Hilton, V.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1927-06-29,1927-06-29,https://shakespeareandco.princeton.edu/members/platt-mr/,Mr. Platt,"Platt, Mr.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1927-06-30,1927-06-30,https://shakespeareandco.princeton.edu/members/williere/,Mrs. Williere,"Williere, Mrs.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1927-06-30,1927-06-30,https://shakespeareandco.princeton.edu/members/robillot-mr/,Mr. Robillot,"Robillot, Mr.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-06-30,1927-07-23,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/lewis-elmer-gantry/,Elmer Gantry,,"Lewis, Sinclair",1927,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/4b%2Fa3%2F65%2F4ba365cea0974f05a43fd7f77ce258e9%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1927-06-30,1927-09-30,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",48.00,,3 months,92,1,,1927-06-30,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,;https://iiif-cloud.princeton.edu/iiif/2/13%2F65%2Fc3%2F1365c304fdb84e4ba63ac2e5f4f5a3be%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1927-06-30,1927-06-30,https://shakespeareandco.princeton.edu/members/bridges/,Mrs. W. Bridges,"Bridges, Mrs. W.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-07-01,1927-07-11,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/simpson-study-prose-works/,A Study of the Prose Works of John Donne,,"Simpson, Evelyn Mary Spearing",1924,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/76%2F98%2F6f%2F76986faad2d441dcac813f1d24693e18%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1927-07-02,1927-08-02,https://shakespeareandco.princeton.edu/members/destaing/,Mme d'Estaing,"d'Estaing, Mme",35.00,100.00,1 month,31,2,,1927-07-02,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1927-07-02,1927-07-02,https://shakespeareandco.princeton.edu/members/grover-dm/,D. M. Grover,"Grover, D. M.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-07-02,1927-07-15,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/stendhal-red-black/,The Red and the Black,2 vols.,Stendhal,1926,"At least two editions of *The Red and the Black* circulated in the lending library. Richard Le Gallienne, Catherine Yarrow, and Henry W. Wibbelz borrowed *The Red and the Black* (New York: Modern Library, 1926); and Robert McAlmon and John d'Arcy Clark borrowed *The Scarlet and the Black* (London: Chatto & Windus, 1927).",Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/11%2F9e%2Fb5%2F119eb5cdc3064bfe88e4bd36df632963%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1927-07-02,1927-08-02,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",35.00,,1 month,31,2,,1927-07-15,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,;https://iiif-cloud.princeton.edu/iiif/2/11%2F9e%2Fb5%2F119eb5cdc3064bfe88e4bd36df632963%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1927-07-02,1927-08-02,https://shakespeareandco.princeton.edu/members/dumat/,Mme L. Dumat,"Dumat, Mme L.",25.00,50.00,1 month,31,1,,1927-07-02,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1927-07-02,1927-08-02,https://shakespeareandco.princeton.edu/members/hard-william/,William Hard,"Hard, William",25.00,50.00,1 month,31,1,,1927-07-02,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-07-04,1927-09-21,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,79,,,https://shakespeareandco.princeton.edu/books/anderson-triumph-egg/,The Triumph of the Egg,,"Anderson, Sherwood",1921,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/dc%2F94%2Ffd%2Fdc94fda0cd9c4ae195f988f5a500f00f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1927-07-04,1927-08-04,https://shakespeareandco.princeton.edu/members/fichet-4/,Mme Fichet,"Fichet, Mme",20.00,50.00,1 month,31,1,,1927-07-04,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Purchase,1927-07-04,1927-07-04,https://shakespeareandco.princeton.edu/members/mcalmon-robert/,Robert McAlmon,"McAlmon, Robert",,,,,,,,,,,5.00,FRF,https://shakespeareandco.princeton.edu/books/macpherson-close/,Close Up,,,,,Lending Library Card,"Sylvia Beach, Robert McAlmon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/889ff3f8-b62c-42f6-8e88-1dd95434b2f5/manifest,https://iiif-cloud.princeton.edu/iiif/2/f9%2Fd2%2F1a%2Ff9d21aff41154755aa10b62eeeec7846%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1927-07-04,1927-08-04,https://shakespeareandco.princeton.edu/members/denis-graterolle/,Elisabeth Denis-Graterolle / Mme Maurice Denis,"Denis-Graterolle, Elisabeth",25.00,,1 month,31,2,,1927-07-02,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,,1927-07-04,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/lewisohn-stream-american-chronicle/,Up Stream: An American Chronicle,,"Lewisohn, Ludwig",1922,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/dc%2F94%2Ffd%2Fdc94fda0cd9c4ae195f988f5a500f00f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1927-07-05,1927-07-05,https://shakespeareandco.princeton.edu/members/mowschine-a/,A. Mowschine,"Mowschine, A.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-07-05,1927-07-09,https://shakespeareandco.princeton.edu/members/viele-mary-wharton/,Mary (Wharton) VielΓ© / Mrs. H. K. VielΓ© / Mrs. VielΓ© Griffin,"VielΓ©, Mary",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/feuchtwanger-jew-suss/,Jew SΓΌss,,"Feuchtwanger, Lion",1926,,Lending Library Card,"Sylvia Beach, Mary VielΓ© Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e2ab8b31-bc39-4cb6-98d6-467e78ecb3be/manifest,https://iiif.princeton.edu/loris/figgy_prod/69%2F36%2Ffb%2F6936fb4e49724ed5a2beab6c3f7d4c50%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-07-05,1927-07-08,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/sidgwick-london-mixture/,London Mixture,,"Sidgwick, Cecily",1924,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2Fce%2F48%2F50ce48455c1948d7bb7d3a7a46fd437b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1927-07-05,1928-07-05,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",144.00,,1 year,366,1,,1927-07-20,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,;https://iiif-cloud.princeton.edu/iiif/2/66%2Fef%2F35%2F66ef35619855464ba39b7e9e4d35b657%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1927-07-05,1927-07-05,https://shakespeareandco.princeton.edu/members/fortescue/,Mrs. Charles Fortescue,"Fortescue, Mrs. Charles",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1927-07-05,1928-07-05,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",144.00,,1 year,366,1,,1927-06-28,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,;https://iiif.princeton.edu/loris/figgy_prod/c2%2Ff7%2F29%2Fc2f7296928344566aa900c8c0644c909%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1927-07-06,1927-07-06,https://shakespeareandco.princeton.edu/members/hard-william/,William Hard,"Hard, William",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1927-07-07,1927-07-07,https://shakespeareandco.princeton.edu/members/levy-julien/,Julien Levy / Julian Levy,"Levy, Julien",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-07-07,1927-07-10,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/loos-gentlemen-prefer-blondes/,Gentlemen Prefer Blondes: The Illuminating Diary of a Professional Lady,,"Loos, Anita",1925,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/af%2Fcd%2F4b%2Fafcd4b7698644be4ad8edf82445910ee%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-07-07,1927-08-25,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,49,,,https://shakespeareandco.princeton.edu/books/lewis-main-street-story/,Main Street: The Story of Carol Kennicott,,"Lewis, Sinclair",1920,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/54%2Fb9%2F90%2F54b9902d15d24fa0953f0dc338355e2e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-07-08,1927-07-15,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/austen-persuasion/,Persuasion,,"Austen, Jane",1817,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2Fce%2F48%2F50ce48455c1948d7bb7d3a7a46fd437b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1927-07-08,1927-07-23,https://shakespeareandco.princeton.edu/members/dutton/,G. B. Dutton,"Dutton, G. B.",14.00,,15 days,15,2,,1927-07-08,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1927-07-08,1927-07-08,https://shakespeareandco.princeton.edu/members/unnamed-member-15/,[unnamed member],[unnamed member],,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1927-07-09,1927-07-09,https://shakespeareandco.princeton.edu/members/viele-mary-wharton/,Mary (Wharton) VielΓ© / Mrs. H. K. VielΓ© / Mrs. VielΓ© Griffin,"VielΓ©, Mary",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1927-07-09,1927-07-09,https://shakespeareandco.princeton.edu/members/allard/,Mlle Allard / Alard,"Allard, Mlle",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1927-07-11,1927-08-11,https://shakespeareandco.princeton.edu/members/damon/,Priscilla Damon,"Damon, Priscilla",25.00,50.00,1 month,31,1,,1927-07-11,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-07-11,1927-07-21,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/hudson-little-boy-lost/,A Little Boy Lost,,"Hudson, W. H.",1905,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2F06%2Fd2%2F2106d277bd754d6dafddd7d2757a5841%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-07-13,1927-07-30,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/maugham-liza-lambeth/,Liza of Lambeth,,"Maugham, W. Somerset",1897,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/5d%2F94%2F00%2F5d9400637a2e4682a81940685b942a72%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1927-07-15,1927-07-15,https://shakespeareandco.princeton.edu/members/dutton/,G. B. Dutton,"Dutton, G. B.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1927-07-15,1927-07-15,https://shakespeareandco.princeton.edu/members/levis-mirepoix/,M. de LΓ©vis-Mirepoix,"LΓ©vis-Mirepoix, M. de",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1927-07-15,1928-01-15,https://shakespeareandco.princeton.edu/members/chareau-dollie/,DorothΓ©e (Dollie) Chareau / Mme Pierre Chareau,"Chareau, Dollie",120.00,,6 months,184,1,,1927-07-15,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-07-15,1927-08-05,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/smollett-adventures-ferdinand-count/,The Adventures of Ferdinand Count Fathom,,"Smollett, Tobias",1753,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/11%2F9e%2Fb5%2F119eb5cdc3064bfe88e4bd36df632963%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-07-15,1927-08-06,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/conrad-shadow-line-confession/,The Shadow Line: A Confession,,"Conrad, Joseph",1917,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/11%2F9e%2Fb5%2F119eb5cdc3064bfe88e4bd36df632963%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-07-15,1927-07-19,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/mckenna-due-reckoning-third/,Due Reckoning: Being the Third and Last Part of the Realists,,"McKenna, Stephen",1927,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2Fce%2F48%2F50ce48455c1948d7bb7d3a7a46fd437b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1927-07-16,1927-08-16,https://shakespeareandco.princeton.edu/members/keun-odette/,Odette Keun,"Keun, Odette",35.00,100.00,1 month,31,2,,1927-07-16,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-07-18,1927-07-25,https://shakespeareandco.princeton.edu/members/rieder/,M. Rieder,"Rieder, M.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/dickens-oliver-twist/,Oliver Twist,,"Dickens, Charles",1837,,Lending Library Card,"Sylvia Beach, Rieder Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/559c8919-8881-40ad-b027-67dbf1b23611/manifest,https://iiif.princeton.edu/loris/figgy_prod/e8%2F10%2F7c%2Fe8107c2c950f411d8ceeb6bb8bdc01c7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1927-07-18,1927-07-18,https://shakespeareandco.princeton.edu/members/vinal/,Mrs. Vinal,"Vinal, Mrs.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1927-07-19,1927-08-02,https://shakespeareandco.princeton.edu/members/pennant/,Mrs. Pennant,"Pennant, Mrs.",17.50,,2 weeks,14,2,,1927-06-27,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-07-19,1927-07-28,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/lewis-elmer-gantry/,Elmer Gantry,,"Lewis, Sinclair",1927,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2Fce%2F48%2F50ce48455c1948d7bb7d3a7a46fd437b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1927-07-20,1927-07-20,https://shakespeareandco.princeton.edu/members/moffet-anne/,Anne Moffet,"Moffet, Anne",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-07-20,1927-07-23,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/hemingway-time/,In Our Time,,"Hemingway, Ernest",,Unidentified edition. Either Hemingway's *in our time* (1924) or *In Our Time* (1925).,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/66%2Fef%2F35%2F66ef35619855464ba39b7e9e4d35b657%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-07-21,1927-07-23,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/harris-undreamd-shores/,Undream'd of Shores,,"Harris, Frank",1924,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2F06%2Fd2%2F2106d277bd754d6dafddd7d2757a5841%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1927-07-21,1927-08-21,https://shakespeareandco.princeton.edu/members/jergenoff-f-p-1/,F. P. Jergenoff / Mr. Jewgenoff,"Jergenoff, F. P.",20.00,50.00,1 month,31,1,,1927-07-21,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1927-07-22,1927-08-22,https://shakespeareandco.princeton.edu/members/de-ring-1/,Mme de Ring,"de Ring, Mme",20.00,50.00,1 month,31,1,,1927-07-22,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-07-23,1927-08-08,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/oneill-great-god-brown/,The Great God Brown,,"O'Neill, Eugene",1926,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2F06%2Fd2%2F2106d277bd754d6dafddd7d2757a5841%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-07-23,1927-07-28,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/vachell-woman-exile/,A Woman in Exile,,"Vachell, Horace Annesley",1926,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/4b%2Fa3%2F65%2F4ba365cea0974f05a43fd7f77ce258e9%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1927-07-23,1927-07-23,https://shakespeareandco.princeton.edu/members/doty-a-s-g/,A. S. G. Doty,"Doty, A. S. G.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-07-23,1927-07-25,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/lewis-elmer-gantry/,Elmer Gantry,,"Lewis, Sinclair",1927,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/66%2Fef%2F35%2F66ef35619855464ba39b7e9e4d35b657%2Fintermediate_file/full/full/0/default.jpg
+Generic,1927-07-23,,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/vachell-woman-exile/,A Woman in Exile,,"Vachell, Horace Annesley",1926,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/66%2Fef%2F35%2F66ef35619855464ba39b7e9e4d35b657%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-07-24,1928-01-11,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,171,,,https://shakespeareandco.princeton.edu/books/yeats-essays/,Essays,,"Yeats, William Butler",1924,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/af%2Fcd%2F4b%2Fafcd4b7698644be4ad8edf82445910ee%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-07-24,1927-10-08,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,76,,,https://shakespeareandco.princeton.edu/books/asch-love-chartres/,Love in Chartres,,"Asch, Nathan",1927,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/af%2Fcd%2F4b%2Fafcd4b7698644be4ad8edf82445910ee%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-07-25,1927-07-28,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/bennett-lord-raingo/,Lord Raingo,,"Bennett, Arnold",1926,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/66%2Fef%2F35%2F66ef35619855464ba39b7e9e4d35b657%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1927-07-25,1927-07-25,https://shakespeareandco.princeton.edu/members/dumat/,Mme L. Dumat,"Dumat, Mme L.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1927-07-25,1927-07-25,https://shakespeareandco.princeton.edu/members/jeankelevitch-valentine/,Valentine Jeankelevitch,"Jeankelevitch, Valentine",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Separate Payment,1927-07-25,1927-07-25,https://shakespeareandco.princeton.edu/members/monnier-dr/,Dr. Monnier,"Monnier, Dr.",9.00,,,,,,1927-07-25,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1927-07-25,1927-07-25,https://shakespeareandco.princeton.edu/members/natzio-catherine/,Catherine Natzio,"Natzio, Catherine",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1927-07-26,1928-07-26,https://shakespeareandco.princeton.edu/members/hunter-5/,Mrs. Hunter,"Hunter, Mrs.",120.00,,1 year,366,2,AdL,1926-09-10,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1927-07-26,1928-07-26,https://shakespeareandco.princeton.edu/members/hunter-elizabeth/,Elizabeth Hunter,"Hunter, Elizabeth",180.00,,1 year,366,1,,1927-07-15,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1927-07-27,1927-07-27,https://shakespeareandco.princeton.edu/members/dunn-clara/,Clara Dunn,"Dunn, Clara",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-07-27,,https://shakespeareandco.princeton.edu/members/pfeiffer-virginia/,Virginia Pfeiffer,"Pfeiffer, Virginia",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/belloc-pyrenees/,The Pyrenees,,"Belloc, Hilaire",1909,,Lending Library Card,"Sylvia Beach, Virginia Pfeiffer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5f9e74fc-c06a-4c36-a2d1-878b8fce2cd2/manifest,https://iiif.princeton.edu/loris/figgy_prod/6f%2F67%2Fe2%2F6f67e29939464801800978b3b657885b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-07-28,1927-08-02,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/feuchtwanger-jew-suss/,Jew SΓΌss,,"Feuchtwanger, Lion",1926,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2Fce%2F48%2F50ce48455c1948d7bb7d3a7a46fd437b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Request,1927-07-28,,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/wharton-twilight-sleep/,Twilight Sleep,,"Wharton, Edith",1927,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2Fce%2F48%2F50ce48455c1948d7bb7d3a7a46fd437b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-07-28,1927-07-30,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/wharton-twilight-sleep/,Twilight Sleep,,"Wharton, Edith",1927,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/66%2Fef%2F35%2F66ef35619855464ba39b7e9e4d35b657%2Fintermediate_file/full/full/0/default.jpg
+Request,1927-07-28,,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/dreiser-american-tragedy/,An American Tragedy,,"Dreiser, Theodore",1925,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2Fce%2F48%2F50ce48455c1948d7bb7d3a7a46fd437b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-07-28,1927-08-01,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/lewis-mantrap/,Mantrap,,"Lewis, Sinclair",1926,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/4b%2Fa3%2F65%2F4ba365cea0974f05a43fd7f77ce258e9%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1927-07-29,1928-07-29,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",144.00,,1 year,366,1,,1927-07-04,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,;https://iiif.princeton.edu/loris/figgy_prod/dc%2F94%2Ffd%2Fdc94fda0cd9c4ae195f988f5a500f00f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-07-30,1927-08-02,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/sitwell-summer-day-autobiographical/,All Summer in a Day: An Autobiographical Fantasia,,"Sitwell, Sacheverell",1926,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/66%2Fef%2F35%2F66ef35619855464ba39b7e9e4d35b657%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1927-07-30,1928-01-30,https://shakespeareandco.princeton.edu/members/bueger-c-f/,C. F. Bueger,"Bueger, C. F.",100.00,50.00,6 months,184,1,,1927-07-30,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1927-07-30,1927-07-30,https://shakespeareandco.princeton.edu/members/girard/,Mme R. Girard,"Girard, Mme R.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-07-30,1927-08-05,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/mansfield-garden-party-stories/,The Garden Party and Other Stories,,"Mansfield, Katherine",1922,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/5d%2F94%2F00%2F5d9400637a2e4682a81940685b942a72%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-08-01,1927-08-03,https://shakespeareandco.princeton.edu/members/ris/,Mrs. Th. Ris,"Ris, Mrs. Th.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/mckenna-oldest-god/,The Oldest God,,"McKenna, Stephen",1926,,Lending Library Card,"Sylvia Beach, Th. Ris Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/88eb7561-2876-4f1c-b431-59918fa7a07e/manifest,https://iiif.princeton.edu/loris/figgy_prod/6a%2Fdd%2F42%2F6add42e006314465995ffa2a8f91fac9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1927-08-01,1927-09-01,https://shakespeareandco.princeton.edu/members/upton/,Mary Newton Upton,"Upton, Mary Newton",25.00,50.00,1 month,31,1,,1927-08-01,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Mary Newton Upton Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/24d6fd00-e922-4a02-b163-3bea782f657a/manifest,https://iiif.princeton.edu/loris/figgy_prod/0c%2F57%2Fc6%2F0c57c60b783743bca991dd3ff17b064f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-08-01,1927-08-05,https://shakespeareandco.princeton.edu/members/upton/,Mary Newton Upton,"Upton, Mary Newton",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/woolf-lighthouse/,To the Lighthouse,,"Woolf, Virginia",1927,,Lending Library Card,"Sylvia Beach, Mary Newton Upton Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/24d6fd00-e922-4a02-b163-3bea782f657a/manifest,https://iiif.princeton.edu/loris/figgy_prod/0c%2F57%2Fc6%2F0c57c60b783743bca991dd3ff17b064f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1927-08-01,1927-09-01,https://shakespeareandco.princeton.edu/members/ris/,Mrs. Th. Ris,"Ris, Mrs. Th.",25.00,50.00,1 month,31,1,,1927-08-01,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Th. Ris Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/88eb7561-2876-4f1c-b431-59918fa7a07e/manifest,;https://iiif.princeton.edu/loris/figgy_prod/6a%2Fdd%2F42%2F6add42e006314465995ffa2a8f91fac9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-08-01,1927-08-06,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/bennett-woman-stole-everything/,The Woman Who Stole Everything and Other Stories,,"Bennett, Arnold",1927,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/4b%2Fa3%2F65%2F4ba365cea0974f05a43fd7f77ce258e9%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-08-02,1927-08-29,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,27,,,https://shakespeareandco.princeton.edu/books/sadleir-trollope-commentary/,Trollope: A Commentary,,"Sadleir, Michael",1927,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2Fce%2F48%2F50ce48455c1948d7bb7d3a7a46fd437b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1927-08-02,1927-09-02,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",35.00,,1 month,31,2,,1927-08-06,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,;https://iiif-cloud.princeton.edu/iiif/2/11%2F9e%2Fb5%2F119eb5cdc3064bfe88e4bd36df632963%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-08-02,1927-08-29,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,27,,,https://shakespeareandco.princeton.edu/books/meredith-letters-george-meredith/,The Letters of George Meredith,,"Meredith, George",1912,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2Fce%2F48%2F50ce48455c1948d7bb7d3a7a46fd437b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-08-02,1927-08-04,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/tarkington-plutocrat/,The Plutocrat,,"Tarkington, Booth",1927,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/66%2Fef%2F35%2F66ef35619855464ba39b7e9e4d35b657%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-08-02,1927-08-20,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/hardy-hand-ethelberta/,The Hand of Ethelberta,,"Hardy, Thomas",1876,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2Fce%2F48%2F50ce48455c1948d7bb7d3a7a46fd437b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-08-02,,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/mander-allen-adair/,Allen Adair,,"Mander, Jane",1925,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2Fce%2F48%2F50ce48455c1948d7bb7d3a7a46fd437b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-08-02,1927-08-29,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,27,,,https://shakespeareandco.princeton.edu/books/trollope-bertrams/,The Bertrams,,"Trollope, Anthony",1859,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2Fce%2F48%2F50ce48455c1948d7bb7d3a7a46fd437b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-08-03,1927-08-05,https://shakespeareandco.princeton.edu/members/ris/,Mrs. Th. Ris,"Ris, Mrs. Th.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/mackenzie-parsons-progress/,The Parson's Progress,,"Mackenzie, Compton",1923,,Lending Library Card,"Sylvia Beach, Th. Ris Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/88eb7561-2876-4f1c-b431-59918fa7a07e/manifest,https://iiif.princeton.edu/loris/figgy_prod/6a%2Fdd%2F42%2F6add42e006314465995ffa2a8f91fac9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-08-04,1927-08-08,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/masefield-tragedy-man-plays/,The Tragedy of Man and Other Plays,,"Masefield, John",1912,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/66%2Fef%2F35%2F66ef35619855464ba39b7e9e4d35b657%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1927-08-05,1927-08-05,https://shakespeareandco.princeton.edu/members/bauer-k/,Kath Bauer,"Bauer, Kath",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-08-05,1927-08-06,https://shakespeareandco.princeton.edu/members/upton/,Mary Newton Upton,"Upton, Mary Newton",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/hodgson-life-james-elroy/,The Life of James Elroy Flecker,,"Hodgson, Geraldine Emma",1925,,Lending Library Card,"Sylvia Beach, Mary Newton Upton Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/24d6fd00-e922-4a02-b163-3bea782f657a/manifest,https://iiif.princeton.edu/loris/figgy_prod/0c%2F57%2Fc6%2F0c57c60b783743bca991dd3ff17b064f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-08-05,1927-08-06,https://shakespeareandco.princeton.edu/members/ris/,Mrs. Th. Ris,"Ris, Mrs. Th.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/macaulay-crewe-train/,Crewe Train,,"Macaulay, Rose",1926,,Lending Library Card,"Sylvia Beach, Th. Ris Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/88eb7561-2876-4f1c-b431-59918fa7a07e/manifest,https://iiif.princeton.edu/loris/figgy_prod/6a%2Fdd%2F42%2F6add42e006314465995ffa2a8f91fac9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1927-08-05,1927-09-05,https://shakespeareandco.princeton.edu/members/beeson/,E. Beeson,"Beeson, E.",35.00,100.00,1 month,31,2,,1927-08-05,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-08-06,1927-08-08,https://shakespeareandco.princeton.edu/members/upton/,Mary Newton Upton,"Upton, Mary Newton",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/schnitzler-casanovas-homecoming/,Casanova's Homecoming,,"Schnitzler, Arthur",1922,,Lending Library Card,"Sylvia Beach, Mary Newton Upton Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/24d6fd00-e922-4a02-b163-3bea782f657a/manifest,https://iiif.princeton.edu/loris/figgy_prod/0c%2F57%2Fc6%2F0c57c60b783743bca991dd3ff17b064f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-08-06,1927-08-16,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/dickens-tale-two-cities/,A Tale of Two Cities,,"Dickens, Charles",1859,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/11%2F9e%2Fb5%2F119eb5cdc3064bfe88e4bd36df632963%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1927-08-06,1927-08-06,https://shakespeareandco.princeton.edu/members/damon/,Priscilla Damon,"Damon, Priscilla",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-08-06,1927-08-08,https://shakespeareandco.princeton.edu/members/ris/,Mrs. Th. Ris,"Ris, Mrs. Th.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/wells-world-william-clissold/,The World of William Clissold,,"Wells, H. G.",1926,,Lending Library Card,"Sylvia Beach, Th. Ris Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/88eb7561-2876-4f1c-b431-59918fa7a07e/manifest,https://iiif.princeton.edu/loris/figgy_prod/6a%2Fdd%2F42%2F6add42e006314465995ffa2a8f91fac9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-08-06,1927-08-25,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/feuchtwanger-jew-suss/,Jew SΓΌss,,"Feuchtwanger, Lion",1926,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/4b%2Fa3%2F65%2F4ba365cea0974f05a43fd7f77ce258e9%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-08-06,1927-08-16,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/conrad-suspense/,Suspense,,"Conrad, Joseph",1923,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/11%2F9e%2Fb5%2F119eb5cdc3064bfe88e4bd36df632963%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-08-08,1927-08-09,https://shakespeareandco.princeton.edu/members/ris/,Mrs. Th. Ris,"Ris, Mrs. Th.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/sinclair-allinghams/,The Allinghams,,"Sinclair, May",1927,,Lending Library Card,"Sylvia Beach, Th. Ris Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/88eb7561-2876-4f1c-b431-59918fa7a07e/manifest,https://iiif.princeton.edu/loris/figgy_prod/6a%2Fdd%2F42%2F6add42e006314465995ffa2a8f91fac9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-08-08,1927-08-19,https://shakespeareandco.princeton.edu/members/upton/,Mary Newton Upton,"Upton, Mary Newton",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/adams-mont-saint-michel/,Mont-Saint-Michel and Chartres,,"Adams, Henry",1904,,Lending Library Card,"Sylvia Beach, Mary Newton Upton Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/24d6fd00-e922-4a02-b163-3bea782f657a/manifest,https://iiif.princeton.edu/loris/figgy_prod/0c%2F57%2Fc6%2F0c57c60b783743bca991dd3ff17b064f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-08-08,1927-08-10,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/bennett-woman-stole-everything/,The Woman Who Stole Everything and Other Stories,,"Bennett, Arnold",1927,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/66%2Fef%2F35%2F66ef35619855464ba39b7e9e4d35b657%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-08-09,1927-08-11,https://shakespeareandco.princeton.edu/members/ris/,Mrs. Th. Ris,"Ris, Mrs. Th.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/fisher-sons-wife/,Her Son's Wife,,"Fisher, Dorothy Canfield",1926,,Lending Library Card,"Sylvia Beach, Th. Ris Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/88eb7561-2876-4f1c-b431-59918fa7a07e/manifest,https://iiif.princeton.edu/loris/figgy_prod/6a%2Fdd%2F42%2F6add42e006314465995ffa2a8f91fac9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1927-08-09,1927-08-09,https://shakespeareandco.princeton.edu/members/hume/,S. J. Hume,"Hume, S. J.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1927-08-10,1927-09-10,https://shakespeareandco.princeton.edu/members/cook-marcia/,Marcia Cook,"Cook, Marcia",25.00,50.00,1 month,31,1,,1927-08-10,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-08-10,1927-09-16,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,37,,,https://shakespeareandco.princeton.edu/books/maugham-human-bondage/,Of Human Bondage,,"Maugham, W. Somerset",1915,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/4c%2Fb0%2F05%2F4cb0051a29fd4a30ac4d18a9278429f5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-08-10,1927-09-16,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,37,,,https://shakespeareandco.princeton.edu/books/lewis-free-air/,Free Air,,"Lewis, Sinclair",1919,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/4c%2Fb0%2F05%2F4cb0051a29fd4a30ac4d18a9278429f5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-08-10,1927-08-11,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/arlen-young-men-love/,Young Men in Love,,"Arlen, Michael",1927,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/66%2Fef%2F35%2F66ef35619855464ba39b7e9e4d35b657%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-08-11,1927-08-13,https://shakespeareandco.princeton.edu/members/ris/,Mrs. Th. Ris,"Ris, Mrs. Th.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/swinnerton-nocturne/,Nocturne,,"Swinnerton, Frank",1917,,Lending Library Card,"Sylvia Beach, Th. Ris Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/88eb7561-2876-4f1c-b431-59918fa7a07e/manifest,https://iiif.princeton.edu/loris/figgy_prod/6a%2Fdd%2F42%2F6add42e006314465995ffa2a8f91fac9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1927-08-11,1927-08-11,https://shakespeareandco.princeton.edu/members/hume/,S. J. Hume,"Hume, S. J.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-08-13,1927-08-17,https://shakespeareandco.princeton.edu/members/ris/,Mrs. Th. Ris,"Ris, Mrs. Th.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/swinnerton-summer-storm/,Summer Storm,,"Swinnerton, Frank",1926,,Lending Library Card,"Sylvia Beach, Th. Ris Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/88eb7561-2876-4f1c-b431-59918fa7a07e/manifest,https://iiif.princeton.edu/loris/figgy_prod/6a%2Fdd%2F42%2F6add42e006314465995ffa2a8f91fac9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-08-13,1927-08-27,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/dos-passos-manhattan-transfer/,Manhattan Transfer,,"Dos Passos, John",1925,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/66%2Fef%2F35%2F66ef35619855464ba39b7e9e4d35b657%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1927-08-13,1927-09-13,https://shakespeareandco.princeton.edu/members/eckles-d-h/,D. H. Eckles,"Eckles, D. H.",25.00,50.00,1 month,31,1,,1927-08-13,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1927-08-16,,https://shakespeareandco.princeton.edu/members/mortimer-chapman/,William Charles Chapman Mortimer / Chapman Mortimer (pseudonym),"Mortimer, Chapman",25.00,50.00,,,,,1927-08-16,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-08-16,1927-08-18,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/proust-swanns-way/,Swann's Way (Γ la recherche du temps perdu 1),2 vols.,"Proust, Marcel",1922,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/11%2F9e%2Fb5%2F119eb5cdc3064bfe88e4bd36df632963%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-08-16,1927-08-20,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/dickens-old-curiosity-shop/,The Old Curiosity Shop,,"Dickens, Charles",1841,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/11%2F9e%2Fb5%2F119eb5cdc3064bfe88e4bd36df632963%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1927-08-17,1927-09-17,https://shakespeareandco.princeton.edu/members/killen-miss/,Miss Killen,"Killen, Miss",12.00,,1 month,31,1,,1926-08-17,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-08-17,1927-08-20,https://shakespeareandco.princeton.edu/members/ris/,Mrs. Th. Ris,"Ris, Mrs. Th.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/wells-world-william-clissold/,The World of William Clissold,Vol. 1,"Wells, H. G.",1926,,Lending Library Card,"Sylvia Beach, Th. Ris Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/88eb7561-2876-4f1c-b431-59918fa7a07e/manifest,https://iiif.princeton.edu/loris/figgy_prod/6a%2Fdd%2F42%2F6add42e006314465995ffa2a8f91fac9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-08-18,1927-08-20,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/smith-famous-trials-history/,Famous Trials of History,,"Smith, F. E., Earl of Birkenhead",1926,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/11%2F9e%2Fb5%2F119eb5cdc3064bfe88e4bd36df632963%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-08-18,1927-08-23,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/mann-magic-mountain/,The Magic Mountain,Vol. 2,"Mann, Thomas",1927,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/da%2Fc5%2F79%2Fdac5795476fe4af4858e68e98bddb555%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-08-18,1927-08-23,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/ellis-dance-life/,The Dance of Life,,"Ellis, Havelock",1923,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/da%2Fc5%2F79%2Fdac5795476fe4af4858e68e98bddb555%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-08-19,1927-08-29,https://shakespeareandco.princeton.edu/members/upton/,Mary Newton Upton,"Upton, Mary Newton",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/arlen-young-men-love/,Young Men in Love,,"Arlen, Michael",1927,,Lending Library Card,"Sylvia Beach, Mary Newton Upton Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/24d6fd00-e922-4a02-b163-3bea782f657a/manifest,https://iiif.princeton.edu/loris/figgy_prod/0c%2F57%2Fc6%2F0c57c60b783743bca991dd3ff17b064f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1927-08-19,1927-09-19,https://shakespeareandco.princeton.edu/members/hopping/,Mrs. J. H. Hopping,"Hopping, Mrs. J. H.",35.00,,1 month,31,2,,1927-08-09,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1927-08-19,1927-08-19,https://shakespeareandco.princeton.edu/members/konstant/,Mme Antoine Konstant,"Konstant, Mme Antoine",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1927-08-19,1927-08-19,https://shakespeareandco.princeton.edu/members/ballinger/,Mrs. H. R. Ballinger,"Ballinger, Mrs. H. R.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-08-20,1927-08-22,https://shakespeareandco.princeton.edu/members/ris/,Mrs. Th. Ris,"Ris, Mrs. Th.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/mackenzie-altar-steps/,The Altar Steps,,"Mackenzie, Compton",1922,,Lending Library Card,"Sylvia Beach, Th. Ris Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/88eb7561-2876-4f1c-b431-59918fa7a07e/manifest,https://iiif.princeton.edu/loris/figgy_prod/6a%2Fdd%2F42%2F6add42e006314465995ffa2a8f91fac9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1927-08-20,1927-08-20,https://shakespeareandco.princeton.edu/members/haverstick/,G. Haverstick,"Haverstick, G.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-08-20,1927-08-22,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/thackeray-paris-sketch-book/,The Paris Sketch Book,,"Thackeray, William Makepeace",1840,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/11%2F9e%2Fb5%2F119eb5cdc3064bfe88e4bd36df632963%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-08-22,1927-08-26,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/thackeray-memoirs-barry-lyndon/,"The Memoirs of Barry Lyndon, Esq.",,"Thackeray, William Makepeace",1844,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/11%2F9e%2Fb5%2F119eb5cdc3064bfe88e4bd36df632963%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1927-08-23,1927-08-23,https://shakespeareandco.princeton.edu/members/de-ring-1/,Mme de Ring,"de Ring, Mme",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-08-23,1927-08-29,https://shakespeareandco.princeton.edu/members/ris/,Mrs. Th. Ris,"Ris, Mrs. Th.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/hichens-god-within/,The God within Him,,"Hichens, Robert Smythe",1926,,Lending Library Card,"Sylvia Beach, Th. Ris Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/88eb7561-2876-4f1c-b431-59918fa7a07e/manifest,https://iiif.princeton.edu/loris/figgy_prod/6a%2Fdd%2F42%2F6add42e006314465995ffa2a8f91fac9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1927-08-23,1927-09-23,https://shakespeareandco.princeton.edu/members/huberman-l/,L. Huberman,L. Huberman,25.00,50.00,1 month,31,1,,1927-08-23,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1927-08-24,1927-09-24,https://shakespeareandco.princeton.edu/members/micks-wilson/,Wilson Micks,"Micks, Wilson",25.00,50.00,1 month,31,1,,1927-08-24,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1927-08-24,1927-09-24,https://shakespeareandco.princeton.edu/members/jones-b-c/,B. C. Jones,"Jones, B. C.",35.00,100.00,1 month,31,2,,1927-08-24,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-08-25,1927-09-13,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/meredith-poems/,Poems,,"Meredith, George",,A 2 volume edition.,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/54%2Fb9%2F90%2F54b9902d15d24fa0953f0dc338355e2e%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1927-08-25,1927-09-25,https://shakespeareandco.princeton.edu/members/consuela/,Consuelo Kanaga,"Kanaga, Consuelo",25.00,50.00,1 month,31,1,,1927-08-25,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-08-26,1927-09-03,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/james-portrait-lady/,The Portrait of a Lady,,"James, Henry",1881,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/11%2F9e%2Fb5%2F119eb5cdc3064bfe88e4bd36df632963%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-08-26,1927-08-29,https://shakespeareandco.princeton.edu/members/ullmann-w-e/,W. E. Ullmann,"Ullmann, W. E.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/fitzgerald-great-gatsby/,The Great Gatsby,,"Fitzgerald, F. Scott",1925,,Lending Library Card,"Sylvia Beach, Mr. W.E. Ullmann Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/de2b15e2-0b2b-4452-95ab-7aa7feca8509/manifest,https://iiif.princeton.edu/loris/figgy_prod/fe%2F31%2Fb0%2Ffe31b0dd24dd4530a739fe062ef98c44%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1927-08-26,1927-09-26,https://shakespeareandco.princeton.edu/members/ullmann-w-e/,W. E. Ullmann,"Ullmann, W. E.",35.00,100.00,1 month,31,2,,1927-08-26,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Mr. W.E. Ullmann Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/de2b15e2-0b2b-4452-95ab-7aa7feca8509/manifest,https://iiif.princeton.edu/loris/figgy_prod/fe%2F31%2Fb0%2Ffe31b0dd24dd4530a739fe062ef98c44%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1927-08-26,1927-08-26,https://shakespeareandco.princeton.edu/members/eckles-d-h/,D. H. Eckles,"Eckles, D. H.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-08-26,1927-08-29,https://shakespeareandco.princeton.edu/members/ullmann-w-e/,W. E. Ullmann,"Ullmann, W. E.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/lewis-elmer-gantry/,Elmer Gantry,,"Lewis, Sinclair",1927,,Lending Library Card,"Sylvia Beach, Mr. W.E. Ullmann Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/de2b15e2-0b2b-4452-95ab-7aa7feca8509/manifest,https://iiif.princeton.edu/loris/figgy_prod/fe%2F31%2Fb0%2Ffe31b0dd24dd4530a739fe062ef98c44%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-08-27,1927-08-29,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/lewis-mantrap/,Mantrap,,"Lewis, Sinclair",1926,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/66%2Fef%2F35%2F66ef35619855464ba39b7e9e4d35b657%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1927-08-27,1927-09-27,https://shakespeareandco.princeton.edu/members/johnson-caroline/,Caroline Johnson,"Johnson, Caroline",25.00,50.00,1 month,31,1,,1927-08-27,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1927-08-29,1927-08-29,https://shakespeareandco.princeton.edu/members/ris/,Mrs. Th. Ris,"Ris, Mrs. Th.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Th. Ris Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/88eb7561-2876-4f1c-b431-59918fa7a07e/manifest,;https://iiif.princeton.edu/loris/figgy_prod/6a%2Fdd%2F42%2F6add42e006314465995ffa2a8f91fac9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1927-08-29,1927-08-29,https://shakespeareandco.princeton.edu/members/ullmann-w-e/,W. E. Ullmann,"Ullmann, W. E.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-08-29,1927-08-31,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/parrish-morrow-morning/,To Morrow Morning,,"Parrish, Anne",1927,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/66%2Fef%2F35%2F66ef35619855464ba39b7e9e4d35b657%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-08-29,,https://shakespeareandco.princeton.edu/members/upton/,Mary Newton Upton,"Upton, Mary Newton",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/garnett-lady-fox/,Lady into Fox,,"Garnett, David",1922,,Lending Library Card,"Sylvia Beach, Mary Newton Upton Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/24d6fd00-e922-4a02-b163-3bea782f657a/manifest,https://iiif.princeton.edu/loris/figgy_prod/0c%2F57%2Fc6%2F0c57c60b783743bca991dd3ff17b064f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1927-08-29,1927-08-29,https://shakespeareandco.princeton.edu/members/wells-4/,Wells,Wells,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1927-08-30,1927-08-30,https://shakespeareandco.princeton.edu/members/rush/,Miss Rush,"Rush, Miss",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1927-08-30,1927-09-30,https://shakespeareandco.princeton.edu/members/hamilton-gail/,Gail Hamilton,"Hamilton, Gail",35.00,100.00,1 month,31,2,,1927-08-30,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1927-08-30,1927-08-30,https://shakespeareandco.princeton.edu/members/regel/,Mme de Regel,"de Regel, Mme",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-08-31,1927-09-03,https://shakespeareandco.princeton.edu/members/upton/,Mary Newton Upton,"Upton, Mary Newton",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/powys-ducdame/,Ducdame,,"Powys, John Cowper",1925,,Lending Library Card,"Sylvia Beach, Mary Newton Upton Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/24d6fd00-e922-4a02-b163-3bea782f657a/manifest,https://iiif.princeton.edu/loris/figgy_prod/0c%2F57%2Fc6%2F0c57c60b783743bca991dd3ff17b064f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1927-09-01,1927-09-01,https://shakespeareandco.princeton.edu/members/cook-marcia/,Marcia Cook,"Cook, Marcia",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1927-09-01,1928-03-01,https://shakespeareandco.princeton.edu/members/chouly/,Mlle de Chouly,"de Chouly, Mlle",80.00,50.00,6 months,182,1,,1927-09-01,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1927-09-02,1927-10-02,https://shakespeareandco.princeton.edu/members/blom/,Marguerite Blom,"Blom, Marguerite",20.00,50.00,1 month,30,1,,1927-09-02,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-09-02,1927-09-03,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/locke-perella/,Perella,,"Locke, William John",1926,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/66%2Fef%2F35%2F66ef35619855464ba39b7e9e4d35b657%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1927-09-02,1927-10-02,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",35.00,,1 month,30,2,,1927-09-03,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,;https://iiif-cloud.princeton.edu/iiif/2/11%2F9e%2Fb5%2F119eb5cdc3064bfe88e4bd36df632963%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-09-02,1927-09-08,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/oflaherty-mr-gilhooley/,Mr. Gilhooley,,"O'Flaherty, Liam",1926,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/4b%2Fa3%2F65%2F4ba365cea0974f05a43fd7f77ce258e9%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-09-03,1927-09-09,https://shakespeareandco.princeton.edu/members/upton/,Mary Newton Upton,"Upton, Mary Newton",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/moore-heloise-abelard/,HΓ©loise and AbΓ©lard,,"Moore, George",1921,,Lending Library Card,"Sylvia Beach, Mary Newton Upton Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/24d6fd00-e922-4a02-b163-3bea782f657a/manifest,https://iiif.princeton.edu/loris/figgy_prod/0c%2F57%2Fc6%2F0c57c60b783743bca991dd3ff17b064f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-09-03,1927-10-05,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,32,,,https://shakespeareandco.princeton.edu/books/dickinson-greek-view-life/,The Greek View of Life,,"Dickinson, G. Lowes",1920,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/11%2F9e%2Fb5%2F119eb5cdc3064bfe88e4bd36df632963%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1927-09-03,1927-10-03,https://shakespeareandco.princeton.edu/members/goldet/,Mlle Goldet,"Goldet, Mlle",28.00,,1 month,30,2,,1927-09-03,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-09-03,1927-10-05,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,32,,,https://shakespeareandco.princeton.edu/books/lawrence-birds-beasts-flowers/,"Birds, Beasts, and Flowers",,"Lawrence, D. H.",1923,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/11%2F9e%2Fb5%2F119eb5cdc3064bfe88e4bd36df632963%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-09-03,1927-09-05,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/van-vechten-merry-go-round/,The Merry-Go-Round,,"Van Vechten, Carl",1918,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/66%2Fef%2F35%2F66ef35619855464ba39b7e9e4d35b657%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1927-09-03,1927-10-03,https://shakespeareandco.princeton.edu/members/evans-g/,G. Evans,"Evans, G.",25.00,50.00,1 month,30,1,,1927-09-03,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1927-09-03,1927-09-03,https://shakespeareandco.princeton.edu/members/gukowsky/,Gukowski / Gukowsky,Gukowsky,,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1927-09-03,1927-09-03,https://shakespeareandco.princeton.edu/members/souvtchinsky/,Mme Souvtchinsky / Mme Soutchinsky / Mme Soutvinsky / Mme Soukinschsky,"Souvtchinsky, Mme",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1927-09-03,1927-10-03,https://shakespeareandco.princeton.edu/members/knutesen-edwin-b/,Edwin B. Knutesen,"Knutesen, Edwin B.",,,1 month,30,,,1927-09-03,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-09-03,1927-10-05,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,32,,,https://shakespeareandco.princeton.edu/books/maugham-chinese-screen/,On a Chinese Screen,,"Maugham, W. Somerset",1922,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/11%2F9e%2Fb5%2F119eb5cdc3064bfe88e4bd36df632963%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-09-05,1927-09-08,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/hemingway-sun-also-rises/,The Sun Also Rises,,"Hemingway, Ernest",1926,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/66%2Fef%2F35%2F66ef35619855464ba39b7e9e4d35b657%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1927-09-05,1927-09-05,https://shakespeareandco.princeton.edu/members/beeson/,E. Beeson,"Beeson, E.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1927-09-05,1927-09-05,https://shakespeareandco.princeton.edu/members/hopping/,Mrs. J. H. Hopping,"Hopping, Mrs. J. H.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1927-09-06,1928-09-06,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",250.00,,1 year,366,2,,1927-09-06,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/cf%2F06%2F22%2Fcf06228a89d44628a53d29b68b3a1538%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1927-09-06,1927-10-06,https://shakespeareandco.princeton.edu/members/denny/,N. Denny,"Denny, N.",25.00,50.00,1 month,30,1,,1927-09-06,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1927-09-06,1927-09-06,https://shakespeareandco.princeton.edu/members/huberman-l/,L. Huberman,L. Huberman,,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-09-06,1927-12-15,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,100,,,https://shakespeareandco.princeton.edu/books/joyce-dubliners/,Dubliners,,"Joyce, James",1914,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/cf%2F06%2F22%2Fcf06228a89d44628a53d29b68b3a1538%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-09-06,1927-09-20,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/anderson-new-testament/,A New Testament,,"Anderson, Sherwood",1927,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/cf%2F06%2F22%2Fcf06228a89d44628a53d29b68b3a1538%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-09-08,1927-09-10,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/criterion/,The Criterion,"Vol. 6, no. 3, Sep 1927 The Monthly Criterion",,,"Renamed *The New Criterion* from January 1926 to January 1927, and *The Monthly Criterion* from May 1927 to March 1928.",Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/66%2Fef%2F35%2F66ef35619855464ba39b7e9e4d35b657%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-09-08,1927-09-09,https://shakespeareandco.princeton.edu/members/upton/,Mary Newton Upton,"Upton, Mary Newton",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/ford-man-stand/,A Man Could Stand Up (Parade's End 3),,"Ford, Ford Madox",1926,,Lending Library Card,"Sylvia Beach, Mary Newton Upton Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/24d6fd00-e922-4a02-b163-3bea782f657a/manifest,https://iiif.princeton.edu/loris/figgy_prod/0c%2F57%2Fc6%2F0c57c60b783743bca991dd3ff17b064f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-09-08,1927-09-16,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/fisher-sons-wife/,Her Son's Wife,,"Fisher, Dorothy Canfield",1926,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/4b%2Fa3%2F65%2F4ba365cea0974f05a43fd7f77ce258e9%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-09-08,1927-09-12,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/graves-poems/,Poems,,"Graves, Robert",,"Unidentified edition or editions. Robert Graves's *Poems (1914 βΒ 26)* (1927), *Poems, 1926 β 1930* (1931), or *Poems, 1930-1933* (1933).",Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/66%2Fef%2F35%2F66ef35619855464ba39b7e9e4d35b657%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1927-09-09,1927-09-09,https://shakespeareandco.princeton.edu/members/little-mary/,Mary D. Little,"Little, Mary D.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1927-09-09,1927-09-09,https://shakespeareandco.princeton.edu/members/upton/,Mary Newton Upton,"Upton, Mary Newton",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1927-09-09,1927-09-23,https://shakespeareandco.princeton.edu/members/wengenroth/,Mr. Wengenroth,"Wengenroth, Mr.",12.50,,2 weeks,14,,,1927-09-09,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1927-09-10,1927-09-10,https://shakespeareandco.princeton.edu/members/hayes-mary/,Mary Hayes / Mrs. Carlton Hayes,"Hayes, Mary",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1927-09-10,1927-10-10,https://shakespeareandco.princeton.edu/members/rollo/,Mr. Rollo,"Rollo, Mr.",35.00,100.00,1 month,30,2,,1927-09-10,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Mr. Rollo Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/799f7cb5-8de7-4313-8428-b68465087ea0/manifest,;https://iiif.princeton.edu/loris/figgy_prod/c3%2Fff%2F9b%2Fc3ff9b0041814bcf8487b22a3231ee6f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1927-09-10,1927-09-10,https://shakespeareandco.princeton.edu/members/collet-madeleine/,Madeleine Collet,"Collet, Madeleine",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-09-10,1927-09-12,https://shakespeareandco.princeton.edu/members/rollo/,Mr. Rollo,"Rollo, Mr.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/moore-observations/,Observations,,"Moore, Marianne",1924,,Lending Library Card,"Sylvia Beach, Mr. Rollo Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/799f7cb5-8de7-4313-8428-b68465087ea0/manifest,https://iiif.princeton.edu/loris/figgy_prod/c3%2Fff%2F9b%2Fc3ff9b0041814bcf8487b22a3231ee6f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-09-10,,https://shakespeareandco.princeton.edu/members/rollo/,Mr. Rollo,"Rollo, Mr.",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/burke-sun-splendour/,The Sun in Splendour,,"Burke, Thomas",1926,,Lending Library Card,"Sylvia Beach, Mr. Rollo Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/799f7cb5-8de7-4313-8428-b68465087ea0/manifest,https://iiif.princeton.edu/loris/figgy_prod/c3%2Fff%2F9b%2Fc3ff9b0041814bcf8487b22a3231ee6f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-09-11,1927-09-13,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/meredith-essay-comedy-uses/,An Essay on Comedy and the Uses of the Comic Spirit,,"Meredith, George",1897,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/54%2Fb9%2F90%2F54b9902d15d24fa0953f0dc338355e2e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-09-12,1927-09-13,https://shakespeareandco.princeton.edu/members/rollo/,Mr. Rollo,"Rollo, Mr.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/wilson-latterday-symphony/,Latterday Symphony,,"Wilson, Romer",1927,,Lending Library Card,"Sylvia Beach, Mr. Rollo Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/799f7cb5-8de7-4313-8428-b68465087ea0/manifest,https://iiif.princeton.edu/loris/figgy_prod/c3%2Fff%2F9b%2Fc3ff9b0041814bcf8487b22a3231ee6f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-09-12,1927-09-23,https://shakespeareandco.princeton.edu/members/rollo/,Mr. Rollo,"Rollo, Mr.",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/mann-magic-mountain/,The Magic Mountain,,"Mann, Thomas",1927,,Lending Library Card,"Sylvia Beach, Mr. Rollo Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/799f7cb5-8de7-4313-8428-b68465087ea0/manifest,https://iiif.princeton.edu/loris/figgy_prod/c3%2Fff%2F9b%2Fc3ff9b0041814bcf8487b22a3231ee6f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1927-09-12,1927-09-12,https://shakespeareandco.princeton.edu/members/davenport-john/,John Davenport,"Davenport, John",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1927-09-12,1927-09-12,https://shakespeareandco.princeton.edu/members/denny/,N. Denny,"Denny, N.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-09-12,1927-12-15,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,94,,,https://shakespeareandco.princeton.edu/books/douglas-siren-land/,Siren Land,,"Douglas, Norman",1911,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/cf%2F06%2F22%2Fcf06228a89d44628a53d29b68b3a1538%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-09-12,1927-12-29,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,108,,,https://shakespeareandco.princeton.edu/books/bromfield-good-woman/,A Good Woman,,"Bromfield, Louis",1927,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/cf%2F06%2F22%2Fcf06228a89d44628a53d29b68b3a1538%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-09-13,1927-09-27,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/colum-road-round-ireland/,The Road Round Ireland,,"Colum, Padraic",1926,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/54%2Fb9%2F90%2F54b9902d15d24fa0953f0dc338355e2e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-09-13,1927-09-14,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/smith-beadle/,The Beadle,,"Smith, Pauline",1926,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/66%2Fef%2F35%2F66ef35619855464ba39b7e9e4d35b657%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-09-13,1927-09-17,https://shakespeareandco.princeton.edu/members/rollo/,Mr. Rollo,"Rollo, Mr.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/frank-chalk-face/,Chalk Face,,"Frank, Waldo",1924,,Lending Library Card,"Sylvia Beach, Mr. Rollo Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/799f7cb5-8de7-4313-8428-b68465087ea0/manifest,https://iiif.princeton.edu/loris/figgy_prod/c3%2Fff%2F9b%2Fc3ff9b0041814bcf8487b22a3231ee6f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1927-09-14,1927-10-14,https://shakespeareandco.princeton.edu/members/benson-c/,Caroline Benson,"Benson, Caroline",35.00,100.00,1 month,30,2,,1927-09-14,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1927-09-14,1927-10-14,https://shakespeareandco.princeton.edu/members/detourbay/,Mlle Detourbay,"Detourbay, Mlle",25.00,50.00,1 month,30,1,,1927-09-14,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1927-09-14,1927-10-14,https://shakespeareandco.princeton.edu/members/hoeveler/,Mrs. Hoeveler,"Hoeveler, Mrs.",25.00,50.00,1 month,30,1,,1927-09-14,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-09-14,1927-09-20,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/stein-three-lives/,Three Lives,,"Stein, Gertrude",1909,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2F59%2F9e%2F25599eaf4e80471ba949b1c50073b1c9%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1927-09-15,1927-10-15,https://shakespeareandco.princeton.edu/members/goldet/,Mlle Goldet,"Goldet, Mlle",28.00,,1 month,30,2,,1927-09-15,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1927-09-15,1927-09-15,https://shakespeareandco.princeton.edu/members/evans-g/,G. Evans,"Evans, G.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-09-16,1927-10-06,https://shakespeareandco.princeton.edu/members/jackson-5/,Mrs. Jackson,"Jackson, Mrs.",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/mayo-mother-india/,Mother India,,"Mayo, Katherine",1927,,Lending Library Card,"Sylvia Beach, Mrs. Jackson Lending Library Card, Box 59, Folder 6, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ac6269e-f2f6-4df6-861c-40ac8f15296d/manifest,https://iiif-cloud.princeton.edu/iiif/2/3e%2F0d%2Fe4%2F3e0de42656e249318a47a8a8d7828d2e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-09-16,1927-09-24,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/car/,Car,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/4b%2Fa3%2F65%2F4ba365cea0974f05a43fd7f77ce258e9%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1927-09-16,1928-03-16,https://shakespeareandco.princeton.edu/members/bishop-john-peale/,John Peale Bishop,"Bishop, John Peale",225.00,,6 months,182,3,,1927-09-14,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-09-16,,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/bennett-woman-stole-everything/,The Woman Who Stole Everything and Other Stories,,"Bennett, Arnold",1927,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/4c%2Fb0%2F05%2F4cb0051a29fd4a30ac4d18a9278429f5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-09-16,1927-10-06,https://shakespeareandco.princeton.edu/members/jackson-5/,Mrs. Jackson,"Jackson, Mrs.",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/hemingway-sun-also-rises/,The Sun Also Rises,,"Hemingway, Ernest",1926,,Lending Library Card,"Sylvia Beach, Mrs. Jackson Lending Library Card, Box 59, Folder 6, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ac6269e-f2f6-4df6-861c-40ac8f15296d/manifest,https://iiif-cloud.princeton.edu/iiif/2/3e%2F0d%2Fe4%2F3e0de42656e249318a47a8a8d7828d2e%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1927-09-16,1928-09-16,https://shakespeareandco.princeton.edu/members/jackson-5/,Mrs. Jackson,"Jackson, Mrs.",,,1 year,366,2,,1927-09-16,,,,,FRF,,,,,,,Logbook;Lending Library Card;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Mrs. Jackson Lending Library Card, Box 59, Folder 6, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/7ac6269e-f2f6-4df6-861c-40ac8f15296d/manifest;,;https://iiif-cloud.princeton.edu/iiif/2/3e%2F0d%2Fe4%2F3e0de42656e249318a47a8a8d7828d2e%2Fintermediate_file/full/full/0/default.jpg;
+Borrow,1927-09-17,1927-09-20,https://shakespeareandco.princeton.edu/members/rollo/,Mr. Rollo,"Rollo, Mr.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/kennedy-ladies-lyndon/,The Ladies of Lyndon,,"Kennedy, Margaret",1923,,Lending Library Card,"Sylvia Beach, Mr. Rollo Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/799f7cb5-8de7-4313-8428-b68465087ea0/manifest,https://iiif.princeton.edu/loris/figgy_prod/c3%2Fff%2F9b%2Fc3ff9b0041814bcf8487b22a3231ee6f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1927-09-17,1927-10-17,https://shakespeareandco.princeton.edu/members/bryant/,Sam Wood Bryant,"Bryant, Sam Wood",35.00,100.00,1 month,30,2,,1927-09-17,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1927-09-17,1927-12-17,https://shakespeareandco.princeton.edu/members/parry/;https://shakespeareandco.princeton.edu/members/parry-3/,M. Parry;Mrs. Parry,"Parry, M.;Parry, Mrs.",48.00,50.00,3 months,91,1,Student,1927-09-17,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-09-20,1927-09-23,https://shakespeareandco.princeton.edu/members/schirmer/,Mabel Schirmer / Mrs. Robert Schirmer,"Schirmer, Mabel",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/lalou-contemporary-french-literature/,Contemporary French Literature,,"Lalou, RenΓ©",1924,,Lending Library Card,"Sylvia Beach, Mabel Schirmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4c00d0b2-7cb9-46e1-b628-2eac6ac7bb07/manifest,https://iiif-cloud.princeton.edu/iiif/2/6f%2F39%2Fe9%2F6f39e93a96d949779213b4eed245ca93%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1927-09-20,1927-09-20,https://shakespeareandco.princeton.edu/members/wengenroth/,Mr. Wengenroth,"Wengenroth, Mr.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1927-09-20,1927-09-20,https://shakespeareandco.princeton.edu/members/micks-wilson/,Wilson Micks,"Micks, Wilson",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-09-20,1927-10-01,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/glasgow-romantic-comedians/,The Romantic Comedians,,"Glasgow, Ellen",1926,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2Fce%2F48%2F50ce48455c1948d7bb7d3a7a46fd437b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-09-20,1927-10-18,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,28,,,https://shakespeareandco.princeton.edu/books/wescott-grandmothers-family-portrait/,The Grandmothers: A Family Portrait,,"Wescott, Glenway",1927,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2F6e%2Fea%2F256eeabe8a054470a7abd5bdd9d57873%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-09-20,1927-09-26,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/strachey-madonna-barricades-memoirs/,"The Madonna of the Barricades, Being the Memoirs of George, Lord Chertsey, 1847 β 1848",,"Strachey, John St. Loe",1925,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2F59%2F9e%2F25599eaf4e80471ba949b1c50073b1c9%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-09-20,1927-09-26,https://shakespeareandco.princeton.edu/members/rollo/,Mr. Rollo,"Rollo, Mr.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/brown-short-history-italian/,A Short History of Italian Painting,,"Brown, Alice Van Vechten;Rankin, William",1914,,Lending Library Card,"Sylvia Beach, Mr. Rollo Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/799f7cb5-8de7-4313-8428-b68465087ea0/manifest,https://iiif.princeton.edu/loris/figgy_prod/c3%2Fff%2F9b%2Fc3ff9b0041814bcf8487b22a3231ee6f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-09-20,1927-10-06,https://shakespeareandco.princeton.edu/members/schirmer/,Mabel Schirmer / Mrs. Robert Schirmer,"Schirmer, Mabel",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/lewis-elmer-gantry/,Elmer Gantry,,"Lewis, Sinclair",1927,,Lending Library Card,"Sylvia Beach, Mabel Schirmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4c00d0b2-7cb9-46e1-b628-2eac6ac7bb07/manifest,https://iiif-cloud.princeton.edu/iiif/2/6f%2F39%2Fe9%2F6f39e93a96d949779213b4eed245ca93%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1927-09-21,1927-12-21,https://shakespeareandco.princeton.edu/members/henton-l/;https://shakespeareandco.princeton.edu/members/henton/,L. Henton;Mrs. Henton,"Henton, L.;Henton, Mrs.",85.00,,3 months,91,2,,1927-09-21,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1927-09-22,1927-10-22,https://shakespeareandco.princeton.edu/members/savy/,Alice Savy,"Savy, Alice",25.00,50.00,1 month,30,1,,1927-09-22,,,,,FRF,,,,,,,Lending Library Card;Logbook,"Sylvia Beach, Alice Savy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",https://figgy.princeton.edu/concern/scanned_resources/6bff5a62-eced-4f79-a6f3-649cab124b38/manifest;,https://iiif.princeton.edu/loris/figgy_prod/d7%2F3e%2F0f%2Fd73e0f1ac374471d91b87c9cd4af66f7%2Fintermediate_file.jp2/full/full/0/default.jpg;
+Borrow,1927-09-22,1927-10-04,https://shakespeareandco.princeton.edu/members/savy/,Alice Savy,"Savy, Alice",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/butler-erewhon/,Erewhon,,"Butler, Samuel",1872,,Lending Library Card,"Sylvia Beach, Alice Savy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6bff5a62-eced-4f79-a6f3-649cab124b38/manifest,https://iiif.princeton.edu/loris/figgy_prod/d7%2F3e%2F0f%2Fd73e0f1ac374471d91b87c9cd4af66f7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,,1927-09-23,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/wharton-twilight-sleep/,Twilight Sleep,,"Wharton, Edith",1927,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2Fce%2F48%2F50ce48455c1948d7bb7d3a7a46fd437b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-09-23,1927-09-29,https://shakespeareandco.princeton.edu/members/rollo/,Mr. Rollo,"Rollo, Mr.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/dreiser-sister-carrie/,Sister Carrie,,"Dreiser, Theodore",1900,,Lending Library Card,"Sylvia Beach, Mr. Rollo Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/799f7cb5-8de7-4313-8428-b68465087ea0/manifest,https://iiif.princeton.edu/loris/figgy_prod/c3%2Fff%2F9b%2Fc3ff9b0041814bcf8487b22a3231ee6f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1927-09-23,1927-10-23,https://shakespeareandco.princeton.edu/members/bailly/,Mrs. Edward Bailly,"Bailly, Mrs. Edward",35.00,,1 month,30,2,,1927-09-23,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1927-09-23,1927-09-23,https://shakespeareandco.princeton.edu/members/bailly/,Mrs. Edward Bailly,"Bailly, Mrs. Edward",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-09-24,1927-10-04,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/mansfield-journal-katherine-mansfield/,The Journal of Katherine Mansfield,,"Mansfield, Katherine",1927,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/4b%2Fa3%2F65%2F4ba365cea0974f05a43fd7f77ce258e9%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-09-24,1927-10-04,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/bromfield-good-woman/,A Good Woman,,"Bromfield, Louis",1927,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/4b%2Fa3%2F65%2F4ba365cea0974f05a43fd7f77ce258e9%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-09-25,1927-10-13,https://shakespeareandco.princeton.edu/members/rollo/,Mr. Rollo,"Rollo, Mr.",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/cullen-color/,Color,,"Cullen, Countee",1925,,Lending Library Card,"Sylvia Beach, Mr. Rollo Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/799f7cb5-8de7-4313-8428-b68465087ea0/manifest,https://iiif.princeton.edu/loris/figgy_prod/c3%2Fff%2F9b%2Fc3ff9b0041814bcf8487b22a3231ee6f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-09-26,1927-10-18,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/muirhead-contemporary-british-philosophy/,Contemporary British Philosophy: Personal Statements,2 vols.,,1925,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/c2%2Ff7%2F29%2Fc2f7296928344566aa900c8c0644c909%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-09-26,1927-11-04,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,39,,,https://shakespeareandco.princeton.edu/books/anderson-winesburg-ohio-group/,Winesburg Ohio: A Group of Tales of Ohio Small Town Life,,"Anderson, Sherwood",1919,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/dc%2F94%2Ffd%2Fdc94fda0cd9c4ae195f988f5a500f00f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1927-09-26,1927-09-26,https://shakespeareandco.princeton.edu/members/johnson-caroline/,Caroline Johnson,"Johnson, Caroline",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Purchase,1927-09-26,1927-09-26,https://shakespeareandco.princeton.edu/members/mcalmon-robert/,Robert McAlmon,"McAlmon, Robert",,,,,,,,,,,106.00,FRF,https://shakespeareandco.princeton.edu/books/stendhal-red-black/,The Red and the Black,2 vols.,Stendhal,1926,"At least two editions of *The Red and the Black* circulated in the lending library. Richard Le Gallienne, Catherine Yarrow, and Henry W. Wibbelz borrowed *The Red and the Black* (New York: Modern Library, 1926); and Robert McAlmon and John d'Arcy Clark borrowed *The Scarlet and the Black* (London: Chatto & Windus, 1927).",Lending Library Card,"Sylvia Beach, Robert McAlmon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/889ff3f8-b62c-42f6-8e88-1dd95434b2f5/manifest,https://iiif-cloud.princeton.edu/iiif/2/f9%2Fd2%2F1a%2Ff9d21aff41154755aa10b62eeeec7846%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-09-26,1927-09-28,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/gissing-victim-circumstances-stories/,A Victim of Circumstances and Other Stories,,"Gissing, George Robert",1927,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2F59%2F9e%2F25599eaf4e80471ba949b1c50073b1c9%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-09-27,1927-09-27,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/gwynn-history-ireland/,The History of Ireland,,"Gwynn, Stephen Lucius",1923,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/54%2Fb9%2F90%2F54b9902d15d24fa0953f0dc338355e2e%2Fintermediate_file/full/full/0/default.jpg
+Supplement,1927-09-27,1927-11-27,https://shakespeareandco.princeton.edu/members/jaffe-8/,Mrs. Jaffe,"Jaffe, Mrs.",32.00,,2 months,61,,,1927-09-28,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-09-27,1927-09-27,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/ireland/,Ireland,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/54%2Fb9%2F90%2F54b9902d15d24fa0953f0dc338355e2e%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1927-09-27,1927-12-27,https://shakespeareandco.princeton.edu/members/kranenburg-hoen/,Mme Kranenburg-Hoen,"Kranenburg-Hoen, Mme",60.00,50.00,3 months,91,1,,1927-09-27,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1927-09-27,1927-09-27,https://shakespeareandco.princeton.edu/members/consuela/,Consuelo Kanaga,"Kanaga, Consuelo",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1927-09-28,1927-10-28,https://shakespeareandco.princeton.edu/members/chubb/,Thomas C. Chubb,"Chubb, Thomas C.",25.00,50.00,1 month,30,1,,1927-09-28,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-09-28,1927-10-07,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/sinclair-allinghams/,The Allinghams,,"Sinclair, May",1927,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/af%2Fcd%2F4b%2Fafcd4b7698644be4ad8edf82445910ee%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-09-28,1927-09-29,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/jolas-transition/,transition,,,,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2F59%2F9e%2F25599eaf4e80471ba949b1c50073b1c9%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1927-09-28,1927-10-28,https://shakespeareandco.princeton.edu/members/borton-viennie/,Viennie Borton,"Borton, Viennie",35.00,100.00,1 month,30,2,,1927-09-28,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1927-09-28,1927-10-28,https://shakespeareandco.princeton.edu/members/edge/,Miss Edge,"Edge, Miss",25.00,50.00,1 month,30,1,,1927-09-28,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1927-09-28,1927-09-28,https://shakespeareandco.princeton.edu/members/hirst-m/,M. Hirst,"Hirst, M.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1927-09-28,1927-09-28,https://shakespeareandco.princeton.edu/members/fichet-4/,Mme Fichet,"Fichet, Mme",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1927-09-28,1927-09-28,https://shakespeareandco.princeton.edu/members/denny/,N. Denny,"Denny, N.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-09-28,1927-10-03,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/adams-revelry/,Revelry,,"Adams, Samuel Hopkins",1926,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2F59%2F9e%2F25599eaf4e80471ba949b1c50073b1c9%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-09-29,,https://shakespeareandco.princeton.edu/members/rollo/,Mr. Rollo,"Rollo, Mr.",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/keyserling-book-marriage-new/,The Book of Marriage: A New Interpretation by Twenty-Four Leaders of Contemporary Thought,,,1926,,Lending Library Card,"Sylvia Beach, Mr. Rollo Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/799f7cb5-8de7-4313-8428-b68465087ea0/manifest,https://iiif.princeton.edu/loris/figgy_prod/c3%2Fff%2F9b%2Fc3ff9b0041814bcf8487b22a3231ee6f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1927-09-30,1928-03-30,https://shakespeareandco.princeton.edu/members/bouchet/,Dolores Bouchet,"Bouchet, Dolores",100.00,50.00,6 months,182,1,,1927-09-30,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-09-30,1927-09-30,https://shakespeareandco.princeton.edu/members/sage/,Mrs. Sage,"Sage, Mrs.",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/williams-sour-grapes-book/,Sour Grapes: A Book of Poems,,"Williams, William Carlos",1921,,Lending Library Card,"Sylvia Beach, Mrs Sage Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6acc003f-5ada-4829-9a83-392cd0576844/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2F53%2Fc7%2F5053c7abaa654decaaaccaf561252873%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-10-01,1927-10-07,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/wolf-springboard/,Springboard,,"Wolf, Robert",1927,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2Fce%2F48%2F50ce48455c1948d7bb7d3a7a46fd437b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1927-10-01,1927-10-01,https://shakespeareandco.princeton.edu/members/hume/,S. J. Hume,"Hume, S. J.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1927-10-01,1927-11-01,https://shakespeareandco.princeton.edu/members/dodds-1/,Miss Dodds,"Dodds, Miss",20.00,50.00,1 month,31,1,Student,1927-10-01,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-10-01,1927-10-18,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/lewis-main-street-story/,Main Street: The Story of Carol Kennicott,,"Lewis, Sinclair",1920,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/5d%2F94%2F00%2F5d9400637a2e4682a81940685b942a72%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1927-10-03,1927-10-03,https://shakespeareandco.princeton.edu/members/keun-odette/,Odette Keun,"Keun, Odette",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1927-10-03,1928-04-03,https://shakespeareandco.princeton.edu/members/morley-pegge/,Mrs. Morley-Pegge,"Morley-Pegge, Mrs.",150.00,,6 months,183,2,,1927-10-03,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-10-03,1927-10-04,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/dreiser-chains-lesser-novels/,Chains: Lesser Novels and Stories,,"Dreiser, Theodore",1927,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2F59%2F9e%2F25599eaf4e80471ba949b1c50073b1c9%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-10-04,1927-10-19,https://shakespeareandco.princeton.edu/members/savy/,Alice Savy,"Savy, Alice",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/bennett-old-wives-tale/,The Old Wives' Tale,,"Bennett, Arnold",1908,,Lending Library Card,"Sylvia Beach, Alice Savy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6bff5a62-eced-4f79-a6f3-649cab124b38/manifest,https://iiif.princeton.edu/loris/figgy_prod/d7%2F3e%2F0f%2Fd73e0f1ac374471d91b87c9cd4af66f7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-10-04,1927-10-07,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/disraeli-lothair/,Lothair,,"Disraeli, Benjamin",1870,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2F59%2F9e%2F25599eaf4e80471ba949b1c50073b1c9%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-10-04,1927-10-10,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/dreiser-chains-lesser-novels/,Chains: Lesser Novels and Stories,,"Dreiser, Theodore",1927,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/4b%2Fa3%2F65%2F4ba365cea0974f05a43fd7f77ce258e9%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-10-04,1927-10-11,https://shakespeareandco.princeton.edu/members/pfeiffer-virginia/,Virginia Pfeiffer,"Pfeiffer, Virginia",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/trollope-claverings/,The Claverings,,"Trollope, Anthony",1866,,Lending Library Card,"Sylvia Beach, Virginia Pfeiffer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5f9e74fc-c06a-4c36-a2d1-878b8fce2cd2/manifest,https://iiif.princeton.edu/loris/figgy_prod/6f%2F67%2Fe2%2F6f67e29939464801800978b3b657885b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1927-10-05,1927-10-05,https://shakespeareandco.princeton.edu/members/destaing/,Mme d'Estaing,"d'Estaing, Mme",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-10-05,1927-10-11,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/marryat-peter-simple/,Peter Simple,,"Marryat, Frederick",1834,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/11%2F9e%2Fb5%2F119eb5cdc3064bfe88e4bd36df632963%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1927-10-05,1928-04-05,https://shakespeareandco.princeton.edu/members/blake-w/,W. Blake,"Blake, W.",80.00,,6 months,183,1,,1927-10-05,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-10-05,1927-11-05,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,31,,,https://shakespeareandco.princeton.edu/books/mackenzie-early-life-adventures/,The Early Life and Adventures of Sylvia Scarlett,,"Mackenzie, Compton",1918,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/11%2F9e%2Fb5%2F119eb5cdc3064bfe88e4bd36df632963%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1927-10-05,1927-11-05,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",35.00,,1 month,31,2,,1927-10-05,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,;https://iiif-cloud.princeton.edu/iiif/2/11%2F9e%2Fb5%2F119eb5cdc3064bfe88e4bd36df632963%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-10-06,1927-10-24,https://shakespeareandco.princeton.edu/members/jackson-5/,Mrs. Jackson,"Jackson, Mrs.",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/letters-gertrude-bell/,Letters of Gertrude Bell,Vol. 1,"Bell, Gertrude Lowthian",1927,,Lending Library Card,"Sylvia Beach, Mrs. Jackson Lending Library Card, Box 59, Folder 6, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ac6269e-f2f6-4df6-861c-40ac8f15296d/manifest,https://iiif-cloud.princeton.edu/iiif/2/3e%2F0d%2Fe4%2F3e0de42656e249318a47a8a8d7828d2e%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1927-10-06,1927-10-06,https://shakespeareandco.princeton.edu/members/edge/,Miss Edge,"Edge, Miss",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-10-06,1927-10-24,https://shakespeareandco.princeton.edu/members/jackson-5/,Mrs. Jackson,"Jackson, Mrs.",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/gogh-letters-vincent-van/,"The Letters of Vincent van Gogh to His Brother, 1872 β 1886",Vol. 2,"Gogh, Vincent van",1927,,Lending Library Card,"Sylvia Beach, Mrs. Jackson Lending Library Card, Box 59, Folder 6, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ac6269e-f2f6-4df6-861c-40ac8f15296d/manifest,https://iiif-cloud.princeton.edu/iiif/2/3e%2F0d%2Fe4%2F3e0de42656e249318a47a8a8d7828d2e%2Fintermediate_file/full/full/0/default.jpg
+Separate Payment,1927-10-06,1927-10-06,https://shakespeareandco.princeton.edu/members/jackson-5/,Mrs. Jackson,"Jackson, Mrs.",250.00,,,,,,1927-10-06,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Mrs. Jackson Lending Library Card, Box 59, Folder 6, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/7ac6269e-f2f6-4df6-861c-40ac8f15296d/manifest,;https://iiif-cloud.princeton.edu/iiif/2/3e%2F0d%2Fe4%2F3e0de42656e249318a47a8a8d7828d2e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-10-06,1927-11-24,https://shakespeareandco.princeton.edu/members/schirmer/,Mabel Schirmer / Mrs. Robert Schirmer,"Schirmer, Mabel",,,,,,,,,Returned,49,,,https://shakespeareandco.princeton.edu/books/rabelais-gargantua/,Gargantua,3 vols.,"Rabelais, FranΓ§ois",,,Lending Library Card,"Sylvia Beach, Mabel Schirmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4c00d0b2-7cb9-46e1-b628-2eac6ac7bb07/manifest,https://iiif-cloud.princeton.edu/iiif/2/6f%2F39%2Fe9%2F6f39e93a96d949779213b4eed245ca93%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1927-10-06,1927-10-06,https://shakespeareandco.princeton.edu/members/benson-c/,Caroline Benson,"Benson, Caroline",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-10-07,1927-10-15,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/mansfield-journal-katherine-mansfield/,The Journal of Katherine Mansfield,,"Mansfield, Katherine",1927,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2Fce%2F48%2F50ce48455c1948d7bb7d3a7a46fd437b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-10-07,1927-10-24,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/disraeli-sybil-two-nations/,"Sybil: Or, the Two Nations",,"Disraeli, Benjamin",1845,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2F59%2F9e%2F25599eaf4e80471ba949b1c50073b1c9%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-10-07,1927-10-29,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/thackeray-vanity-fair/,Vanity Fair,,"Thackeray, William Makepeace",1847,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/af%2Fcd%2F4b%2Fafcd4b7698644be4ad8edf82445910ee%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1927-10-08,1928-04-08,https://shakespeareandco.princeton.edu/members/citkowitz-israel/,Israel Citkowitz,"Citkowitz, Israel",80.00,50.00,6 months,183,1,Student,1927-10-08,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-10-08,1927-11-21,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,44,,,https://shakespeareandco.princeton.edu/books/carroll-alices-adventures-wonderland/,Alice's Adventures in Wonderland,,"Carroll, Lewis",1865,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/af%2Fcd%2F4b%2Fafcd4b7698644be4ad8edf82445910ee%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-10-10,1927-10-21,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/taylor-one-crystal-mother/,One Crystal and a Mother,,"Taylor, Ellen Du Poise",1927,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/4b%2Fa3%2F65%2F4ba365cea0974f05a43fd7f77ce258e9%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1927-10-10,1927-10-10,https://shakespeareandco.princeton.edu/members/hoeveler/,Mrs. Hoeveler,"Hoeveler, Mrs.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1927-10-10,1927-10-10,https://shakespeareandco.princeton.edu/members/bryant/,Sam Wood Bryant,"Bryant, Sam Wood",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1927-10-10,1928-01-10,https://shakespeareandco.princeton.edu/members/gans-marian/,Marian Gans,"Gans, Marian",85.00,100.00,3 months,92,2,,1927-10-10,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1927-10-11,1927-10-18,https://shakespeareandco.princeton.edu/members/wise-2/,Wise,Wise,6.75,,1 week,7,,,1927-10-11,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-10-11,1927-11-05,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,25,,,https://shakespeareandco.princeton.edu/books/rolland-annette-sylvie-volume/,Annette and Sylvie: Being Volume One of the Soul Enchanted,,"Rolland, Romain",1925,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/11%2F9e%2Fb5%2F119eb5cdc3064bfe88e4bd36df632963%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1927-10-11,1928-04-11,https://shakespeareandco.princeton.edu/members/tolstoya-tatiana/,Tatiana Sukhotina-Tolstaya / Countess Tolstoi / Π’Π°ΡΡΡΠ½Π° ΠΡΠ²ΠΎΠ²Π½Π° Π’ΠΎΠ»ΡΡΠ°Ρ,"Tolstoya, Tatiana",150.00,50.00,6 months,183,2,,1927-10-11,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-10-11,1927-10-12,https://shakespeareandco.princeton.edu/members/pfeiffer-virginia/,Virginia Pfeiffer,"Pfeiffer, Virginia",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/wilde-picture-dorian-grey/,The Picture of Dorian Grey,,"Wilde, Oscar",1890,,Lending Library Card,"Sylvia Beach, Virginia Pfeiffer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5f9e74fc-c06a-4c36-a2d1-878b8fce2cd2/manifest,https://iiif.princeton.edu/loris/figgy_prod/6f%2F67%2Fe2%2F6f67e29939464801800978b3b657885b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-10-12,1927-10-27,https://shakespeareandco.princeton.edu/members/pfeiffer-virginia/,Virginia Pfeiffer,"Pfeiffer, Virginia",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/moore-esther-waters/,Esther Waters,,"Moore, George",1894,,Lending Library Card,"Sylvia Beach, Virginia Pfeiffer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5f9e74fc-c06a-4c36-a2d1-878b8fce2cd2/manifest,https://iiif.princeton.edu/loris/figgy_prod/6f%2F67%2Fe2%2F6f67e29939464801800978b3b657885b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1927-10-12,1927-10-12,https://shakespeareandco.princeton.edu/members/haverstick/,G. Haverstick,"Haverstick, G.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1927-10-13,1927-11-13,https://shakespeareandco.princeton.edu/members/finney-ross-lee/,Ross Lee Finney,"Finney, Ross Lee",35.00,100.00,1 month,31,2,,1927-10-13,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1927-10-13,1927-11-13,https://shakespeareandco.princeton.edu/members/foley-isabel/,Isabel Foley,"Foley, Isabel",25.00,50.00,1 month,31,1,,1927-10-13,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1927-10-13,1927-11-13,https://shakespeareandco.princeton.edu/members/rollo/,Mr. Rollo,"Rollo, Mr.",25.00,,1 month,31,1,,1927-10-13,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Mr. Rollo Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/799f7cb5-8de7-4313-8428-b68465087ea0/manifest,;https://iiif.princeton.edu/loris/figgy_prod/c3%2Fff%2F9b%2Fc3ff9b0041814bcf8487b22a3231ee6f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1927-10-13,1927-10-13,https://shakespeareandco.princeton.edu/members/rollo/,Mr. Rollo,"Rollo, Mr.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1927-10-13,1927-11-13,https://shakespeareandco.princeton.edu/members/harris-m/,Mrs. M. Harris,"Harris, Mrs. M.",25.00,50.00,1 month,31,1,,1927-10-13,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1927-10-14,1928-01-14,https://shakespeareandco.princeton.edu/members/blackwell/,Mrs. J. Blackwell,"Blackwell, Mrs. J.",85.00,100.00,3 months,92,2,,1927-10-14,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1927-10-14,1927-11-14,https://shakespeareandco.princeton.edu/members/coggeschall-r/,R. Coggeshall,"Coggeshall, R.",25.00,50.00,1 month,31,1,,1927-10-14,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1927-10-14,1927-10-14,https://shakespeareandco.princeton.edu/members/destaing/,Mme d'Estaing,"d'Estaing, Mme",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1927-10-14,1927-10-14,https://shakespeareandco.princeton.edu/members/detourbay/,Mlle Detourbay,"Detourbay, Mlle",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-10-15,1927-10-20,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/parrish-morrow-morning/,To Morrow Morning,,"Parrish, Anne",1927,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2Fce%2F48%2F50ce48455c1948d7bb7d3a7a46fd437b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-10-18,1927-10-19,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/lewis-time-western-man/,Time and Western Man,,"Lewis, Wyndham",1927,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2F6e%2Fea%2F256eeabe8a054470a7abd5bdd9d57873%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-10-18,1927-10-22,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/baring-daphne-adeane/,Daphne Adeane,,"Baring, Maurice",1927,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/5d%2F94%2F00%2F5d9400637a2e4682a81940685b942a72%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-10-18,1927-10-20,https://shakespeareandco.princeton.edu/members/sage/,Mrs. Sage,"Sage, Mrs.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/lewis-tarr/,Tarr,,"Lewis, Wyndham",1918,,Lending Library Card,"Sylvia Beach, Mrs Sage Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6acc003f-5ada-4829-9a83-392cd0576844/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2F53%2Fc7%2F5053c7abaa654decaaaccaf561252873%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-10-18,1927-10-25,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/schreiner-letters-olive-schreiner/,The Letters of Olive Schreiner: 1876 β 1920,2 vols.,"Schreiner, Olive",1924,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/c2%2Ff7%2F29%2Fc2f7296928344566aa900c8c0644c909%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-10-18,1927-10-20,https://shakespeareandco.princeton.edu/members/rollo/,Mr. Rollo,"Rollo, Mr.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/andreyev-king-loses-head/,When the King Loses His Head and Other Stories,,"Andreyev, Leonid",1920,,Lending Library Card,"Sylvia Beach, Mr. Rollo Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/799f7cb5-8de7-4313-8428-b68465087ea0/manifest,https://iiif.princeton.edu/loris/figgy_prod/c3%2Fff%2F9b%2Fc3ff9b0041814bcf8487b22a3231ee6f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-10-18,1927-10-20,https://shakespeareandco.princeton.edu/members/sage/,Mrs. Sage,"Sage, Mrs.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/lewis-caliphs-design/,The Caliph's Design,,"Lewis, Wyndham",1919,,Lending Library Card,"Sylvia Beach, Mrs Sage Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6acc003f-5ada-4829-9a83-392cd0576844/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2F53%2Fc7%2F5053c7abaa654decaaaccaf561252873%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-10-19,,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/carolino-english-spoke-jest/,"English as She Is Spoke: Or, a Jest in Sober Earnest",,"Carolino, Pedro;Fonseca, Pedro JosΓ© da",1883,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Reimbursement,1927-10-19,1927-10-19,https://shakespeareandco.princeton.edu/members/savy/,Alice Savy,"Savy, Alice",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-10-19,1927-10-25,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/asquith-black-cap-new/,The Black Cap: New Stories of Murder and Mystery,,,1927,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2F6e%2Fea%2F256eeabe8a054470a7abd5bdd9d57873%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1927-10-19,1927-11-19,https://shakespeareandco.princeton.edu/members/hill-w/,W. Hill,"Hill, W.",35.00,100.00,1 month,31,2,,1927-10-19,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-10-19,,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/meredith-lacemakers-sketches-irish/,"The Lacemakers: Sketches of Irish Character, with Some Account of the Effort to Establish Lacemaking in Ireland",,"Meredith, Susanna",1865,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1927-10-19,,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/yonge-history-christian-names/,History of Christian Names,Vol. 1,"Yonge, Charlotte M.",1863,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1927-10-20,1927-10-29,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/september/,September,,,,Unidentified. Likely Frank Swinnerton's *September* (1919).,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2Fce%2F48%2F50ce48455c1948d7bb7d3a7a46fd437b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-10-20,1927-11-02,https://shakespeareandco.princeton.edu/members/rollo/,Mr. Rollo,"Rollo, Mr.",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/galsworthy-forsyte-saga/,The Forsyte Saga,,"Galsworthy, John",1922,,Lending Library Card,"Sylvia Beach, Mr. Rollo Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/799f7cb5-8de7-4313-8428-b68465087ea0/manifest,https://iiif.princeton.edu/loris/figgy_prod/c3%2Fff%2F9b%2Fc3ff9b0041814bcf8487b22a3231ee6f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1927-10-21,1927-11-21,https://shakespeareandco.princeton.edu/members/hutzler-flora/,Flora Hutzler,"Hutzler, Flora",25.00,50.00,1 month,31,1,,1927-10-21,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1927-10-21,1927-11-21,https://shakespeareandco.princeton.edu/members/goldet/,Mlle Goldet,"Goldet, Mlle",28.00,,1 month,31,2,,1927-10-21,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-10-21,1927-11-07,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/meyerstein-pleasure-lover/,The Pleasure Lover,,"Meyerstein, Edward Harry William",1925,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/4b%2Fa3%2F65%2F4ba365cea0974f05a43fd7f77ce258e9%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1927-10-22,1927-10-22,https://shakespeareandco.princeton.edu/members/yates-2/,Yates,Yates,,,,,,,,124.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1927-10-22,1927-11-05,https://shakespeareandco.princeton.edu/members/yates-2/,Yates,Yates,35.00,,2 weeks,14,4,,1927-10-22,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-10-22,1927-10-28,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/bennett-hilda-lessways/,Hilda Lessways,,"Bennett, Arnold",1911,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/5d%2F94%2F00%2F5d9400637a2e4682a81940685b942a72%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-10-24,1927-10-29,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/rinehart-lost-ecstasy-novel/,Lost Ecstasy: A Novel,,"Rinehart, Mary Roberts",1927,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2Fce%2F48%2F50ce48455c1948d7bb7d3a7a46fd437b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-10-24,1927-10-27,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/woolf-lighthouse/,To the Lighthouse,,"Woolf, Virginia",1927,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2F59%2F9e%2F25599eaf4e80471ba949b1c50073b1c9%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-10-24,1927-11-07,https://shakespeareandco.princeton.edu/members/jackson-5/,Mrs. Jackson,"Jackson, Mrs.",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/solano-way/,This Way Up,,"Solano, Solita",1927,,Lending Library Card,"Sylvia Beach, Mrs. Jackson Lending Library Card, Box 59, Folder 6, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ac6269e-f2f6-4df6-861c-40ac8f15296d/manifest,https://iiif-cloud.princeton.edu/iiif/2/3e%2F0d%2Fe4%2F3e0de42656e249318a47a8a8d7828d2e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-10-24,1927-12-03,https://shakespeareandco.princeton.edu/members/jackson-5/,Mrs. Jackson,"Jackson, Mrs.",,,,,,,,,Returned,40,,,https://shakespeareandco.princeton.edu/books/heathcote-williams-liberal-points-view/,Liberal Points of View,,,1927,,Lending Library Card,"Sylvia Beach, Mrs. Jackson Lending Library Card, Box 59, Folder 6, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ac6269e-f2f6-4df6-861c-40ac8f15296d/manifest,https://iiif-cloud.princeton.edu/iiif/2/3e%2F0d%2Fe4%2F3e0de42656e249318a47a8a8d7828d2e%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1927-10-25,1927-10-25,https://shakespeareandco.princeton.edu/members/bueger-c-f/,C. F. Bueger,"Bueger, C. F.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-10-25,1927-11-15,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/barnum-barnums-story/,Barnum's Own Story,,"Barnum, P. T.",1927,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2F6e%2Fea%2F256eeabe8a054470a7abd5bdd9d57873%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1927-10-25,1928-01-25,https://shakespeareandco.princeton.edu/members/mckee-philip/,Philip McKee,"McKee, Philip",60.00,50.00,3 months,92,1,,1927-10-25,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-10-25,1927-11-29,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,35,,,https://shakespeareandco.princeton.edu/books/dane-first-blade-comedy/,First the Blade: A Comedy of Growth,,"Dane, Clemence",1918,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/c2%2Ff7%2F29%2Fc2f7296928344566aa900c8c0644c909%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-10-25,1927-11-15,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/mayo-mother-india/,Mother India,,"Mayo, Katherine",1927,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2F6e%2Fea%2F256eeabe8a054470a7abd5bdd9d57873%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1927-10-26,1928-04-26,https://shakespeareandco.princeton.edu/members/williams-marjorie/,Marjorie Williams / Lady Marjorie Williams,"Williams, Marjorie",150.00,,6 months,183,2,,1927-10-26,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Lady Marjorie Williams Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/b31e886b-0c7c-4553-a941-ead88c563239/manifest,;https://iiif.princeton.edu/loris/figgy_prod/14%2Fe8%2Fd4%2F14e8d43bd6f64122881addec1c4024ab%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1927-10-26,1928-04-26,https://shakespeareandco.princeton.edu/members/camerlynck-g-h/,Guillaume Hubert Camerlynck / G. H. Camerlynck,"Camerlynck, G. H.",80.00,50.00,6 months,183,1,,1927-10-26,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-10-26,1927-11-04,https://shakespeareandco.princeton.edu/members/williams-marjorie/,Marjorie Williams / Lady Marjorie Williams,"Williams, Marjorie",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/summers-history-witchcraft-demonology/,A History of Witchcraft and Demonology,,"Summers, Montague",1926,,Lending Library Card,"Sylvia Beach, Lady Marjorie Williams Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b31e886b-0c7c-4553-a941-ead88c563239/manifest,https://iiif.princeton.edu/loris/figgy_prod/14%2Fe8%2Fd4%2F14e8d43bd6f64122881addec1c4024ab%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-10-26,1927-11-04,https://shakespeareandco.princeton.edu/members/williams-marjorie/,Marjorie Williams / Lady Marjorie Williams,"Williams, Marjorie",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/schreiner-story-african-farm/,The Story of an African Farm,,"Schreiner, Olive",1883,,Lending Library Card,"Sylvia Beach, Lady Marjorie Williams Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b31e886b-0c7c-4553-a941-ead88c563239/manifest,https://iiif.princeton.edu/loris/figgy_prod/14%2Fe8%2Fd4%2F14e8d43bd6f64122881addec1c4024ab%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-10-27,1927-11-03,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/maugham-human-bondage/,Of Human Bondage,,"Maugham, W. Somerset",1915,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2F59%2F9e%2F25599eaf4e80471ba949b1c50073b1c9%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-10-27,,https://shakespeareandco.princeton.edu/members/pfeiffer-virginia/,Virginia Pfeiffer,"Pfeiffer, Virginia",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/merezhkovsky-forerunner-romance-leonardo/,The Romance of Leonardo da Vinci: The Forerunner,,"Merezhkovsky, Dmitry",1908,,Lending Library Card,"Sylvia Beach, Virginia Pfeiffer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5f9e74fc-c06a-4c36-a2d1-878b8fce2cd2/manifest,https://iiif.princeton.edu/loris/figgy_prod/6f%2F67%2Fe2%2F6f67e29939464801800978b3b657885b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-10-29,1927-11-09,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/waugh-georgian-stories-1925/,"Georgian Stories, 1925",,,1925,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2Fce%2F48%2F50ce48455c1948d7bb7d3a7a46fd437b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-10-29,1928-02-09,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,103,,,https://shakespeareandco.princeton.edu/books/poe-poems-essays-edgar/,Poems and Essays of Edgar Allan Poe,,"Poe, Edgar Allan",1876,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/af%2Fcd%2F4b%2Fafcd4b7698644be4ad8edf82445910ee%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-10-29,1927-11-09,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/maugham-chinese-screen/,On a Chinese Screen,,"Maugham, W. Somerset",1922,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/5d%2F94%2F00%2F5d9400637a2e4682a81940685b942a72%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1927-10-29,1928-10-29,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",144.00,,1 year,366,1,,1927-11-02,,,,,FRF,,,,,,,Lending Library Card;Logbook,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest;,https://iiif-cloud.princeton.edu/iiif/2/54%2Fb9%2F90%2F54b9902d15d24fa0953f0dc338355e2e%2Fintermediate_file/full/full/0/default.jpg;
+Borrow,1927-10-29,1927-11-12,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/millin-gods-stepchildren/,God's Stepchildren,,"Millin, Sarah Gertrude",1924,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/4c%2Fb0%2F05%2F4cb0051a29fd4a30ac4d18a9278429f5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1927-10-29,1928-04-29,https://shakespeareandco.princeton.edu/members/goodridge-mary/,Mary Goodridge,"Goodridge, Mary",100.00,,6 months,183,1,,1927-10-29,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,,1927-10-29,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/arlen-young-men-love/,Young Men in Love,,"Arlen, Michael",1927,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/4c%2Fb0%2F05%2F4cb0051a29fd4a30ac4d18a9278429f5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-10-29,1928-02-09,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,103,,,https://shakespeareandco.princeton.edu/books/poe-tales-mystery-imagination/,Tales of Mystery and Imagination,,"Poe, Edgar Allan",,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/af%2Fcd%2F4b%2Fafcd4b7698644be4ad8edf82445910ee%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-10-31,,https://shakespeareandco.princeton.edu/members/sage/,Mrs. Sage,"Sage, Mrs.",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/williams-great-american-novel/,The Great American Novel,,"Williams, William Carlos",1923,,Lending Library Card,"Sylvia Beach, Mrs Sage Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6acc003f-5ada-4829-9a83-392cd0576844/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2F53%2Fc7%2F5053c7abaa654decaaaccaf561252873%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-10-31,,https://shakespeareandco.princeton.edu/members/sage/,Mrs. Sage,"Sage, Mrs.",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/williams-spring/,Spring and All,,"Williams, William Carlos",1923,,Lending Library Card,"Sylvia Beach, Mrs Sage Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6acc003f-5ada-4829-9a83-392cd0576844/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2F53%2Fc7%2F5053c7abaa654decaaaccaf561252873%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1927-11-01,1928-11-01,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",120.00,,1 year,366,2,,1927-11-12,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,;https://iiif-cloud.princeton.edu/iiif/2/1c%2Fd9%2Fe1%2F1cd9e183fb104f9d90a4c90c557234ab%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-11-02,1927-11-04,https://shakespeareandco.princeton.edu/members/rollo/,Mr. Rollo,"Rollo, Mr.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/galsworthy-white-monkey/,The White Monkey (A Modern Comedy),,"Galsworthy, John",1924,,Lending Library Card,"Sylvia Beach, Mr. Rollo Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/799f7cb5-8de7-4313-8428-b68465087ea0/manifest,https://iiif.princeton.edu/loris/figgy_prod/c3%2Fff%2F9b%2Fc3ff9b0041814bcf8487b22a3231ee6f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1927-11-03,1927-12-03,https://shakespeareandco.princeton.edu/members/dodds-1/,Miss Dodds,"Dodds, Miss",25.00,,1 month,30,1,,1927-11-03,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1927-11-03,1927-11-03,https://shakespeareandco.princeton.edu/members/foley-isabel/,Isabel Foley,"Foley, Isabel",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-11-03,1927-11-05,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/criterion/,The Criterion,"Vol. 6, no. 4, Oct 1927 The Monthly Criterion",,,"Renamed *The New Criterion* from January 1926 to January 1927, and *The Monthly Criterion* from May 1927 to March 1928.",Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2F59%2F9e%2F25599eaf4e80471ba949b1c50073b1c9%2Fintermediate_file/full/full/0/default.jpg
+Crossed out,1927-11-03,,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/hemingway-sun-also-rises/,The Sun Also Rises,,"Hemingway, Ernest",1926,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2F6e%2Fea%2F256eeabe8a054470a7abd5bdd9d57873%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-11-03,1927-11-07,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/maugham-casuarina-tree/,The Casuarina Tree: Six Stories,,"Maugham, W. Somerset",1926,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2F59%2F9e%2F25599eaf4e80471ba949b1c50073b1c9%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1927-11-03,1927-12-03,https://shakespeareandco.princeton.edu/members/andrews-2/,Esther Andrews,"Andrews, Esther",25.00,50.00,1 month,30,1,,1927-11-03,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1927-11-03,1927-12-03,https://shakespeareandco.princeton.edu/members/borton-viennie/,Viennie Borton,"Borton, Viennie",35.00,,1 month,30,2,,1927-11-03,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-11-04,,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/feuchtwanger-jew-suss/,Jew SΓΌss,,"Feuchtwanger, Lion",1926,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/dc%2F94%2Ffd%2Fdc94fda0cd9c4ae195f988f5a500f00f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-11-04,1927-11-07,https://shakespeareandco.princeton.edu/members/rollo/,Mr. Rollo,"Rollo, Mr.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/evreinov-theatre-life/,The Theatre in Life,,"Evreinov, Nikolai",1927,,Lending Library Card,"Sylvia Beach, Mr. Rollo Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/799f7cb5-8de7-4313-8428-b68465087ea0/manifest,https://iiif.princeton.edu/loris/figgy_prod/c3%2Fff%2F9b%2Fc3ff9b0041814bcf8487b22a3231ee6f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1927-11-04,1927-12-04,https://shakespeareandco.princeton.edu/members/noxon/;https://shakespeareandco.princeton.edu/members/noxon-mr/,Mme Noxon;Mr. Noxon,"Noxon, Mme;Noxon, Mr.",20.00,,1 month,30,1,,1927-11-04,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-11-04,1927-11-28,https://shakespeareandco.princeton.edu/members/williams-marjorie/,Marjorie Williams / Lady Marjorie Williams,"Williams, Marjorie",,,,,,,,,Returned,24,,,https://shakespeareandco.princeton.edu/books/smith-famous-trials-history/,Famous Trials of History,,"Smith, F. E., Earl of Birkenhead",1926,,Lending Library Card,"Sylvia Beach, Lady Marjorie Williams Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b31e886b-0c7c-4553-a941-ead88c563239/manifest,https://iiif.princeton.edu/loris/figgy_prod/14%2Fe8%2Fd4%2F14e8d43bd6f64122881addec1c4024ab%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-11-04,1927-11-25,https://shakespeareandco.princeton.edu/members/williams-marjorie/,Marjorie Williams / Lady Marjorie Williams,"Williams, Marjorie",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/forster-longest-journey/,The Longest Journey,,"Forster, E. M.",1907,,Lending Library Card,"Sylvia Beach, Lady Marjorie Williams Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b31e886b-0c7c-4553-a941-ead88c563239/manifest,https://iiif.princeton.edu/loris/figgy_prod/14%2Fe8%2Fd4%2F14e8d43bd6f64122881addec1c4024ab%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1927-11-05,1927-11-19,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",17.50,100.00,2 weeks,14,2,,1927-11-05,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,;https://iiif-cloud.princeton.edu/iiif/2/01%2Fd1%2Fdc%2F01d1dcd966d14171baa47e3f1d26f10a%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1927-11-05,1927-12-05,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",35.00,,1 month,30,2,,1927-11-05,,,,,FRF,,,,,,,Logbook;Lending Library Card;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest;https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,;https://iiif-cloud.princeton.edu/iiif/2/17%2Fa8%2F4d%2F17a84d484db04ae8b4c940dde3d117ff%2Fintermediate_file/full/full/0/default.jpg;https://iiif-cloud.princeton.edu/iiif/2/11%2F9e%2Fb5%2F119eb5cdc3064bfe88e4bd36df632963%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-11-05,1927-11-07,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/gordon-modern-french-painters/,Modern French Painters,,"Gordon, Jan",1923,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/11%2F9e%2Fb5%2F119eb5cdc3064bfe88e4bd36df632963%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-11-05,1927-11-07,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/norris-shanghaied/,Shanghaied,,"Norris, Frank",1920,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/11%2F9e%2Fb5%2F119eb5cdc3064bfe88e4bd36df632963%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-11-05,1927-11-15,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/schermerhorn-seven-strings-lyre/,"The Seven Strings of the Lyre: The Romantic Life of George Sand, 1804 β 1876",,"Schermerhorn, Elizabeth Wheeler",1927,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/01%2Fd1%2Fdc%2F01d1dcd966d14171baa47e3f1d26f10a%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1927-11-07,1927-11-07,https://shakespeareandco.princeton.edu/members/rollo/,Mr. Rollo,"Rollo, Mr.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-11-07,1927-11-19,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/wescott-grandmothers-family-portrait/,The Grandmothers: A Family Portrait,,"Wescott, Glenway",1927,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/4b%2Fa3%2F65%2F4ba365cea0974f05a43fd7f77ce258e9%2Fintermediate_file/full/full/0/default.jpg
+Gift,1927-11-07,,https://shakespeareandco.princeton.edu/members/eastman/,Max Eastman,"Eastman, Max",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/bible-lands/,Bible Lands,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Max Eastman Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/10a1ee70-b468-4bf7-a68f-4d3bb537032b/manifest,https://iiif.princeton.edu/loris/figgy_prod/4f%2F12%2F20%2F4f122020e07c4e95a6ff87f3399fa09f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-11-07,1927-11-09,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/leslie-silent-queen/,The Silent Queen,,"Leslie, W. Seymour",1927,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2F59%2F9e%2F25599eaf4e80471ba949b1c50073b1c9%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-11-07,1927-11-15,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/west-henry-james/,Henry James,,"West, Rebecca",1916,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/01%2Fd1%2Fdc%2F01d1dcd966d14171baa47e3f1d26f10a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-11-07,1927-12-03,https://shakespeareandco.princeton.edu/members/jackson-5/,Mrs. Jackson,"Jackson, Mrs.",,,,,,,,,Returned,26,,,https://shakespeareandco.princeton.edu/books/keyserling-world-making/,The World in the Making,,"Keyserling, Hermann von",1926,,Lending Library Card,"Sylvia Beach, Mrs. Jackson Lending Library Card, Box 59, Folder 6, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ac6269e-f2f6-4df6-861c-40ac8f15296d/manifest,https://iiif-cloud.princeton.edu/iiif/2/3e%2F0d%2Fe4%2F3e0de42656e249318a47a8a8d7828d2e%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1927-11-07,1928-05-07,https://shakespeareandco.princeton.edu/members/oppenheimer-e/,E. Oppenheimer,"Oppenheimer, E.",150.00,,6 months,182,2,,1927-09-17,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-11-08,1927-12-02,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,24,,,https://shakespeareandco.princeton.edu/books/strachey-madonna-barricades-memoirs/,"The Madonna of the Barricades, Being the Memoirs of George, Lord Chertsey, 1847 β 1848",,"Strachey, John St. Loe",1925,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/17%2Fa8%2F4d%2F17a84d484db04ae8b4c940dde3d117ff%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-11-08,1927-12-02,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,24,,,https://shakespeareandco.princeton.edu/books/hergesheimer-gold-iron/,Gold and Iron,,"Hergesheimer, Joseph",1918,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/17%2Fa8%2F4d%2F17a84d484db04ae8b4c940dde3d117ff%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1927-11-08,,https://shakespeareandco.princeton.edu/members/miss-ch-van-sherpenzeel/,Miss Ch. Van Sherpenzeel,"Van Sherpenzeel, Miss Ch.",25.00,50.00,,,,,1927-11-08,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-11-09,1927-11-10,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/dell-love-greenwich-village/,Love in Greenwich Village,,"Dell, Floyd",1926,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2F59%2F9e%2F25599eaf4e80471ba949b1c50073b1c9%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1927-11-09,1928-05-09,https://shakespeareandco.princeton.edu/members/burgess/,Esther Burgess,"Burgess, Esther",120.00,100.00,6 months,182,2,,1927-11-09,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-11-09,1927-11-21,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/asquith-young-orland/,Young Orland,,"Asquith, H. H.",1927,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2Fce%2F48%2F50ce48455c1948d7bb7d3a7a46fd437b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1927-11-09,1928-02-09,https://shakespeareandco.princeton.edu/members/dryden-olive/,Olive Dryden,"Dryden, Olive",60.00,,3 months,92,1,AdL,1927-11-09,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-11-09,1927-11-28,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/baring-tinkers-leave/,Tinker's Leave,,"Baring, Maurice",1927,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/5d%2F94%2F00%2F5d9400637a2e4682a81940685b942a72%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1927-11-09,1927-12-09,https://shakespeareandco.princeton.edu/members/wassilieff/,Mme Wassilieff,"Wassilieff, Mme",20.00,50.00,1 month,30,,,1927-11-09,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1927-11-10,1927-11-10,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,32.50,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-11-10,1927-11-14,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/dreiser-financier/,Financier,,"Dreiser, Theodore",1912,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2F59%2F9e%2F25599eaf4e80471ba949b1c50073b1c9%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-11-12,1927-12-26,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,44,,,https://shakespeareandco.princeton.edu/books/lewis-elmer-gantry/,Elmer Gantry,,"Lewis, Sinclair",1927,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/4c%2Fb0%2F05%2F4cb0051a29fd4a30ac4d18a9278429f5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-11-14,1927-12-07,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/thayer-dial/,The Dial,"Vol. 83, no. 5, Nov 1927",,,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2F6e%2Fea%2F256eeabe8a054470a7abd5bdd9d57873%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-11-14,1927-11-26,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/lowndes-story-ivy/,The Story of Ivy,,"Lowndes, Marie Belloc",1927,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2F6e%2Fea%2F256eeabe8a054470a7abd5bdd9d57873%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1927-11-14,1927-12-14,https://shakespeareandco.princeton.edu/members/bachmant/,E. G. Bachmann,"Bachmann, E. G.",25.00,50.00,1 month,30,1,,1927-11-14,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1927-11-14,1927-11-14,https://shakespeareandco.princeton.edu/members/coggeschall-r/,R. Coggeshall,"Coggeshall, R.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-11-14,1927-11-16,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/stern-jack-amanory/,Jack A'Manory,,"Stern, G. B.",1927,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2F59%2F9e%2F25599eaf4e80471ba949b1c50073b1c9%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-11-15,1928-02-03,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,80,,,https://shakespeareandco.princeton.edu/books/flame-life/,The Flame of Life,,,,Unidentified. Either Gabriele D'Annunzio's *Flame of Life* (1900) or Mrs. Patrick MacGill's *The Flame of Life* (1922).,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/01%2Fd1%2Fdc%2F01d1dcd966d14171baa47e3f1d26f10a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-11-15,1927-12-21,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,36,,,https://shakespeareandco.princeton.edu/books/valery-variety/,Variety,,"ValΓ©ry, Paul",1927,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/01%2Fd1%2Fdc%2F01d1dcd966d14171baa47e3f1d26f10a%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1927-11-16,1928-02-16,https://shakespeareandco.princeton.edu/members/weaver-audrey/,Audrey Weaver,"Weaver, Audrey",85.00,100.00,3 months,92,2,,1927-11-16,,,,,FRF,,,,,,,Lending Library Card;Logbook,"Sylvia Beach, Miss Audrey Weaver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",https://figgy.princeton.edu/concern/scanned_resources/bd1b5179-d6c8-46be-8f6e-d6fb81083019/manifest;,https://iiif.princeton.edu/loris/figgy_prod/24%2Ff0%2F19%2F24f019476ef849979ab3a885594dd4dc%2Fintermediate_file.jp2/full/full/0/default.jpg;
+Reimbursement,1927-11-16,1927-11-16,https://shakespeareandco.princeton.edu/members/finney-ross-lee/,Ross Lee Finney,"Finney, Ross Lee",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-11-16,1927-11-19,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/feuchtwanger-ugly-duchess/,The Ugly Duchess,,"Feuchtwanger, Lion",1927,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2F59%2F9e%2F25599eaf4e80471ba949b1c50073b1c9%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-11-16,1927-11-21,https://shakespeareandco.princeton.edu/members/weaver-audrey/,Audrey Weaver,"Weaver, Audrey",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/deeping-kitty/,Kitty,,"Deeping, Warwick",1927,,Lending Library Card,"Sylvia Beach, Miss Audrey Weaver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd1b5179-d6c8-46be-8f6e-d6fb81083019/manifest,https://iiif.princeton.edu/loris/figgy_prod/24%2Ff0%2F19%2F24f019476ef849979ab3a885594dd4dc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-11-16,1927-11-21,https://shakespeareandco.princeton.edu/members/weaver-audrey/,Audrey Weaver,"Weaver, Audrey",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/castle-new-wine/,New Wine,,"Castle, Agnes;Castle, Egerton",1919,,Lending Library Card,"Sylvia Beach, Miss Audrey Weaver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd1b5179-d6c8-46be-8f6e-d6fb81083019/manifest,https://iiif.princeton.edu/loris/figgy_prod/24%2Ff0%2F19%2F24f019476ef849979ab3a885594dd4dc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1927-11-16,1927-12-16,https://shakespeareandco.princeton.edu/members/gibson-f-t/,F. T. Gibson,"Gibson, F. T.",25.00,50.00,1 month,30,1,,1927-11-16,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-11-17,1927-11-23,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/dreiser-chains-lesser-novels/,Chains: Lesser Novels and Stories,,"Dreiser, Theodore",1927,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/f8%2Fab%2Fb4%2Ff8abb4571a74451e91d3f239dde58ea4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1927-11-17,1928-02-17,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",85.00,,3 months,92,2,,1927-11-17,,,,,FRF,,,,,,,Lending Library Card;Logbook,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest;,https://iiif.princeton.edu/loris/figgy_prod/f8%2Fab%2Fb4%2Ff8abb4571a74451e91d3f239dde58ea4%2Fintermediate_file.jp2/full/full/0/default.jpg;
+Borrow,1927-11-17,1927-11-23,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/mckenna-due-reckoning-third/,Due Reckoning: Being the Third and Last Part of the Realists,,"McKenna, Stephen",1927,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/f8%2Fab%2Fb4%2Ff8abb4571a74451e91d3f239dde58ea4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1927-11-18,1927-12-18,https://shakespeareandco.princeton.edu/members/de-caro-anita/;https://shakespeareandco.princeton.edu/members/de-caro-1/,Anita de Caro;Mr. de Caro,"de Caro, Anita;de Caro, Mr.",35.00,100.00,1 month,30,2,,1927-11-18,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1927-11-19,1927-12-19,https://shakespeareandco.princeton.edu/members/walls/,Mrs. C. Walls,"Walls, Mrs. C.",25.00,,1 month,30,1,,1927-11-05,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1927-11-19,1928-05-19,https://shakespeareandco.princeton.edu/members/smyth/,Miss Smyth,"Smyth, Miss",120.00,,6 months,182,2,Student,1927-11-12,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Supplement,1927-11-19,1927-12-19,https://shakespeareandco.princeton.edu/members/walls/,Mrs. C. Walls,"Walls, Mrs. C.",10.00,,1 month,30,2,,1927-11-10,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1927-11-19,1927-12-19,https://shakespeareandco.princeton.edu/members/chauvel/,Jean Chauvel,"Chauvel, Jean",35.00,,1 month,30,2,,1927-11-19,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-11-19,1927-11-25,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/walpole-jeremy-crale/,Jeremy at Crale,,"Walpole, Hugh",1927,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/4b%2Fa3%2F65%2F4ba365cea0974f05a43fd7f77ce258e9%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1927-11-19,1927-12-03,https://shakespeareandco.princeton.edu/members/hill-w/,W. Hill,"Hill, W.",17.50,,2 weeks,14,,,1927-11-19,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-11-19,1927-11-28,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/mcalmon-hasty-bunch/,A Hasty Bunch,,"McAlmon, Robert",1921,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2F06%2Fd2%2F2106d277bd754d6dafddd7d2757a5841%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-11-19,1927-11-21,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/verga-mastro-don-gesualdo/,Mastro-don Gesualdo,,"Verga, Giovanni",1923,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2F59%2F9e%2F25599eaf4e80471ba949b1c50073b1c9%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1927-11-20,1928-02-20,https://shakespeareandco.princeton.edu/members/powell-2/,Mr. Powell,"Powell, Mr.",68.00,,3 months,92,2,,1927-10-29,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-11-21,1927-11-23,https://shakespeareandco.princeton.edu/members/weaver-audrey/,Audrey Weaver,"Weaver, Audrey",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/van-dine-canary-murder-case/,The Canary Murder Case,,"Van Dine, S. S.",1927,,Lending Library Card,"Sylvia Beach, Miss Audrey Weaver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd1b5179-d6c8-46be-8f6e-d6fb81083019/manifest,https://iiif.princeton.edu/loris/figgy_prod/24%2Ff0%2F19%2F24f019476ef849979ab3a885594dd4dc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1927-11-21,1927-12-21,https://shakespeareandco.princeton.edu/members/goodell-m/,M. Goodell,"Goodell, M.",20.00,50.00,1 month,30,1,,1927-11-21,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-11-21,1927-11-23,https://shakespeareandco.princeton.edu/members/weaver-audrey/,Audrey Weaver,"Weaver, Audrey",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/rinehart-lost-ecstasy-novel/,Lost Ecstasy: A Novel,,"Rinehart, Mary Roberts",1927,,Lending Library Card,"Sylvia Beach, Miss Audrey Weaver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd1b5179-d6c8-46be-8f6e-d6fb81083019/manifest,https://iiif.princeton.edu/loris/figgy_prod/24%2Ff0%2F19%2F24f019476ef849979ab3a885594dd4dc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-11-21,1927-11-23,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/kennedy-red-sky-morning/,Red Sky at Morning,,"Kennedy, Margaret",1927,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2F59%2F9e%2F25599eaf4e80471ba949b1c50073b1c9%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-11-21,1927-12-03,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/maugham-human-bondage/,Of Human Bondage,,"Maugham, W. Somerset",1915,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2Fce%2F48%2F50ce48455c1948d7bb7d3a7a46fd437b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-11-23,1927-11-25,https://shakespeareandco.princeton.edu/members/weaver-audrey/,Audrey Weaver,"Weaver, Audrey",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/hine-hurcotts/,The Hurcotts,,"Hine, Muriel",1927,,Lending Library Card,"Sylvia Beach, Miss Audrey Weaver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd1b5179-d6c8-46be-8f6e-d6fb81083019/manifest,https://iiif.princeton.edu/loris/figgy_prod/24%2Ff0%2F19%2F24f019476ef849979ab3a885594dd4dc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-11-23,1927-11-25,https://shakespeareandco.princeton.edu/members/weaver-audrey/,Audrey Weaver,"Weaver, Audrey",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/roberts-time-man/,The Time of Man,,"Roberts, Elizabeth Madox",1926,,Lending Library Card,"Sylvia Beach, Miss Audrey Weaver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd1b5179-d6c8-46be-8f6e-d6fb81083019/manifest,https://iiif.princeton.edu/loris/figgy_prod/24%2Ff0%2F19%2F24f019476ef849979ab3a885594dd4dc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-11-23,1927-11-25,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/lewisohn-defeated/,The Defeated,,"Lewisohn, Ludwig",1927,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2F59%2F9e%2F25599eaf4e80471ba949b1c50073b1c9%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-11-23,1927-11-29,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/whitechurch-shot-downs-detective/,Shot on the Downs: A Detective Story,,"Whitechurch, Victor L.",1927,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/f8%2Fab%2Fb4%2Ff8abb4571a74451e91d3f239dde58ea4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-11-23,1927-11-29,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/kennedy-red-sky-morning/,Red Sky at Morning,,"Kennedy, Margaret",1927,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/f8%2Fab%2Fb4%2Ff8abb4571a74451e91d3f239dde58ea4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-11-23,1927-12-07,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/smith-shadow-river/,Shadow River,,"Smith, Walton Hall",1927,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2F6e%2Fea%2F256eeabe8a054470a7abd5bdd9d57873%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-11-24,1927-12-09,https://shakespeareandco.princeton.edu/members/schirmer/,Mabel Schirmer / Mrs. Robert Schirmer,"Schirmer, Mabel",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/williams-american-grain/,In the American Grain,,"Williams, William Carlos",1925,,Lending Library Card,"Sylvia Beach, Mabel Schirmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4c00d0b2-7cb9-46e1-b628-2eac6ac7bb07/manifest,https://iiif-cloud.princeton.edu/iiif/2/6f%2F39%2Fe9%2F6f39e93a96d949779213b4eed245ca93%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1927-11-24,1928-11-24,https://shakespeareandco.princeton.edu/members/schirmer/,Mabel Schirmer / Mrs. Robert Schirmer,"Schirmer, Mabel",180.00,,1 year,366,1,,1927-11-24,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Mabel Schirmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/4c00d0b2-7cb9-46e1-b628-2eac6ac7bb07/manifest,;https://iiif-cloud.princeton.edu/iiif/2/6f%2F39%2Fe9%2F6f39e93a96d949779213b4eed245ca93%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-11-25,1927-11-30,https://shakespeareandco.princeton.edu/members/weaver-audrey/,Audrey Weaver,"Weaver, Audrey",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/benson-sentimentalists/,The Sentimentalists,,"Benson, Robert-Hugh",1906,,Lending Library Card,"Sylvia Beach, Miss Audrey Weaver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd1b5179-d6c8-46be-8f6e-d6fb81083019/manifest,https://iiif.princeton.edu/loris/figgy_prod/24%2Ff0%2F19%2F24f019476ef849979ab3a885594dd4dc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1927-11-25,1927-12-25,https://shakespeareandco.princeton.edu/members/lemer/,Mrs. N. A. Lemer,"Lemer, Mrs. N. A.",25.00,,1 month,30,1,,1927-11-25,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-11-25,1927-12-12,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/wolf-springboard/,Springboard,,"Wolf, Robert",1927,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/4b%2Fa3%2F65%2F4ba365cea0974f05a43fd7f77ce258e9%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-11-25,1927-11-28,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/thurston-jane-carroll/,Jane Carroll,,"Thurston, Ernest Temple",1927,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2F59%2F9e%2F25599eaf4e80471ba949b1c50073b1c9%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-11-25,1927-11-30,https://shakespeareandco.princeton.edu/members/weaver-audrey/,Audrey Weaver,"Weaver, Audrey",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/farington-farington-diary/,The Farington Diary,,"Farington, Joseph",,,Lending Library Card,"Sylvia Beach, Miss Audrey Weaver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd1b5179-d6c8-46be-8f6e-d6fb81083019/manifest,https://iiif.princeton.edu/loris/figgy_prod/24%2Ff0%2F19%2F24f019476ef849979ab3a885594dd4dc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-11-25,1927-12-10,https://shakespeareandco.princeton.edu/members/williams-marjorie/,Marjorie Williams / Lady Marjorie Williams,"Williams, Marjorie",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/ludwig-genius-character/,Genius and Character,,"Ludwig, Emil",1927,,Lending Library Card,"Sylvia Beach, Lady Marjorie Williams Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b31e886b-0c7c-4553-a941-ead88c563239/manifest,https://iiif.princeton.edu/loris/figgy_prod/14%2Fe8%2Fd4%2F14e8d43bd6f64122881addec1c4024ab%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-11-26,1927-12-07,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/sitwell-bombardment/,Before the Bombardment,,"Sitwell, Osbert",1926,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2F6e%2Fea%2F256eeabe8a054470a7abd5bdd9d57873%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1927-11-26,1927-12-26,https://shakespeareandco.princeton.edu/members/matieu/,Mme Matieu,"Matieu, Mme",20.00,,1 month,30,1,,1927-11-26,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-11-28,1927-11-29,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/carr-philosophy-benedetto-croce/,The Philosophy of Benedetto Croce: The Problem of Art and History,,"Carr, Herbert Wildon",1917,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/a4%2F4e%2Fba%2Fa44eba3e26a54d8fb584f4af722ab0ff%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-11-28,1928-01-10,https://shakespeareandco.princeton.edu/members/williams-marjorie/,Marjorie Williams / Lady Marjorie Williams,"Williams, Marjorie",,,,,,,,,Returned,43,,,https://shakespeareandco.princeton.edu/books/meredith-amazing-marriage/,The Amazing Marriage,,"Meredith, George",1895,,Lending Library Card,"Sylvia Beach, Lady Marjorie Williams Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b31e886b-0c7c-4553-a941-ead88c563239/manifest,https://iiif.princeton.edu/loris/figgy_prod/14%2Fe8%2Fd4%2F14e8d43bd6f64122881addec1c4024ab%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1927-11-28,1928-11-28,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",144.00,,1 year,366,1,,1928-02-18,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/af%2Fcd%2F4b%2Fafcd4b7698644be4ad8edf82445910ee%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-11-28,1927-11-30,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/castle-new-wine/,New Wine,,"Castle, Agnes;Castle, Egerton",1919,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2F59%2F9e%2F25599eaf4e80471ba949b1c50073b1c9%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1927-11-28,1928-01-08,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",85.00,,"1 month, 11 days",41,2,,1927-11-28,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,;https://iiif.princeton.edu/loris/figgy_prod/a4%2F4e%2Fba%2Fa44eba3e26a54d8fb584f4af722ab0ff%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-11-28,1927-11-29,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/santayana-realm-essence/,The Realm of Essence,,"Santayana, George",1927,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/a4%2F4e%2Fba%2Fa44eba3e26a54d8fb584f4af722ab0ff%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-11-28,1927-12-03,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/joyce-exiles/,Exiles,,"Joyce, James",1918,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/5d%2F94%2F00%2F5d9400637a2e4682a81940685b942a72%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-11-29,1927-12-06,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/roberts-time-man/,The Time of Man,,"Roberts, Elizabeth Madox",1926,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/f8%2Fab%2Fb4%2Ff8abb4571a74451e91d3f239dde58ea4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-11-29,1928-01-11,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,43,,,https://shakespeareandco.princeton.edu/books/ellis-affirmations/,Affirmations,,"Ellis, Havelock",1898,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/c2%2Ff7%2F29%2Fc2f7296928344566aa900c8c0644c909%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-11-29,1927-12-08,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/bell-since-cezanne/,Since CΓ©zanne,,"Bell, Clive",1922,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2F06%2Fd2%2F2106d277bd754d6dafddd7d2757a5841%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-11-29,1927-11-30,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/lewis-time-western-man/,Time and Western Man,,"Lewis, Wyndham",1927,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/a4%2F4e%2Fba%2Fa44eba3e26a54d8fb584f4af722ab0ff%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-11-29,1927-12-05,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/perry-philosophy-recent-past/,Philosophy of the Recent Past: An Outline of European and American Philosophy Since 1860,,"Perry, Ralph Barton",1926,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/a4%2F4e%2Fba%2Fa44eba3e26a54d8fb584f4af722ab0ff%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-11-29,1927-11-30,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/dell-request/,By Request,,"Dell, Ethel M.",1927,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/f8%2Fab%2Fb4%2Ff8abb4571a74451e91d3f239dde58ea4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-11-30,1927-12-02,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/mottram-mr-dormer/,Our Mr. Dormer,,"Mottram, R. H.",1927,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2F59%2F9e%2F25599eaf4e80471ba949b1c50073b1c9%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-11-30,1927-12-02,https://shakespeareandco.princeton.edu/members/weaver-audrey/,Audrey Weaver,"Weaver, Audrey",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/kennedy-red-sky-morning/,Red Sky at Morning,,"Kennedy, Margaret",1927,,Lending Library Card,"Sylvia Beach, Miss Audrey Weaver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd1b5179-d6c8-46be-8f6e-d6fb81083019/manifest,https://iiif.princeton.edu/loris/figgy_prod/24%2Ff0%2F19%2F24f019476ef849979ab3a885594dd4dc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-11-30,1927-12-02,https://shakespeareandco.princeton.edu/members/weaver-audrey/,Audrey Weaver,"Weaver, Audrey",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/wescott-grandmothers-family-portrait/,The Grandmothers: A Family Portrait,,"Wescott, Glenway",1927,,Lending Library Card,"Sylvia Beach, Miss Audrey Weaver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd1b5179-d6c8-46be-8f6e-d6fb81083019/manifest,https://iiif.princeton.edu/loris/figgy_prod/24%2Ff0%2F19%2F24f019476ef849979ab3a885594dd4dc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-11-30,1927-12-06,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/parrish-morrow-morning/,To Morrow Morning,,"Parrish, Anne",1927,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/f8%2Fab%2Fb4%2Ff8abb4571a74451e91d3f239dde58ea4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-11-30,1927-12-05,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/horn-trader-horn-life/,Trader Horn: Being the Life and Works of Aloysius Horn,,"Horn, Alfred Aloysius",1927,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/a4%2F4e%2Fba%2Fa44eba3e26a54d8fb584f4af722ab0ff%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1927-12-01,1928-01-01,https://shakespeareandco.princeton.edu/members/marsh-barbara/,Barbara Marsh,"Marsh, Barbara",25.00,50.00,1 month,31,1,,1927-12-01,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1927-12-01,1927-12-01,https://shakespeareandco.princeton.edu/members/blom/,Marguerite Blom,"Blom, Marguerite",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-12-02,1927-12-11,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/ford-mirror-france/,A Mirror to France,,"Ford, Ford Madox",1926,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/17%2Fa8%2F4d%2F17a84d484db04ae8b4c940dde3d117ff%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-12-02,1927-12-10,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/sabatini-bellarion-fortunate-romance/,Bellarion the Fortunate: A Romance,,"Sabatini, Rafael",1926,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/17%2Fa8%2F4d%2F17a84d484db04ae8b4c940dde3d117ff%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-12-02,1927-12-07,https://shakespeareandco.princeton.edu/members/weaver-audrey/,Audrey Weaver,"Weaver, Audrey",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/wilder-cabala/,The Cabala,,"Wilder, Thornton",1926,,Lending Library Card,"Sylvia Beach, Miss Audrey Weaver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd1b5179-d6c8-46be-8f6e-d6fb81083019/manifest,https://iiif.princeton.edu/loris/figgy_prod/24%2Ff0%2F19%2F24f019476ef849979ab3a885594dd4dc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1927-12-02,1928-06-02,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",80.00,,6 months,183,1,Professor / Teacher,1928-04-20,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,;https://iiif-cloud.princeton.edu/iiif/2/21%2F06%2Fd2%2F2106d277bd754d6dafddd7d2757a5841%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-12-02,1927-12-07,https://shakespeareandco.princeton.edu/members/weaver-audrey/,Audrey Weaver,"Weaver, Audrey",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/ostenso-mad-carews/,The Mad Carews,,"Ostenso, Martha",1925,,Lending Library Card,"Sylvia Beach, Miss Audrey Weaver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd1b5179-d6c8-46be-8f6e-d6fb81083019/manifest,https://iiif.princeton.edu/loris/figgy_prod/24%2Ff0%2F19%2F24f019476ef849979ab3a885594dd4dc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1927-12-02,1927-12-02,https://shakespeareandco.princeton.edu/members/andrews-2/,Esther Andrews,"Andrews, Esther",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Supplement,1927-12-02,1927-12-29,https://shakespeareandco.princeton.edu/members/edmonds-gwyneth/,Gwyneth Edmonds,"Edmonds, Gwyneth",10.00,,27 days,27,1,,1927-12-02,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-12-02,1927-12-06,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/powys-ducdame/,Ducdame,,"Powys, John Cowper",1925,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2F59%2F9e%2F25599eaf4e80471ba949b1c50073b1c9%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-12-02,1927-12-10,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/orpen-outline-art/,The Outline of Art,,"Orpen, William, Sir",1927,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2F06%2Fd2%2F2106d277bd754d6dafddd7d2757a5841%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1927-12-02,1928-01-02,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",35.00,,1 month,31,2,,1927-12-02,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,;https://iiif-cloud.princeton.edu/iiif/2/17%2Fa8%2F4d%2F17a84d484db04ae8b4c940dde3d117ff%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-12-03,1928-01-04,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,32,,,https://shakespeareandco.princeton.edu/books/oneill-desire-elms-play/,Desire under the Elms: A Play in Three Parts,,"O'Neill, Eugene",1924,Some editions of *Desire under the Elms* include O'Neill's *Welded* (1924) and [*All God's Chillun Got Wings*](https://shakespeareandco.princeton.edu/books/oneill-gods-chillun-got/) (1924). [M. Villars](https://shakespeareandco.princeton.edu/members/villars/) purchased an edition that includes *All God's Chillun Got Wings.*,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/5d%2F94%2F00%2F5d9400637a2e4682a81940685b942a72%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1927-12-03,1928-01-03,https://shakespeareandco.princeton.edu/members/borton-viennie/,Viennie Borton,"Borton, Viennie",35.00,,1 month,31,2,,1927-11-30,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-12-03,1928-01-17,https://shakespeareandco.princeton.edu/members/jackson-5/,Mrs. Jackson,"Jackson, Mrs.",,,,,,,,,Returned,45,,,https://shakespeareandco.princeton.edu/books/haldane-motherhood-enemies/,Motherhood and Its Enemies,,"Haldane, Charlotte",1927,,Lending Library Card,"Sylvia Beach, Mrs. Jackson Lending Library Card, Box 59, Folder 6, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ac6269e-f2f6-4df6-861c-40ac8f15296d/manifest,https://iiif-cloud.princeton.edu/iiif/2/3e%2F0d%2Fe4%2F3e0de42656e249318a47a8a8d7828d2e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-12-03,1928-01-17,https://shakespeareandco.princeton.edu/members/jackson-5/,Mrs. Jackson,"Jackson, Mrs.",,,,,,,,,Returned,45,,,https://shakespeareandco.princeton.edu/books/huxley-jesting-pilate-diary/,Jesting Pilate: The Diary of a Journey,,"Huxley, Aldous",1926,,Lending Library Card,"Sylvia Beach, Mrs. Jackson Lending Library Card, Box 59, Folder 6, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ac6269e-f2f6-4df6-861c-40ac8f15296d/manifest,https://iiif-cloud.princeton.edu/iiif/2/3e%2F0d%2Fe4%2F3e0de42656e249318a47a8a8d7828d2e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-12-03,1927-12-23,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/stern-smoke-rings/,Smoke Rings,,"Stern, G. B.",1923,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2Fce%2F48%2F50ce48455c1948d7bb7d3a7a46fd437b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-12-05,1927-12-13,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/sitwell-england-reclaimed/,England Reclaimed,,"Sitwell, Osbert",1927,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/a4%2F4e%2Fba%2Fa44eba3e26a54d8fb584f4af722ab0ff%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-12-05,1927-12-13,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/riding-survey-modernist-poetry/,A Survey of Modernist Poetry,,"Riding, Laura;Graves, Robert",1927,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/a4%2F4e%2Fba%2Fa44eba3e26a54d8fb584f4af722ab0ff%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1927-12-05,1928-06-05,https://shakespeareandco.princeton.edu/members/dodds-1/,Miss Dodds,"Dodds, Miss",80.00,,6 months,183,1,Student,1927-12-05,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-12-06,1927-12-12,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/thomson-seasons-summer/,The Seasons: Summer,,"Thomson, James",1817,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/f8%2Fab%2Fb4%2Ff8abb4571a74451e91d3f239dde58ea4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-12-06,1928-02-04,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,60,,,https://shakespeareandco.princeton.edu/books/arnim-introduction-sally/,Introduction to Sally,,"Arnim, Elizabeth von",1926,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/f8%2Fab%2Fb4%2Ff8abb4571a74451e91d3f239dde58ea4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-12-06,1927-12-08,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/burke-sun-splendour/,The Sun in Splendour,,"Burke, Thomas",1926,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2F59%2F9e%2F25599eaf4e80471ba949b1c50073b1c9%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1927-12-06,1928-01-06,https://shakespeareandco.princeton.edu/members/gieske-f-a/,F. A. Gieske,"Gieske, F. A.",25.00,50.00,1 month,31,1,,1927-12-06,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1927-12-06,1928-01-06,https://shakespeareandco.princeton.edu/members/demos-r/,R. Demos,"Demos, R.",20.00,50.00,1 month,31,1,Professor / Teacher,1927-12-06,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-12-06,1927-12-12,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/sinclair-allinghams/,The Allinghams,,"Sinclair, May",1927,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/f8%2Fab%2Fb4%2Ff8abb4571a74451e91d3f239dde58ea4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-12-07,1928-02-06,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,61,,,https://shakespeareandco.princeton.edu/books/tomlinson-gallions-reach/,Gallions Reach,,"Tomlinson, H. M.",1927,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2F6e%2Fea%2F256eeabe8a054470a7abd5bdd9d57873%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-12-07,1927-12-13,https://shakespeareandco.princeton.edu/members/weaver-audrey/,Audrey Weaver,"Weaver, Audrey",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/wilder-bridge-san-luis/,The Bridge of San Luis Rey,,"Wilder, Thornton",1927,,Lending Library Card,"Sylvia Beach, Miss Audrey Weaver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd1b5179-d6c8-46be-8f6e-d6fb81083019/manifest,https://iiif.princeton.edu/loris/figgy_prod/24%2Ff0%2F19%2F24f019476ef849979ab3a885594dd4dc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-12-07,1927-12-09,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/woolf-lighthouse/,To the Lighthouse,,"Woolf, Virginia",1927,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/86%2F42%2F18%2F8642189e397a42fd995c54f2307c5d76%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-12-07,1927-12-13,https://shakespeareandco.princeton.edu/members/weaver-audrey/,Audrey Weaver,"Weaver, Audrey",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/walpole-jeremy-crale/,Jeremy at Crale,,"Walpole, Hugh",1927,,Lending Library Card,"Sylvia Beach, Miss Audrey Weaver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd1b5179-d6c8-46be-8f6e-d6fb81083019/manifest,https://iiif.princeton.edu/loris/figgy_prod/24%2Ff0%2F19%2F24f019476ef849979ab3a885594dd4dc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-12-07,1928-02-13,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,68,,,https://shakespeareandco.princeton.edu/books/dostoyevsky-gambler/,The Gambler,,"Dostoyevsky, Fyodor",1866,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2F6e%2Fea%2F256eeabe8a054470a7abd5bdd9d57873%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-12-07,1928-02-13,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,68,,,https://shakespeareandco.princeton.edu/books/dostoyevsky-insulted-injured/,The Insulted and Injured,,"Dostoyevsky, Fyodor",1915,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2F6e%2Fea%2F256eeabe8a054470a7abd5bdd9d57873%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-12-08,1927-12-15,https://shakespeareandco.princeton.edu/members/linossier-raymonde/,Raymonde Linossier,"Linossier, Raymonde",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/le-queux-blackmailed/,Blackmailed,,"Le Queux, William",1927,,Lending Library Card,"Sylvia Beach, Raymonde Linossier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/53ede5bf-939d-44f5-9ddb-4dd39363bd20/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2F4d%2Fbc%2F654dbcac57a7418aafe1eaa4e4d9032c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-12-08,1927-12-09,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/swinnerton-summer-storm/,Summer Storm,,"Swinnerton, Frank",1926,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2F59%2F9e%2F25599eaf4e80471ba949b1c50073b1c9%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1927-12-08,,https://shakespeareandco.princeton.edu/members/linossier-raymonde/,Raymonde Linossier,"Linossier, Raymonde",,,,,,AdL,1927-12-08,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Raymonde Linossier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/53ede5bf-939d-44f5-9ddb-4dd39363bd20/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2F4d%2Fbc%2F654dbcac57a7418aafe1eaa4e4d9032c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-12-08,1927-12-15,https://shakespeareandco.princeton.edu/members/linossier-raymonde/,Raymonde Linossier,"Linossier, Raymonde",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/le-queux-letter-e/,"The Letter ""E""",,"Le Queux, William",1926,,Lending Library Card,"Sylvia Beach, Raymonde Linossier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/53ede5bf-939d-44f5-9ddb-4dd39363bd20/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2F4d%2Fbc%2F654dbcac57a7418aafe1eaa4e4d9032c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-12-09,1927-12-21,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/hemingway-sun-also-rises/,The Sun Also Rises,,"Hemingway, Ernest",1926,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/86%2F42%2F18%2F8642189e397a42fd995c54f2307c5d76%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-12-09,1927-12-21,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/wilder-bridge-san-luis/,The Bridge of San Luis Rey,,"Wilder, Thornton",1927,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/86%2F42%2F18%2F8642189e397a42fd995c54f2307c5d76%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-12-09,1927-12-21,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/wilder-cabala/,The Cabala,,"Wilder, Thornton",1926,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/86%2F42%2F18%2F8642189e397a42fd995c54f2307c5d76%2Fintermediate_file/full/full/0/default.jpg
+Crossed out,1927-12-09,,https://shakespeareandco.princeton.edu/members/schirmer/,Mabel Schirmer / Mrs. Robert Schirmer,"Schirmer, Mabel",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/crowninshield-vanity-fair/,Vanity Fair,,,,,Lending Library Card,"Sylvia Beach, Mabel Schirmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4c00d0b2-7cb9-46e1-b628-2eac6ac7bb07/manifest,https://iiif-cloud.princeton.edu/iiif/2/6f%2F39%2Fe9%2F6f39e93a96d949779213b4eed245ca93%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-12-09,1927-12-21,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/cather-death-comes-archbishop/,Death Comes for the Archbishop,,"Cather, Willa",1927,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/86%2F42%2F18%2F8642189e397a42fd995c54f2307c5d76%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1927-12-09,1927-12-23,https://shakespeareandco.princeton.edu/members/hill-john-c/,John C. Hill,"Hill, John C.",17.50,,2 weeks,14,,,1927-12-09,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-12-10,1927-12-20,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/sterne-works-sterne-life/,"The Works of Sterne: The Life and Opinions of Tristram Shandy, Gentleman & A Sentimental Journey through France and Italy","Vol. 1 The Life and Opinions of Tristram Shandy, Gentleman","Sterne, Laurence",1900,"For additional borrows, see [*Tristram Shandy*](https://shakespeareandco.princeton.edu/books/sterne-life-opinions-tristram/) and [*A Sentimental Journey*](https://shakespeareandco.princeton.edu/books/sterne-sentimental-journey-france/).",Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2F59%2F9e%2F25599eaf4e80471ba949b1c50073b1c9%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-12-10,1927-12-17,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/feuchtwanger-ugly-duchess/,The Ugly Duchess,,"Feuchtwanger, Lion",1927,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/17%2Fa8%2F4d%2F17a84d484db04ae8b4c940dde3d117ff%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-12-10,1927-12-10,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/egyptian-art/,Egyptian Art,,,,Unidentified. Gaston Maspero's *Egyptian Art* (1913) or Jean Capart's *Egyptian Art: Introductory Studies* (1923).,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2F06%2Fd2%2F2106d277bd754d6dafddd7d2757a5841%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-12-10,1927-12-30,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/peacock-misfortunes-elphin/,The Misfortunes of Elphin,,"Peacock, Thomas Love",1829,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2F06%2Fd2%2F2106d277bd754d6dafddd7d2757a5841%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-12-10,1927-12-31,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/johnson-general-history-robberies/,A General History of the Robberies and Murders of the Most Notorious Pirates,,"Johnson, Captain Charles",1926,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/17%2Fa8%2F4d%2F17a84d484db04ae8b4c940dde3d117ff%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-12-12,1927-12-17,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/ostenso-mad-carews/,The Mad Carews,,"Ostenso, Martha",1925,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/f8%2Fab%2Fb4%2Ff8abb4571a74451e91d3f239dde58ea4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1927-12-12,1927-12-12,https://shakespeareandco.princeton.edu/members/souvtchinsky/,Mme Souvtchinsky / Mme Soutchinsky / Mme Soutvinsky / Mme Soukinschsky,"Souvtchinsky, Mme",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-12-12,1928-02-07,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,57,,,https://shakespeareandco.princeton.edu/books/dos-passos-orient-express/,Orient Express,,"Dos Passos, John",1927,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/4b%2Fa3%2F65%2F4ba365cea0974f05a43fd7f77ce258e9%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-12-12,1927-12-17,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/forster-howards-end/,Howards End,,"Forster, E. M.",1910,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/f8%2Fab%2Fb4%2Ff8abb4571a74451e91d3f239dde58ea4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1927-12-13,1927-12-13,https://shakespeareandco.princeton.edu/members/kranenburg-hoen/,Mme Kranenburg-Hoen,"Kranenburg-Hoen, Mme",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-12-13,1927-12-19,https://shakespeareandco.princeton.edu/members/weaver-audrey/,Audrey Weaver,"Weaver, Audrey",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/borden-flamingo-novel/,Flamingo: A Novel,,"Borden, Mary",1927,,Lending Library Card,"Sylvia Beach, Miss Audrey Weaver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd1b5179-d6c8-46be-8f6e-d6fb81083019/manifest,https://iiif.princeton.edu/loris/figgy_prod/24%2Ff0%2F19%2F24f019476ef849979ab3a885594dd4dc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-12-13,1927-12-19,https://shakespeareandco.princeton.edu/members/weaver-audrey/,Audrey Weaver,"Weaver, Audrey",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/roberts-heart-flesh-novel/,My Heart and My Flesh: A Novel,,"Roberts, Elizabeth Madox",1927,,Lending Library Card,"Sylvia Beach, Miss Audrey Weaver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd1b5179-d6c8-46be-8f6e-d6fb81083019/manifest,https://iiif.princeton.edu/loris/figgy_prod/24%2Ff0%2F19%2F24f019476ef849979ab3a885594dd4dc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1927-12-13,1927-12-13,https://shakespeareandco.princeton.edu/members/kahn-l/,Mrs. L. Kahn,"Kahn, Mrs. L.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-12-13,1927-12-19,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/haldane-possible-worlds-essays/,Possible Worlds and Other Essays,,"Haldane, J. B. S.",1927,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/a4%2F4e%2Fba%2Fa44eba3e26a54d8fb584f4af722ab0ff%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-12-13,1927-12-19,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/ludwig-genius-character/,Genius and Character,,"Ludwig, Emil",1927,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/a4%2F4e%2Fba%2Fa44eba3e26a54d8fb584f4af722ab0ff%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1927-12-13,1927-12-13,https://shakespeareandco.princeton.edu/members/bachmant/,E. G. Bachmann,"Bachmann, E. G.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-12-15,1927-12-19,https://shakespeareandco.princeton.edu/members/linossier-raymonde/,Raymonde Linossier,"Linossier, Raymonde",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/le-queux-fatal-face/,The Fatal Face,,"Le Queux, William",1926,,Lending Library Card,"Sylvia Beach, Raymonde Linossier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/53ede5bf-939d-44f5-9ddb-4dd39363bd20/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2F4d%2Fbc%2F654dbcac57a7418aafe1eaa4e4d9032c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1927-12-15,1927-12-15,https://shakespeareandco.princeton.edu/members/gibson-f-t/,F. T. Gibson,"Gibson, F. T.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1927-12-15,1928-01-15,https://shakespeareandco.princeton.edu/members/barry-mlle-m-j/,M. J. Barry,"Barry, M. J.",25.00,50.00,1 month,31,1,,1927-12-15,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1927-12-15,1928-03-15,https://shakespeareandco.princeton.edu/members/earley-1/,Mrs. Arthur Earley,"Earley, Mrs. Arthur",60.00,50.00,3 months,91,1,,1927-12-15,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-12-15,1927-12-19,https://shakespeareandco.princeton.edu/members/linossier-raymonde/,Raymonde Linossier,"Linossier, Raymonde",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/le-queux-crooked-way/,The Crooked Way,,"Le Queux, William",1919,,Lending Library Card,"Sylvia Beach, Raymonde Linossier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/53ede5bf-939d-44f5-9ddb-4dd39363bd20/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2F4d%2Fbc%2F654dbcac57a7418aafe1eaa4e4d9032c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1927-12-15,1928-01-15,https://shakespeareandco.princeton.edu/members/lentilhon/,Mrs. E. Lentilhon,"Lentilhon, Mrs. E.",25.00,50.00,1 month,31,1,,1927-12-15,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-12-17,1927-12-20,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/phillpotts-demeters-daughter/,Demeter's Daughter,,"Phillpotts, Eden",1911,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/f8%2Fab%2Fb4%2Ff8abb4571a74451e91d3f239dde58ea4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-12-17,1927-12-19,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/constant-adolphe/,Adolphe,,"Constant, Benjamin",1918,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/17%2Fa8%2F4d%2F17a84d484db04ae8b4c940dde3d117ff%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-12-17,1927-12-20,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/maxwell-gabrielle-romance/,Gabrielle: A Romance,,"Maxwell, W. B.",1926,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/f8%2Fab%2Fb4%2Ff8abb4571a74451e91d3f239dde58ea4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-12-19,1927-12-19,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/lewisohn-defeated/,The Defeated,,"Lewisohn, Ludwig",1927,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/a4%2F4e%2Fba%2Fa44eba3e26a54d8fb584f4af722ab0ff%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-12-19,,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/hemingway-sun-also-rises/,The Sun Also Rises,,"Hemingway, Ernest",1926,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/a4%2F4e%2Fba%2Fa44eba3e26a54d8fb584f4af722ab0ff%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-12-19,1927-12-22,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/lewis-lion-fox/,The Lion and the Fox,,"Lewis, Wyndham",1927,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/a4%2F4e%2Fba%2Fa44eba3e26a54d8fb584f4af722ab0ff%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-12-19,1928-01-05,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/graeme-passion-murder-mystery/,"Passion, Murder, and Mystery",,"Graeme, Bruce",1927,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/17%2Fa8%2F4d%2F17a84d484db04ae8b4c940dde3d117ff%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1927-12-19,1928-01-19,https://shakespeareandco.princeton.edu/members/walls/,Mrs. C. Walls,"Walls, Mrs. C.",35.00,,1 month,31,2,,1927-12-09,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1927-12-19,1928-06-19,https://shakespeareandco.princeton.edu/members/hervey-mr/;https://shakespeareandco.princeton.edu/members/hervey-2/,Mr. Hervey;Mrs. Hervey,"Hervey, Mr.;Hervey, Mrs.",300.00,,6 months,183,4,,1927-12-19,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-12-19,1927-12-22,https://shakespeareandco.princeton.edu/members/weaver-audrey/,Audrey Weaver,"Weaver, Audrey",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/drinkwater-mr-charles-king/,"Mr. Charles, King of England",,"Drinkwater, John",1926,,Lending Library Card,"Sylvia Beach, Miss Audrey Weaver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd1b5179-d6c8-46be-8f6e-d6fb81083019/manifest,https://iiif.princeton.edu/loris/figgy_prod/24%2Ff0%2F19%2F24f019476ef849979ab3a885594dd4dc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-12-19,1927-12-22,https://shakespeareandco.princeton.edu/members/weaver-audrey/,Audrey Weaver,"Weaver, Audrey",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/baring-tinkers-leave/,Tinker's Leave,,"Baring, Maurice",1927,,Lending Library Card,"Sylvia Beach, Miss Audrey Weaver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd1b5179-d6c8-46be-8f6e-d6fb81083019/manifest,https://iiif.princeton.edu/loris/figgy_prod/24%2Ff0%2F19%2F24f019476ef849979ab3a885594dd4dc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1927-12-19,1927-12-19,https://shakespeareandco.princeton.edu/members/miss-ch-van-sherpenzeel/,Miss Ch. Van Sherpenzeel,"Van Sherpenzeel, Miss Ch.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-12-20,,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/castle-new-wine/,New Wine,,"Castle, Agnes;Castle, Egerton",1919,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/f8%2Fab%2Fb4%2Ff8abb4571a74451e91d3f239dde58ea4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-12-20,,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/deeping-kitty/,Kitty,,"Deeping, Warwick",1927,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/f8%2Fab%2Fb4%2Ff8abb4571a74451e91d3f239dde58ea4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1927-12-20,1927-12-20,https://shakespeareandco.princeton.edu/members/borton-viennie/,Viennie Borton,"Borton, Viennie",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-12-20,1927-12-22,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/lewisohn-roman-summer/,Roman Summer,,"Lewisohn, Ludwig",1927,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2F59%2F9e%2F25599eaf4e80471ba949b1c50073b1c9%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1927-12-20,1927-12-20,https://shakespeareandco.princeton.edu/members/stokes/,M. Stokes,"Stokes, M.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-12-21,1928-04-02,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,103,,,https://shakespeareandco.princeton.edu/books/bibesco-return/,There Is No Return,,"Bibesco, Elizabeth",1927,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/01%2Fd1%2Fdc%2F01d1dcd966d14171baa47e3f1d26f10a%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1927-12-21,1928-01-21,https://shakespeareandco.princeton.edu/members/jones-b-c/,B. C. Jones,"Jones, B. C.",25.00,,1 month,31,1,,1927-12-21,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1927-12-21,1928-03-21,https://shakespeareandco.princeton.edu/members/henton-l/;https://shakespeareandco.princeton.edu/members/henton/,L. Henton;Mrs. Henton,"Henton, L.;Henton, Mrs.",85.00,,3 months,91,2,,1927-12-20,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-12-22,1927-12-28,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/thompson-hounds-spring/,The Hounds of Spring,,"Thompson, Sylvia",1926,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2F59%2F9e%2F25599eaf4e80471ba949b1c50073b1c9%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1927-12-22,1927-12-28,https://shakespeareandco.princeton.edu/members/weaver-audrey/,Audrey Weaver,"Weaver, Audrey",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/gorman-place-called-dagon/,The Place Called Dagon,,"Gorman, Herbert Sherman",1927,,Lending Library Card,"Sylvia Beach, Miss Audrey Weaver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd1b5179-d6c8-46be-8f6e-d6fb81083019/manifest,https://iiif.princeton.edu/loris/figgy_prod/68%2F25%2F4c%2F68254cd17d4a4c9ea72f9910a8e8ca4d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-12-22,1927-12-22,https://shakespeareandco.princeton.edu/members/weaver-audrey/,Audrey Weaver,"Weaver, Audrey",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/jolas-transition/,transition,,,,,Lending Library Card,"Sylvia Beach, Miss Audrey Weaver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd1b5179-d6c8-46be-8f6e-d6fb81083019/manifest,https://iiif.princeton.edu/loris/figgy_prod/24%2Ff0%2F19%2F24f019476ef849979ab3a885594dd4dc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1927-12-22,1927-12-22,https://shakespeareandco.princeton.edu/members/goodell-m/,M. Goodell,"Goodell, M.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-12-22,1927-12-27,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/chesterton-return-don-quixote/,The Return of Don Quixote,,"Chesterton, G. K.",1927,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/a4%2F4e%2Fba%2Fa44eba3e26a54d8fb584f4af722ab0ff%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-12-22,1927-12-22,https://shakespeareandco.princeton.edu/members/weaver-audrey/,Audrey Weaver,"Weaver, Audrey",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/letters-gertrude-bell/,Letters of Gertrude Bell,Vol. 1,"Bell, Gertrude Lowthian",1927,,Lending Library Card,"Sylvia Beach, Miss Audrey Weaver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd1b5179-d6c8-46be-8f6e-d6fb81083019/manifest,https://iiif.princeton.edu/loris/figgy_prod/24%2Ff0%2F19%2F24f019476ef849979ab3a885594dd4dc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-12-23,1927-12-31,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/wescott-grandmothers-family-portrait/,The Grandmothers: A Family Portrait,,"Wescott, Glenway",1927,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2F26%2F63%2Ff226634c19324eb39669cf82dbdc4f0c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-12-23,1927-12-23,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/horace-walpole/,Horace Walpole,,,,Unidentified. By or about Walpole.,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2Fce%2F48%2F50ce48455c1948d7bb7d3a7a46fd437b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1927-12-24,1928-01-24,https://shakespeareandco.princeton.edu/members/jameson/,Mrs. A. E. Jameson,"Jameson, Mrs. A. E.",25.00,50.00,1 month,31,1,,1927-12-24,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1927-12-25,1928-01-25,https://shakespeareandco.princeton.edu/members/tyler-2/,Mr. Tyler,"Tyler, Mr.",20.00,,1 month,31,1,Student,1927-12-19,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-12-26,1928-01-21,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,26,,,https://shakespeareandco.princeton.edu/books/ostenso-wild-geese/,Wild Geese,,"Ostenso, Martha",1925,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/4c%2Fb0%2F05%2F4cb0051a29fd4a30ac4d18a9278429f5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-12-27,1928-01-04,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/ludwig-kaiser-wilhelm-ii/,Kaiser Wilhelm II,,"Ludwig, Emil",1926,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/a4%2F4e%2Fba%2Fa44eba3e26a54d8fb584f4af722ab0ff%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-12-28,1928-01-03,https://shakespeareandco.princeton.edu/members/weaver-audrey/,Audrey Weaver,"Weaver, Audrey",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/letters-gertrude-bell/,Letters of Gertrude Bell,Vol. 2,"Bell, Gertrude Lowthian",1927,,Lending Library Card,"Sylvia Beach, Miss Audrey Weaver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd1b5179-d6c8-46be-8f6e-d6fb81083019/manifest,https://iiif.princeton.edu/loris/figgy_prod/68%2F25%2F4c%2F68254cd17d4a4c9ea72f9910a8e8ca4d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1927-12-28,1927-12-28,https://shakespeareandco.princeton.edu/members/gans-marian/,Marian Gans,"Gans, Marian",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-12-28,1927-12-31,https://shakespeareandco.princeton.edu/members/weaver-audrey/,Audrey Weaver,"Weaver, Audrey",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/pickthall-oriental-encounters-palestine/,Oriental Encounters: Palestine and Syria,,"Pickthall, Marmaduke William",1918,,Lending Library Card,"Sylvia Beach, Miss Audrey Weaver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd1b5179-d6c8-46be-8f6e-d6fb81083019/manifest,https://iiif.princeton.edu/loris/figgy_prod/68%2F25%2F4c%2F68254cd17d4a4c9ea72f9910a8e8ca4d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-12-28,1927-12-30,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/meredith-egoist/,The Egoist,2 vols.,"Meredith, George",1879,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2F59%2F9e%2F25599eaf4e80471ba949b1c50073b1c9%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1927-12-29,1928-02-29,https://shakespeareandco.princeton.edu/members/dessonnes/,Mme Marcel Dessonnes / Mme Dessonnes,"Dessonnes, Mme",50.00,,2 months,62,1,,1927-12-29,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1927-12-29,1927-12-29,https://shakespeareandco.princeton.edu/members/walls/,Mrs. C. Walls,"Walls, Mrs. C.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1927-12-29,1927-12-29,https://shakespeareandco.princeton.edu/members/edmonds-gwyneth/,Gwyneth Edmonds,"Edmonds, Gwyneth",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1927-12-29,1927-12-29,https://shakespeareandco.princeton.edu/members/hill-w/,W. Hill,"Hill, W.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-12-30,1928-01-04,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/rutter-contemporary-artists/,Some Contemporary Artists,,"Rutter, Frank",1922,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2F06%2Fd2%2F2106d277bd754d6dafddd7d2757a5841%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1927-12-30,1928-01-30,https://shakespeareandco.princeton.edu/members/heurgon-jacques/,Jacques Heurgon,"Heurgon, Jacques",28.00,,1 month,31,2,Student,1927-12-30,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-12-31,1928-01-03,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/kennedy-red-sky-morning/,Red Sky at Morning,,"Kennedy, Margaret",1927,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2F26%2F63%2Ff226634c19324eb39669cf82dbdc4f0c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1927-12-31,1928-01-23,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/feuchtwanger-jew-suss/,Jew SΓΌss,,"Feuchtwanger, Lion",1926,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/17%2Fa8%2F4d%2F17a84d484db04ae8b4c940dde3d117ff%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1927-12-31,1928-03-31,https://shakespeareandco.princeton.edu/members/brenman/,Marian Brenman,"Brenman, Marian",60.00,50.00,3 months,91,1,,1927-12-31,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1927-12-31,1928-01-03,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/mckenna-secretary-state/,The Secretary of State,,"McKenna, Stephen",1927,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2F59%2F9e%2F25599eaf4e80471ba949b1c50073b1c9%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1927-12-31,1927-12-31,https://shakespeareandco.princeton.edu/members/chubb/,Thomas C. Chubb,"Chubb, Thomas C.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1927-12-31,1928-01-03,https://shakespeareandco.princeton.edu/members/weaver-audrey/,Audrey Weaver,"Weaver, Audrey",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/nichols-home-series-bouquets/,Are They the Same at Home? Being a Series of Bouquets Diffidently Distributed,,"Nichols, Beverley",1927,,Lending Library Card,"Sylvia Beach, Miss Audrey Weaver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd1b5179-d6c8-46be-8f6e-d6fb81083019/manifest,https://iiif.princeton.edu/loris/figgy_prod/68%2F25%2F4c%2F68254cd17d4a4c9ea72f9910a8e8ca4d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1928-01-02,1928-02-02,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",35.00,,1 month,31,2,,1928-01-02,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/17%2Fa8%2F4d%2F17a84d484db04ae8b4c940dde3d117ff%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-01-03,1928-01-20,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/ellis-sexual-inversion-studies/,Sexual Inversion (Studies in the Psychology of Sex 2),,"Ellis, Havelock",1900,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/dc%2F94%2Ffd%2Fdc94fda0cd9c4ae195f988f5a500f00f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-01-03,1928-01-10,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/wyllarde-undesigning-widow/,The Undesigning Widow,,"Wyllarde, Dolf",1927,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2F26%2F63%2Ff226634c19324eb39669cf82dbdc4f0c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-01-03,1928-01-06,https://shakespeareandco.princeton.edu/members/weaver-audrey/,Audrey Weaver,"Weaver, Audrey",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/tourrier-chinamans-opinion-us/,A Chinaman's Opinion of Us and of His Own Country,,"Tourrier, Theodore",1927,,Lending Library Card,"Sylvia Beach, Miss Audrey Weaver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd1b5179-d6c8-46be-8f6e-d6fb81083019/manifest,https://iiif.princeton.edu/loris/figgy_prod/68%2F25%2F4c%2F68254cd17d4a4c9ea72f9910a8e8ca4d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-01-03,1928-01-10,https://shakespeareandco.princeton.edu/members/weaver-audrey/,Audrey Weaver,"Weaver, Audrey",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/montague-right-map/,Right Off the Map,,"Montague, C. E.",1927,,Lending Library Card,"Sylvia Beach, Miss Audrey Weaver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd1b5179-d6c8-46be-8f6e-d6fb81083019/manifest,https://iiif.princeton.edu/loris/figgy_prod/68%2F25%2F4c%2F68254cd17d4a4c9ea72f9910a8e8ca4d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-01-04,1928-01-07,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/newman-hard-boiled-virgin/,The Hard-Boiled Virgin,,"Newman, Frances",1926,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/a4%2F4e%2Fba%2Fa44eba3e26a54d8fb584f4af722ab0ff%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-01-04,1928-01-09,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/bell-since-cezanne/,Since CΓ©zanne,,"Bell, Clive",1922,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2F06%2Fd2%2F2106d277bd754d6dafddd7d2757a5841%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-01-04,1928-01-28,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,24,,,https://shakespeareandco.princeton.edu/books/macaulay-macaulay-essays/,Essays,,"Macaulay, Thomas Babington",,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/5d%2F94%2F00%2F5d9400637a2e4682a81940685b942a72%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-01-05,1928-01-19,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/secret-societies/,Secret Societies,,,,"Unidentified. Hugh B. C. Pollard's *The Secret Societies of Ireland: Their Rise and Progress* (1922), Nesta H. Webster's *Secret Societies and Subversive Movements* (1924), Herbert Vivian's *Secret Societies, Old and New* (1927).",Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/17%2Fa8%2F4d%2F17a84d484db04ae8b4c940dde3d117ff%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-01-06,1928-01-10,https://shakespeareandco.princeton.edu/members/weaver-audrey/,Audrey Weaver,"Weaver, Audrey",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/russell-right-happy/,The Right to be Happy,,"Russell, Dora",1927,,Lending Library Card,"Sylvia Beach, Miss Audrey Weaver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd1b5179-d6c8-46be-8f6e-d6fb81083019/manifest,https://iiif.princeton.edu/loris/figgy_prod/68%2F25%2F4c%2F68254cd17d4a4c9ea72f9910a8e8ca4d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-01-07,1928-01-10,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/ford-new-york-america/,New York Is Not America,,"Ford, Ford Madox",1927,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/a4%2F4e%2Fba%2Fa44eba3e26a54d8fb584f4af722ab0ff%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-01-07,1928-01-20,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/benn-columbus-undergraduate/,Columbus Undergraduate,,"Benn, John Andrews",1928,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/a4%2F4e%2Fba%2Fa44eba3e26a54d8fb584f4af722ab0ff%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1928-01-08,1928-04-08,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",85.00,,3 months,91,2,,1928-01-07,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/a4%2F4e%2Fba%2Fa44eba3e26a54d8fb584f4af722ab0ff%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-01-09,1928-02-13,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,35,,,https://shakespeareandco.princeton.edu/books/peacock/,Peacock,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2F06%2Fd2%2F2106d277bd754d6dafddd7d2757a5841%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-01-10,1928-01-23,https://shakespeareandco.princeton.edu/members/williams-marjorie/,Marjorie Williams / Lady Marjorie Williams,"Williams, Marjorie",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/letters-gertrude-bell/,Letters of Gertrude Bell,Vol. 1,"Bell, Gertrude Lowthian",1927,,Lending Library Card,"Sylvia Beach, Lady Marjorie Williams Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b31e886b-0c7c-4553-a941-ead88c563239/manifest,https://iiif.princeton.edu/loris/figgy_prod/14%2Fe8%2Fd4%2F14e8d43bd6f64122881addec1c4024ab%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-01-10,1928-01-14,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/cather-death-comes-archbishop/,Death Comes for the Archbishop,,"Cather, Willa",1927,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2F26%2F63%2Ff226634c19324eb39669cf82dbdc4f0c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-01-10,1928-01-14,https://shakespeareandco.princeton.edu/members/weaver-audrey/,Audrey Weaver,"Weaver, Audrey",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/graves-lawrence-arabs/,Lawrence and the Arabs,,"Graves, Robert",1927,,Lending Library Card,"Sylvia Beach, Miss Audrey Weaver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd1b5179-d6c8-46be-8f6e-d6fb81083019/manifest,https://iiif.princeton.edu/loris/figgy_prod/68%2F25%2F4c%2F68254cd17d4a4c9ea72f9910a8e8ca4d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-01-10,1928-01-14,https://shakespeareandco.princeton.edu/members/weaver-audrey/,Audrey Weaver,"Weaver, Audrey",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/aiken-blue-voyage/,Blue Voyage,,"Aiken, Conrad",1927,,Lending Library Card,"Sylvia Beach, Miss Audrey Weaver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd1b5179-d6c8-46be-8f6e-d6fb81083019/manifest,https://iiif.princeton.edu/loris/figgy_prod/68%2F25%2F4c%2F68254cd17d4a4c9ea72f9910a8e8ca4d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-01-10,1928-01-20,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/wells-world-william-clissold/,The World of William Clissold,3 vols.,"Wells, H. G.",1926,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/a4%2F4e%2Fba%2Fa44eba3e26a54d8fb584f4af722ab0ff%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-01-11,1928-01-31,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/dreiser-genius/,"The ""Genius""",,"Dreiser, Theodore",1915,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/c2%2Ff7%2F29%2Fc2f7296928344566aa900c8c0644c909%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-01-14,1928-01-25,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/oneill-emperor-jones/,The Emperor Jones,,"O'Neill, Eugene",1921,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/1c%2Fd9%2Fe1%2F1cd9e183fb104f9d90a4c90c557234ab%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-01-14,1928-01-21,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/walpole-jeremy-crale/,Jeremy at Crale,,"Walpole, Hugh",1927,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2F26%2F63%2Ff226634c19324eb39669cf82dbdc4f0c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-01-14,1928-01-18,https://shakespeareandco.princeton.edu/members/weaver-audrey/,Audrey Weaver,"Weaver, Audrey",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/hemingway-men-without-women/,Men without Women,,"Hemingway, Ernest",1927,,Lending Library Card,"Sylvia Beach, Miss Audrey Weaver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd1b5179-d6c8-46be-8f6e-d6fb81083019/manifest,https://iiif.princeton.edu/loris/figgy_prod/68%2F25%2F4c%2F68254cd17d4a4c9ea72f9910a8e8ca4d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-01-14,1928-01-18,https://shakespeareandco.princeton.edu/members/weaver-audrey/,Audrey Weaver,"Weaver, Audrey",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/david-neel-journey-lhasa/,My Journey to Lhasa,,"David-NΓ©el, Alexandra",1927,,Lending Library Card,"Sylvia Beach, Miss Audrey Weaver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd1b5179-d6c8-46be-8f6e-d6fb81083019/manifest,https://iiif.princeton.edu/loris/figgy_prod/68%2F25%2F4c%2F68254cd17d4a4c9ea72f9910a8e8ca4d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-01-14,1928-01-24,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/cabell-jurgen-comedy-justice/,Jurgen: A Comedy of Justice,,"Cabell, James Branch",1919,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/76%2F98%2F6f%2F76986faad2d441dcac813f1d24693e18%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1928-01-14,1928-04-14,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,3 months,91,1,,1928-01-14,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/76%2F98%2F6f%2F76986faad2d441dcac813f1d24693e18%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-01-17,1928-02-22,https://shakespeareandco.princeton.edu/members/jackson-5/,Mrs. Jackson,"Jackson, Mrs.",,,,,,,,,Returned,36,,,https://shakespeareandco.princeton.edu/books/huxley-crome-yellow/,Crome Yellow,,"Huxley, Aldous",1921,,Lending Library Card,"Sylvia Beach, Mrs. Jackson Lending Library Card, Box 59, Folder 6, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ac6269e-f2f6-4df6-861c-40ac8f15296d/manifest,https://iiif-cloud.princeton.edu/iiif/2/3e%2F0d%2Fe4%2F3e0de42656e249318a47a8a8d7828d2e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-01-17,1928-01-25,https://shakespeareandco.princeton.edu/members/jackson-5/,Mrs. Jackson,"Jackson, Mrs.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/hardy-collected-poems-thomas/,Collected Poems of Thomas Hardy,,"Hardy, Thomas",1919,,Lending Library Card,"Sylvia Beach, Mrs. Jackson Lending Library Card, Box 59, Folder 6, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ac6269e-f2f6-4df6-861c-40ac8f15296d/manifest,https://iiif-cloud.princeton.edu/iiif/2/3e%2F0d%2Fe4%2F3e0de42656e249318a47a8a8d7828d2e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-01-18,1928-01-27,https://shakespeareandco.princeton.edu/members/weaver-audrey/,Audrey Weaver,"Weaver, Audrey",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/mackenzie-vestal-fire/,Vestal Fire,,"Mackenzie, Compton",1927,,Lending Library Card,"Sylvia Beach, Miss Audrey Weaver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd1b5179-d6c8-46be-8f6e-d6fb81083019/manifest,https://iiif.princeton.edu/loris/figgy_prod/68%2F25%2F4c%2F68254cd17d4a4c9ea72f9910a8e8ca4d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-01-18,1928-01-27,https://shakespeareandco.princeton.edu/members/weaver-audrey/,Audrey Weaver,"Weaver, Audrey",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/guedalla-conquistador-american-fantasia/,Conquistador: American Fantasia,,"Guedalla, Phillip",1928,,Lending Library Card,"Sylvia Beach, Miss Audrey Weaver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd1b5179-d6c8-46be-8f6e-d6fb81083019/manifest,https://iiif.princeton.edu/loris/figgy_prod/68%2F25%2F4c%2F68254cd17d4a4c9ea72f9910a8e8ca4d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-01-19,1928-01-26,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/barbey-daurevilly-diaboliques/,The Diaboliques,,"Barbey d'Aurevilly, Jules",1925,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/17%2Fa8%2F4d%2F17a84d484db04ae8b4c940dde3d117ff%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-01-20,1928-02-25,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,36,,,https://shakespeareandco.princeton.edu/books/melville-moby-dick-whale/,"Moby-Dick; Or, the Whale",,"Melville, Herman",1851,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/a4%2F4e%2Fba%2Fa44eba3e26a54d8fb584f4af722ab0ff%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-01-20,1928-02-25,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,36,,,https://shakespeareandco.princeton.edu/books/grierson-metaphysical-lyrics-poems/,Metaphysical Lyrics and Poems of the Seventeenth Century: Donne to Butler,,,1921,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/a4%2F4e%2Fba%2Fa44eba3e26a54d8fb584f4af722ab0ff%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-01-20,1928-02-13,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,24,,,https://shakespeareandco.princeton.edu/books/stephens-mary-mary/,"Mary, Mary",,"Stephens, James",1912,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/dc%2F94%2Ffd%2Fdc94fda0cd9c4ae195f988f5a500f00f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-01-21,1928-01-23,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/roberts-time-man/,The Time of Man,,"Roberts, Elizabeth Madox",1926,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/4c%2Fb0%2F05%2F4cb0051a29fd4a30ac4d18a9278429f5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-01-21,1928-01-25,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/morley-arrow/,The Arrow,,"Morley, Christopher",1927,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2F26%2F63%2Ff226634c19324eb39669cf82dbdc4f0c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-01-23,1928-02-20,https://shakespeareandco.princeton.edu/members/williams-marjorie/,Marjorie Williams / Lady Marjorie Williams,"Williams, Marjorie",,,,,,,,,Returned,28,,,https://shakespeareandco.princeton.edu/books/baring-tinkers-leave/,Tinker's Leave,,"Baring, Maurice",1927,,Lending Library Card,"Sylvia Beach, Lady Marjorie Williams Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b31e886b-0c7c-4553-a941-ead88c563239/manifest,https://iiif.princeton.edu/loris/figgy_prod/14%2Fe8%2Fd4%2F14e8d43bd6f64122881addec1c4024ab%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-01-23,1928-03-10,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,47,,,https://shakespeareandco.princeton.edu/books/kennedy-constant-nymph/,The Constant Nymph,,"Kennedy, Margaret",1924,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/4c%2Fb0%2F05%2F4cb0051a29fd4a30ac4d18a9278429f5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-01-23,1928-01-27,https://shakespeareandco.princeton.edu/members/williams-marjorie/,Marjorie Williams / Lady Marjorie Williams,"Williams, Marjorie",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/hans-christian-andersen/,Hans Christian Andersen,,,,Unidentified. By or about Hans Christian Anderson.,Lending Library Card,"Sylvia Beach, Lady Marjorie Williams Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b31e886b-0c7c-4553-a941-ead88c563239/manifest,https://iiif.princeton.edu/loris/figgy_prod/14%2Fe8%2Fd4%2F14e8d43bd6f64122881addec1c4024ab%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-01-23,1928-01-26,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/guedalla-gallery/,A Gallery,,"Guedalla, Phillip",1924,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/17%2Fa8%2F4d%2F17a84d484db04ae8b4c940dde3d117ff%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-01-24,1928-01-24,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/rogers-magnificent-idler/,The Magnificent Idler,,"Rogers, Cameron",1926,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/76%2F98%2F6f%2F76986faad2d441dcac813f1d24693e18%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-01-25,1928-02-11,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/ward-cambridge-history-english/,The Cambridge History of English Literature,"Vol. 5, 1910 The Drama to 1642, Part One",,,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/1c%2Fd9%2Fe1%2F1cd9e183fb104f9d90a4c90c557234ab%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-01-25,1928-05-10,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,106,,,https://shakespeareandco.princeton.edu/books/santayana-winds-doctrine-studies/,Winds of Doctrine: Studies in Contemporary Opinion,,"Santayana, George",1913,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/cf%2F06%2F22%2Fcf06228a89d44628a53d29b68b3a1538%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-01-25,1928-03-06,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,41,,,https://shakespeareandco.princeton.edu/books/sitwell-german-baroque-art/,German Baroque Art,,"Sitwell, Sacheverell",1928,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/a4%2F4e%2Fba%2Fa44eba3e26a54d8fb584f4af722ab0ff%2Fintermediate_file.jp2/full/full/0/default.jpg
+Crossed out,1928-01-25,,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/cabell-rivet-grandfathers-neck/,The Rivet in Grandfather's Neck: A Comedy of Limitations,,"Cabell, James Branch",1915,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/cf%2F06%2F22%2Fcf06228a89d44628a53d29b68b3a1538%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-01-25,1928-02-25,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,31,,,https://shakespeareandco.princeton.edu/books/woolf-mrs-dalloway/,Mrs. Dalloway,,"Woolf, Virginia",1925,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/cf%2F06%2F22%2Fcf06228a89d44628a53d29b68b3a1538%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-01-25,1928-02-11,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/hudson-elinor-colhouse/,Elinor Colhouse,,"Hudson, Stephen",1921,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/1c%2Fd9%2Fe1%2F1cd9e183fb104f9d90a4c90c557234ab%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-01-25,1928-02-04,https://shakespeareandco.princeton.edu/members/jackson-5/,Mrs. Jackson,"Jackson, Mrs.",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/huxley-little-mexican-stories/,Little Mexican and Other Stories,,"Huxley, Aldous",1924,,Lending Library Card,"Sylvia Beach, Mrs. Jackson Lending Library Card, Box 59, Folder 6, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ac6269e-f2f6-4df6-861c-40ac8f15296d/manifest,https://iiif-cloud.princeton.edu/iiif/2/3e%2F0d%2Fe4%2F3e0de42656e249318a47a8a8d7828d2e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-01-25,1928-02-03,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/ostenso-mad-carews/,The Mad Carews,,"Ostenso, Martha",1925,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2F26%2F63%2Ff226634c19324eb39669cf82dbdc4f0c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-01-26,1928-02-01,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/poe-tales-mystery-imagination/,Tales of Mystery and Imagination,,"Poe, Edgar Allan",,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/17%2Fa8%2F4d%2F17a84d484db04ae8b4c940dde3d117ff%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-01-26,1928-02-04,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/beaumont-beaumont-fletcher/,Beaumont and Fletcher,,"Beaumont, Francis;Fletcher, John",,"Richard Le Gallienne, Charles Dullin, Catherine Yarrow, and Jeanine (Delpech) Teissier borrowed the 2 volume Mermaid Series edition. Mme Mazon and Mme France Raphael borrowed either the Mermaid or Everyman's Library edition.",Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/17%2Fa8%2F4d%2F17a84d484db04ae8b4c940dde3d117ff%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-01-27,1928-02-06,https://shakespeareandco.princeton.edu/members/proix/,Troise Proix,"Proix, Troise",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/oneill-great-god-brown/,The Great God Brown,,"O'Neill, Eugene",1926,,Lending Library Card,"Sylvia Beach, Troise Proix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b7152822-4421-406d-9472-740daf9b84e0/manifest,https://iiif.princeton.edu/loris/figgy_prod/e6%2Fa5%2F3a%2Fe6a53a0fee174f0589dc02ffbad33ba5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1928-01-27,1928-02-27,https://shakespeareandco.princeton.edu/members/proix/,Troise Proix,"Proix, Troise",25.00,50.00,1 month,31,1,,1928-01-27,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Troise Proix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b7152822-4421-406d-9472-740daf9b84e0/manifest,https://iiif.princeton.edu/loris/figgy_prod/e6%2Fa5%2F3a%2Fe6a53a0fee174f0589dc02ffbad33ba5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-01-27,1928-01-30,https://shakespeareandco.princeton.edu/members/weaver-audrey/,Audrey Weaver,"Weaver, Audrey",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/jesse-many-latitudes/,Many Latitudes,,"Jesse, F. Tennyson",1928,,Lending Library Card,"Sylvia Beach, Miss Audrey Weaver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd1b5179-d6c8-46be-8f6e-d6fb81083019/manifest,https://iiif.princeton.edu/loris/figgy_prod/68%2F25%2F4c%2F68254cd17d4a4c9ea72f9910a8e8ca4d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-01-27,1928-01-30,https://shakespeareandco.princeton.edu/members/weaver-audrey/,Audrey Weaver,"Weaver, Audrey",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/thomas-beyond-khyber-pass/,Beyond Khyber Pass,,"Thomas, Lowell",1925,,Lending Library Card,"Sylvia Beach, Miss Audrey Weaver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd1b5179-d6c8-46be-8f6e-d6fb81083019/manifest,https://iiif.princeton.edu/loris/figgy_prod/68%2F25%2F4c%2F68254cd17d4a4c9ea72f9910a8e8ca4d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-01-27,1928-02-01,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/nicoll-history-restoration-drama/,"A History of Restoration Drama, 1600 β 1700",,"Nicoll, Allardyce",1923,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/17%2Fa8%2F4d%2F17a84d484db04ae8b4c940dde3d117ff%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-01-28,1928-03-03,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,35,,,https://shakespeareandco.princeton.edu/books/young-portrait-clare/,Portrait of Clare,,"Young, Francis Brett",1927,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/5d%2F94%2F00%2F5d9400637a2e4682a81940685b942a72%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-01-28,1928-02-20,https://shakespeareandco.princeton.edu/members/williams-marjorie/,Marjorie Williams / Lady Marjorie Williams,"Williams, Marjorie",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/letters-gertrude-bell/,Letters of Gertrude Bell,Vol. 2,"Bell, Gertrude Lowthian",1927,,Lending Library Card,"Sylvia Beach, Lady Marjorie Williams Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b31e886b-0c7c-4553-a941-ead88c563239/manifest,https://iiif.princeton.edu/loris/figgy_prod/14%2Fe8%2Fd4%2F14e8d43bd6f64122881addec1c4024ab%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-01-30,1928-01-31,https://shakespeareandco.princeton.edu/members/weaver-audrey/,Audrey Weaver,"Weaver, Audrey",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/ranga-iyer-father-india-reply/,Father India: A Reply to Mother India,,"Ranga Iyer, C. S.",1927,,Lending Library Card,"Sylvia Beach, Miss Audrey Weaver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd1b5179-d6c8-46be-8f6e-d6fb81083019/manifest,https://iiif.princeton.edu/loris/figgy_prod/68%2F25%2F4c%2F68254cd17d4a4c9ea72f9910a8e8ca4d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-01-30,1928-02-14,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/whitman/,Whitman,,,,Unidentified. By or about Walt Whitman.,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/76%2F98%2F6f%2F76986faad2d441dcac813f1d24693e18%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-01-30,1928-01-31,https://shakespeareandco.princeton.edu/members/weaver-audrey/,Audrey Weaver,"Weaver, Audrey",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/maxwell-case-bevan-yorke/,The Case of Bevan Yorke,,"Maxwell, W. B.",1927,,Lending Library Card,"Sylvia Beach, Miss Audrey Weaver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd1b5179-d6c8-46be-8f6e-d6fb81083019/manifest,https://iiif.princeton.edu/loris/figgy_prod/68%2F25%2F4c%2F68254cd17d4a4c9ea72f9910a8e8ca4d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-01-31,1928-02-03,https://shakespeareandco.princeton.edu/members/weaver-audrey/,Audrey Weaver,"Weaver, Audrey",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/anthony-catherine-great/,Catherine the Great,,"Anthony, Katharine Susan",1925,,Lending Library Card,"Sylvia Beach, Miss Audrey Weaver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd1b5179-d6c8-46be-8f6e-d6fb81083019/manifest,https://iiif.princeton.edu/loris/figgy_prod/68%2F25%2F4c%2F68254cd17d4a4c9ea72f9910a8e8ca4d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-01-31,1928-02-03,https://shakespeareandco.princeton.edu/members/weaver-audrey/,Audrey Weaver,"Weaver, Audrey",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/wallace-flat-2/,Flat 2,,"Wallace, Edgar",1924,,Lending Library Card,"Sylvia Beach, Miss Audrey Weaver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd1b5179-d6c8-46be-8f6e-d6fb81083019/manifest,https://iiif.princeton.edu/loris/figgy_prod/68%2F25%2F4c%2F68254cd17d4a4c9ea72f9910a8e8ca4d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-01-31,1928-02-07,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/hardy-late-lyrics-earlier/,Late Lyrics and Earlier: With Many Other Verses,,"Hardy, Thomas",1922,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/c2%2Ff7%2F29%2Fc2f7296928344566aa900c8c0644c909%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-02-01,1928-02-02,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/melville-white-jacket/,White-Jacket,,"Melville, Herman",1850,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/17%2Fa8%2F4d%2F17a84d484db04ae8b4c940dde3d117ff%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1928-02-02,1928-03-02,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",35.00,,1 month,29,2,,1928-02-02,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/17%2Fa8%2F4d%2F17a84d484db04ae8b4c940dde3d117ff%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-02-02,1928-02-04,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/hazlitt-hazlitts-works/,Hazlitt's Works,,"Hazlitt, William",,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/17%2Fa8%2F4d%2F17a84d484db04ae8b4c940dde3d117ff%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-02-02,1928-02-07,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/defoe-robinson-crusoe/,Robinson Crusoe,,"Defoe, Daniel",1719,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/17%2Fa8%2F4d%2F17a84d484db04ae8b4c940dde3d117ff%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1928-02-03,1928-02-20,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",85.00,,17 days,17,2,,1928-02-03,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/01%2Fd1%2Fdc%2F01d1dcd966d14171baa47e3f1d26f10a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-02-03,1928-02-15,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/bronte-jane-eyre/,Jane Eyre,,"BrontΓ«, Charlotte",1847,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/01%2Fd1%2Fdc%2F01d1dcd966d14171baa47e3f1d26f10a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-02-03,1928-02-15,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/solano-way/,This Way Up,,"Solano, Solita",1927,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/01%2Fd1%2Fdc%2F01d1dcd966d14171baa47e3f1d26f10a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-02-03,1928-02-07,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/hemingway-men-without-women/,Men without Women,,"Hemingway, Ernest",1927,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2F26%2F63%2Ff226634c19324eb39669cf82dbdc4f0c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-02-04,1928-06-05,https://shakespeareandco.princeton.edu/members/jackson-5/,Mrs. Jackson,"Jackson, Mrs.",,,,,,,,,Returned,122,,,https://shakespeareandco.princeton.edu/books/garnett-lady-fox/,Lady into Fox,,"Garnett, David",1922,,Lending Library Card,"Sylvia Beach, Mrs. Jackson Lending Library Card, Box 59, Folder 6, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ac6269e-f2f6-4df6-861c-40ac8f15296d/manifest,https://iiif-cloud.princeton.edu/iiif/2/3e%2F0d%2Fe4%2F3e0de42656e249318a47a8a8d7828d2e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-02-04,1928-02-24,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/graves-lawrence-arabs/,Lawrence and the Arabs,,"Graves, Robert",1927,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2F6e%2Fea%2F256eeabe8a054470a7abd5bdd9d57873%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-02-04,1928-02-06,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/scott-narrow-house/,The Narrow House,,"Scott, Evelyn",1921,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/f8%2Fab%2Fb4%2Ff8abb4571a74451e91d3f239dde58ea4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-02-04,1928-02-06,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/lowndes-story-ivy/,The Story of Ivy,,"Lowndes, Marie Belloc",1927,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/f8%2Fab%2Fb4%2Ff8abb4571a74451e91d3f239dde58ea4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-02-04,1928-02-08,https://shakespeareandco.princeton.edu/members/jackson-5/,Mrs. Jackson,"Jackson, Mrs.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/huxley-jesting-pilate-diary/,Jesting Pilate: The Diary of a Journey,,"Huxley, Aldous",1926,,Lending Library Card,"Sylvia Beach, Mrs. Jackson Lending Library Card, Box 59, Folder 6, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ac6269e-f2f6-4df6-861c-40ac8f15296d/manifest,https://iiif-cloud.princeton.edu/iiif/2/3e%2F0d%2Fe4%2F3e0de42656e249318a47a8a8d7828d2e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-02-04,1928-04-06,https://shakespeareandco.princeton.edu/members/jackson-5/,Mrs. Jackson,"Jackson, Mrs.",,,,,,,,,Returned,62,,,https://shakespeareandco.princeton.edu/books/douglas-old-calabria/,Old Calabria,,"Douglas, Norman",1915,,Lending Library Card,"Sylvia Beach, Mrs. Jackson Lending Library Card, Box 59, Folder 6, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ac6269e-f2f6-4df6-861c-40ac8f15296d/manifest,https://iiif-cloud.princeton.edu/iiif/2/3e%2F0d%2Fe4%2F3e0de42656e249318a47a8a8d7828d2e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-02-04,1928-02-13,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/wassermann-triumph-youth/,The Triumph of Youth,,"Wassermann, Jakob",1927,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/17%2Fa8%2F4d%2F17a84d484db04ae8b4c940dde3d117ff%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-02-06,1928-02-14,https://shakespeareandco.princeton.edu/members/proix/,Troise Proix,"Proix, Troise",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/three-plays/,Three Plays,,,,"Unidentified. Padraic Colum's *Three Plays) (1917), Luigi Pirandello's *Three Plays* (1922), or William Archer's *Three Plays* (1927), etc.",Lending Library Card,"Sylvia Beach, Troise Proix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b7152822-4421-406d-9472-740daf9b84e0/manifest,https://iiif.princeton.edu/loris/figgy_prod/e6%2Fa5%2F3a%2Fe6a53a0fee174f0589dc02ffbad33ba5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-02-06,1928-02-08,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/le-queux-lawless-hand/,The Lawless Hand,,"Le Queux, William",1927,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/f8%2Fab%2Fb4%2Ff8abb4571a74451e91d3f239dde58ea4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-02-06,1928-02-08,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/rinehart-lost-ecstasy-novel/,Lost Ecstasy: A Novel,,"Rinehart, Mary Roberts",1927,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/f8%2Fab%2Fb4%2Ff8abb4571a74451e91d3f239dde58ea4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-02-07,1928-02-28,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/johnson-art-thomas-hardy/,The Art of Thomas Hardy,,"Johnson, Lionel",1894,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/c2%2Ff7%2F29%2Fc2f7296928344566aa900c8c0644c909%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-02-07,1928-02-08,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/hergesheimer-san-cristobal-habana/,San Cristobal de la Habana,,"Hergesheimer, Joseph",1920,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/17%2Fa8%2F4d%2F17a84d484db04ae8b4c940dde3d117ff%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-02-07,1928-02-15,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/doughty-travels-arabia-deserta/,Travels in Arabia Deserta,,"Doughty, Charles Montagu",1883,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/4b%2Fa3%2F65%2F4ba365cea0974f05a43fd7f77ce258e9%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-02-07,1928-02-14,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/hans-christian-andersen/,Hans Christian Andersen,,,,Unidentified. By or about Hans Christian Anderson.,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2F26%2F63%2Ff226634c19324eb39669cf82dbdc4f0c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-02-08,1928-02-16,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/scott-quentin-durward/,Quentin Durward,,"Scott, Walter",1823,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/17%2Fa8%2F4d%2F17a84d484db04ae8b4c940dde3d117ff%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-02-08,1928-02-10,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/connington-murder-maze/,Murder in the Maze,,"Connington, J. J.",1927,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/f8%2Fab%2Fb4%2Ff8abb4571a74451e91d3f239dde58ea4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-02-08,1928-02-10,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/frankau-much-good/,So Much Good,,"Frankau, Gilbert",1928,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/f8%2Fab%2Fb4%2Ff8abb4571a74451e91d3f239dde58ea4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-02-09,1928-03-03,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/turgenev-torrents-spring/,The Torrents of Spring,,"Turgenev, Ivan",1872,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2F6e%2Fea%2F256eeabe8a054470a7abd5bdd9d57873%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-02-10,1928-02-13,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/lowndes-lonely-house/,The Lonely House,,"Lowndes, Marie Belloc",1920,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/f8%2Fab%2Fb4%2Ff8abb4571a74451e91d3f239dde58ea4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-02-10,1928-02-13,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/sedgwick-old-countess/,The Old Countess,,"Sedgwick, Anne Douglas",1927,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/f8%2Fab%2Fb4%2Ff8abb4571a74451e91d3f239dde58ea4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-02-10,1928-02-13,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/benson-sentimentalists/,The Sentimentalists,,"Benson, Robert-Hugh",1906,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/f8%2Fab%2Fb4%2Ff8abb4571a74451e91d3f239dde58ea4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-02-11,1928-03-03,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/figgis-recollections-irish-war/,Recollections of the Irish War,,"Figgis, Darrell",1927,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2F6e%2Fea%2F256eeabe8a054470a7abd5bdd9d57873%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-02-11,1928-02-23,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/hudson-richard-kurt/,Richard Kurt,,"Hudson, Stephen",1919,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/1c%2Fd9%2Fe1%2F1cd9e183fb104f9d90a4c90c557234ab%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-02-11,1928-02-23,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/ward-cambridge-history-english/,The Cambridge History of English Literature,"Vol. 6, 1910 The Drama to 1642, Part Two",,,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/1c%2Fd9%2Fe1%2F1cd9e183fb104f9d90a4c90c557234ab%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-02-11,1928-02-13,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/molony-riddle-irish/,The Riddle of the Irish,,"Molony, J. Chartres",1927,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2F6e%2Fea%2F256eeabe8a054470a7abd5bdd9d57873%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-02-13,1928-02-16,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/lowndes-bread-deceit/,The Bread of Deceit,,"Lowndes, Marie Belloc",1925,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/33%2F49%2F00%2F334900ce15b348cd98974c542efc228f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-02-13,1928-03-02,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/obrien-best-short-stories-1927/,The Best Short Stories of 1927: And the Yearbook of the American Short Story,,,1927,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/33%2F49%2F00%2F334900ce15b348cd98974c542efc228f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-02-13,1928-02-28,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/wassermann-worlds-illusion/,The World's Illusion,2 vols.,"Wassermann, Jakob",1920,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2F6e%2Fea%2F256eeabe8a054470a7abd5bdd9d57873%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-02-13,1928-02-18,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/saintsbury-collected-essays-papers/,"The Collected Essays and Papers of George Saintsbury, 1875 β 1920",,"Saintsbury, George",1923,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/17%2Fa8%2F4d%2F17a84d484db04ae8b4c940dde3d117ff%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-02-13,1928-02-16,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/connington-tragedy-ravensthorpe/,The Tragedy at Ravensthorpe,,"Connington, J. J.",1927,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/33%2F49%2F00%2F334900ce15b348cd98974c542efc228f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-02-13,1928-02-16,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/le-queux-letter-e/,"The Letter ""E""",,"Le Queux, William",1926,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/33%2F49%2F00%2F334900ce15b348cd98974c542efc228f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-02-13,1928-02-16,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/birmingham-grand-duchess/,The Grand Duchess,,"Birmingham, George A.",1927,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/33%2F49%2F00%2F334900ce15b348cd98974c542efc228f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-02-13,1928-02-16,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/waugh-georgian-stories-1927/,"Georgian Stories, 1927",,,1928,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2F06%2Fd2%2F2106d277bd754d6dafddd7d2757a5841%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-02-14,1928-02-20,https://shakespeareandco.princeton.edu/members/proix/,Troise Proix,"Proix, Troise",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/dos-passos-garbage-man/,The Garbage Man,,"Dos Passos, John",1926,,Lending Library Card,"Sylvia Beach, Troise Proix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b7152822-4421-406d-9472-740daf9b84e0/manifest,https://iiif.princeton.edu/loris/figgy_prod/e6%2Fa5%2F3a%2Fe6a53a0fee174f0589dc02ffbad33ba5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-02-14,1928-02-17,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/sinclair-king-midas/,King Midas,,"Sinclair, Upton",1901,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/76%2F98%2F6f%2F76986faad2d441dcac813f1d24693e18%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-02-14,1928-02-20,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/mckenna-unburied-dead/,The Unburied Dead,,"McKenna, Stephen",1928,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2F26%2F63%2Ff226634c19324eb39669cf82dbdc4f0c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-02-15,1928-02-18,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/dreiser-american-tragedy/,An American Tragedy,Vol. 2,"Dreiser, Theodore",1925,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/4b%2Fa3%2F65%2F4ba365cea0974f05a43fd7f77ce258e9%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-02-15,1928-02-16,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/duclaux-emily-bronte/,Emily BrontΓ«,,"Duclaux, Mary",1883,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/ef%2Fef%2Fcb%2Fefefcbf627f44dea9bec88151c20f0a2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-02-15,1928-02-20,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/bronte-villette/,Villette,,"BrontΓ«, Charlotte",1853,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/ef%2Fef%2Fcb%2Fefefcbf627f44dea9bec88151c20f0a2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-02-15,,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/richmond-times-literary-supplement/,The Times Literary Supplement,"no. 1358, Feb 9, 1928",,,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/ef%2Fef%2Fcb%2Fefefcbf627f44dea9bec88151c20f0a2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-02-16,1928-02-22,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/divinity-hall/,Divinity Hall,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/33%2F49%2F00%2F334900ce15b348cd98974c542efc228f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-02-16,1928-02-20,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/bronte-complete-poems-emily/,The Complete Poems of Emily BrontΓ«,,"BrontΓ«, Emily",1910,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/ef%2Fef%2Fcb%2Fefefcbf627f44dea9bec88151c20f0a2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-02-16,,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/carroll-life-letters-lewis/,The Life and Letters of Lewis Carroll,,"Carroll, Lewis;Collingwood, Stuart Dodgson",1898,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1928-02-16,,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/bowman-story-lewis-carroll/,"The Story of Lewis Carroll, Told for Young People by the Real Alice in Wonderland",,"Bowman, Isa",1899,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1928-02-16,1928-02-22,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/bennett-buried-alive/,Buried Alive,,"Bennett, Arnold",1908,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/33%2F49%2F00%2F334900ce15b348cd98974c542efc228f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-02-16,1928-03-26,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,39,,,https://shakespeareandco.princeton.edu/books/forster-angels-fear-tread/,Where Angels Fear to Tread,,"Forster, E. M.",1905,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2F06%2Fd2%2F2106d277bd754d6dafddd7d2757a5841%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-02-16,,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/kingsley-water-babies-fairy/,"The Water-Babies, a Fairy Tale for a Land Baby",,"Kingsley, Charles",1863,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1928-02-16,1928-02-20,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/disraeli-lothair/,Lothair,,"Disraeli, Benjamin",1870,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/17%2Fa8%2F4d%2F17a84d484db04ae8b4c940dde3d117ff%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-02-16,1928-04-02,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,46,,,https://shakespeareandco.princeton.edu/books/bronte-poems-emily-bronte/,Poems of Emily BrontΓ«,,"BrontΓ«, Emily",1906,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/ef%2Fef%2Fcb%2Fefefcbf627f44dea9bec88151c20f0a2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-02-16,1928-03-02,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/bennett-lord-raingo/,Lord Raingo,,"Bennett, Arnold",1926,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/33%2F49%2F00%2F334900ce15b348cd98974c542efc228f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-02-17,1928-02-23,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/sanchez-life-mrs-robert/,The Life of Mrs. Robert Louis Stevenson,,"Sanchez, Nellie Van de Grift",1920,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/76%2F98%2F6f%2F76986faad2d441dcac813f1d24693e18%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-02-18,1928-02-18,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/masefield-mainsail-haul/,A Mainsail Haul,,"Masefield, John",1905,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/17%2Fa8%2F4d%2F17a84d484db04ae8b4c940dde3d117ff%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-02-18,1928-04-01,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Returned,43,,,https://shakespeareandco.princeton.edu/books/descartes-geometrie/,La gΓ©omΓ©trie,,"Descartes, RenΓ©",1637,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1928-02-18,1928-02-20,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/masefield-sard-harker/,Sard Harker,,"Masefield, John",1924,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/17%2Fa8%2F4d%2F17a84d484db04ae8b4c940dde3d117ff%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-02-18,1928-04-01,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Returned,43,,,https://shakespeareandco.princeton.edu/books/reade-martyrdom-man/,The Martyrdom of Man,,"Reade, William Winwood",1872,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1928-02-18,1928-03-06,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/doughty-travels-arabia-deserta/,Travels in Arabia Deserta,Vol. 2,"Doughty, Charles Montagu",1883,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/4b%2Fa3%2F65%2F4ba365cea0974f05a43fd7f77ce258e9%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1928-02-20,1928-05-20,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",85.00,,3 months,90,2,,1928-04-02,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,;https://iiif-cloud.princeton.edu/iiif/2/ef%2Fef%2Fcb%2Fefefcbf627f44dea9bec88151c20f0a2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-02-20,1928-03-01,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/hemingway-sun-also-rises/,The Sun Also Rises,,"Hemingway, Ernest",1926,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/4b%2Fa3%2F65%2F4ba365cea0974f05a43fd7f77ce258e9%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-02-20,1928-05-07,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,77,,,https://shakespeareandco.princeton.edu/books/gide-counterfeiters/,The Counterfeiters,,"Gide, AndrΓ©",1927,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/ef%2Fef%2Fcb%2Fefefcbf627f44dea9bec88151c20f0a2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-02-20,1928-04-02,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,42,,,https://shakespeareandco.princeton.edu/books/sitwell-summer-day-autobiographical/,All Summer in a Day: An Autobiographical Fantasia,,"Sitwell, Sacheverell",1926,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/ef%2Fef%2Fcb%2Fefefcbf627f44dea9bec88151c20f0a2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-02-20,1928-03-20,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,29,,,https://shakespeareandco.princeton.edu/books/harris-contemporary-portraits/,Contemporary Portraits,,"Harris, Frank",1915,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/c2%2Ff7%2F29%2Fc2f7296928344566aa900c8c0644c909%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-02-20,1928-03-03,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/eliot-romola/,Romola,,"Eliot, George",1863,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/8c%2F6b%2F99%2F8c6b994fa70d4ab2b3b4e928cad06a78%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-02-20,1928-03-03,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/trollope-barchester-towers/,Barchester Towers,,"Trollope, Anthony",1857,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/8c%2F6b%2F99%2F8c6b994fa70d4ab2b3b4e928cad06a78%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-02-20,1928-03-08,https://shakespeareandco.princeton.edu/members/williams-marjorie/,Marjorie Williams / Lady Marjorie Williams,"Williams, Marjorie",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/turgenev-smoke/,Smoke,,"Turgenev, Ivan",1896,,Lending Library Card,"Sylvia Beach, Lady Marjorie Williams Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b31e886b-0c7c-4553-a941-ead88c563239/manifest,https://iiif.princeton.edu/loris/figgy_prod/14%2Fe8%2Fd4%2F14e8d43bd6f64122881addec1c4024ab%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-02-20,1928-03-10,https://shakespeareandco.princeton.edu/members/williams-marjorie/,Marjorie Williams / Lady Marjorie Williams,"Williams, Marjorie",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/martinengo-cesaresco-cavour/,Cavour,,"Martinengo-Cesaresco, Evelyn Lilian",1928,,Lending Library Card,"Sylvia Beach, Lady Marjorie Williams Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b31e886b-0c7c-4553-a941-ead88c563239/manifest,https://iiif.princeton.edu/loris/figgy_prod/14%2Fe8%2Fd4%2F14e8d43bd6f64122881addec1c4024ab%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-02-20,1928-02-28,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/lewis-wild-body/,The Wild Body,,"Lewis, Wyndham",1927,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2F26%2F63%2Ff226634c19324eb39669cf82dbdc4f0c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-02-22,1928-03-02,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/hall-sinister-house/,Sinister House,,"Hall, Leland",1919,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/33%2F49%2F00%2F334900ce15b348cd98974c542efc228f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-02-22,1928-03-02,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/bromfield-good-woman/,A Good Woman,,"Bromfield, Louis",1927,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/33%2F49%2F00%2F334900ce15b348cd98974c542efc228f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-02-23,1928-03-10,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/lewisohn-roman-summer/,Roman Summer,,"Lewisohn, Ludwig",1927,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/cf%2F06%2F22%2Fcf06228a89d44628a53d29b68b3a1538%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-02-23,1928-02-25,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/stevenson-strange-case-dr/,Strange Case of Dr. Jekyll and Mr. Hyde,,"Stevenson, Robert Louis",1886,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/76%2F98%2F6f%2F76986faad2d441dcac813f1d24693e18%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-02-23,1928-03-07,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/nicoll-history-restoration-drama/,"A History of Restoration Drama, 1600 β 1700",,"Nicoll, Allardyce",1923,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/1c%2Fd9%2Fe1%2F1cd9e183fb104f9d90a4c90c557234ab%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-02-23,1928-03-07,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/donne-donnes-sermons-selected/,Donne's Sermons: Selected Passages,,"Donne, John",1919,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/1c%2Fd9%2Fe1%2F1cd9e183fb104f9d90a4c90c557234ab%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-02-24,1928-03-03,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/oneill-emperor-jones/,The Emperor Jones,,"O'Neill, Eugene",1921,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2F6e%2Fea%2F256eeabe8a054470a7abd5bdd9d57873%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-02-24,1928-03-03,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/ocasey-plough-stars/,The Plough and the Stars,,"O'Casey, Sean",1926,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2F6e%2Fea%2F256eeabe8a054470a7abd5bdd9d57873%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-02-25,1928-03-16,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/swinburne-study/,Swinburne: A Study,,,,Unidentified. Either Theodore Wratislaw's *Algernon Charles Swinburne: A Study* (1900) or T. Earle Welby's *A Study of Swinburne* (1926).,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/76%2F98%2F6f%2F76986faad2d441dcac813f1d24693e18%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-02-28,1928-03-03,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/taylor-one-crystal-mother/,One Crystal and a Mother,,"Taylor, Ellen Du Poise",1927,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2F26%2F63%2Ff226634c19324eb39669cf82dbdc4f0c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-02-28,,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/mann-magic-mountain/,The Magic Mountain,2 vols.,"Mann, Thomas",1927,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2F6e%2Fea%2F256eeabe8a054470a7abd5bdd9d57873%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-03-01,1928-04-21,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,51,,,https://shakespeareandco.princeton.edu/books/ellis-sexual-inversion-studies/,Sexual Inversion (Studies in the Psychology of Sex 2),,"Ellis, Havelock",1900,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/4b%2Fa3%2F65%2F4ba365cea0974f05a43fd7f77ce258e9%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1928-03-01,1928-03-01,https://shakespeareandco.princeton.edu/members/chouly/,Mlle de Chouly,"de Chouly, Mlle",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1928-03-02,1928-04-02,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",35.00,,1 month,31,2,,1928-03-30,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,;https://iiif-cloud.princeton.edu/iiif/2/8c%2F6b%2F99%2F8c6b994fa70d4ab2b3b4e928cad06a78%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1928-03-02,1928-04-02,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",25.00,,1 month,31,1,,1928-03-02,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/9b%2Fc6%2Fa6%2F9bc6a6a69687467dbf15abe22893b03f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-03-02,1928-03-05,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/hemingway-sun-also-rises/,The Sun Also Rises,,"Hemingway, Ernest",1926,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/9b%2Fc6%2Fa6%2F9bc6a6a69687467dbf15abe22893b03f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-03-03,1928-03-08,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/montague-right-map/,Right Off the Map,,"Montague, C. E.",1927,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/8c%2F6b%2F99%2F8c6b994fa70d4ab2b3b4e928cad06a78%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-03-03,1928-03-06,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/gibbs-young-anarchy/,The Young Anarchy,,"Gibbs, Philip",1926,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2F26%2F63%2Ff226634c19324eb39669cf82dbdc4f0c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-03-03,1928-03-08,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/golding-wonder-book-wild/,The Wonder Book of the Wild: The Romance of Exploration and Big Game Stalking,,"Golding, Harry",1924,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/9a%2Fc7%2F06%2F9ac7061f764c441c8ce8560e695b563d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-03-03,1928-03-30,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,27,,,https://shakespeareandco.princeton.edu/books/eliot-adam-bede/,Adam Bede,,"Eliot, George",1859,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/8c%2F6b%2F99%2F8c6b994fa70d4ab2b3b4e928cad06a78%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-03-05,1928-03-08,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/duncan-life/,My Life,,"Duncan, Isadora",1927,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/9b%2Fc6%2Fa6%2F9bc6a6a69687467dbf15abe22893b03f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1928-03-05,1928-04-05,https://shakespeareandco.princeton.edu/members/gribbon-c-e/,C. E. Gribbon,"Gribbon, C. E.",25.00,,1 month,31,1,,1928-03-05,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1928-03-05,1929-03-05,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",144.00,,1 year,365,,AdL,1928-03-24,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",;https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,;https://iiif.princeton.edu/loris/figgy_prod/5d%2F94%2F00%2F5d9400637a2e4682a81940685b942a72%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-03-06,1929-03-28,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,387,,,https://shakespeareandco.princeton.edu/books/dreiser-twelve-men/,Twelve Men,,"Dreiser, Theodore",1919,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/dc%2F94%2Ffd%2Fdc94fda0cd9c4ae195f988f5a500f00f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-03-06,1928-03-13,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/glasgow-virginia/,Virginia,,"Glasgow, Ellen",1923,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2F26%2F63%2Ff226634c19324eb39669cf82dbdc4f0c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1928-03-06,1928-03-06,https://shakespeareandco.princeton.edu/members/garrigue/,Mrs. W. A. Garrigue,"Garrigue, Mrs. W. A.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-03-06,1928-04-23,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,48,,,https://shakespeareandco.princeton.edu/books/santayana-poems/,Poems,,"Santayana, George",1922,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/a4%2F4e%2Fba%2Fa44eba3e26a54d8fb584f4af722ab0ff%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-03-07,1928-03-21,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/fausset-john-donne-study/,John Donne: A Study in Discord,,"Fausset, Hugh I'Anson",1924,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/1c%2Fd9%2Fe1%2F1cd9e183fb104f9d90a4c90c557234ab%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-03-07,1928-03-17,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/jonson-ben-jonson-man/,Ben Jonson: The Man and His Work,Vol. 1,"Jonson, Ben",1925,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/1c%2Fd9%2Fe1%2F1cd9e183fb104f9d90a4c90c557234ab%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-03-08,,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/ludwig-genius-character/,Genius and Character,,"Ludwig, Emil",1927,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/9a%2Fc7%2F06%2F9ac7061f764c441c8ce8560e695b563d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-03-08,1928-03-30,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/montague-fiery-particle/,Fiery Particles,,"Montague, C. E.",1923,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/8c%2F6b%2F99%2F8c6b994fa70d4ab2b3b4e928cad06a78%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-03-08,1928-03-17,https://shakespeareandco.princeton.edu/members/williams-marjorie/,Marjorie Williams / Lady Marjorie Williams,"Williams, Marjorie",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/forster-howards-end/,Howards End,,"Forster, E. M.",1910,,Lending Library Card,"Sylvia Beach, Lady Marjorie Williams Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b31e886b-0c7c-4553-a941-ead88c563239/manifest,https://iiif.princeton.edu/loris/figgy_prod/14%2Fe8%2Fd4%2F14e8d43bd6f64122881addec1c4024ab%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1928-03-08,,https://shakespeareandco.princeton.edu/members/sola/,Orlando de Sola,"de Sola, Orlando",20.00,50.00,,,,,1928-03-08,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-03-08,1928-03-12,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/turner-beethoven-search-reality/,Beethoven: The Search for Reality,,"Turner, W. J.",1927,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/9b%2Fc6%2Fa6%2F9bc6a6a69687467dbf15abe22893b03f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-03-10,1928-03-26,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/kennedy-red-sky-morning/,Red Sky at Morning,,"Kennedy, Margaret",1927,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/cf%2F06%2F22%2Fcf06228a89d44628a53d29b68b3a1538%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-03-10,1928-04-08,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,29,,,https://shakespeareandco.princeton.edu/books/bennett-lord-raingo/,Lord Raingo,,"Bennett, Arnold",1926,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/4c%2Fb0%2F05%2F4cb0051a29fd4a30ac4d18a9278429f5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1928-03-10,1928-04-10,https://shakespeareandco.princeton.edu/members/kirchner-augustus/,Dr. Augustus Kirchner / Mr. A. Kirchner,"Kirchner, Dr. Augustus",25.00,50.00,1 month,31,1,,1928-03-10,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-03-10,,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/dos-passos-orient-express/,Orient Express,,"Dos Passos, John",1927,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/cf%2F06%2F22%2Fcf06228a89d44628a53d29b68b3a1538%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1928-03-12,1928-03-12,https://shakespeareandco.princeton.edu/members/bourret/,J. Bourret,"Bourret, J.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-03-12,1928-03-27,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/chamberlain-richard-wagner/,Richard Wagner,,"Chamberlain, Houston Stewart",1897,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/9b%2Fc6%2Fa6%2F9bc6a6a69687467dbf15abe22893b03f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1928-03-12,1928-03-12,https://shakespeareandco.princeton.edu/members/demos-r/,R. Demos,"Demos, R.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1928-03-12,1928-03-12,https://shakespeareandco.princeton.edu/members/black-joan/,Joan Black,"Black, Joan",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-03-13,1928-03-17,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/dane-babyons-chronicle-family/,The Babyons: The Chronicle of a Family,,"Dane, Clemence",1928,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2F26%2F63%2Ff226634c19324eb39669cf82dbdc4f0c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1928-03-13,1928-04-13,https://shakespeareandco.princeton.edu/members/curtiss-nathaniel/,Nathaniel Curtiss,"Curtiss, Nathaniel",25.00,50.00,1 month,31,1,,1928-03-13,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1928-03-14,1928-04-14,https://shakespeareandco.princeton.edu/members/mason-frances/,Frances Mason,"Mason, Frances",25.00,50.00,1 month,31,1,,1928-03-14,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1928-03-14,1928-06-14,https://shakespeareandco.princeton.edu/members/morrison/,Mrs. Norman Morrison,"Morrison, Mrs. Norman",85.00,100.00,3 months,92,2,,1928-03-14,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1928-03-16,1928-04-16,https://shakespeareandco.princeton.edu/members/unnamed-member-16/,[unnamed member],[unnamed member],52.50,,1 month,31,2,,1928-03-16,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-03-16,1928-03-23,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/anderson-winesburg-ohio-group/,Winesburg Ohio: A Group of Tales of Ohio Small Town Life,,"Anderson, Sherwood",1919,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/76%2F98%2F6f%2F76986faad2d441dcac813f1d24693e18%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1928-03-17,1928-04-17,https://shakespeareandco.princeton.edu/members/millar-marguerite/,Marguerite Millar,"Millar, Marguerite",25.00,,1 month,31,1,,1928-03-17,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-03-17,1928-04-15,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,29,,,https://shakespeareandco.princeton.edu/books/jonson-ben-jonson-man/,Ben Jonson: The Man and His Work,Vol. 2,"Jonson, Ben",1925,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/1c%2Fd9%2Fe1%2F1cd9e183fb104f9d90a4c90c557234ab%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-03-17,1928-03-21,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/criterion/,The Criterion,"Vol. 7, no. 3, Mar 1928 The Monthly Criterion",,,"Renamed *The New Criterion* from January 1926 to January 1927, and *The Monthly Criterion* from May 1927 to March 1928.",Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/1c%2Fd9%2Fe1%2F1cd9e183fb104f9d90a4c90c557234ab%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-03-17,1928-03-23,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/kaye-smith-iron-smoke/,Iron and Smoke,,"Kaye-Smith, Sheila",1928,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2F26%2F63%2Ff226634c19324eb39669cf82dbdc4f0c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-03-20,1928-04-17,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,28,,,https://shakespeareandco.princeton.edu/books/mencken-prejudices-first-series/,Prejudices: First Series,,"Mencken, H. L.",1919,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/34%2F23%2F12%2F342312cacf5443fbbf0e4d0792724b68%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1928-03-20,1928-04-20,https://shakespeareandco.princeton.edu/members/davidoff/,Mrs. Henry Davidoff,"Davidoff, Mrs. Henry",25.00,50.00,1 month,31,2,,1928-03-20,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1928-03-21,1928-04-21,https://shakespeareandco.princeton.edu/members/mustyn-george/,George Mustyn,"Mustyn, George",25.00,50.00,1 month,31,1,,1928-03-21,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-03-21,1928-04-05,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/woolf-mrs-dalloway/,Mrs. Dalloway,,"Woolf, Virginia",1925,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/1c%2Fd9%2Fe1%2F1cd9e183fb104f9d90a4c90c557234ab%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1928-03-21,1928-03-21,https://shakespeareandco.princeton.edu/members/tyler-2/,Mr. Tyler,"Tyler, Mr.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1928-03-23,1928-04-23,https://shakespeareandco.princeton.edu/members/gibson-a/,A. Gibson,"Gibson, A.",25.00,50.00,1 month,31,1,,1928-03-23,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-03-23,1928-04-06,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/oflaherty-thy-neighbours-wife/,Thy Neighbour's Wife,,"O'Flaherty, Liam",1923,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2F26%2F63%2Ff226634c19324eb39669cf82dbdc4f0c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-03-23,1928-03-26,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/hawthorne-snow-image-twice/,The Snow-Image and Other Twice-Told Tales,,"Hawthorne, Nathaniel",1851,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/76%2F98%2F6f%2F76986faad2d441dcac813f1d24693e18%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-03-24,1928-04-26,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,33,,,https://shakespeareandco.princeton.edu/books/newman-hard-boiled-virgin/,The Hard-Boiled Virgin,,"Newman, Frances",1926,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/5d%2F94%2F00%2F5d9400637a2e4682a81940685b942a72%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1928-03-26,,https://shakespeareandco.princeton.edu/members/partridge/,Mrs. Partridge,"Partridge, Mrs.",35.00,,,,2,,1928-03-26,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1928-03-26,1928-05-07,https://shakespeareandco.princeton.edu/members/wassilieff/,Mme Wassilieff,"Wassilieff, Mme",30.00,,6 weeks,42,,,1928-03-26,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-03-26,1928-04-07,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/mansfield-bliss-short-stories/,Bliss and Other Stories,,"Mansfield, Katherine",1920,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/76%2F98%2F6f%2F76986faad2d441dcac813f1d24693e18%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-03-26,1928-04-20,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,25,,,https://shakespeareandco.princeton.edu/books/ellis-soul-spain/,The Soul of Spain,,"Ellis, Havelock",1908,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2F06%2Fd2%2F2106d277bd754d6dafddd7d2757a5841%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1928-03-26,1928-03-26,https://shakespeareandco.princeton.edu/members/wassilieff/,Mme Wassilieff,"Wassilieff, Mme",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1928-03-26,1928-04-26,https://shakespeareandco.princeton.edu/members/edmonds-gwyneth/,Gwyneth Edmonds,"Edmonds, Gwyneth",25.00,50.00,1 month,31,1,,1928-03-26,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1928-03-26,1928-04-26,https://shakespeareandco.princeton.edu/members/berger-2/,I. Berger,"Berger, I.",25.00,50.00,1 month,31,1,,1928-03-26,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Supplement,1928-03-27,1928-04-19,https://shakespeareandco.princeton.edu/members/sanborn-3/,Mrs. Sanborn,"Sanborn, Mrs.",10.00,,23 days,23,2,,1928-03-27,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-03-27,1928-03-29,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/douglas-south-wind/,South Wind,,"Douglas, Norman",1917,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/9b%2Fc6%2Fa6%2F9bc6a6a69687467dbf15abe22893b03f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-03-28,1929-05-08,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,406,,,https://shakespeareandco.princeton.edu/books/lewisohn-defeated/,The Defeated,,"Lewisohn, Ludwig",1927,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/dc%2F94%2Ffd%2Fdc94fda0cd9c4ae195f988f5a500f00f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Supplement,1928-03-28,1928-04-28,https://shakespeareandco.princeton.edu/members/hunter-elizabeth/,Elizabeth Hunter,"Hunter, Elizabeth",10.00,,1 month,31,2,,1928-03-28,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-03-29,1928-03-30,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/ford-new-york-america/,New York Is Not America,,"Ford, Ford Madox",1927,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/9b%2Fc6%2Fa6%2F9bc6a6a69687467dbf15abe22893b03f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1928-03-30,1928-04-30,https://shakespeareandco.princeton.edu/members/chassells/,Margaret Chassels,"Chassels, Margaret",25.00,50.00,1 month,31,1,,1928-03-30,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-03-30,1928-04-02,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/stoddard-reforging-america-story/,Reforging America: The Story of Our Nationhood,,"Stoddard, Lothrop",1927,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/9b%2Fc6%2Fa6%2F9bc6a6a69687467dbf15abe22893b03f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-03-30,1928-04-20,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/saintsbury-history-elizabethan-literature/,A History of Elizabethan Literature (History of English Literature 1),,"Saintsbury, George",1887,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/8c%2F6b%2F99%2F8c6b994fa70d4ab2b3b4e928cad06a78%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-03-30,1928-04-20,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/dickens-david-copperfield/,David Copperfield,,"Dickens, Charles",1850,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/8c%2F6b%2F99%2F8c6b994fa70d4ab2b3b4e928cad06a78%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-04-02,1928-04-06,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/montague-right-map/,Right Off the Map,,"Montague, C. E.",1927,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/33%2F49%2F00%2F334900ce15b348cd98974c542efc228f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-04-02,,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/merrick-chair-boulevard/,A Chair on the Boulevard,,"Merrick, Leonard",1917,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/33%2F49%2F00%2F334900ce15b348cd98974c542efc228f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-04-02,1928-04-06,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/saltus-paliser-case/,The Paliser Case,,"Saltus, Edgar",1919,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/33%2F49%2F00%2F334900ce15b348cd98974c542efc228f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-04-02,1928-04-06,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/beck-thunderer/,Thunderer,,"Beck, L. Adams",1927,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/33%2F49%2F00%2F334900ce15b348cd98974c542efc228f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1928-04-02,1928-04-02,https://shakespeareandco.princeton.edu/members/canavaggia-1/,Canavaggia,Canavaggia,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-04-02,1928-06-09,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,68,,,https://shakespeareandco.princeton.edu/books/brooks-emerson-others/,Emerson and Others,,"Brooks, Van Wyck",1927,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/ef%2Fef%2Fcb%2Fefefcbf627f44dea9bec88151c20f0a2%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1928-04-02,1928-05-02,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",35.00,,1 month,30,2,,1928-04-20,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,;https://iiif-cloud.princeton.edu/iiif/2/8c%2F6b%2F99%2F8c6b994fa70d4ab2b3b4e928cad06a78%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-04-02,1928-06-06,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,65,,,https://shakespeareandco.princeton.edu/books/rickword-scrutinies-various-writers/,Scrutinies by Various Writers,,,1928,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/ef%2Fef%2Fcb%2Fefefcbf627f44dea9bec88151c20f0a2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-04-02,1928-04-06,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/solano-uncertain-feast/,The Uncertain Feast,,"Solano, Solita",1924,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/33%2F49%2F00%2F334900ce15b348cd98974c542efc228f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1928-04-03,1928-06-03,https://shakespeareandco.princeton.edu/members/davies-6/,Mrs. G. Davies,"Davies, Mrs. G.",70.00,100.00,2 months,61,2,,1928-04-03,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-04-05,1928-04-18,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/woolf-jacobs-room/,Jacob's Room,,"Woolf, Virginia",1922,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/1c%2Fd9%2Fe1%2F1cd9e183fb104f9d90a4c90c557234ab%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-04-05,1928-04-18,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/baring-c/,C,,"Baring, Maurice",1924,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/1c%2Fd9%2Fe1%2F1cd9e183fb104f9d90a4c90c557234ab%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1928-04-05,1928-04-05,https://shakespeareandco.princeton.edu/members/canavaggia-3/,Canavaggia,Canavaggia,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1928-04-05,1928-05-05,https://shakespeareandco.princeton.edu/members/gotman/,Mrs. Eugene Gotman,"Gotman, Mrs. Eugene",35.00,65.00,1 month,30,2,,1928-04-05,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-04-06,1928-04-10,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/cabell-something-eve-comedy/,Something about Eve: A Comedy of Fig-leaves,,"Cabell, James Branch",1927,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2F26%2F63%2Ff226634c19324eb39669cf82dbdc4f0c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-04-06,1928-04-11,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/tomlinson-gallions-reach/,Gallions Reach,,"Tomlinson, H. M.",1927,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/33%2F49%2F00%2F334900ce15b348cd98974c542efc228f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1928-04-06,1928-04-06,https://shakespeareandco.princeton.edu/members/gieske-f-a/,F. A. Gieske,"Gieske, F. A.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-04-06,1928-04-11,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/taylor-one-crystal-mother/,One Crystal and a Mother,,"Taylor, Ellen Du Poise",1927,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/33%2F49%2F00%2F334900ce15b348cd98974c542efc228f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-04-06,1928-06-05,https://shakespeareandco.princeton.edu/members/jackson-5/,Mrs. Jackson,"Jackson, Mrs.",,,,,,,,,Returned,60,,,https://shakespeareandco.princeton.edu/books/huxley-barren-leaves/,Those Barren Leaves,,"Huxley, Aldous",1925,,Lending Library Card,"Sylvia Beach, Mrs. Jackson Lending Library Card, Box 59, Folder 6, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ac6269e-f2f6-4df6-861c-40ac8f15296d/manifest,https://iiif-cloud.princeton.edu/iiif/2/3e%2F0d%2Fe4%2F3e0de42656e249318a47a8a8d7828d2e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-04-07,1928-04-19,https://shakespeareandco.princeton.edu/members/mayre-n-e/,N. E. Mayre,"Mayre, N. E.",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/hazlitt-table-talk/,Table-Talk,,"Hazlitt, William",1822,,Lending Library Card,"Sylvia Beach, N.E. Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ec1c32ef-7770-43a3-a5ae-d6afe67a337b/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F18%2F12%2F631812f8c131443ab33c1ab716110a6f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1928-04-07,1928-07-07,https://shakespeareandco.princeton.edu/members/mayre-n-e/,N. E. Mayre,"Mayre, N. E.",60.00,,3 months,91,1,,1928-04-07,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, N.E. Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/ec1c32ef-7770-43a3-a5ae-d6afe67a337b/manifest,;https://iiif.princeton.edu/loris/figgy_prod/63%2F18%2F12%2F631812f8c131443ab33c1ab716110a6f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1928-04-07,1928-05-07,https://shakespeareandco.princeton.edu/members/moseley-d-h/,D. H. Moseley,"Moseley, D. H.",35.00,100.00,1 month,30,2,,1928-04-07,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-04-07,1928-04-11,https://shakespeareandco.princeton.edu/members/violette/,Mme G. Violette,"Violette, Mme G.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/mansfield-garden-party-stories/,The Garden Party and Other Stories,,"Mansfield, Katherine",1922,,Lending Library Card,"Sylvia Beach, Madame G. Violette Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76e14f75-d156-42c7-9d47-449e5ba12ffb/manifest,https://iiif.princeton.edu/loris/figgy_prod/76%2F98%2F6f%2F76986faad2d441dcac813f1d24693e18%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-04-08,1928-04-20,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/arnim-enchanted-april/,The Enchanted April,,"Arnim, Elizabeth von",1922,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/4c%2Fb0%2F05%2F4cb0051a29fd4a30ac4d18a9278429f5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-04-10,1928-04-24,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/jameson-clash/,The Clash,,"Jameson, Storm",1922,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2F26%2F63%2Ff226634c19324eb39669cf82dbdc4f0c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1928-04-11,1928-04-11,https://shakespeareandco.princeton.edu/members/edmonds-gwyneth/,Gwyneth Edmonds,"Edmonds, Gwyneth",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1928-04-11,1928-07-11,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",85.00,,3 months,91,2,,1928-04-11,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/33%2F49%2F00%2F334900ce15b348cd98974c542efc228f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-04-11,1928-04-18,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/wolf-springboard/,Springboard,,"Wolf, Robert",1927,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/33%2F49%2F00%2F334900ce15b348cd98974c542efc228f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-04-11,1928-04-14,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/mackenzie-vestal-fire/,Vestal Fire,,"Mackenzie, Compton",1927,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/33%2F49%2F00%2F334900ce15b348cd98974c542efc228f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-04-11,1928-04-14,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/hurst-president-born/,A President Is Born,,"Hurst, Fannie",1928,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/33%2F49%2F00%2F334900ce15b348cd98974c542efc228f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1928-04-13,1928-07-13,https://shakespeareandco.princeton.edu/members/hamburger-e/,E. Hamburger,"Hamburger, E.",68.00,100.00,3 months,91,2,,1928-04-13,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1928-04-13,1928-05-13,https://shakespeareandco.princeton.edu/members/curtiss-nathaniel/,Nathaniel Curtiss,"Curtiss, Nathaniel",35.00,,1 month,30,2,,1928-04-13,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1928-04-14,1928-05-14,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",25.00,,1 month,30,1,,1928-04-14,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/da%2Fc5%2F79%2Fdac5795476fe4af4858e68e98bddb555%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-04-14,1928-04-18,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/williams-dreadful-night/,The Dreadful Night,,"Williams, Ben Ames",1928,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/33%2F49%2F00%2F334900ce15b348cd98974c542efc228f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-04-14,1928-04-18,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/knox-footsteps-lock/,The Footsteps at the Lock,,"Knox, Ronald Arbuthnott",1928,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/33%2F49%2F00%2F334900ce15b348cd98974c542efc228f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1928-04-14,1928-04-14,https://shakespeareandco.princeton.edu/members/gibson-a/,A. Gibson,"Gibson, A.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-04-14,1928-04-24,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/ingram-true-chatterton-new/,The True Chatterton: A New Study from Original Documents,,"Ingram, John Henry",1910,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/da%2Fc5%2F79%2Fdac5795476fe4af4858e68e98bddb555%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1928-04-14,1928-04-14,https://shakespeareandco.princeton.edu/members/chassells/,Margaret Chassels,"Chassels, Margaret",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1928-04-17,1928-04-17,https://shakespeareandco.princeton.edu/members/earley-1/,Mrs. Arthur Earley,"Earley, Mrs. Arthur",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-04-17,1928-04-22,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/baring-cats-cradle/,Cat's Cradle,,"Baring, Maurice",1925,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/34%2F23%2F12%2F342312cacf5443fbbf0e4d0792724b68%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1928-04-17,1928-05-17,https://shakespeareandco.princeton.edu/members/hall-l-w/,L. W. Hall,"Hall, L. W.",35.00,100.00,1 month,30,2,,1928-04-17,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1928-04-18,1928-05-18,https://shakespeareandco.princeton.edu/members/klyhn-h-j/,H. J. Klyhn,"Klyhn, H. J.",20.00,50.00,1 month,30,1,Student,1928-04-18,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-04-18,1928-05-05,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/essays-books/,Essays on Books,,,,Unidentified. William Lyon Phelps's *Essays on Books* (1914) or Arthur Clutton-Brock's *Essays on Books* (1920).,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/1c%2Fd9%2Fe1%2F1cd9e183fb104f9d90a4c90c557234ab%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-04-18,1928-05-05,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/percy-bysshe-shelley/,Percy Bysshe Shelley,,,,"Unidentified. By or about Shelley. John Rodker borrowed an unspecifed Oxford edition. On March 19, 1932, Fernand Colens borrowed volume 2 of an unspecified edition.",Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/1c%2Fd9%2Fe1%2F1cd9e183fb104f9d90a4c90c557234ab%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-04-19,1928-05-09,https://shakespeareandco.princeton.edu/members/mayre-n-e/,N. E. Mayre,"Mayre, N. E.",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/hardy-far-madding-crowd/,Far from the Madding Crowd,,"Hardy, Thomas",1874,,Lending Library Card,"Sylvia Beach, N.E. Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ec1c32ef-7770-43a3-a5ae-d6afe67a337b/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F18%2F12%2F631812f8c131443ab33c1ab716110a6f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1928-04-20,1929-04-20,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",180.00,,1 year,365,1,,,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/4c%2Fb0%2F05%2F4cb0051a29fd4a30ac4d18a9278429f5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1928-04-20,1929-04-20,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",144.00,,1 year,365,1,,1928-04-24,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,;https://iiif.princeton.edu/loris/figgy_prod/f2%2F26%2F63%2Ff226634c19324eb39669cf82dbdc4f0c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-04-20,1928-04-25,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/mann-buddenbrooks/,Buddenbrooks,2 vols.,"Mann, Thomas",1924,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/8c%2F6b%2F99%2F8c6b994fa70d4ab2b3b4e928cad06a78%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-04-20,1928-04-25,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/bennett-woman-stole-everything/,The Woman Who Stole Everything and Other Stories,,"Bennett, Arnold",1927,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2F06%2Fd2%2F2106d277bd754d6dafddd7d2757a5841%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1928-04-20,1928-07-20,https://shakespeareandco.princeton.edu/members/mayer-mme/,Mme AndrΓ© Mayer,"Mayer, Mme AndrΓ©",68.00,100.00,3 months,91,2,Professor / Teacher,1928-04-20,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1928-04-20,1928-04-20,https://shakespeareandco.princeton.edu/members/parry/;https://shakespeareandco.princeton.edu/members/parry-3/,M. Parry;Mrs. Parry,"Parry, M.;Parry, Mrs.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-04-21,1928-05-07,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/oil/,Oil!,,"Sinclair, Upton",1927,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/cf%2F06%2F22%2Fcf06228a89d44628a53d29b68b3a1538%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-04-21,1928-05-07,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/bennett-strange-vanguard-fantasia/,The Strange Vanguard: A Fantasia,,"Bennett, Arnold",1928,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/cf%2F06%2F22%2Fcf06228a89d44628a53d29b68b3a1538%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-04-21,1928-05-19,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,28,,,https://shakespeareandco.princeton.edu/books/maugham-casuarina-tree/,The Casuarina Tree: Six Stories,,"Maugham, W. Somerset",1926,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2F00%2F2c%2Fcb002c24cc9a4d9c8fa834244db6afcc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1928-04-21,1928-04-21,https://shakespeareandco.princeton.edu/members/brooks/,H. Brooks,"Brooks, H.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-04-21,1928-04-30,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/ellis-sexual-selection-man/,Sexual Selection in Man (Studies in the Psychology of Sex 4),,"Ellis, Havelock",1905,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/4b%2Fa3%2F65%2F4ba365cea0974f05a43fd7f77ce258e9%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-04-22,1928-06-05,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,44,,,https://shakespeareandco.princeton.edu/books/mckenna-saviours-society-first/,The Saviours of Society: Being the First Part of The Realists,,"McKenna, Stephen",1926,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/34%2F23%2F12%2F342312cacf5443fbbf0e4d0792724b68%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-04-22,1928-05-04,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/dos-passos-three-soldiers/,Three Soldiers,,"Dos Passos, John",1921,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/4b%2Fa3%2F65%2F4ba365cea0974f05a43fd7f77ce258e9%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1928-04-23,1928-05-23,https://shakespeareandco.princeton.edu/members/vinal-mrs/,Mrs. Vinal,"Vinal, Mrs.",35.00,100.00,1 month,30,2,,1928-04-23,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1928-04-23,1928-05-23,https://shakespeareandco.princeton.edu/members/hough/,Mrs. Theodore Hough,"Hough, Mrs. Theodore",25.00,50.00,1 month,30,1,,1928-04-23,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1928-04-23,1928-06-23,https://shakespeareandco.princeton.edu/members/menhinick-kathleen/,Kathleen Menhinick,"Menhinick, Kathleen",56.00,,2 months,61,,Student,1928-04-23,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-04-24,1928-05-14,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/guedalla-palmerston-1784-1865/,"Palmerston, 1784 β 1865",,"Guedalla, Phillip",1927,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2F26%2F63%2Ff226634c19324eb39669cf82dbdc4f0c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1928-04-24,1928-04-24,https://shakespeareandco.princeton.edu/members/klyhn-h-j/,H. J. Klyhn,"Klyhn, H. J.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-04-25,1928-05-19,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,24,,,https://shakespeareandco.princeton.edu/books/erskine-private-life-helen/,The Private Life of Helen of Troy,,"Erskine, John",1925,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2F06%2Fd2%2F2106d277bd754d6dafddd7d2757a5841%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1928-04-25,1928-10-25,https://shakespeareandco.princeton.edu/members/blake-w/,W. Blake,"Blake, W.",80.00,,6 months,183,1,Student,1928-04-25,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1928-04-26,1928-04-26,https://shakespeareandco.princeton.edu/members/bouchet/,Dolores Bouchet,"Bouchet, Dolores",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1928-04-26,1928-04-26,https://shakespeareandco.princeton.edu/members/partridge/,Mrs. Partridge,"Partridge, Mrs.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1928-04-27,1928-05-27,https://shakespeareandco.princeton.edu/members/case-norah/,Norah Case,"Case, Norah",25.00,50.00,1 month,30,1,,1928-04-27,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-04-28,,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/quigley-land-rhone/,The Land of the Rhone,,"Quigley, Hugh",1927,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1928-04-28,1928-05-25,https://shakespeareandco.princeton.edu/members/smyth-pigott/,Lady Clare Mary Cecilia Feilding / Lady Clare Smyth-Pigott,"Smyth-Pigott, Clare",,,,,,,,,Returned,27,,,https://shakespeareandco.princeton.edu/books/borden-jane-stranger/,JaneβOur Stranger,,"Borden, Mary",1924,,Lending Library Card,"Sylvia Beach, Clair Smyth-Pigott Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6068331a-83cf-40bf-8850-58d8bc531fdb/manifest,https://iiif.princeton.edu/loris/figgy_prod/28%2F5c%2F0f%2F285c0f8fd85b49808f3af087f2e76fda%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-04-28,,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/pilkington-memoirs-mrs-laetitia/,"Memoirs of Mrs. Laetitia Pilkington, 1712 β 1750",,"Pilkington, Laetitia",1928,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1928-04-28,1928-06-06,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,39,,,https://shakespeareandco.princeton.edu/books/meredith-egoist/,The Egoist,,"Meredith, George",1879,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/ef%2Fef%2Fcb%2Fefefcbf627f44dea9bec88151c20f0a2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-04-28,1928-06-09,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,42,,,https://shakespeareandco.princeton.edu/books/vandercook-black-majesty/,Black Majesty,,"Vandercook, John Womack",1928,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/ef%2Fef%2Fcb%2Fefefcbf627f44dea9bec88151c20f0a2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-04-28,1928-05-17,https://shakespeareandco.princeton.edu/members/smyth-pigott/,Lady Clare Mary Cecilia Feilding / Lady Clare Smyth-Pigott,"Smyth-Pigott, Clare",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/beck-divine-lady-romance/,The Divine Lady: A Romance of Nelson and Emma Hamilton,,"Beck, L. Adams",1924,,Lending Library Card,"Sylvia Beach, Clair Smyth-Pigott Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6068331a-83cf-40bf-8850-58d8bc531fdb/manifest,https://iiif.princeton.edu/loris/figgy_prod/28%2F5c%2F0f%2F285c0f8fd85b49808f3af087f2e76fda%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-04-28,,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/ford-good-soldier/,The Good Soldier,,"Ford, Ford Madox",1915,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1928-04-28,1928-05-17,https://shakespeareandco.princeton.edu/members/smyth-pigott/,Lady Clare Mary Cecilia Feilding / Lady Clare Smyth-Pigott,"Smyth-Pigott, Clare",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/wylie-jennifer-lorn-sedate/,Jennifer Lorn: A Sedate Extravaganza,,"Wylie, Elinor",1923,,Lending Library Card,"Sylvia Beach, Clair Smyth-Pigott Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6068331a-83cf-40bf-8850-58d8bc531fdb/manifest,https://iiif.princeton.edu/loris/figgy_prod/28%2F5c%2F0f%2F285c0f8fd85b49808f3af087f2e76fda%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-04-28,1928-05-25,https://shakespeareandco.princeton.edu/members/smyth-pigott/,Lady Clare Mary Cecilia Feilding / Lady Clare Smyth-Pigott,"Smyth-Pigott, Clare",,,,,,,,,Returned,27,,,https://shakespeareandco.princeton.edu/books/castellane-discovered-america-confessions/,How I Discovered America: Confessions of Marquis Boniface de Castellane,,"Castellane, Boniface de",1924,,Lending Library Card,"Sylvia Beach, Clair Smyth-Pigott Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6068331a-83cf-40bf-8850-58d8bc531fdb/manifest,https://iiif.princeton.edu/loris/figgy_prod/28%2F5c%2F0f%2F285c0f8fd85b49808f3af087f2e76fda%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1928-04-30,1928-05-30,https://shakespeareandco.princeton.edu/members/knapnougel-alice/,Alice Knapnougel,"Knapnougel, Alice",25.00,50.00,1 month,30,1,,1928-04-30,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1928-04-30,1928-05-30,https://shakespeareandco.princeton.edu/members/green-suzanne/,Suzanne Green,"Green, Suzanne",20.00,50.00,1 month,30,1,,1928-04-30,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-05-02,1928-05-23,https://shakespeareandco.princeton.edu/members/wickham/,Anna Wickham,"Wickham, Anna",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/dreiser-american-tragedy/,An American Tragedy,,"Dreiser, Theodore",1925,,Lending Library Card,"Sylvia Beach, Mrs Anna Wickham Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bc6574f8-8f79-401d-86c6-731bea6280d0/manifest,https://iiif.princeton.edu/loris/figgy_prod/00%2F1a%2F05%2F001a0543e1b74e3c9a74d85d73d1ac45%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1928-05-02,1928-05-09,https://shakespeareandco.princeton.edu/members/wickham/,Anna Wickham,"Wickham, Anna",6.25,,1 week,7,,,1928-05-02,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Mrs Anna Wickham Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/bc6574f8-8f79-401d-86c6-731bea6280d0/manifest,;https://iiif.princeton.edu/loris/figgy_prod/00%2F1a%2F05%2F001a0543e1b74e3c9a74d85d73d1ac45%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1928-05-02,1928-08-02,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",85.00,,3 months,92,2,,1928-05-14,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,;https://iiif-cloud.princeton.edu/iiif/2/8c%2F6b%2F99%2F8c6b994fa70d4ab2b3b4e928cad06a78%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1928-05-02,1928-05-02,https://shakespeareandco.princeton.edu/members/jergenoff/,Jergenoff,Jergenoff,,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1928-05-03,1928-05-03,https://shakespeareandco.princeton.edu/members/gotman/,Mrs. Eugene Gotman,"Gotman, Mrs. Eugene",,,,,,,,65.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1928-05-04,1928-05-04,https://shakespeareandco.princeton.edu/members/vinal-mrs/,Mrs. Vinal,"Vinal, Mrs.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-05-05,1928-05-31,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,26,,,https://shakespeareandco.princeton.edu/books/eldorado/,Eldorado,,,,Unidentified. Likely Baroness Orczy's [*Eldorado*](https://archive.org/details/eldoradostoryofs00orcz) (1913).,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/8c%2F6b%2F99%2F8c6b994fa70d4ab2b3b4e928cad06a78%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-05-05,1928-05-23,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/woolf-lighthouse/,To the Lighthouse,,"Woolf, Virginia",1927,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/1c%2Fd9%2Fe1%2F1cd9e183fb104f9d90a4c90c557234ab%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-05-05,1928-05-14,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/dickens-life-adventures-martin/,The Life and Adventures of Martin Chuzzlewit,,"Dickens, Charles",1844,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/8c%2F6b%2F99%2F8c6b994fa70d4ab2b3b4e928cad06a78%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1928-05-05,1929-05-05,https://shakespeareandco.princeton.edu/members/norledge/,Mme Norledge,"Norledge, Mme",375.00,,1 year,365,3,,1928-04-28,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1928-05-07,1928-06-07,https://shakespeareandco.princeton.edu/members/moseley-d-h/,D. H. Moseley,"Moseley, D. H.",35.00,,1 month,31,2,,1928-05-05,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1928-05-07,1928-06-07,https://shakespeareandco.princeton.edu/members/wright/,Mrs. Wright,"Wright, Mrs.",35.00,,1 month,31,2,,1928-05-07,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1928-05-07,1928-06-07,https://shakespeareandco.princeton.edu/members/grumbach-j-f/,J. F. Grumbach,"Grumbach, J. F.",25.00,50.00,1 month,31,1,,1928-05-07,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1928-05-08,1928-05-08,https://shakespeareandco.princeton.edu/members/curtiss-nathaniel/,Nathaniel Curtiss,"Curtiss, Nathaniel",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1928-05-08,1928-05-22,https://shakespeareandco.princeton.edu/members/edmonds-gwyneth/,Gwyneth Edmonds,"Edmonds, Gwyneth",12.50,50.00,2 weeks,14,1,,1928-05-08,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-05-09,1928-05-16,https://shakespeareandco.princeton.edu/members/mayre-n-e/,N. E. Mayre,"Mayre, N. E.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/kipling-mine-people/,Mine Own People,,"Kipling, Rudyard",1891,,Lending Library Card,"Sylvia Beach, N.E. Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ec1c32ef-7770-43a3-a5ae-d6afe67a337b/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F18%2F12%2F631812f8c131443ab33c1ab716110a6f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Separate Payment,1928-05-09,1928-05-09,https://shakespeareandco.princeton.edu/members/mayre-n-e/,N. E. Mayre,"Mayre, N. E.",,50.00,,,,,1928-05-09,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1928-05-11,1929-05-11,https://shakespeareandco.princeton.edu/members/bennett-6/,C. H. A. Bennett,"Bennett, C. H. A.",200.00,100.00,1 year,365,,,1928-05-11,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-05-11,1928-05-23,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/charles-dickens/,Charles Dickens,,,,Unidentified. By or about Charles Dickens.,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/1c%2Fd9%2Fe1%2F1cd9e183fb104f9d90a4c90c557234ab%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1928-05-11,1928-06-11,https://shakespeareandco.princeton.edu/members/kirkpatrick-e/,E. Kirkpatrick,"Kirkpatrick, E.",20.00,50.00,1 month,31,1,,1928-05-11,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1928-05-12,1928-06-12,https://shakespeareandco.princeton.edu/members/andrews-3/,Joy Andrews,"Andrews, Joy",,50.00,1 month,31,1,,1928-05-12,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1928-05-12,1928-06-12,https://shakespeareandco.princeton.edu/members/knox-dorothy/,Dorothy Knox,"Knox, Dorothy",25.00,,1 month,31,1,,1928-05-12,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-05-14,1928-06-25,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,42,,,https://shakespeareandco.princeton.edu/books/merezhkovsky-forerunner-romance-leonardo/,The Romance of Leonardo da Vinci: The Forerunner,,"Merezhkovsky, Dmitry",1908,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/8c%2F6b%2F99%2F8c6b994fa70d4ab2b3b4e928cad06a78%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-05-14,1928-05-31,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/merezhkovsky-forerunner-romance-leonardo/,The Romance of Leonardo da Vinci: The Forerunner,,"Merezhkovsky, Dmitry",1908,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/8c%2F6b%2F99%2F8c6b994fa70d4ab2b3b4e928cad06a78%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-05-14,1928-05-22,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/mckay-home-harlem/,Home to Harlem,,"McKay, Claude",1928,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2F26%2F63%2Ff226634c19324eb39669cf82dbdc4f0c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-05-14,1928-09-28,https://shakespeareandco.princeton.edu/members/schlumberger-jean/,Jean Schlumberger,"Schlumberger, Jean",,,,,,,,,Returned,137,,,https://shakespeareandco.princeton.edu/books/lawrence-revolt-desert/,Revolt in the Desert,,"Lawrence, T. E.",1927,,Lending Library Card,"Sylvia Beach, Jean Schlumberger Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b29e004f-91aa-4b3a-b2b9-3abfb69b8ac7/manifest,https://iiif-cloud.princeton.edu/iiif/2/37%2F0c%2Fe7%2F370ce71b842c493fa7f3045e1b2e682f%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1928-05-15,1928-06-15,https://shakespeareandco.princeton.edu/members/heywood-florence/,Florence Heywood,"Heywood, Florence",20.00,50.00,1 month,31,1,,1928-05-15,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1928-05-15,1928-05-15,https://shakespeareandco.princeton.edu/members/case-norah/,Norah Case,"Case, Norah",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1928-05-15,1928-05-29,https://shakespeareandco.princeton.edu/members/wickham/,Anna Wickham,"Wickham, Anna",12.50,,2 weeks,14,,,1928-05-15,,,,,FRF,,,,,,,Lending Library Card;Logbook,"Sylvia Beach, Mrs Anna Wickham Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",https://figgy.princeton.edu/concern/scanned_resources/bc6574f8-8f79-401d-86c6-731bea6280d0/manifest;,https://iiif.princeton.edu/loris/figgy_prod/00%2F1a%2F05%2F001a0543e1b74e3c9a74d85d73d1ac45%2Fintermediate_file.jp2/full/full/0/default.jpg;
+Renewal,1928-05-16,1928-06-16,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",25.00,50.00,1 month,31,1,,1928-05-16,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,;https://iiif-cloud.princeton.edu/iiif/2/77%2Ffe%2Ffa%2F77fefa5d13b749fd9db8384f892b6719%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-05-16,1928-06-20,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,,Returned,35,,,https://shakespeareandco.princeton.edu/books/mayo-mother-india/,Mother India,,"Mayo, Katherine",1927,,Lending Library Card,"Sylvia Beach, CΓ©cile Sophie Blanche Maspero, Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd0b03c-bb1f-4c70-9fd3-43eeb8cd3c6d/manifest,https://iiif-cloud.princeton.edu/iiif/2/77%2Ffe%2Ffa%2F77fefa5d13b749fd9db8384f892b6719%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-05-16,1928-05-26,https://shakespeareandco.princeton.edu/members/mayre-n-e/,N. E. Mayre,"Mayre, N. E.",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/kipling-diversity-creatures/,A Diversity of Creatures,,"Kipling, Rudyard",1917,,Lending Library Card,"Sylvia Beach, N.E. Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ec1c32ef-7770-43a3-a5ae-d6afe67a337b/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F18%2F12%2F631812f8c131443ab33c1ab716110a6f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-05-17,1928-05-25,https://shakespeareandco.princeton.edu/members/smyth-pigott/,Lady Clare Mary Cecilia Feilding / Lady Clare Smyth-Pigott,"Smyth-Pigott, Clare",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/wylie-venetian-glass-nephew/,The Venetian Glass Nephew,,"Wylie, Elinor",1925,,Lending Library Card,"Sylvia Beach, Clair Smyth-Pigott Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6068331a-83cf-40bf-8850-58d8bc531fdb/manifest,https://iiif.princeton.edu/loris/figgy_prod/28%2F5c%2F0f%2F285c0f8fd85b49808f3af087f2e76fda%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-05-17,,https://shakespeareandco.princeton.edu/members/smyth-pigott/,Lady Clare Mary Cecilia Feilding / Lady Clare Smyth-Pigott,"Smyth-Pigott, Clare",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/benson-little-world/,The Little World,,"Benson, Stella",1925,,Lending Library Card,"Sylvia Beach, Clair Smyth-Pigott Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6068331a-83cf-40bf-8850-58d8bc531fdb/manifest,https://iiif.princeton.edu/loris/figgy_prod/28%2F5c%2F0f%2F285c0f8fd85b49808f3af087f2e76fda%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-05-18,1928-05-24,https://shakespeareandco.princeton.edu/members/roditi-edouard/,Γdouard Roditi,"Roditi, Γdouard",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/riding-contemporaries-snobs/,Contemporaries and Snobs,,"Riding, Laura",1928,,Lending Library Card,"Sylvia Beach, Edouard Roditi Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0b4cff90-d383-4533-84fc-409316b1fcef/manifest,https://iiif.princeton.edu/loris/figgy_prod/09%2F51%2F88%2F095188bdd1c545dd9c256862276f3eaa%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1928-05-18,1928-08-18,https://shakespeareandco.princeton.edu/members/roditi-edouard/,Γdouard Roditi,"Roditi, Γdouard",85.00,100.00,3 months,92,2,,1928-05-18,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Edouard Roditi Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/0b4cff90-d383-4533-84fc-409316b1fcef/manifest,;https://iiif.princeton.edu/loris/figgy_prod/09%2F51%2F88%2F095188bdd1c545dd9c256862276f3eaa%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1928-05-18,1928-05-18,https://shakespeareandco.princeton.edu/members/berger-2/,I. Berger,"Berger, I.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-05-18,1928-06-28,https://shakespeareandco.princeton.edu/members/roditi-edouard/,Γdouard Roditi,"Roditi, Γdouard",,,,,,,,,Returned,41,,,https://shakespeareandco.princeton.edu/books/cummings-enormous-room/,The Enormous Room,,"Cummings, E. E.",1922,,Lending Library Card,"Sylvia Beach, Edouard Roditi Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0b4cff90-d383-4533-84fc-409316b1fcef/manifest,https://iiif.princeton.edu/loris/figgy_prod/09%2F51%2F88%2F095188bdd1c545dd9c256862276f3eaa%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1928-05-18,1928-05-18,https://shakespeareandco.princeton.edu/members/knapnougel-alice/,Alice Knapnougel,"Knapnougel, Alice",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-05-19,1928-05-23,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/dawson-scott-twenty-seven-humorous/,Twenty-Seven Humorous Tales,,,1926,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2F06%2Fd2%2F2106d277bd754d6dafddd7d2757a5841%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-05-19,1928-06-23,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,35,,,https://shakespeareandco.princeton.edu/books/forster-passage-india/,A Passage to India,,"Forster, E. M.",1924,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2F00%2F2c%2Fcb002c24cc9a4d9c8fa834244db6afcc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1928-05-19,1928-06-19,https://shakespeareandco.princeton.edu/members/myers-selim/,Selim Myers,"Myers, Selim",25.00,,1 month,31,1,,1928-05-19,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1928-05-19,1928-06-19,https://shakespeareandco.princeton.edu/members/johnson-g-f/,G. F. A[unclear] Johnson,"Johnson, G. F. A[unclear]",25.00,50.00,1 month,31,1,,1928-05-19,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1928-05-20,1928-06-20,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",35.00,,1 month,31,2,,1928-06-06,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,;https://iiif-cloud.princeton.edu/iiif/2/ef%2Fef%2Fcb%2Fefefcbf627f44dea9bec88151c20f0a2%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1928-05-21,1928-05-21,https://shakespeareandco.princeton.edu/members/davidoff/,Mrs. Henry Davidoff,"Davidoff, Mrs. Henry",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-05-22,1928-05-29,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/deeping-kitty/,Kitty,,"Deeping, Warwick",1927,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2F26%2F63%2Ff226634c19324eb39669cf82dbdc4f0c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-05-23,1928-06-02,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/rossetti-princes-progress/,The Prince's Progress,,"Rossetti, Christina",1866,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/1c%2Fd9%2Fe1%2F1cd9e183fb104f9d90a4c90c557234ab%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-05-23,1928-06-02,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/swinburne/,Swinburne,,,,"Unidentified. By or about Swinburne. Fernand Colens borrowed volumes 1 and 2, and Ella Cassaigne borrowed volume 1.",Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/1c%2Fd9%2Fe1%2F1cd9e183fb104f9d90a4c90c557234ab%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-05-23,,https://shakespeareandco.princeton.edu/members/wickham/,Anna Wickham,"Wickham, Anna",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/bianchi-life-letters-emily/,The Life and Letters of Emily Dickinson,,"Dickinson, Emily",1924,,Lending Library Card,"Sylvia Beach, Mrs Anna Wickham Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bc6574f8-8f79-401d-86c6-731bea6280d0/manifest,https://iiif.princeton.edu/loris/figgy_prod/00%2F1a%2F05%2F001a0543e1b74e3c9a74d85d73d1ac45%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-05-23,1928-06-21,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,29,,,https://shakespeareandco.princeton.edu/books/woolf-lighthouse/,To the Lighthouse,,"Woolf, Virginia",1927,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2F06%2Fd2%2F2106d277bd754d6dafddd7d2757a5841%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1928-05-23,1929-05-23,https://shakespeareandco.princeton.edu/members/coyle-kathleen/;https://shakespeareandco.princeton.edu/members/coyle-kestrel-2/,Kathleen Coyle / Mrs. K. Coyle;Kestrel Coyle,"Coyle, Kathleen;Coyle, Kestrel",144.00,,1 year,365,1,,1928-05-23,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1928-05-23,1928-05-23,https://shakespeareandco.princeton.edu/members/moseley-d-h/,D. H. Moseley,"Moseley, D. H.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-05-24,1928-06-04,https://shakespeareandco.princeton.edu/members/roditi-edouard/,Γdouard Roditi,"Roditi, Γdouard",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/crane-white-buildings/,White Buildings,,"Crane, Hart",1926,,Lending Library Card,"Sylvia Beach, Edouard Roditi Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0b4cff90-d383-4533-84fc-409316b1fcef/manifest,https://iiif.princeton.edu/loris/figgy_prod/09%2F51%2F88%2F095188bdd1c545dd9c256862276f3eaa%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-05-24,,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/duncan-life/,My Life,,"Duncan, Isadora",1927,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1928-05-24,1928-09-05,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,104,,,https://shakespeareandco.princeton.edu/books/tarkington-plutocrat/,The Plutocrat,,"Tarkington, Booth",1927,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/4b%2Fa3%2F65%2F4ba365cea0974f05a43fd7f77ce258e9%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1928-05-24,1928-06-24,https://shakespeareandco.princeton.edu/members/bromfield-louis/,Louis Bromfield / Lewis Bromfield,"Bromfield, Louis",35.00,,1 month,31,2,,1928-05-24,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1928-05-25,1928-05-25,https://shakespeareandco.princeton.edu/members/edmonds-gwyneth/,Gwyneth Edmonds,"Edmonds, Gwyneth",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1928-05-25,1928-05-25,https://shakespeareandco.princeton.edu/members/wells-5/,Wells,Wells,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-05-25,,https://shakespeareandco.princeton.edu/members/smyth-pigott/,Lady Clare Mary Cecilia Feilding / Lady Clare Smyth-Pigott,"Smyth-Pigott, Clare",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/walpole-old-ladies/,The Old Ladies,,"Walpole, Hugh",1924,,Lending Library Card,"Sylvia Beach, Clair Smyth-Pigott Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6068331a-83cf-40bf-8850-58d8bc531fdb/manifest,https://iiif.princeton.edu/loris/figgy_prod/28%2F5c%2F0f%2F285c0f8fd85b49808f3af087f2e76fda%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-05-25,,https://shakespeareandco.princeton.edu/members/smyth-pigott/,Lady Clare Mary Cecilia Feilding / Lady Clare Smyth-Pigott,"Smyth-Pigott, Clare",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/swinnerton-elder-sister/,The Elder Sister,,"Swinnerton, Frank",1925,,Lending Library Card,"Sylvia Beach, Clair Smyth-Pigott Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6068331a-83cf-40bf-8850-58d8bc531fdb/manifest,https://iiif.princeton.edu/loris/figgy_prod/28%2F5c%2F0f%2F285c0f8fd85b49808f3af087f2e76fda%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-05-25,,https://shakespeareandco.princeton.edu/members/smyth-pigott/,Lady Clare Mary Cecilia Feilding / Lady Clare Smyth-Pigott,"Smyth-Pigott, Clare",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/madame-pompadour/,Madame de Pompadour,,,,"Unidentified. H. Noel Williams's *Madame de Pompadour* (1902), *Madame de Pompadour: A Study in Temperament by Marcelle Tinayre,* translated by Ethel Colburn Mayne (1926), or *Memoirs of Madame de Pompadour by Madame du Hausset, Her Waiting-Woman,* translated with an introduction by F. S. Flint (1928).",Lending Library Card,"Sylvia Beach, Clair Smyth-Pigott Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6068331a-83cf-40bf-8850-58d8bc531fdb/manifest,https://iiif.princeton.edu/loris/figgy_prod/28%2F5c%2F0f%2F285c0f8fd85b49808f3af087f2e76fda%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1928-05-25,,https://shakespeareandco.princeton.edu/members/fosca-francois/,FranΓ§ois Fosca,"Fosca, FranΓ§ois",100.00,,,,2,,1928-05-25,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1928-05-26,,https://shakespeareandco.princeton.edu/members/crawfield/,Mrs. B. Crawfield,"Crawfield, Mrs. B.",25.00,50.00,,,,,1928-05-26,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1928-05-26,1928-06-26,https://shakespeareandco.princeton.edu/members/auerbach/,Auerbach,Auerbach,35.00,100.00,1 month,31,2,,1928-05-26,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-05-26,1928-06-15,https://shakespeareandco.princeton.edu/members/mayre-n-e/,N. E. Mayre,"Mayre, N. E.",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/macaulay-macaulay-essays/,Essays,,"Macaulay, Thomas Babington",,,Lending Library Card,"Sylvia Beach, N.E. Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ec1c32ef-7770-43a3-a5ae-d6afe67a337b/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F18%2F12%2F631812f8c131443ab33c1ab716110a6f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1928-05-26,1928-06-26,https://shakespeareandco.princeton.edu/members/edwards-7/,Mrs. W. Edwards,"Edwards, Mrs. W.",28.00,100.00,1 month,31,2,AdL,1928-05-26,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-05-29,,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/ford-last-post/,Last Post (Parade's End 4),,"Ford, Ford Madox",1928,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2F26%2F63%2Ff226634c19324eb39669cf82dbdc4f0c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1928-05-29,1928-06-29,https://shakespeareandco.princeton.edu/members/kranenburg-hoen/,Mme Kranenburg-Hoen,"Kranenburg-Hoen, Mme",25.00,50.00,1 month,31,1,AdL,1928-05-29,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1928-05-30,1928-05-30,https://shakespeareandco.princeton.edu/members/brush-albert/,Albert Brush,"Brush, Albert",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1928-05-30,1928-11-30,https://shakespeareandco.princeton.edu/members/ulsh/,Doretha Ulsh Cowen / Miss D. Ulsh,"Ulsh, Doretha",100.00,50.00,6 months,184,1,AdL,1928-05-30,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Doretha Ulsh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/aefa6047-8ed3-4e6a-8593-1c23bb4fb165/manifest,;https://iiif.princeton.edu/loris/figgy_prod/45%2F6b%2F73%2F456b736550a340198c9214e122dc23af%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-05-30,1928-06-15,https://shakespeareandco.princeton.edu/members/ulsh/,Doretha Ulsh Cowen / Miss D. Ulsh,"Ulsh, Doretha",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/dent-mozarts-operas-critical/,Mozart's Operas: A Critical Study,,"Dent, Edward Joseph",1913,,Lending Library Card,"Sylvia Beach, Doretha Ulsh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/aefa6047-8ed3-4e6a-8593-1c23bb4fb165/manifest,https://iiif.princeton.edu/loris/figgy_prod/45%2F6b%2F73%2F456b736550a340198c9214e122dc23af%2Fintermediate_file.jp2/full/full/0/default.jpg
+Separate Payment,1928-05-30,1928-05-30,https://shakespeareandco.princeton.edu/members/heargreaves/,Heargreaves,Heargreaves,18.00,,,,,,1928-05-30,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-05-31,1928-06-01,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/hakluyt-principal-navigations-voyages/,"The Principal Navigations, Voyages, and Discoveries of the English Nation",Vol. 1,"Hakluyt, Richard",,Richard Le Gallienne borrowed volume 1 of an unknown edition.,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/8c%2F6b%2F99%2F8c6b994fa70d4ab2b3b4e928cad06a78%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-05-31,1928-06-30,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,30,,,https://shakespeareandco.princeton.edu/books/dos-passos-one-mans-initiation/,One Man's Initiation β 1917,,"Dos Passos, John",1917,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/4b%2Fa3%2F65%2F4ba365cea0974f05a43fd7f77ce258e9%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1928-05-31,1928-05-31,https://shakespeareandco.princeton.edu/members/morrison/,Mrs. Norman Morrison,"Morrison, Mrs. Norman",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-06-01,1928-06-04,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/masefield-sard-harker/,Sard Harker,,"Masefield, John",1924,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/8c%2F6b%2F99%2F8c6b994fa70d4ab2b3b4e928cad06a78%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-06-02,1928-06-16,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/hudson-richard-myrtle/,"Richard, Myrtle, and I",,"Hudson, Stephen",1926,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/1c%2Fd9%2Fe1%2F1cd9e183fb104f9d90a4c90c557234ab%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1928-06-02,1928-06-02,https://shakespeareandco.princeton.edu/members/dodds-1/,Miss Dodds,"Dodds, Miss",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-06-02,1928-06-16,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/swinburne/,Swinburne,,,,"Unidentified. By or about Swinburne. Fernand Colens borrowed volumes 1 and 2, and Ella Cassaigne borrowed volume 1.",Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/1c%2Fd9%2Fe1%2F1cd9e183fb104f9d90a4c90c557234ab%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-06-02,1928-06-04,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/starrett-fourteen-great-detective/,Fourteen Great Detective Stories,,,1928,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/97%2F85%2F7f%2F97857f72a8cc4cc0ada2b4ed5925f40d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-06-04,1928-06-06,https://shakespeareandco.princeton.edu/members/roditi-edouard/,Γdouard Roditi,"Roditi, Γdouard",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/macleish-pot-earth/,The Pot of Earth,,"MacLeish, Archibald",1925,,Lending Library Card,"Sylvia Beach, Edouard Roditi Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0b4cff90-d383-4533-84fc-409316b1fcef/manifest,https://iiif.princeton.edu/loris/figgy_prod/09%2F51%2F88%2F095188bdd1c545dd9c256862276f3eaa%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-06-04,1928-06-09,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/moore-avowals/,Avowals,,"Moore, George",1919,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/97%2F85%2F7f%2F97857f72a8cc4cc0ada2b4ed5925f40d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-06-04,1928-06-06,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/hergesheimer-mountain-blood-novel/,Mountain Blood: A Novel,,"Hergesheimer, Joseph",1915,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/8c%2F6b%2F99%2F8c6b994fa70d4ab2b3b4e928cad06a78%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-06-05,1928-09-15,https://shakespeareandco.princeton.edu/members/jackson-5/,Mrs. Jackson,"Jackson, Mrs.",,,,,,,,,Returned,102,,,https://shakespeareandco.princeton.edu/books/walpole-maradick-forty-transition/,Maradick at Forty: A Transition,,"Walpole, Hugh",1910,,Lending Library Card,"Sylvia Beach, Mrs. Jackson Lending Library Card, Box 59, Folder 6, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ac6269e-f2f6-4df6-861c-40ac8f15296d/manifest,https://iiif-cloud.princeton.edu/iiif/2/3e%2F0d%2Fe4%2F3e0de42656e249318a47a8a8d7828d2e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-06-05,1928-06-26,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/moore-sister-teresa/,Sister Teresa,,"Moore, George",1901,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/34%2F23%2F12%2F342312cacf5443fbbf0e4d0792724b68%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1928-06-05,1928-06-05,https://shakespeareandco.princeton.edu/members/johnson-g-f/,G. F. A[unclear] Johnson,"Johnson, G. F. A[unclear]",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-06-05,1928-10-27,https://shakespeareandco.princeton.edu/members/jackson-5/,Mrs. Jackson,"Jackson, Mrs.",,,,,,,,,Returned,144,,,https://shakespeareandco.princeton.edu/books/sitwell-bombardment/,Before the Bombardment,,"Sitwell, Osbert",1926,,Lending Library Card,"Sylvia Beach, Mrs. Jackson Lending Library Card, Box 59, Folder 6, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ac6269e-f2f6-4df6-861c-40ac8f15296d/manifest,https://iiif-cloud.princeton.edu/iiif/2/3e%2F0d%2Fe4%2F3e0de42656e249318a47a8a8d7828d2e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-06-06,1928-06-09,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/wilder-cabala/,The Cabala,,"Wilder, Thornton",1926,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/ef%2Fef%2Fcb%2Fefefcbf627f44dea9bec88151c20f0a2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-06-06,1928-06-12,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/mottram-english-miss/,The English Miss,,"Mottram, R. H.",1928,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2F26%2F63%2Ff226634c19324eb39669cf82dbdc4f0c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-06-06,1928-06-15,https://shakespeareandco.princeton.edu/members/roditi-edouard/,Γdouard Roditi,"Roditi, Γdouard",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/cummings-tulips-chimneys/,Tulips and Chimneys,,"Cummings, E. E.",1924,,Lending Library Card,"Sylvia Beach, Edouard Roditi Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0b4cff90-d383-4533-84fc-409316b1fcef/manifest,https://iiif.princeton.edu/loris/figgy_prod/09%2F51%2F88%2F095188bdd1c545dd9c256862276f3eaa%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-06-06,1928-06-09,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/hergesheimer-three-black-pennys/,The Three Black Pennys,,"Hergesheimer, Joseph",1917,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/8c%2F6b%2F99%2F8c6b994fa70d4ab2b3b4e928cad06a78%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-06-07,1928-06-11,https://shakespeareandco.princeton.edu/members/linossier-raymonde/,Raymonde Linossier,"Linossier, Raymonde",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/wallace-flat-2/,Flat 2,,"Wallace, Edgar",1924,,Lending Library Card,"Sylvia Beach, Raymonde Linossier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/53ede5bf-939d-44f5-9ddb-4dd39363bd20/manifest,https://iiif.princeton.edu/loris/figgy_prod/41%2Fcb%2F6b%2F41cb6b39c8604ec88fecdca454971646%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1928-06-07,1928-07-07,https://shakespeareandco.princeton.edu/members/linossier-raymonde/,Raymonde Linossier,"Linossier, Raymonde",20.00,,1 month,30,1,AdL,1928-06-07,,,,,FRF,,,,,,,Logbook;Lending Library Card;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Raymonde Linossier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/53ede5bf-939d-44f5-9ddb-4dd39363bd20/manifest;,;https://iiif.princeton.edu/loris/figgy_prod/41%2Fcb%2F6b%2F41cb6b39c8604ec88fecdca454971646%2Fintermediate_file.jp2/full/full/0/default.jpg;
+Subscription,1928-06-07,1928-12-07,https://shakespeareandco.princeton.edu/members/lady-colvin/,Lady E. Colvin,"Colvin, Lady E.",150.00,,6 months,183,2,,1928-06-07,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1928-06-07,1928-06-21,https://shakespeareandco.princeton.edu/members/proix/,Troise Proix,"Proix, Troise",12.50,,2 weeks,14,1,,1928-06-07,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Troise Proix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/b7152822-4421-406d-9472-740daf9b84e0/manifest,;https://iiif.princeton.edu/loris/figgy_prod/e6%2Fa5%2F3a%2Fe6a53a0fee174f0589dc02ffbad33ba5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-06-09,1928-06-15,https://shakespeareandco.princeton.edu/members/proix/,Troise Proix,"Proix, Troise",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/oneill-strange-interlude/,Strange Interlude,,"O'Neill, Eugene",1928,,Lending Library Card,"Sylvia Beach, Troise Proix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b7152822-4421-406d-9472-740daf9b84e0/manifest,https://iiif.princeton.edu/loris/figgy_prod/e6%2Fa5%2F3a%2Fe6a53a0fee174f0589dc02ffbad33ba5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-06-09,1928-06-15,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/duncan-life/,My Life,,"Duncan, Isadora",1927,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/8c%2F6b%2F99%2F8c6b994fa70d4ab2b3b4e928cad06a78%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-06-09,1928-06-16,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/van-dine-greene-murder-case/,The Greene Murder Case: A Philo Vance Story,,"Van Dine, S. S.",1928,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/97%2F85%2F7f%2F97857f72a8cc4cc0ada2b4ed5925f40d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-06-09,1928-06-11,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/mann-magic-mountain/,The Magic Mountain,2 vols.,"Mann, Thomas",1927,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/8c%2F6b%2F99%2F8c6b994fa70d4ab2b3b4e928cad06a78%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1928-06-09,1928-06-09,https://shakespeareandco.princeton.edu/members/wright/,Mrs. Wright,"Wright, Mrs.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-06-09,1928-07-02,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/lawrence-woman-rode-away/,The Woman Who Rode Away,,"Lawrence, D. H.",1928,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/ef%2Fef%2Fcb%2Fefefcbf627f44dea9bec88151c20f0a2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-06-11,1928-06-18,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/dickens-nicholas-nickleby/,Nicholas Nickleby,,"Dickens, Charles",1839,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/8c%2F6b%2F99%2F8c6b994fa70d4ab2b3b4e928cad06a78%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-06-11,,https://shakespeareandco.princeton.edu/members/linossier-raymonde/,Raymonde Linossier,"Linossier, Raymonde",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/thackeray-wolves-lamb/,The Wolves and the Lamb,,"Thackeray, William Makepeace",1854,,Lending Library Card,"Sylvia Beach, Raymonde Linossier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/53ede5bf-939d-44f5-9ddb-4dd39363bd20/manifest,https://iiif.princeton.edu/loris/figgy_prod/41%2Fcb%2F6b%2F41cb6b39c8604ec88fecdca454971646%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1928-06-12,1928-07-12,https://shakespeareandco.princeton.edu/members/evans-5/,Miss Evans,"Evans, Miss",35.00,,1 month,30,2,,1928-06-08,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1928-06-12,1928-06-12,https://shakespeareandco.princeton.edu/members/knox-dorothy/,Dorothy Knox,"Knox, Dorothy",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1928-06-12,1928-06-12,https://shakespeareandco.princeton.edu/members/johnson-g-f/,G. F. A[unclear] Johnson,"Johnson, G. F. A[unclear]",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1928-06-12,1928-07-12,https://shakespeareandco.princeton.edu/members/cree/,Mrs. Cree,"Cree, Mrs.",25.00,50.00,1 month,30,1,,1928-06-12,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1928-06-12,1928-07-12,https://shakespeareandco.princeton.edu/members/andrews-3/,Joy Andrews,"Andrews, Joy",25.00,,1 month,30,1,,1928-06-08,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-06-12,1928-06-23,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/borden-flamingo-novel/,Flamingo: A Novel,,"Borden, Mary",1927,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2F26%2F63%2Ff226634c19324eb39669cf82dbdc4f0c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-06-12,1928-07-02,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/wilson-alone-life-private/,All Alone: The Life and Private History of Emily Jane Bronte,,"Wilson, Romer",1928,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/ef%2Fef%2Fcb%2Fefefcbf627f44dea9bec88151c20f0a2%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1928-06-13,1928-06-13,https://shakespeareandco.princeton.edu/members/mustyn-george/,George Mustyn,"Mustyn, George",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-06-13,1928-06-22,https://shakespeareandco.princeton.edu/members/vidor/,King Vidor,"Vidor, King",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/stevenson-inland-voyage-travels/,An Inland Voyage / Travels with a Donkey,,"Stevenson, Robert Louis",1910,,Lending Library Card,"Sylvia Beach, Mr. King Vidor Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6015b449-09f1-4155-a467-34b13b926846/manifest,https://iiif.princeton.edu/loris/figgy_prod/d0%2Fde%2F4b%2Fd0de4b969f2d4928ac4a8d198a7fa4ac%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1928-06-14,1928-07-14,https://shakespeareandco.princeton.edu/members/bataille/,P. Bataille,"Bataille, P.",25.00,50.00,1 month,30,1,,1928-06-14,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1928-06-14,1929-06-14,https://shakespeareandco.princeton.edu/members/burt-maud/,Maud Burt,"Burt, Maud",200.00,,1 year,365,2,Professor / Teacher,1928-07-30,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1928-06-15,1928-07-15,https://shakespeareandco.princeton.edu/members/harris-d-w/,D. W. Harris,"Harris, D. W.",35.00,,1 month,30,2,,1928-06-15,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-06-15,1928-06-20,https://shakespeareandco.princeton.edu/members/roditi-edouard/,Γdouard Roditi,"Roditi, Γdouard",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/williams-great-american-novel/,The Great American Novel,,"Williams, William Carlos",1923,,Lending Library Card,"Sylvia Beach, Edouard Roditi Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0b4cff90-d383-4533-84fc-409316b1fcef/manifest,https://iiif.princeton.edu/loris/figgy_prod/09%2F51%2F88%2F095188bdd1c545dd9c256862276f3eaa%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1928-06-15,1928-06-15,https://shakespeareandco.princeton.edu/members/noxon/;https://shakespeareandco.princeton.edu/members/noxon-mr/,Mme Noxon;Mr. Noxon,"Noxon, Mme;Noxon, Mr.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-06-15,1928-06-21,https://shakespeareandco.princeton.edu/members/proix/,Troise Proix,"Proix, Troise",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/meredith-ordeal-richard-feverel/,The Ordeal of Richard Feverel,,"Meredith, George",1859,,Lending Library Card,"Sylvia Beach, Troise Proix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b7152822-4421-406d-9472-740daf9b84e0/manifest,https://iiif.princeton.edu/loris/figgy_prod/e6%2Fa5%2F3a%2Fe6a53a0fee174f0589dc02ffbad33ba5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-06-15,1928-06-19,https://shakespeareandco.princeton.edu/members/mayre-n-e/,N. E. Mayre,"Mayre, N. E.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/pepys-diary-samuel-pepys/,The Diary of Samuel Pepys,,"Pepys, Samuel",,"At least three editions of Pepys's *Diary* circulated in the lending library. John Murray borrowed volumes 1β3 of an unspecified edition; Dorothee Chareau borrowed volumes 4β6 from the Bell edition, edited by Henry B. Wheatley; Maximilien Vox borrowed the single-volume Globe edition, edited by G. Gregory Smith; HΓ©lΓ¨ne de Wendel borrowed the single-volume Globe edition and volumes 2β3 of the Bell edition; Guillaume Lerolle borrowed volumes 1β2 of the Bell edition; and Monique de Vigan borrowed the Newnes edition, edited by Lord Braybrooke.",Lending Library Card,"Sylvia Beach, N.E. Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ec1c32ef-7770-43a3-a5ae-d6afe67a337b/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F18%2F12%2F631812f8c131443ab33c1ab716110a6f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-06-15,1928-06-27,https://shakespeareandco.princeton.edu/members/ulsh/,Doretha Ulsh Cowen / Miss D. Ulsh,"Ulsh, Doretha",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/dent-mozarts-operas-critical/,Mozart's Operas: A Critical Study,,"Dent, Edward Joseph",1913,,Lending Library Card,"Sylvia Beach, Doretha Ulsh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/aefa6047-8ed3-4e6a-8593-1c23bb4fb165/manifest,https://iiif.princeton.edu/loris/figgy_prod/45%2F6b%2F73%2F456b736550a340198c9214e122dc23af%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1928-06-16,1928-07-16,https://shakespeareandco.princeton.edu/members/alling/,Kenneth Slade Alling,"Alling, Kenneth Slade",25.00,50.00,1 month,30,1,,1928-06-16,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-06-16,1928-06-21,https://shakespeareandco.princeton.edu/members/linossier-raymonde/,Raymonde Linossier,"Linossier, Raymonde",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/connington-tragedy-ravensthorpe/,The Tragedy at Ravensthorpe,,"Connington, J. J.",1927,,Lending Library Card,"Sylvia Beach, Raymonde Linossier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/53ede5bf-939d-44f5-9ddb-4dd39363bd20/manifest,https://iiif.princeton.edu/loris/figgy_prod/41%2Fcb%2F6b%2F41cb6b39c8604ec88fecdca454971646%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-06-16,1928-07-07,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/lawrence-women-love/,Women in Love,,"Lawrence, D. H.",1920,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/1c%2Fd9%2Fe1%2F1cd9e183fb104f9d90a4c90c557234ab%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-06-16,1928-06-21,https://shakespeareandco.princeton.edu/members/linossier-raymonde/,Raymonde Linossier,"Linossier, Raymonde",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/snell-blue-murder/,Blue Murder,,"Snell, Edmund",1928,,Lending Library Card,"Sylvia Beach, Raymonde Linossier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/53ede5bf-939d-44f5-9ddb-4dd39363bd20/manifest,https://iiif.princeton.edu/loris/figgy_prod/41%2Fcb%2F6b%2F41cb6b39c8604ec88fecdca454971646%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-06-16,1928-06-18,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/stern-debonair-story-persephone/,Debonair: The Story of Persephone,,"Stern, G. B.",1928,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/97%2F85%2F7f%2F97857f72a8cc4cc0ada2b4ed5925f40d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-06-16,1928-07-07,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/hood-book-robert-southwell/,"The Book of Robert Southwell: Priest, Poet, Prisoner",,"Hood, Christobel M.",1926,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/1c%2Fd9%2Fe1%2F1cd9e183fb104f9d90a4c90c557234ab%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1928-06-16,1928-06-16,https://shakespeareandco.princeton.edu/members/hill-john-c/,John C. Hill,"Hill, John C.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Supplement,1928-06-18,1928-07-12,https://shakespeareandco.princeton.edu/members/gray-d-o/,Mrs. D. O. Gray,"Gray, Mrs. D. O.",8.00,,24 days,24,1,,1928-06-18,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-06-18,1928-06-20,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/maxwell-spinster-parish/,Spinster of this Parish,,"Maxwell, W. B.",1910,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/97%2F85%2F7f%2F97857f72a8cc4cc0ada2b4ed5925f40d%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1928-06-18,1928-06-18,https://shakespeareandco.princeton.edu/members/paul-dubois/,Louis Paul-Dubois,"Paul-Dubois, Louis",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1928-06-18,1928-07-18,https://shakespeareandco.princeton.edu/members/epstein-a/,A. Epstein,"Epstein, A.",25.00,50.00,1 month,30,1,,1928-06-18,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,,1928-06-18,https://shakespeareandco.princeton.edu/members/potocki-de-montalk/,Geoffrey Potocki de Montalk,"Potocki de Montalk, Geoffrey",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/gorman-james-joyce-first/,"James Joyce, His First Forty Years",,"Gorman, Herbert Sherman",1924,,Lending Library Card,"Sylvia Beach, Geoffrey Potocki de Montalk Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3d3346d0-18e1-4066-8756-0990f97aac13/manifest,https://iiif.princeton.edu/loris/figgy_prod/78%2F9d%2Fbd%2F789dbdcd3ce8447ea3796376cd13cb51%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-06-18,1928-06-21,https://shakespeareandco.princeton.edu/members/potocki-de-montalk/,Geoffrey Potocki de Montalk,"Potocki de Montalk, Geoffrey",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/romains-death-nobody/,The Death of a Nobody,,"Romains, Jules",1914,,Lending Library Card,"Sylvia Beach, Geoffrey Potocki de Montalk Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3d3346d0-18e1-4066-8756-0990f97aac13/manifest,https://iiif.princeton.edu/loris/figgy_prod/78%2F9d%2Fbd%2F789dbdcd3ce8447ea3796376cd13cb51%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-06-18,1928-06-25,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/dickens-great-expectations/,Great Expectations,,"Dickens, Charles",1861,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/8c%2F6b%2F99%2F8c6b994fa70d4ab2b3b4e928cad06a78%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-06-19,,https://shakespeareandco.princeton.edu/members/mayre-n-e/,N. E. Mayre,"Mayre, N. E.",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/macaulay-history-england-accession/,"The History of England, from the Accession of James II",Vol. 1,"Macaulay, Thomas Babington",1861,,Lending Library Card,"Sylvia Beach, N.E. Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ec1c32ef-7770-43a3-a5ae-d6afe67a337b/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F18%2F12%2F631812f8c131443ab33c1ab716110a6f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-06-20,1928-06-27,https://shakespeareandco.princeton.edu/members/mayre-n-e/,N. E. Mayre,"Mayre, N. E.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/warren-hastings/,Warren Hastings,,,,"Unidentified. Lionel J. Trotter's *Warren Hastings: A Biography* (1878), Lord Macaulay's *Warren Hastings* (1886), or Alfred C. Lyall's *Warren Hastings* (1889), etc.",Lending Library Card,"Sylvia Beach, N.E. Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ec1c32ef-7770-43a3-a5ae-d6afe67a337b/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F18%2F12%2F631812f8c131443ab33c1ab716110a6f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-06-20,1928-06-25,https://shakespeareandco.princeton.edu/members/roditi-edouard/,Γdouard Roditi,"Roditi, Γdouard",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/graves-pier-glass/,The Pier-Glass,,"Graves, Robert",1921,,Lending Library Card,"Sylvia Beach, Edouard Roditi Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0b4cff90-d383-4533-84fc-409316b1fcef/manifest,https://iiif.princeton.edu/loris/figgy_prod/09%2F51%2F88%2F095188bdd1c545dd9c256862276f3eaa%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-06-20,1928-06-22,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/lowndes-story-ivy/,The Story of Ivy,,"Lowndes, Marie Belloc",1927,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/97%2F85%2F7f%2F97857f72a8cc4cc0ada2b4ed5925f40d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-06-21,1928-06-23,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/starrett-fourteen-great-detective/,Fourteen Great Detective Stories,,,1928,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/a6%2F8a%2F5b%2Fa68a5bf3d5a04efd8b4fbb7d8e63f1f0%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-06-21,,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/borrow-zincali-account-gypsies/,The Zincali: An Account of the Gypsies of Spain,,"Borrow, George Henry",1901,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1928-06-21,1928-06-22,https://shakespeareandco.princeton.edu/members/linossier-raymonde/,Raymonde Linossier,"Linossier, Raymonde",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/lowndes-lodger/,The Lodger,,"Lowndes, Marie Belloc",1913,,Lending Library Card,"Sylvia Beach, Raymonde Linossier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/53ede5bf-939d-44f5-9ddb-4dd39363bd20/manifest,https://iiif.princeton.edu/loris/figgy_prod/41%2Fcb%2F6b%2F41cb6b39c8604ec88fecdca454971646%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-06-22,1928-06-25,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/kaye-smith-end-house-alard/,The End of the House of Alard,,"Kaye-Smith, Sheila",1923,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/97%2F85%2F7f%2F97857f72a8cc4cc0ada2b4ed5925f40d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-06-22,1928-06-26,https://shakespeareandco.princeton.edu/members/linossier-raymonde/,Raymonde Linossier,"Linossier, Raymonde",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/van-dine-greene-murder-case/,The Greene Murder Case: A Philo Vance Story,,"Van Dine, S. S.",1928,,Lending Library Card,"Sylvia Beach, Raymonde Linossier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/53ede5bf-939d-44f5-9ddb-4dd39363bd20/manifest,https://iiif.princeton.edu/loris/figgy_prod/41%2Fcb%2F6b%2F41cb6b39c8604ec88fecdca454971646%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-06-22,1928-06-26,https://shakespeareandco.princeton.edu/members/potocki-de-montalk/,Geoffrey Potocki de Montalk,"Potocki de Montalk, Geoffrey",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/oneill-great-god-brown/,The Great God Brown,,"O'Neill, Eugene",1926,,Lending Library Card,"Sylvia Beach, Geoffrey Potocki de Montalk Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3d3346d0-18e1-4066-8756-0990f97aac13/manifest,https://iiif.princeton.edu/loris/figgy_prod/78%2F9d%2Fbd%2F789dbdcd3ce8447ea3796376cd13cb51%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1928-06-22,1928-07-22,https://shakespeareandco.princeton.edu/members/goodwin-lacy/,Lacy Goodwin,"Goodwin, Lacy",35.00,100.00,1 month,30,2,,1928-06-22,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-06-22,1928-06-22,https://shakespeareandco.princeton.edu/members/potocki-de-montalk/,Geoffrey Potocki de Montalk,"Potocki de Montalk, Geoffrey",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/joyce-exiles/,Exiles,,"Joyce, James",1918,,Lending Library Card,"Sylvia Beach, Geoffrey Potocki de Montalk Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3d3346d0-18e1-4066-8756-0990f97aac13/manifest,https://iiif.princeton.edu/loris/figgy_prod/78%2F9d%2Fbd%2F789dbdcd3ce8447ea3796376cd13cb51%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-06-23,1928-07-05,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/hurst-lummox/,Lummox,,"Hurst, Fannie",1923,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/a6%2F8a%2F5b%2Fa68a5bf3d5a04efd8b4fbb7d8e63f1f0%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-06-23,1928-06-30,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/stern-debonair-story-persephone/,Debonair: The Story of Persephone,,"Stern, G. B.",1928,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2F26%2F63%2Ff226634c19324eb39669cf82dbdc4f0c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-06-23,1928-07-10,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/oil/,Oil!,,"Sinclair, Upton",1927,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2F00%2F2c%2Fcb002c24cc9a4d9c8fa834244db6afcc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1928-06-23,1928-07-23,https://shakespeareandco.princeton.edu/members/kennedy-robert-1/,Robert Kennedy,"Kennedy, Robert",35.00,100.00,1 month,30,2,,1928-06-23,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1928-06-23,1928-07-23,https://shakespeareandco.princeton.edu/members/kent/,Lily Kent,"Kent, Lily",35.00,100.00,1 month,30,2,,1928-06-23,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1928-06-23,1929-06-23,https://shakespeareandco.princeton.edu/members/oconor-1/,Mr. O'Conor,"O'Conor, Mr.",250.00,,1 year,365,2,,1928-06-23,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-06-25,1928-06-27,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/russell-wreck-grosvenor/,The Wreck of the Grosvenor,,"Russell, William Clark",1877,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/8c%2F6b%2F99%2F8c6b994fa70d4ab2b3b4e928cad06a78%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-06-25,1928-07-03,https://shakespeareandco.princeton.edu/members/roditi-edouard/,Γdouard Roditi,"Roditi, Γdouard",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/h-d-collected-poems/,Collected Poems,,H. D.,1925,,Lending Library Card,"Sylvia Beach, Edouard Roditi Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0b4cff90-d383-4533-84fc-409316b1fcef/manifest,https://iiif.princeton.edu/loris/figgy_prod/09%2F51%2F88%2F095188bdd1c545dd9c256862276f3eaa%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-06-25,1928-07-29,https://shakespeareandco.princeton.edu/members/roditi-edouard/,Γdouard Roditi,"Roditi, Γdouard",,,,,,,,,Returned,34,,,https://shakespeareandco.princeton.edu/books/sitwell-poetry-criticism/,Poetry and Criticism,,"Sitwell, Edith",1925,,Lending Library Card,"Sylvia Beach, Edouard Roditi Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0b4cff90-d383-4533-84fc-409316b1fcef/manifest,https://iiif.princeton.edu/loris/figgy_prod/09%2F51%2F88%2F095188bdd1c545dd9c256862276f3eaa%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-06-25,1928-06-27,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/sabatini-saint-martins-summer/,Saint Martin's Summer,,"Sabatini, Rafael",1924,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/8c%2F6b%2F99%2F8c6b994fa70d4ab2b3b4e928cad06a78%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-06-25,1928-06-27,https://shakespeareandco.princeton.edu/members/proix/,Troise Proix,"Proix, Troise",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/hardy-mayor-casterbridge/,The Mayor of Casterbridge,,"Hardy, Thomas",1886,,Lending Library Card,"Sylvia Beach, Troise Proix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b7152822-4421-406d-9472-740daf9b84e0/manifest,https://iiif.princeton.edu/loris/figgy_prod/e6%2Fa5%2F3a%2Fe6a53a0fee174f0589dc02ffbad33ba5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1928-06-25,1928-07-09,https://shakespeareandco.princeton.edu/members/proix/,Troise Proix,"Proix, Troise",12.50,,2 weeks,14,1,,1928-06-25,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Troise Proix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/b7152822-4421-406d-9472-740daf9b84e0/manifest,;https://iiif.princeton.edu/loris/figgy_prod/e6%2Fa5%2F3a%2Fe6a53a0fee174f0589dc02ffbad33ba5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-06-25,1928-06-30,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/frazier-folklore-old-testament/,Folklore in the Old Testament: Studies in Comparative Religion,,"Frazer, James George",1918,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/97%2F85%2F7f%2F97857f72a8cc4cc0ada2b4ed5925f40d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-06-26,,https://shakespeareandco.princeton.edu/members/potocki-de-montalk/,Geoffrey Potocki de Montalk,"Potocki de Montalk, Geoffrey",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/lewis-elmer-gantry/,Elmer Gantry,,"Lewis, Sinclair",1927,,Lending Library Card,"Sylvia Beach, Geoffrey Potocki de Montalk Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3d3346d0-18e1-4066-8756-0990f97aac13/manifest,https://iiif.princeton.edu/loris/figgy_prod/78%2F9d%2Fbd%2F789dbdcd3ce8447ea3796376cd13cb51%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1928-06-26,1928-06-26,https://shakespeareandco.princeton.edu/members/auerbach/,Auerbach,Auerbach,,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-06-26,1928-07-03,https://shakespeareandco.princeton.edu/members/renoir/,Edmond Renoir,"Renoir, Edmond",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/beerbohm-zuleika-dobson/,Zuleika Dobson,,"Beerbohm, Max",1911,,Lending Library Card,"Sylvia Beach, Edmond Renoir Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b42c0f4f-79ec-4e6a-8bab-10236a544fdd/manifest,https://iiif.princeton.edu/loris/figgy_prod/34%2F23%2F12%2F342312cacf5443fbbf0e4d0792724b68%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1928-06-26,1928-07-26,https://shakespeareandco.princeton.edu/members/curtiss-nathaniel/,Nathaniel Curtiss,"Curtiss, Nathaniel",35.00,200.00,1 month,30,2,,1928-06-26,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1928-06-26,1928-07-26,https://shakespeareandco.princeton.edu/members/mcgrath/,F. E. McGrath,"McGrath, F. E.",20.00,,1 month,30,1,Professor / Teacher,1928-06-26,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1928-06-26,1928-06-26,https://shakespeareandco.princeton.edu/members/crawfield/,Mrs. B. Crawfield,"Crawfield, Mrs. B.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Crossed out,1928-06-27,,https://shakespeareandco.princeton.edu/members/schirmer/,Mabel Schirmer / Mrs. Robert Schirmer,"Schirmer, Mabel",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/loos-gentlemen-marry-brunettes/,But Gentlemen Marry Brunettes,,"Loos, Anita",1927,,Lending Library Card,"Sylvia Beach, Mabel Schirmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4c00d0b2-7cb9-46e1-b628-2eac6ac7bb07/manifest,https://iiif-cloud.princeton.edu/iiif/2/6f%2F39%2Fe9%2F6f39e93a96d949779213b4eed245ca93%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1928-06-27,1928-07-27,https://shakespeareandco.princeton.edu/members/cabeen/,Mrs. D. C. Cabeen,"Cabeen, Mrs. D. C.",25.00,50.00,1 month,30,1,,1928-06-27,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-06-27,1928-06-27,https://shakespeareandco.princeton.edu/members/mayre-n-e/,N. E. Mayre,"Mayre, N. E.",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/johnson-history-rasselas-prince/,"The History of Rasselas, Prince of Abissinia",,"Johnson, Samuel",1759,,Lending Library Card,"Sylvia Beach, N.E. Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ec1c32ef-7770-43a3-a5ae-d6afe67a337b/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F18%2F12%2F631812f8c131443ab33c1ab716110a6f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1928-06-27,1928-06-27,https://shakespeareandco.princeton.edu/members/lentilhon/,Mrs. E. Lentilhon,"Lentilhon, Mrs. E.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-06-27,1928-09-11,https://shakespeareandco.princeton.edu/members/ulsh/,Doretha Ulsh Cowen / Miss D. Ulsh,"Ulsh, Doretha",,,,,,,,,Returned,76,,,https://shakespeareandco.princeton.edu/books/hugo-dame-paris/,Notre-Dame de Paris,,"Hugo, Victor",1831,,Lending Library Card,"Sylvia Beach, Doretha Ulsh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/aefa6047-8ed3-4e6a-8593-1c23bb4fb165/manifest,https://iiif.princeton.edu/loris/figgy_prod/45%2F6b%2F73%2F456b736550a340198c9214e122dc23af%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-06-27,1928-07-03,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/mysteries/,Mysteries,,,,"Unidentified. Knut Hamsun's *Mysteries* (1892, 1927) or William Le Queux's *Mysteries* (1914).",Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/8c%2F6b%2F99%2F8c6b994fa70d4ab2b3b4e928cad06a78%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-06-27,1928-08-21,https://shakespeareandco.princeton.edu/members/schirmer/,Mabel Schirmer / Mrs. Robert Schirmer,"Schirmer, Mabel",,,,,,,,,Returned,55,,,https://shakespeareandco.princeton.edu/books/ludwig-bismarck-trilogy-fighter/,Bismarck: The Trilogy of a Fighter,,"Ludwig, Emil",1927,,Lending Library Card,"Sylvia Beach, Mabel Schirmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4c00d0b2-7cb9-46e1-b628-2eac6ac7bb07/manifest,https://iiif-cloud.princeton.edu/iiif/2/6f%2F39%2Fe9%2F6f39e93a96d949779213b4eed245ca93%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-06-27,1928-08-21,https://shakespeareandco.princeton.edu/members/schirmer/,Mabel Schirmer / Mrs. Robert Schirmer,"Schirmer, Mabel",,,,,,,,,Returned,55,,,https://shakespeareandco.princeton.edu/books/beer-mauve-decade/,The Mauve Decade,,"Beer, Thomas",1926,,Lending Library Card,"Sylvia Beach, Mabel Schirmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4c00d0b2-7cb9-46e1-b628-2eac6ac7bb07/manifest,https://iiif-cloud.princeton.edu/iiif/2/6f%2F39%2Fe9%2F6f39e93a96d949779213b4eed245ca93%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1928-06-29,1928-09-29,https://shakespeareandco.princeton.edu/members/davey/,Mme Davey,"Davey, Mme",85.00,100.00,3 months,92,2,,1928-06-29,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-06-29,1928-07-12,https://shakespeareandco.princeton.edu/members/roditi-edouard/,Γdouard Roditi,"Roditi, Γdouard",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/moore-observations/,Observations,,"Moore, Marianne",1924,,Lending Library Card,"Sylvia Beach, Edouard Roditi Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0b4cff90-d383-4533-84fc-409316b1fcef/manifest,https://iiif.princeton.edu/loris/figgy_prod/09%2F51%2F88%2F095188bdd1c545dd9c256862276f3eaa%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1928-06-30,1928-06-30,https://shakespeareandco.princeton.edu/members/robillot/,Robillot,Robillot,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-06-30,1928-07-13,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/lehmann-dusty-answer/,Dusty Answer,,"Lehmann, Rosamond",1927,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2F26%2F63%2Ff226634c19324eb39669cf82dbdc4f0c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1928-06-30,1928-07-30,https://shakespeareandco.princeton.edu/members/bachman/,Mrs. F. Bachmann,"Bachmann, Mrs. F.",35.00,,1 month,30,2,,1928-06-30,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-06-30,1928-07-02,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/macaulay-prophetic-comedy/,What Not: A Prophetic Comedy,,"Macaulay, Rose",1918,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/97%2F85%2F7f%2F97857f72a8cc4cc0ada2b4ed5925f40d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-06-30,1928-06-30,https://shakespeareandco.princeton.edu/members/mayre-n-e/,N. E. Mayre,"Mayre, N. E.",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/feuchtwanger-jew-suss/,Jew SΓΌss,,"Feuchtwanger, Lion",1926,,Lending Library Card,"Sylvia Beach, N.E. Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ec1c32ef-7770-43a3-a5ae-d6afe67a337b/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F18%2F12%2F631812f8c131443ab33c1ab716110a6f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1928-06-30,1928-09-30,https://shakespeareandco.princeton.edu/members/hanson/,Mrs. James Hanson,"Hanson, Mrs. James",85.00,,3 months,92,2,,1928-06-25,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1928-06-30,1928-06-30,https://shakespeareandco.princeton.edu/members/menhinick-kathleen/,Kathleen Menhinick,"Menhinick, Kathleen",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Crossed out,1928-06-30,,https://shakespeareandco.princeton.edu/members/schirmer/,Mabel Schirmer / Mrs. Robert Schirmer,"Schirmer, Mabel",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/asbury-gangs-new-york/,The Gangs of New York,,"Asbury, Herbert",1928,,Lending Library Card,"Sylvia Beach, Mabel Schirmer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4c00d0b2-7cb9-46e1-b628-2eac6ac7bb07/manifest,https://iiif-cloud.princeton.edu/iiif/2/6f%2F39%2Fe9%2F6f39e93a96d949779213b4eed245ca93%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-06-30,1928-07-13,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/roberts-rachel-marr/,Rachel Marr,,"Roberts, Morley",1903,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2F26%2F63%2Ff226634c19324eb39669cf82dbdc4f0c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-07-02,1928-07-11,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/strachey-landmarks-french-literature/,Landmarks in French Literature,,"Strachey, Giles Lytton",1912,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/ef%2Fef%2Fcb%2Fefefcbf627f44dea9bec88151c20f0a2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-07-02,,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/zola-nana/,Nana,,"Zola, Γmile",1880,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/e0%2Fab%2F03%2Fe0ab03461a3a4090bc62339b41c0a8c5%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-07-02,1928-07-03,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/newman-dead-lovers-faithful/,Dead Lovers Are Faithful Lovers,,"Newman, Frances",1928,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/97%2F85%2F7f%2F97857f72a8cc4cc0ada2b4ed5925f40d%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1928-07-02,1928-07-02,https://shakespeareandco.princeton.edu/members/maspero-cecile/,CΓ©cile Sophie Blanche (Seyrig) Maspero / Mme Georges Maspero,"Maspero, CΓ©cile Sophie Blanche",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-07-02,1928-07-11,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/mansfield-journal-katherine-mansfield/,The Journal of Katherine Mansfield,,"Mansfield, Katherine",1927,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/ef%2Fef%2Fcb%2Fefefcbf627f44dea9bec88151c20f0a2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-07-03,1928-09-21,https://shakespeareandco.princeton.edu/members/roditi-edouard/,Γdouard Roditi,"Roditi, Γdouard",,,,,,,,,Returned,80,,,https://shakespeareandco.princeton.edu/books/lowes-road-xanadu/,The Road to Xanadu,,"Lowes, John Livingston",1927,,Lending Library Card,"Sylvia Beach, Edouard Roditi Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0b4cff90-d383-4533-84fc-409316b1fcef/manifest,https://iiif.princeton.edu/loris/figgy_prod/09%2F51%2F88%2F095188bdd1c545dd9c256862276f3eaa%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-07-03,1928-07-05,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/macaulay-keeping-appearances/,Keeping Up Appearances,,"Macaulay, Rose",1928,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/97%2F85%2F7f%2F97857f72a8cc4cc0ada2b4ed5925f40d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-07-04,1928-07-05,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/hergesheimer-lay-anthony-romance/,The Lay Anthony: A Romance,,"Hergesheimer, Joseph",1914,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/e0%2Fab%2F03%2Fe0ab03461a3a4090bc62339b41c0a8c5%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-07-05,1928-07-10,https://shakespeareandco.princeton.edu/members/linossier-raymonde/,Raymonde Linossier,"Linossier, Raymonde",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/van-dine-canary-murder-case/,The Canary Murder Case,,"Van Dine, S. S.",1927,,Lending Library Card,"Sylvia Beach, Raymonde Linossier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/53ede5bf-939d-44f5-9ddb-4dd39363bd20/manifest,https://iiif.princeton.edu/loris/figgy_prod/41%2Fcb%2F6b%2F41cb6b39c8604ec88fecdca454971646%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1928-07-05,1929-07-05,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,1 year,365,1,,1928-07-13,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/97%2F85%2F7f%2F97857f72a8cc4cc0ada2b4ed5925f40d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-07-05,,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/dickens-oliver-twist/,Oliver Twist,,"Dickens, Charles",1837,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/e0%2Fab%2F03%2Fe0ab03461a3a4090bc62339b41c0a8c5%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-07-05,1928-07-06,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/dell-runaway/,Runaway,,"Dell, Floyd",1925,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/97%2F85%2F7f%2F97857f72a8cc4cc0ada2b4ed5925f40d%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1928-07-06,1929-01-06,https://shakespeareandco.princeton.edu/members/hesse-helen/,Helen Hesse,Helen Hesse,150.00,,6 months,184,1,,1928-07-06,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1928-07-06,1928-07-06,https://shakespeareandco.princeton.edu/members/kirkpatrick-e/,E. Kirkpatrick,"Kirkpatrick, E.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-07-06,,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/saintsbury-english-novel/,The English Novel,,"Saintsbury, George",1919,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/97%2F85%2F7f%2F97857f72a8cc4cc0ada2b4ed5925f40d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-07-07,1928-10-18,https://shakespeareandco.princeton.edu/members/mayre-n-e/,N. E. Mayre,"Mayre, N. E.",,,,,,,,,Returned,103,,,https://shakespeareandco.princeton.edu/books/mill-dissertations-discussions-political/,"Dissertations and Discussions: Political, Philosophical, and Historical",,"Mill, John Stuart",1859,,Lending Library Card,"Sylvia Beach, N.E. Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ec1c32ef-7770-43a3-a5ae-d6afe67a337b/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F18%2F12%2F631812f8c131443ab33c1ab716110a6f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-07-07,1928-07-10,https://shakespeareandco.princeton.edu/members/linossier-raymonde/,Raymonde Linossier,"Linossier, Raymonde",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/le-queux-lawless-hand/,The Lawless Hand,,"Le Queux, William",1927,,Lending Library Card,"Sylvia Beach, Raymonde Linossier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/53ede5bf-939d-44f5-9ddb-4dd39363bd20/manifest,https://iiif.princeton.edu/loris/figgy_prod/41%2Fcb%2F6b%2F41cb6b39c8604ec88fecdca454971646%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1928-07-07,1928-08-07,https://shakespeareandco.princeton.edu/members/bagger/,Eugene Szekeres Bagger,"Bagger, Eugene Szekeres",25.00,50.00,1 month,31,1,,1928-07-07,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-07-07,1928-07-11,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/lawrence-twilight-italy/,Twilight in Italy,,"Lawrence, D. H.",1916,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/1c%2Fd9%2Fe1%2F1cd9e183fb104f9d90a4c90c557234ab%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1928-07-07,1928-07-07,https://shakespeareandco.princeton.edu/members/davies-6/,Mrs. G. Davies,"Davies, Mrs. G.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-07-07,1928-07-11,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/lawrence-fantasia-unconscious/,Fantasia of the Unconscious,,"Lawrence, D. H.",1922,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/1c%2Fd9%2Fe1%2F1cd9e183fb104f9d90a4c90c557234ab%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1928-07-07,1928-07-21,https://shakespeareandco.princeton.edu/members/rohde/,Rohde,Rohde,12.50,,2 weeks,14,1,,1928-07-06,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-07-09,1929-10-22,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",,,,,,,,,Returned,470,,,https://shakespeareandco.princeton.edu/books/anderson-dark-laughter/,Dark Laughter,,"Anderson, Sherwood",1926,,Lending Library Card,"Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,https://iiif.princeton.edu/loris/figgy_prod/dc%2F94%2Ffd%2Fdc94fda0cd9c4ae195f988f5a500f00f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1928-07-09,1928-08-09,https://shakespeareandco.princeton.edu/members/daune-l/,L. de Daune,"Daune, L. de",25.00,50.00,1 month,31,1,,1928-07-09,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-07-10,1928-07-24,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/cather-death-comes-archbishop/,Death Comes for the Archbishop,,"Cather, Willa",1927,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/af%2Fcd%2F4b%2Fafcd4b7698644be4ad8edf82445910ee%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-07-10,1928-07-24,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/stephens-irish-fairy-tales/,Irish Fairy Tales,,"Stephens, James",1920,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/af%2Fcd%2F4b%2Fafcd4b7698644be4ad8edf82445910ee%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1928-07-10,,https://shakespeareandco.princeton.edu/members/klossowski-pierre/,Pierre Klossowski,"Klossowski, Pierre",,,,,,Free,1928-07-10,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1928-07-10,1928-07-10,https://shakespeareandco.princeton.edu/members/edwards-7/,Mrs. W. Edwards,"Edwards, Mrs. W.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Purchase,1928-07-11,1928-07-11,https://shakespeareandco.princeton.edu/members/mcalmon-robert/,Robert McAlmon,"McAlmon, Robert",,,,,,,,,,,21.00,FRF,https://shakespeareandco.princeton.edu/books/jolas-transition/,transition,,,,,Lending Library Card,"Sylvia Beach, Robert McAlmon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/889ff3f8-b62c-42f6-8e88-1dd95434b2f5/manifest,https://iiif-cloud.princeton.edu/iiif/2/f9%2Fd2%2F1a%2Ff9d21aff41154755aa10b62eeeec7846%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1928-07-11,1928-07-11,https://shakespeareandco.princeton.edu/members/rohde/,Rohde,Rohde,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Purchase,1928-07-11,1928-07-11,https://shakespeareandco.princeton.edu/members/mcalmon-robert/,Robert McAlmon,"McAlmon, Robert",,,,,,,,,,,21.00,FRF,https://shakespeareandco.princeton.edu/books/jolas-transition/,transition,,,,,Lending Library Card,"Sylvia Beach, Robert McAlmon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/889ff3f8-b62c-42f6-8e88-1dd95434b2f5/manifest,https://iiif-cloud.princeton.edu/iiif/2/f9%2Fd2%2F1a%2Ff9d21aff41154755aa10b62eeeec7846%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1928-07-12,1928-09-12,https://shakespeareandco.princeton.edu/members/alford/,J. Alford,"Alford, J.",70.00,100.00,2 months,62,2,,1928-07-12,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-07-12,1928-08-10,https://shakespeareandco.princeton.edu/members/roditi-edouard/,Γdouard Roditi,"Roditi, Γdouard",,,,,,,,,Returned,29,,,https://shakespeareandco.princeton.edu/books/robertson-explorations/,Explorations,,"Robertson, John Mackinnon",1923,,Lending Library Card,"Sylvia Beach, Edouard Roditi Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0b4cff90-d383-4533-84fc-409316b1fcef/manifest,https://iiif.princeton.edu/loris/figgy_prod/09%2F51%2F88%2F095188bdd1c545dd9c256862276f3eaa%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1928-07-12,1928-07-12,https://shakespeareandco.princeton.edu/members/curtiss-nathaniel/,Nathaniel Curtiss,"Curtiss, Nathaniel",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1928-07-12,1928-08-12,https://shakespeareandco.princeton.edu/members/gibson-alice/,Alice Gibson,"Gibson, Alice",35.00,300.00,1 month,31,2,,1928-07-12,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-07-13,1928-07-20,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/macaulay-keeping-appearances/,Keeping Up Appearances,,"Macaulay, Rose",1928,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e1%2F87%2Fe7%2Fe187e7d30ac7412b8aea97f907b2b078%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-07-13,1928-07-16,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/von-hutten-eddy-edouard/,Eddy and Γdouard,,"von Hutten, Bettina",1928,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/97%2F85%2F7f%2F97857f72a8cc4cc0ada2b4ed5925f40d%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1928-07-16,1928-07-16,https://shakespeareandco.princeton.edu/members/alling/,Kenneth Slade Alling,"Alling, Kenneth Slade",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-07-16,1928-07-17,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/streets/,Streets,,,,Unidentified. Possibly Archibald Macleish's [*Streets in the Moon*](https://shakespeareandco.princeton.edu/books/macleish-streets-moon/) (1926).,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/97%2F85%2F7f%2F97857f72a8cc4cc0ada2b4ed5925f40d%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1928-07-16,1928-08-16,https://shakespeareandco.princeton.edu/members/walls/,Mrs. C. Walls,"Walls, Mrs. C.",25.00,,1 month,31,1,,1928-07-16,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1928-07-16,1928-07-16,https://shakespeareandco.princeton.edu/members/bataille/,P. Bataille,"Bataille, P.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1928-07-16,1928-07-16,https://shakespeareandco.princeton.edu/members/kranenburg-hoen/,Mme Kranenburg-Hoen,"Kranenburg-Hoen, Mme",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1928-07-17,1928-07-17,https://shakespeareandco.princeton.edu/members/hamburger-e/,E. Hamburger,"Hamburger, E.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1928-07-17,1928-07-17,https://shakespeareandco.princeton.edu/members/bachman/,Mrs. F. Bachmann,"Bachmann, Mrs. F.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Purchase,1928-07-17,1928-07-17,https://shakespeareandco.princeton.edu/members/mcalmon-robert/,Robert McAlmon,"McAlmon, Robert",,,,,,,,,,,40.00,FRF,https://shakespeareandco.princeton.edu/books/miniature-dictionary/,Miniature Dictionary,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Robert McAlmon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/889ff3f8-b62c-42f6-8e88-1dd95434b2f5/manifest,https://iiif-cloud.princeton.edu/iiif/2/f9%2Fd2%2F1a%2Ff9d21aff41154755aa10b62eeeec7846%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1928-07-17,1928-07-17,https://shakespeareandco.princeton.edu/members/mcalmon-robert/,Robert McAlmon,"McAlmon, Robert",,,,,,,,,,,40.00,FRF,https://shakespeareandco.princeton.edu/books/miniature-dictionary/,Miniature Dictionary,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Robert McAlmon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/889ff3f8-b62c-42f6-8e88-1dd95434b2f5/manifest,https://iiif-cloud.princeton.edu/iiif/2/f9%2Fd2%2F1a%2Ff9d21aff41154755aa10b62eeeec7846%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1928-07-17,1928-07-17,https://shakespeareandco.princeton.edu/members/mcalmon-robert/,Robert McAlmon,"McAlmon, Robert",,,,,,,,,,,40.00,FRF,https://shakespeareandco.princeton.edu/books/miniature-dictionary/,Miniature Dictionary,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Robert McAlmon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/889ff3f8-b62c-42f6-8e88-1dd95434b2f5/manifest,https://iiif-cloud.princeton.edu/iiif/2/f9%2Fd2%2F1a%2Ff9d21aff41154755aa10b62eeeec7846%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1928-07-17,1928-07-17,https://shakespeareandco.princeton.edu/members/mcalmon-robert/,Robert McAlmon,"McAlmon, Robert",,,,,,,,,,,40.00,FRF,https://shakespeareandco.princeton.edu/books/miniature-dictionary/,Miniature Dictionary,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Robert McAlmon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/889ff3f8-b62c-42f6-8e88-1dd95434b2f5/manifest,https://iiif-cloud.princeton.edu/iiif/2/f9%2Fd2%2F1a%2Ff9d21aff41154755aa10b62eeeec7846%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1928-07-18,1928-08-18,https://shakespeareandco.princeton.edu/members/beale-nixon/,Mrs. Beale-Nixon,"Beale-Nixon, Mrs.",20.00,50.00,1 month,31,1,Student,1928-07-18,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1928-07-18,1928-07-18,https://shakespeareandco.princeton.edu/members/delebeque/,Mlle Delebecque,"Delebecque, Mlle",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1928-07-18,1928-08-18,https://shakespeareandco.princeton.edu/members/nisciat/,Nisciat,Nisciat,25.00,50.00,1 month,31,1,,1928-07-18,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-07-18,1928-09-12,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,56,,,https://shakespeareandco.princeton.edu/books/meredith-poems/,Poems,,"Meredith, George",,A 2 volume edition.,Lending Library Card;Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest;https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/17%2Fc5%2F27%2F17c5279577094feb8c09e8e402cfb654%2Fintermediate_file/full/full/0/default.jpg;https://iiif-cloud.princeton.edu/iiif/2/c7%2F9b%2F41%2Fc79b419d98a942698de27249b5d06916%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-07-20,1928-07-23,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/gissing-victim-circumstances-stories/,A Victim of Circumstances and Other Stories,,"Gissing, George Robert",1927,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e1%2F87%2Fe7%2Fe187e7d30ac7412b8aea97f907b2b078%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-07-20,1928-07-23,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/rinehart-bat-novel-play/,The Bat: A Novel from the Play,,"Rinehart, Mary Roberts;Hopwood, Avery",1926,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/97%2F85%2F7f%2F97857f72a8cc4cc0ada2b4ed5925f40d%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1928-07-21,1928-07-21,https://shakespeareandco.princeton.edu/members/gibson-alice/,Alice Gibson,"Gibson, Alice",,,,,,,,150.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1928-07-21,1928-07-21,https://shakespeareandco.princeton.edu/members/epstein-a/,A. Epstein,"Epstein, A.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1928-07-21,1928-07-21,https://shakespeareandco.princeton.edu/members/fenner-mary/,Mary Fenner,"Fenner, Mary",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1928-07-21,1928-07-21,https://shakespeareandco.princeton.edu/members/mayre-n-e/,N. E. Mayre,"Mayre, N. E.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1928-07-23,1928-07-23,https://shakespeareandco.princeton.edu/members/nelson-m/,M. Nelson,"Nelson, M.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1928-07-23,1928-10-23,https://shakespeareandco.princeton.edu/members/evans-6/,Evans,Evans,68.00,,3 months,92,2,AdL,1928-07-23,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1928-07-23,1928-08-06,https://shakespeareandco.princeton.edu/members/kent/,Lily Kent,"Kent, Lily",18.50,,2 weeks,14,2,,1928-07-23,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-07-23,1928-07-25,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/de-la-roche-jalna/,Jalna,,"De la Roche, Mazo",1927,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/97%2F85%2F7f%2F97857f72a8cc4cc0ada2b4ed5925f40d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-07-23,1928-07-28,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/dane-wandering-stars/,Wandering Stars,,"Dane, Clemence",1924,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e1%2F87%2Fe7%2Fe187e7d30ac7412b8aea97f907b2b078%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1928-07-23,1928-07-23,https://shakespeareandco.princeton.edu/members/ferguson-frank/,Frank Ferguson,"Ferguson, Frank",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1928-07-24,1928-07-24,https://shakespeareandco.princeton.edu/members/fenner-mary/,Mary Fenner,"Fenner, Mary",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1928-07-24,1928-08-24,https://shakespeareandco.princeton.edu/members/kennedy-robert-1/,Robert Kennedy,"Kennedy, Robert",35.00,,1 month,31,2,,1928-07-24,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-07-25,1928-07-26,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/mottram-english-miss/,The English Miss,,"Mottram, R. H.",1928,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/97%2F85%2F7f%2F97857f72a8cc4cc0ada2b4ed5925f40d%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1928-07-25,1928-07-25,https://shakespeareandco.princeton.edu/members/gibson-alice/,Alice Gibson,"Gibson, Alice",,,,,,,,150.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1928-07-26,1928-08-26,https://shakespeareandco.princeton.edu/members/lee-elga/,Elga Lee,"Lee, Elga",28.00,,1 month,31,2,,1928-07-06,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1928-07-26,1928-08-09,https://shakespeareandco.princeton.edu/members/gray-d-o/,Mrs. D. O. Gray,"Gray, Mrs. D. O.",10.00,,2 weeks,14,1,,1928-07-18,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-07-26,1928-07-31,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/taylor-one-crystal-mother/,One Crystal and a Mother,,"Taylor, Ellen Du Poise",1927,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/97%2F85%2F7f%2F97857f72a8cc4cc0ada2b4ed5925f40d%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1928-07-27,1929-01-27,https://shakespeareandco.princeton.edu/members/kahn-l/,Mrs. L. Kahn,"Kahn, Mrs. L.",80.00,50.00,6 months,184,1,,1928-07-27,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1928-07-27,1928-07-27,https://shakespeareandco.princeton.edu/members/johnson-g-f/,G. F. A[unclear] Johnson,"Johnson, G. F. A[unclear]",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1928-07-28,1928-08-28,https://shakespeareandco.princeton.edu/members/boex/,Mme Boex,"Boex, Mme",25.00,50.00,1 month,31,1,,1928-07-28,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-07-28,1928-08-06,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/hurst-president-born/,A President Is Born,,"Hurst, Fannie",1928,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e1%2F87%2Fe7%2Fe187e7d30ac7412b8aea97f907b2b078%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-07-28,1928-08-17,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/paris/,Paris,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/e0%2Fab%2F03%2Fe0ab03461a3a4090bc62339b41c0a8c5%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-07-28,1928-08-06,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/villon-poems/,Poems,,"Villon, FranΓ§ois",,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/e0%2Fab%2F03%2Fe0ab03461a3a4090bc62339b41c0a8c5%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-07-28,1928-09-12,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,46,,,https://shakespeareandco.princeton.edu/books/browning-poems-plays-robert/,The Poems and Plays of Robert Browning,,"Browning, Robert",1906,From the Everyman's Library series.,Lending Library Card;Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest;https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/17%2Fc5%2F27%2F17c5279577094feb8c09e8e402cfb654%2Fintermediate_file/full/full/0/default.jpg;https://iiif-cloud.princeton.edu/iiif/2/c7%2F9b%2F41%2Fc79b419d98a942698de27249b5d06916%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1928-07-29,1929-07-29,https://shakespeareandco.princeton.edu/members/ottensooser-colette/,Colette Ottensooser,"Ottensooser, Colette",144.00,,1 year,365,1,,1928-07-09,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Colette Ottensooser Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/78efb99d-9e8e-4ad5-bc3a-1ed34ba940c6/manifest,;https://iiif.princeton.edu/loris/figgy_prod/dc%2F94%2Ffd%2Fdc94fda0cd9c4ae195f988f5a500f00f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1928-07-29,1928-07-29,https://shakespeareandco.princeton.edu/members/cree/,Mrs. Cree,"Cree, Mrs.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1928-07-30,1928-07-30,https://shakespeareandco.princeton.edu/members/kent/,Lily Kent,"Kent, Lily",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-07-31,1928-08-01,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/lewisohn-island-within/,The Island Within,,"Lewisohn, Ludwig",1928,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/97%2F85%2F7f%2F97857f72a8cc4cc0ada2b4ed5925f40d%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1928-08-02,1928-11-02,https://shakespeareandco.princeton.edu/members/briggs/,Briggs,Briggs,85.00,,3 months,92,2,,1928-07-31,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1928-08-02,1928-08-02,https://shakespeareandco.princeton.edu/members/goodwin-lacy/,Lacy Goodwin,"Goodwin, Lacy",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1928-08-02,1928-11-02,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",85.00,,3 months,92,2,,1928-08-08,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,;https://iiif-cloud.princeton.edu/iiif/2/e0%2Fab%2F03%2Fe0ab03461a3a4090bc62339b41c0a8c5%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1928-08-02,1928-09-02,https://shakespeareandco.princeton.edu/members/kardiner-abram/,Abram Kardiner,"Kardiner, Abram",25.00,50.00,1 month,31,1,,1928-08-02,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1928-08-03,1928-08-03,https://shakespeareandco.princeton.edu/members/bagger/,Eugene Szekeres Bagger,"Bagger, Eugene Szekeres",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-08-03,1928-08-06,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/macaulay-mystery-geneva-improbable/,Mystery at Geneva: An Improbable Tale of Singular Happenings,,"Macaulay, Rose",1922,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/97%2F85%2F7f%2F97857f72a8cc4cc0ada2b4ed5925f40d%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1928-08-04,1928-08-04,https://shakespeareandco.princeton.edu/members/forwood/,Mme K. Forwood,"Forwood, Mme K.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-08-06,1928-08-14,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/millin-gods-stepchildren/,God's Stepchildren,,"Millin, Sarah Gertrude",1924,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e1%2F87%2Fe7%2Fe187e7d30ac7412b8aea97f907b2b078%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1928-08-06,1928-09-06,https://shakespeareandco.princeton.edu/members/levinson-2/,Levinson,Levinson,28.00,,1 month,31,2,Professor / Teacher,1928-07-19,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-08-06,1928-08-07,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/wilder-bridge-san-luis/,The Bridge of San Luis Rey,,"Wilder, Thornton",1927,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/97%2F85%2F7f%2F97857f72a8cc4cc0ada2b4ed5925f40d%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1928-08-06,1928-08-06,https://shakespeareandco.princeton.edu/members/daune-l/,L. de Daune,"Daune, L. de",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1928-08-07,1928-09-07,https://shakespeareandco.princeton.edu/members/hough/,Mrs. Theodore Hough,"Hough, Mrs. Theodore",25.00,,1 month,31,1,,1928-08-01,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-08-07,1928-08-08,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/reck-malleczewen-woman-flight/,Woman in Flight,,"Reck-Malleczewen, Fritz Percy",1928,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/97%2F85%2F7f%2F97857f72a8cc4cc0ada2b4ed5925f40d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-08-08,1928-08-10,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/lowndes-bread-deceit/,The Bread of Deceit,,"Lowndes, Marie Belloc",1925,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/97%2F85%2F7f%2F97857f72a8cc4cc0ada2b4ed5925f40d%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1928-08-08,1928-08-08,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/villon-poems/,Poems,,"Villon, FranΓ§ois",,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/e0%2Fab%2F03%2Fe0ab03461a3a4090bc62339b41c0a8c5%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-08-08,1928-08-10,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/gosselin-gascon-royalist-revolutionary/,"A Gascon Royalist in Revolutionary Paris: The Baron de Batz, 1792 β 1795",,"Lenotre, G.",1910,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/e0%2Fab%2F03%2Fe0ab03461a3a4090bc62339b41c0a8c5%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1928-08-09,1928-08-09,https://shakespeareandco.princeton.edu/members/corbett-dorothy/,Dorothy Corbett,"Corbett, Dorothy",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-08-10,1928-08-13,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/lenotre-dauphin-louis-xvii/,The Dauphin (Louis XVII): The Riddle of the Temple,,"Lenotre, G.",1921,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/e0%2Fab%2F03%2Fe0ab03461a3a4090bc62339b41c0a8c5%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-08-10,1928-08-11,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/foster-coquette-history-eliza/,"The Coquette; Or, the History of Eliza Wharton",,"Foster, Hannah Webster",1797,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/97%2F85%2F7f%2F97857f72a8cc4cc0ada2b4ed5925f40d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-08-10,1928-09-21,https://shakespeareandco.princeton.edu/members/roditi-edouard/,Γdouard Roditi,"Roditi, Γdouard",,,,,,,,,Returned,42,,,https://shakespeareandco.princeton.edu/books/macleish-happy-marriage-poems/,Happy Marriage and Other Poems,,"MacLeish, Archibald",1924,,Lending Library Card,"Sylvia Beach, Edouard Roditi Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0b4cff90-d383-4533-84fc-409316b1fcef/manifest,https://iiif.princeton.edu/loris/figgy_prod/09%2F51%2F88%2F095188bdd1c545dd9c256862276f3eaa%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-08-11,1928-08-13,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/september/,September,,,,Unidentified. Likely Frank Swinnerton's *September* (1919).,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/2e%2F51%2Fbf%2F2e51bf8386fc444d94a5a38a2bfc728f%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1928-08-11,1928-09-11,https://shakespeareandco.princeton.edu/members/walls/,Mrs. C. Walls,"Walls, Mrs. C.",25.00,,1 month,31,1,,1928-08-09,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1928-08-13,1928-09-13,https://shakespeareandco.princeton.edu/members/curtis-e-n/,E. N. Curtis,"Curtis, E. N.",25.00,,1 month,31,1,,1928-08-13,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-08-13,1928-08-23,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/gautier-mademoiselle-maupin/,Mademoiselle de Maupin,,"Gautier, TheΜophile",1899,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/e0%2Fab%2F03%2Fe0ab03461a3a4090bc62339b41c0a8c5%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-08-13,1928-08-18,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/george-strangers-wedding-comedy/,"The Strangers' Wedding; or, The Comedy of a Romantic",,"George, Walter Lionel",1916,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/2e%2F51%2Fbf%2F2e51bf8386fc444d94a5a38a2bfc728f%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-08-14,1928-10-02,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,49,,,https://shakespeareandco.princeton.edu/books/marlow-chaste-man/,A Chaste Man,,"Marlow, Louis",1917,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e1%2F87%2Fe7%2Fe187e7d30ac7412b8aea97f907b2b078%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-08-14,1928-08-17,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/keats/,Keats,,,,Unidentified. By or about John Keats. Eleanor (Hayden) Kittredge borrowed an unspecified 2 volume edition.,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/e0%2Fab%2F03%2Fe0ab03461a3a4090bc62339b41c0a8c5%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-08-14,1928-09-07,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,24,,,https://shakespeareandco.princeton.edu/books/dane-babyons-chronicle-family/,The Babyons: The Chronicle of a Family,,"Dane, Clemence",1928,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a9%2F11%2Fd5%2Fa911d51c78fb461396e48d152363a39d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-08-14,1928-10-02,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,49,,,https://shakespeareandco.princeton.edu/books/henderson-five-roman-emperors/,"Five Roman Emperors: Vespasian, Titus, Domitian, Nerva, Trajan, A.D. 69 β 117",,"Henderson, Bernard W.",1927,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e1%2F87%2Fe7%2Fe187e7d30ac7412b8aea97f907b2b078%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-08-14,1928-08-25,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/galsworthy-forsyte-saga/,The Forsyte Saga,,"Galsworthy, John",1922,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a9%2F11%2Fd5%2Fa911d51c78fb461396e48d152363a39d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-08-14,1928-10-02,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,49,,,https://shakespeareandco.princeton.edu/books/masterman-wrong-letter/,The Wrong Letter,,"Masterman, Walter Sydney",1926,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e1%2F87%2Fe7%2Fe187e7d30ac7412b8aea97f907b2b078%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-08-14,1928-10-02,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,49,,,https://shakespeareandco.princeton.edu/books/swinnerton-casement/,The Casement,,"Swinnerton, Frank",1911,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e1%2F87%2Fe7%2Fe187e7d30ac7412b8aea97f907b2b078%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-08-14,1928-08-29,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/asquith-octavia/,Octavia,,"Asquith, Margot",1928,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e1%2F87%2Fe7%2Fe187e7d30ac7412b8aea97f907b2b078%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-08-14,1928-08-25,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/lehmann-dusty-answer/,Dusty Answer,,"Lehmann, Rosamond",1927,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a9%2F11%2Fd5%2Fa911d51c78fb461396e48d152363a39d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-08-17,1928-08-23,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/maupassant-tales-maupassant/,Tales from Maupassant,,"Maupassant, Guy de",1926,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/e0%2Fab%2F03%2Fe0ab03461a3a4090bc62339b41c0a8c5%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-08-17,1928-08-23,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/sabatini-fortunes-fool/,Fortune's Fool,,"Sabatini, Rafael",1923,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/e0%2Fab%2F03%2Fe0ab03461a3a4090bc62339b41c0a8c5%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1928-08-18,1928-09-18,https://shakespeareandco.princeton.edu/members/johnston-jessie/,Jessie Johnston,"Johnston, Jessie",35.00,100.00,1 month,31,2,,1928-08-18,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1928-08-18,1928-09-18,https://shakespeareandco.princeton.edu/members/roditi-edouard/,Γdouard Roditi,"Roditi, Γdouard",35.00,,1 month,31,2,,1928-08-10,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Edouard Roditi Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/0b4cff90-d383-4533-84fc-409316b1fcef/manifest,;https://iiif.princeton.edu/loris/figgy_prod/09%2F51%2F88%2F095188bdd1c545dd9c256862276f3eaa%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-08-18,1928-08-20,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/swinnerton-chaste-wife/,The Chaste Wife,,"Swinnerton, Frank",1916,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/2e%2F51%2Fbf%2F2e51bf8386fc444d94a5a38a2bfc728f%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-08-20,1928-08-22,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/duncan-life/,My Life,,"Duncan, Isadora",1927,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/2e%2F51%2Fbf%2F2e51bf8386fc444d94a5a38a2bfc728f%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1928-08-20,1928-08-20,https://shakespeareandco.princeton.edu/members/cooper-ellis/,Miss Cooper-Ellis,"Cooper-Ellis, Miss",,,,,,,,150.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1928-08-20,1928-08-20,https://shakespeareandco.princeton.edu/members/ross-5/,Ross,Ross,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1928-08-20,1928-11-20,https://shakespeareandco.princeton.edu/members/arndt/,J. Arndt,"Arndt, J.",60.00,,3 months,92,1,,1928-08-20,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1928-08-21,1928-08-21,https://shakespeareandco.princeton.edu/members/kardiner-abram/,Abram Kardiner,"Kardiner, Abram",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1928-08-21,1928-09-21,https://shakespeareandco.princeton.edu/members/morgan-blanche/,Blanche Morgan,"Morgan, Blanche",25.00,50.00,1 month,31,1,,1928-08-21,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1928-08-22,1928-09-22,https://shakespeareandco.princeton.edu/members/kelsey-mary/,Mary Kelsey,"Kelsey, Mary",25.00,50.00,1 month,31,1,,1928-08-22,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-08-22,1928-08-27,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/forster-howards-end/,Howards End,,"Forster, E. M.",1910,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/2e%2F51%2Fbf%2F2e51bf8386fc444d94a5a38a2bfc728f%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-08-23,1928-08-25,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/laclos-dangerous-acquaintances/,Dangerous Acquaintances,,"Laclos, Choderlos de",1924,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/e0%2Fab%2F03%2Fe0ab03461a3a4090bc62339b41c0a8c5%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1928-08-24,1928-09-24,https://shakespeareandco.princeton.edu/members/kaufman-nathan/,Nathan Kaufman,"Kaufman, Nathan",25.00,50.00,1 month,31,1,,1928-08-24,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-08-25,1928-09-15,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/lenotre-last-days-marie/,The Last Days of Marie Antoinette,,"Lenotre, G.",1907,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/e0%2Fab%2F03%2Fe0ab03461a3a4090bc62339b41c0a8c5%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-08-25,1928-10-13,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,49,,,https://shakespeareandco.princeton.edu/books/young-portrait-clare/,Portrait of Clare,,"Young, Francis Brett",1927,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a9%2F11%2Fd5%2Fa911d51c78fb461396e48d152363a39d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-08-25,1928-10-03,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,39,,,https://shakespeareandco.princeton.edu/books/clark-great-short-novels/,Great Short Novels of the World,,,1925,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/e0%2Fab%2F03%2Fe0ab03461a3a4090bc62339b41c0a8c5%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1928-08-26,1928-09-09,https://shakespeareandco.princeton.edu/members/scott-4/,Scott,Scott,17.50,,2 weeks,14,,,1928-08-21,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1928-08-27,1928-08-27,https://shakespeareandco.princeton.edu/members/mcgrath/,F. E. McGrath,"McGrath, F. E.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-08-27,1928-08-29,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/dostoevskaia-dostoevsky-portrayed-wife/,Dostoevsky Portrayed by His Wife: The Diary and Reminiscences of Mme Dostoevsky,,"Dostoevskaia, Anna",1926,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/2e%2F51%2Fbf%2F2e51bf8386fc444d94a5a38a2bfc728f%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1928-08-28,1928-09-28,https://shakespeareandco.princeton.edu/members/antoine/,Mme G. Antoine,"Antoine, Mme G.",25.00,50.00,1 month,31,1,,1928-08-28,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1928-08-29,1928-09-29,https://shakespeareandco.princeton.edu/members/boex/,Mme Boex,"Boex, Mme",25.00,,1 month,31,1,,1928-08-28,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-08-29,1928-09-03,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/riding-survey-modernist-poetry/,A Survey of Modernist Poetry,,"Riding, Laura;Graves, Robert",1927,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/2e%2F51%2Fbf%2F2e51bf8386fc444d94a5a38a2bfc728f%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1928-08-31,1928-09-30,https://shakespeareandco.princeton.edu/members/marthaandrews/,Martha Andrews,"Andrews, Martha",25.00,50.00,1 month,30,1,,1928-08-31,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-08-31,1928-09-03,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/huddleston-mr-paname-paris/,Mr. Paname: A Paris Fantasia,,"Huddleston, Sisley",1927,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/2e%2F51%2Fbf%2F2e51bf8386fc444d94a5a38a2bfc728f%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1928-08-31,1929-08-31,https://shakespeareandco.princeton.edu/members/harmsworth-desmond/,Desmond Harmsworth,"Harmsworth, Desmond",144.00,,1 year,365,1,AdL,1928-08-31,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1928-09-01,1928-09-01,https://shakespeareandco.princeton.edu/members/volkova/,Volkova / Wolkova,Volkova,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1928-09-01,1928-09-01,https://shakespeareandco.princeton.edu/members/cabeen/,Mrs. D. C. Cabeen,"Cabeen, Mrs. D. C.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-09-03,1928-09-05,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/lowndes-lonely-house/,The Lonely House,,"Lowndes, Marie Belloc",1920,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/2e%2F51%2Fbf%2F2e51bf8386fc444d94a5a38a2bfc728f%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1928-09-04,1928-10-04,https://shakespeareandco.princeton.edu/members/askew/,R. D. Askew,"Askew, R. D.",25.00,50.00,1 month,30,1,,1928-09-04,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1928-09-04,1928-09-04,https://shakespeareandco.princeton.edu/members/merston/,E. Merston,"Merston, E.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-09-05,1928-11-03,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,59,,,https://shakespeareandco.princeton.edu/books/lewis-man-knew-coolidge/,"The Man Who Knew Coolidge: Being the Soul of Lowell Schmaltz, Constructive and Nordic Citizen",,"Lewis, Sinclair",1928,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/4b%2Fa3%2F65%2F4ba365cea0974f05a43fd7f77ce258e9%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-09-05,1928-09-18,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/lowndes-chink-armour/,The Chink in the Armour,,"Lowndes, Marie Belloc",1912,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/2e%2F51%2Fbf%2F2e51bf8386fc444d94a5a38a2bfc728f%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1928-09-06,1928-10-06,https://shakespeareandco.princeton.edu/members/levinson-2/,Levinson,Levinson,28.00,,1 month,30,2,Professor / Teacher,1928-08-09,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1928-09-06,1928-10-06,https://shakespeareandco.princeton.edu/members/milkin-sophie/,Sophie Milkin,"Milkin, Sophie",25.00,,1 month,30,1,,1928-09-06,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-09-07,1928-09-25,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/mckay-home-harlem/,Home to Harlem,,"McKay, Claude",1928,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a9%2F11%2Fd5%2Fa911d51c78fb461396e48d152363a39d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-09-08,1928-09-20,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/tolstoy-war-peace/,War and Peace,3 vols.,"Tolstoy, Leo",1867,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/2e%2F51%2Fbf%2F2e51bf8386fc444d94a5a38a2bfc728f%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-09-08,1928-09-11,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/asbury-crimson-rope/,The Crimson Rope,,"Asbury, Herbert",1928,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2F00%2F2c%2Fcb002c24cc9a4d9c8fa834244db6afcc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1928-09-09,1928-10-09,https://shakespeareandco.princeton.edu/members/scott-4/,Scott,Scott,35.00,,1 month,30,2,,1928-09-04,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-09-11,1928-09-15,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/melville-great-french-short/,Great French Short Stories,,,1928,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/e0%2Fab%2F03%2Fe0ab03461a3a4090bc62339b41c0a8c5%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-09-11,1928-10-26,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,45,,,https://shakespeareandco.princeton.edu/books/lawrence-women-love/,Women in Love,,"Lawrence, D. H.",1920,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2F00%2F2c%2Fcb002c24cc9a4d9c8fa834244db6afcc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1928-09-11,1928-10-11,https://shakespeareandco.princeton.edu/members/kopelanoff-e/,E. Kopelanoff,"Kopelanoff, E.",25.00,50.00,1 month,30,1,,1928-09-11,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1928-09-11,1929-09-11,https://shakespeareandco.princeton.edu/members/cohen-charles/,Charles Cohen,"Cohen, Charles",180.00,50.00,1 year,365,1,,1928-09-11,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-09-11,1928-09-15,https://shakespeareandco.princeton.edu/members/ulsh/,Doretha Ulsh Cowen / Miss D. Ulsh,"Ulsh, Doretha",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/ariel/,Ariel,,,,"Unidentified. Likely AndreΜ Maurois's *Ariel: The Life of Shelley,* translated by Ella D'Arcy (1924).",Lending Library Card,"Sylvia Beach, Doretha Ulsh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/aefa6047-8ed3-4e6a-8593-1c23bb4fb165/manifest,https://iiif.princeton.edu/loris/figgy_prod/45%2F6b%2F73%2F456b736550a340198c9214e122dc23af%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1928-09-12,1928-10-12,https://shakespeareandco.princeton.edu/members/harvey-l-g/,Mrs. L. G. Harvey,"Harvey, Mrs. L. G.",35.00,100.00,1 month,30,2,,1928-09-12,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1928-09-12,1928-09-12,https://shakespeareandco.princeton.edu/members/cohen-charles/,Charles Cohen,"Cohen, Charles",,,,,,,,230.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1928-09-12,1928-10-12,https://shakespeareandco.princeton.edu/members/kennedy-fitzroy/,Fitzroy Kennedy,"Kennedy, Fitzroy",35.00,100.00,1 month,30,2,,1928-09-12,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-09-13,1928-09-15,https://shakespeareandco.princeton.edu/members/giedion-welcker/,Carola Giedion-Welcker,"Giedion-Welcker, Carola",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/rodker-future-futurism/,The Future of Futurism,,"Rodker, John",1920,,Lending Library Card,"Sylvia Beach, Carola Giedion-Welcker Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dc8ea2e9-44ad-43c1-9af7-e77c13d3c09a/manifest,https://iiif.princeton.edu/loris/figgy_prod/d0%2F64%2Fac%2Fd064ac01a0824588acee4e1afb87b1c8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1928-09-13,1928-10-13,https://shakespeareandco.princeton.edu/members/gaston/,Mrs. Gaston,"Gaston, Mrs.",35.00,100.00,1 month,30,2,,1928-09-13,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-09-13,1928-09-15,https://shakespeareandco.princeton.edu/members/giedion-welcker/,Carola Giedion-Welcker,"Giedion-Welcker, Carola",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/young-poetical-works-edward/,The Poetical Works of Edward Young,,"Young, Edward",1852,,Lending Library Card,"Sylvia Beach, Carola Giedion-Welcker Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dc8ea2e9-44ad-43c1-9af7-e77c13d3c09a/manifest,https://iiif.princeton.edu/loris/figgy_prod/d0%2F64%2Fac%2Fd064ac01a0824588acee4e1afb87b1c8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-09-14,1928-09-15,https://shakespeareandco.princeton.edu/members/giedion-welcker/,Carola Giedion-Welcker,"Giedion-Welcker, Carola",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/low-future/,The Future,,"Low, A. M.",1925,,Lending Library Card,"Sylvia Beach, Carola Giedion-Welcker Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dc8ea2e9-44ad-43c1-9af7-e77c13d3c09a/manifest,https://iiif.princeton.edu/loris/figgy_prod/d0%2F64%2Fac%2Fd064ac01a0824588acee4e1afb87b1c8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-09-14,1928-09-15,https://shakespeareandco.princeton.edu/members/giedion-welcker/,Carola Giedion-Welcker,"Giedion-Welcker, Carola",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/graves-lars-porsena-future/,"Lars Porsena, or, The Future of Swearing and Improper Language",,"Graves, Robert",1927,,Lending Library Card,"Sylvia Beach, Carola Giedion-Welcker Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dc8ea2e9-44ad-43c1-9af7-e77c13d3c09a/manifest,https://iiif.princeton.edu/loris/figgy_prod/d0%2F64%2Fac%2Fd064ac01a0824588acee4e1afb87b1c8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-09-14,1928-09-15,https://shakespeareandco.princeton.edu/members/giedion-welcker/,Carola Giedion-Welcker,"Giedion-Welcker, Carola",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/hartley-lucullus-food-future/,"Lucullus: Or, Food of the Future",,"Hartley, Olga;Leyel, C. F., Mrs.",1926,,Lending Library Card,"Sylvia Beach, Carola Giedion-Welcker Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dc8ea2e9-44ad-43c1-9af7-e77c13d3c09a/manifest,https://iiif.princeton.edu/loris/figgy_prod/d0%2F64%2Fac%2Fd064ac01a0824588acee4e1afb87b1c8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-09-15,1928-09-21,https://shakespeareandco.princeton.edu/members/ulsh/,Doretha Ulsh Cowen / Miss D. Ulsh,"Ulsh, Doretha",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/wilder-bridge-san-luis/,The Bridge of San Luis Rey,,"Wilder, Thornton",1927,,Lending Library Card,"Sylvia Beach, Doretha Ulsh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/aefa6047-8ed3-4e6a-8593-1c23bb4fb165/manifest,https://iiif.princeton.edu/loris/figgy_prod/45%2F6b%2F73%2F456b736550a340198c9214e122dc23af%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-09-15,1928-10-27,https://shakespeareandco.princeton.edu/members/jackson-5/,Mrs. Jackson,"Jackson, Mrs.",,,,,,,,,Returned,42,,,https://shakespeareandco.princeton.edu/books/macaulay-dangerous-ages/,Dangerous Ages,,"Macaulay, Rose",1921,,Lending Library Card,"Sylvia Beach, Mrs. Jackson Lending Library Card, Box 59, Folder 6, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ac6269e-f2f6-4df6-861c-40ac8f15296d/manifest,https://iiif-cloud.princeton.edu/iiif/2/3e%2F0d%2Fe4%2F3e0de42656e249318a47a8a8d7828d2e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-09-16,1928-09-27,https://shakespeareandco.princeton.edu/members/smyth-pigott/,Lady Clare Mary Cecilia Feilding / Lady Clare Smyth-Pigott,"Smyth-Pigott, Clare",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/arlen-charming-people/,These Charming People,,"Arlen, Michael",1923,,Lending Library Card,"Sylvia Beach, Clair Smyth-Pigott Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6068331a-83cf-40bf-8850-58d8bc531fdb/manifest,https://iiif.princeton.edu/loris/figgy_prod/28%2F5c%2F0f%2F285c0f8fd85b49808f3af087f2e76fda%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1928-09-16,1928-12-16,https://shakespeareandco.princeton.edu/members/jackson-5/,Mrs. Jackson,"Jackson, Mrs.",,85.00,3 months,91,2,,1928-10-23,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Mrs. Jackson Lending Library Card, Box 59, Folder 6, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/7ac6269e-f2f6-4df6-861c-40ac8f15296d/manifest,;https://iiif-cloud.princeton.edu/iiif/2/3e%2F0d%2Fe4%2F3e0de42656e249318a47a8a8d7828d2e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-09-16,1928-10-11,https://shakespeareandco.princeton.edu/members/smyth-pigott/,Lady Clare Mary Cecilia Feilding / Lady Clare Smyth-Pigott,"Smyth-Pigott, Clare",,,,,,,,,Returned,25,,,https://shakespeareandco.princeton.edu/books/baring-cats-cradle/,Cat's Cradle,,"Baring, Maurice",1925,,Lending Library Card,"Sylvia Beach, Clair Smyth-Pigott Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6068331a-83cf-40bf-8850-58d8bc531fdb/manifest,https://iiif.princeton.edu/loris/figgy_prod/28%2F5c%2F0f%2F285c0f8fd85b49808f3af087f2e76fda%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1928-09-17,1928-09-17,https://shakespeareandco.princeton.edu/members/willson/,Miss Willson / Wilson,"Willson, Miss",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1928-09-17,1928-09-17,https://shakespeareandco.princeton.edu/members/morgan-blanche/,Blanche Morgan,"Morgan, Blanche",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1928-09-17,1928-10-17,https://shakespeareandco.princeton.edu/members/johnson-g-f/,G. F. A[unclear] Johnson,"Johnson, G. F. A[unclear]",25.00,,1 month,30,1,,1928-09-17,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1928-09-17,1928-10-17,https://shakespeareandco.princeton.edu/members/crocker/,Mrs. C. Crocker,"Crocker, Mrs. C.",35.00,100.00,1 month,30,2,,1928-09-17,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1928-09-18,1928-10-18,https://shakespeareandco.princeton.edu/members/gary/,J. Gary,"Gary, J.",35.00,100.00,1 month,30,2,,1928-09-18,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1928-09-18,1928-10-18,https://shakespeareandco.princeton.edu/members/johnston-jessie/,Jessie Johnston,"Johnston, Jessie",35.00,,1 month,30,2,,1928-09-18,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-09-19,1928-09-29,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/joyce-dubliners/,Dubliners,,"Joyce, James",1914,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/41%2F2b%2Ffc%2F412bfcdf7f324e7e889b41a726832583%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-09-19,1928-09-29,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/hemingway-sun-also-rises/,The Sun Also Rises,,"Hemingway, Ernest",1926,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/41%2F2b%2Ffc%2F412bfcdf7f324e7e889b41a726832583%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1928-09-19,1928-12-19,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",85.00,100.00,3 months,91,2,,1928-09-19,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,;https://iiif-cloud.princeton.edu/iiif/2/41%2F2b%2Ffc%2F412bfcdf7f324e7e889b41a726832583%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-09-19,1928-09-29,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/gorman-james-joyce-first/,"James Joyce, His First Forty Years",,"Gorman, Herbert Sherman",1924,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/41%2F2b%2Ffc%2F412bfcdf7f324e7e889b41a726832583%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-09-20,1928-09-21,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/maugham-ashenden-british-agent/,Ashenden: Or the British Agent,,"Maugham, W. Somerset",1928,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/2e%2F51%2Fbf%2F2e51bf8386fc444d94a5a38a2bfc728f%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1928-09-20,1928-09-20,https://shakespeareandco.princeton.edu/members/roditi-edouard/,Γdouard Roditi,"Roditi, Γdouard",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-09-21,1928-09-22,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/wallace-terror-keep/,Terror Keep,,"Wallace, Edgar",1927,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/2e%2F51%2Fbf%2F2e51bf8386fc444d94a5a38a2bfc728f%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-09-21,1928-10-01,https://shakespeareandco.princeton.edu/members/ulsh/,Doretha Ulsh Cowen / Miss D. Ulsh,"Ulsh, Doretha",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/voltaire-candide/,Candide,,Voltaire,1759,,Lending Library Card,"Sylvia Beach, Doretha Ulsh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/aefa6047-8ed3-4e6a-8593-1c23bb4fb165/manifest,https://iiif.princeton.edu/loris/figgy_prod/45%2F6b%2F73%2F456b736550a340198c9214e122dc23af%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1928-09-21,1928-09-21,https://shakespeareandco.princeton.edu/members/kaufman-nathan/,Nathan Kaufman,"Kaufman, Nathan",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1928-09-22,1928-09-22,https://shakespeareandco.princeton.edu/members/vinal-mrs/,Mrs. Vinal,"Vinal, Mrs.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1928-09-22,1928-09-29,https://shakespeareandco.princeton.edu/members/kelsey-mary/,Mary Kelsey,"Kelsey, Mary",6.25,,1 week,7,1,,1928-09-13,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-09-22,1928-09-24,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/maxwell-forget-must/,We Forget because We Must,,"Maxwell, W. B.",1928,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/2e%2F51%2Fbf%2F2e51bf8386fc444d94a5a38a2bfc728f%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1928-09-22,1928-09-22,https://shakespeareandco.princeton.edu/members/kennedy-robert-1/,Robert Kennedy,"Kennedy, Robert",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1928-09-24,1928-09-24,https://shakespeareandco.princeton.edu/members/alford/,J. Alford,"Alford, J.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-09-24,1928-09-26,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/fletcher-secret-barbican-stories/,The Secret of the Barbican and Other Stories,,"Fletcher, Joseph Smith",1924,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/2e%2F51%2Fbf%2F2e51bf8386fc444d94a5a38a2bfc728f%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1928-09-26,1928-10-26,https://shakespeareandco.princeton.edu/members/dowdell-virginia/,Virginia Dowdell,"Dowdell, Virginia",25.00,50.00,1 month,30,1,,1928-09-26,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-09-26,1928-09-28,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/wallace-face-night/,The Face in the Night,,"Wallace, Edgar",1924,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/2e%2F51%2Fbf%2F2e51bf8386fc444d94a5a38a2bfc728f%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1928-09-26,1929-03-26,https://shakespeareandco.princeton.edu/members/grant-myron/,Myron Grant,"Grant, Myron",75.00,,6 months,181,1,,1928-09-26,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1928-09-26,1928-10-26,https://shakespeareandco.princeton.edu/members/burrows/,Katherine Burrows,"Burrows, Katherine",35.00,100.00,1 month,30,2,,1928-09-26,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-09-27,1928-11-07,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,41,,,https://shakespeareandco.princeton.edu/books/poe-works-edgar-allan/,The Works of Edgar Allan Poe,,"Poe, Edgar Allan",,"Volumes from at least two sets of Poeβs works circulated in the lending library: the 10-volume *The Complete Works of Edgar Allan Poe* (Putnam, 1902) and the 8-volume *The Works of Edgar Allan Poe* (Lippincott, 1906). On April 4, 1924, Mlle Valerio borrowed volume 10 (*Miscellany*) from *The Complete Works,* and on January 21, 1925, volumes 1 and 3 from an unspecified set. M. Rieder borrowed volumes 7 and 8 from an unspecified set. On May 1, 1926, Nathalie Sarraute borrowed *Poeβs Tales.* Anatole Rivoallan borrowed volume 5 (*Poems*) from the *The Works.* Emilienne Gosse borrowed volume 1 from an unspecific set. Natalie Walker borrowed volume 1 (*Tales*) from the *The Works.* Eric Culley borrowed an unspecified volume from an unspecified set. Jeanine (Delpech) Teissier borrowed volumes 2 and 4 (both *Tales*) from *The Works.* On October 18, 1938, Sarraute purchased *Poeβs Tales.* Bianca (Bienenfeld) Lamblin borrowed *Poeβs Poems.*",Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/54%2Fb9%2F90%2F54b9902d15d24fa0953f0dc338355e2e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-09-27,1928-10-11,https://shakespeareandco.princeton.edu/members/smyth-pigott/,Lady Clare Mary Cecilia Feilding / Lady Clare Smyth-Pigott,"Smyth-Pigott, Clare",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/borden-three-pilgrims-tinker/,Three Pilgrims and a Tinker: A Novel,,"Borden, Mary",1924,,Lending Library Card,"Sylvia Beach, Clair Smyth-Pigott Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6068331a-83cf-40bf-8850-58d8bc531fdb/manifest,https://iiif.princeton.edu/loris/figgy_prod/28%2F5c%2F0f%2F285c0f8fd85b49808f3af087f2e76fda%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-09-27,1928-09-27,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/thayer-dial/,The Dial,"Vol. 84, no. 4, Apr 1928",,,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/54%2Fb9%2F90%2F54b9902d15d24fa0953f0dc338355e2e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-09-27,1928-10-11,https://shakespeareandco.princeton.edu/members/smyth-pigott/,Lady Clare Mary Cecilia Feilding / Lady Clare Smyth-Pigott,"Smyth-Pigott, Clare",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/borden-romantic-woman/,The Romantic Woman,,"Borden, Mary",1916,,Lending Library Card,"Sylvia Beach, Clair Smyth-Pigott Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6068331a-83cf-40bf-8850-58d8bc531fdb/manifest,https://iiif.princeton.edu/loris/figgy_prod/28%2F5c%2F0f%2F285c0f8fd85b49808f3af087f2e76fda%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-09-28,1928-10-23,https://shakespeareandco.princeton.edu/members/savy/,Alice Savy,"Savy, Alice",,,,,,,,,Returned,25,,,https://shakespeareandco.princeton.edu/books/moore-heloise-abelard/,HΓ©loise and AbΓ©lard,,"Moore, George",1921,,Lending Library Card,"Sylvia Beach, Alice Savy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6bff5a62-eced-4f79-a6f3-649cab124b38/manifest,https://iiif.princeton.edu/loris/figgy_prod/92%2Fc2%2F3c%2F92c23cb3aa714f66ad09000a2ccb689f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-09-28,1928-10-01,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/swinnerton-brood-ducklings/,A Brood of Ducklings,,"Swinnerton, Frank",1928,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/2e%2F51%2Fbf%2F2e51bf8386fc444d94a5a38a2bfc728f%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1928-09-28,1928-09-28,https://shakespeareandco.princeton.edu/members/crocker/,Mrs. C. Crocker,"Crocker, Mrs. C.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1928-09-28,1928-10-28,https://shakespeareandco.princeton.edu/members/savy/,Alice Savy,"Savy, Alice",25.00,50.00,1 month,30,1,,1928-09-28,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Alice Savy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/6bff5a62-eced-4f79-a6f3-649cab124b38/manifest,;https://iiif.princeton.edu/loris/figgy_prod/92%2Fc2%2F3c%2F92c23cb3aa714f66ad09000a2ccb689f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-09-29,1928-10-01,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/joyce-portrait-artist-young/,A Portrait of the Artist as a Young Man,,"Joyce, James",1916,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/41%2F2b%2Ffc%2F412bfcdf7f324e7e889b41a726832583%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1928-09-29,1928-09-29,https://shakespeareandco.princeton.edu/members/volkova/,Volkova / Wolkova,Volkova,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-09-29,1928-10-01,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/hemingway-men-without-women/,Men without Women,,"Hemingway, Ernest",1927,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/41%2F2b%2Ffc%2F412bfcdf7f324e7e889b41a726832583%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1928-10-01,1928-10-01,https://shakespeareandco.princeton.edu/members/askew/,R. D. Askew,"Askew, R. D.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-10-01,1928-10-04,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/wharton-children/,The Children,,"Wharton, Edith",1928,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/2e%2F51%2Fbf%2F2e51bf8386fc444d94a5a38a2bfc728f%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-10-01,1928-10-09,https://shakespeareandco.princeton.edu/members/ulsh/,Doretha Ulsh Cowen / Miss D. Ulsh,"Ulsh, Doretha",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/huddleston-articles-paris/,Articles de Paris,,"Huddleston, Sisley",1928,,Lending Library Card,"Sylvia Beach, Doretha Ulsh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/aefa6047-8ed3-4e6a-8593-1c23bb4fb165/manifest,https://iiif.princeton.edu/loris/figgy_prod/45%2F6b%2F73%2F456b736550a340198c9214e122dc23af%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-10-01,1928-11-17,https://shakespeareandco.princeton.edu/members/tabouis/,Geneviève Tabouis,"Tabouis, Geneviève",,,,,,,,,Returned,47,,,https://shakespeareandco.princeton.edu/books/corkery-hounds-banba/,The Hounds of Banba,,"Corkery, Daniel",1921,,Lending Library Card,"Sylvia Beach, Madame Tabouis Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/540f1465-f7f5-447d-9b06-a8bad71612e7/manifest,https://iiif.princeton.edu/loris/figgy_prod/3a%2Fc8%2F37%2F3ac837ec20254846af09b8401490352f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-10-01,1928-10-19,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/macaulay-keeping-appearances/,Keeping Up Appearances,,"Macaulay, Rose",1928,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/41%2F2b%2Ffc%2F412bfcdf7f324e7e889b41a726832583%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-10-01,1928-10-10,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/lewisohn-roman-summer/,Roman Summer,,"Lewisohn, Ludwig",1927,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/41%2F2b%2Ffc%2F412bfcdf7f324e7e889b41a726832583%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1928-10-02,1928-11-02,https://shakespeareandco.princeton.edu/members/keeler-adison/,Adison Keeler,"Keeler, Adison",25.00,50.00,1 month,31,1,,1928-10-02,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1928-10-02,1928-10-02,https://shakespeareandco.princeton.edu/members/gary/,J. Gary,"Gary, J.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-10-02,1928-10-11,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/williams-great-english-novels/,Some Great English Novels,,"Williams, Orlo",1926,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e1%2F87%2Fe7%2Fe187e7d30ac7412b8aea97f907b2b078%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-10-03,1928-10-05,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/borrow-lavengro-scholar-gypsy/,"Lavengro: The Scholar, the Gypsy, the Priest",,"Borrow, George Henry",1851,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/e0%2Fab%2F03%2Fe0ab03461a3a4090bc62339b41c0a8c5%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1928-10-03,1929-04-03,https://shakespeareandco.princeton.edu/members/tolstoy-mrs/,Mrs. Tolstoy,"Tolstoy, Mrs.",150.00,,6 months,182,2,,1928-10-03,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-10-03,1928-10-06,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/borrow-romano-lavo-lil/,"Romano Lavo-Lil: Word-Book fo the Romany or, English Gypsy Language",,"Borrow, George Henry",1874,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/e0%2Fab%2F03%2Fe0ab03461a3a4090bc62339b41c0a8c5%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-10-03,1928-10-05,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/borrow-romany-rye/,The Romany Rye,,"Borrow, George Henry",1857,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/e0%2Fab%2F03%2Fe0ab03461a3a4090bc62339b41c0a8c5%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-10-03,1928-10-05,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/starrett-fourteen-great-detective/,Fourteen Great Detective Stories,,,1928,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/e0%2Fab%2F03%2Fe0ab03461a3a4090bc62339b41c0a8c5%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1928-10-03,1929-04-03,https://shakespeareandco.princeton.edu/members/hervey-mr/;https://shakespeareandco.princeton.edu/members/hervey-2/,Mr. Hervey;Mrs. Hervey,"Hervey, Mr.;Hervey, Mrs.",300.00,,6 months,182,4,,1928-10-03,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-10-04,1928-10-05,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/sidgwick-antheas-guest/,Anthea's Guest,,"Sidgwick, Cecily",1911,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/2e%2F51%2Fbf%2F2e51bf8386fc444d94a5a38a2bfc728f%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1928-10-04,1928-10-04,https://shakespeareandco.princeton.edu/members/antoine/,Mme G. Antoine,"Antoine, Mme G.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-10-05,1928-11-05,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,31,,,https://shakespeareandco.princeton.edu/books/orczy-skin-o-tooth/,"Skin O' My Tooth: His Memoirs, by His Confidential Clerk",,"Orczy, Baroness",1928,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/e0%2Fab%2F03%2Fe0ab03461a3a4090bc62339b41c0a8c5%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-10-05,1928-10-08,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/macaulay-potterism/,Potterism,,"Macaulay, Rose",1920,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/2e%2F51%2Fbf%2F2e51bf8386fc444d94a5a38a2bfc728f%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1928-10-05,1928-11-05,https://shakespeareandco.princeton.edu/members/stevens-3/,Miss Stevens,"Stevens, Miss",35.00,,1 month,31,2,,1928-10-05,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1928-10-05,1928-11-05,https://shakespeareandco.princeton.edu/members/willard-2/,Mr. Willard,"Willard, Mr.",20.00,,1 month,31,1,Student,1928-10-05,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1928-10-05,1929-10-05,https://shakespeareandco.princeton.edu/members/conty/,D. Conty,"Conty, D.",144.00,50.00,1 year,365,1,AdL,1928-10-05,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-10-06,1928-10-20,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/bradbrook-history-elizabethan-drama/,A History of Elizabethan Drama,,"Bradbrook, Muriel Clara",1900,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/17%2Fc5%2F27%2F17c5279577094feb8c09e8e402cfb654%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-10-06,1928-10-20,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/ward-cambridge-history-english/,The Cambridge History of English Literature,"Vol. 5, 1910 The Drama to 1642, Part One",,,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/17%2Fc5%2F27%2F17c5279577094feb8c09e8e402cfb654%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1928-10-06,1928-10-06,https://shakespeareandco.princeton.edu/members/milkin-sophie/,Sophie Milkin,"Milkin, Sophie",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-10-06,1928-11-05,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,30,,,https://shakespeareandco.princeton.edu/books/johnson-general-history-robberies/,A General History of the Robberies and Murders of the Most Notorious Pirates,,"Johnson, Captain Charles",1926,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/e0%2Fab%2F03%2Fe0ab03461a3a4090bc62339b41c0a8c5%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1928-10-06,1928-11-06,https://shakespeareandco.princeton.edu/members/levinson-2/,Levinson,Levinson,28.00,,1 month,31,2,,1928-09-20,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-10-08,1928-10-13,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/huxley-point-counter-point/,Point Counter Point,,"Huxley, Aldous",1928,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/2e%2F51%2Fbf%2F2e51bf8386fc444d94a5a38a2bfc728f%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1928-10-08,1929-01-08,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",48.00,,3 months,92,2,,1928-10-08,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,;https://iiif.princeton.edu/loris/figgy_prod/cb%2Fd7%2F90%2Fcbd790e6c7ba4d4d8045abbe354ee697%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1928-10-08,1928-11-08,https://shakespeareandco.princeton.edu/members/reynolds-a-m/,Mme A. M. Reynolds,"Reynolds, Mme A. M.",25.00,50.00,1 month,31,1,,1928-10-08,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, A.M. Reynolds Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/3421b1cc-cb37-4310-978c-5c8e08086ffb/manifest,;https://iiif.princeton.edu/loris/figgy_prod/cd%2F0b%2F00%2Fcd0b0001ce6d4602bffec7ebee97c140%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1928-10-08,1928-10-08,https://shakespeareandco.princeton.edu/members/walls/,Mrs. C. Walls,"Walls, Mrs. C.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1928-10-09,1928-11-09,https://shakespeareandco.princeton.edu/members/knox-dorothy/,Dorothy Knox,"Knox, Dorothy",25.00,50.00,1 month,31,1,,1928-10-09,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1928-10-09,1928-10-09,https://shakespeareandco.princeton.edu/members/dowdell-virginia/,Virginia Dowdell,"Dowdell, Virginia",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1928-10-09,1928-11-09,https://shakespeareandco.princeton.edu/members/kennedy-robert-1/,Robert Kennedy,"Kennedy, Robert",45.00,100.00,1 month,31,3,,1928-10-09,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-10-10,1928-10-19,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/lawrence-ladybird/,The Ladybird,,"Lawrence, D. H.",1923,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/41%2F2b%2Ffc%2F412bfcdf7f324e7e889b41a726832583%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-10-11,1928-10-15,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/somervile-big-house-inver/,The Big House of Inver,,"Somerville, E. Ε.;Ross, Martin",1925,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e1%2F87%2Fe7%2Fe187e7d30ac7412b8aea97f907b2b078%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-10-11,1929-01-22,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,103,,,https://shakespeareandco.princeton.edu/books/ingram-true-chatterton-new/,The True Chatterton: A New Study from Original Documents,,"Ingram, John Henry",1910,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/da%2Fc5%2F79%2Fdac5795476fe4af4858e68e98bddb555%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1928-10-11,1928-10-11,https://shakespeareandco.princeton.edu/members/grant-myron/,Myron Grant,"Grant, Myron",,,,,,,,20.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-10-11,1928-10-15,https://shakespeareandco.princeton.edu/members/smyth-pigott/,Lady Clare Mary Cecilia Feilding / Lady Clare Smyth-Pigott,"Smyth-Pigott, Clare",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/de-charriere-four-tales-zelide/,Four Tales by ZΓ©lide,,"de CharrieΜre, Isabelle",1926,,Lending Library Card,"Sylvia Beach, Clair Smyth-Pigott Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6068331a-83cf-40bf-8850-58d8bc531fdb/manifest,https://iiif.princeton.edu/loris/figgy_prod/28%2F5c%2F0f%2F285c0f8fd85b49808f3af087f2e76fda%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-10-11,1928-10-15,https://shakespeareandco.princeton.edu/members/smyth-pigott/,Lady Clare Mary Cecilia Feilding / Lady Clare Smyth-Pigott,"Smyth-Pigott, Clare",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/cabell-silver-stallion/,The Silver Stallion,,"Cabell, James Branch",1926,,Lending Library Card,"Sylvia Beach, Clair Smyth-Pigott Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6068331a-83cf-40bf-8850-58d8bc531fdb/manifest,https://iiif.princeton.edu/loris/figgy_prod/28%2F5c%2F0f%2F285c0f8fd85b49808f3af087f2e76fda%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-10-12,1928-11-05,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,24,,,https://shakespeareandco.princeton.edu/books/collins-moonstone/,The Moonstone,,"Collins, Wilkie",1868,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/e0%2Fab%2F03%2Fe0ab03461a3a4090bc62339b41c0a8c5%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1928-10-12,1928-10-12,https://shakespeareandco.princeton.edu/members/harvey-l-g/,Mrs. L. G. Harvey,"Harvey, Mrs. L. G.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1928-10-12,1929-01-12,https://shakespeareandco.princeton.edu/members/hough/,Mrs. Theodore Hough,"Hough, Mrs. Theodore",60.00,,3 months,92,1,,1928-10-09,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1928-10-13,1929-01-13,https://shakespeareandco.princeton.edu/members/dubois-2/,Noelle Dubois,"Dubois, Noelle",48.00,,3 months,92,1,AdL,1928-10-13,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1928-10-13,1928-11-13,https://shakespeareandco.princeton.edu/members/kennedy-fitzroy/,Fitzroy Kennedy,"Kennedy, Fitzroy",35.00,,1 month,31,2,,1928-10-13,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-10-13,1928-12-19,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,67,,,https://shakespeareandco.princeton.edu/books/wells-world-william-clissold/,The World of William Clissold,3 vols.,"Wells, H. G.",1926,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a9%2F11%2Fd5%2Fa911d51c78fb461396e48d152363a39d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-10-15,1928-10-22,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/wilson-alone-life-private/,All Alone: The Life and Private History of Emily Jane Bronte,,"Wilson, Romer",1928,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e1%2F87%2Fe7%2Fe187e7d30ac7412b8aea97f907b2b078%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1928-10-15,1929-04-15,https://shakespeareandco.princeton.edu/members/binnie/,Mrs. P. Binnie,"Binnie, Mrs. P.",150.00,100.00,6 months,182,2,,1928-10-15,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1928-10-15,1928-11-15,https://shakespeareandco.princeton.edu/members/anderson-3/,Mrs. F. F. Anderson,"Anderson, Mrs. F. F.",25.00,50.00,1 month,31,1,,1928-10-15,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-10-15,1928-10-28,https://shakespeareandco.princeton.edu/members/smyth-pigott/,Lady Clare Mary Cecilia Feilding / Lady Clare Smyth-Pigott,"Smyth-Pigott, Clare",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/de-la-mare-connoisseur-stories/,The Connoisseur and Other Stories,,"De la Mare, Walter",1926,,Lending Library Card,"Sylvia Beach, Clair Smyth-Pigott Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6068331a-83cf-40bf-8850-58d8bc531fdb/manifest,https://iiif.princeton.edu/loris/figgy_prod/28%2F5c%2F0f%2F285c0f8fd85b49808f3af087f2e76fda%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-10-15,1928-10-23,https://shakespeareandco.princeton.edu/members/smyth-pigott/,Lady Clare Mary Cecilia Feilding / Lady Clare Smyth-Pigott,"Smyth-Pigott, Clare",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/millay-wayfarer/,Wayfarer,,"Millay, Kathleen",1926,,Lending Library Card,"Sylvia Beach, Clair Smyth-Pigott Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6068331a-83cf-40bf-8850-58d8bc531fdb/manifest,https://iiif.princeton.edu/loris/figgy_prod/28%2F5c%2F0f%2F285c0f8fd85b49808f3af087f2e76fda%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-10-15,1928-10-25,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/stephens-etched-moonlight/,Etched in Moonlight,,"Stephens, James",1928,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/a6%2F8a%2F5b%2Fa68a5bf3d5a04efd8b4fbb7d8e63f1f0%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1928-10-16,1928-10-16,https://shakespeareandco.princeton.edu/members/ullmann-lisette/,Lisette Ullmann / Mme Claude Ullmann,"Ullmann, Lisette",,,,,,,,,,,6.50,FRF,https://shakespeareandco.princeton.edu/books/jolly-days/,Jolly Days,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Lisette Ullmann Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ecf7f71-fb9f-441d-906e-3a8404457702/manifest,https://iiif.princeton.edu/loris/figgy_prod/5b%2F56%2Fc7%2F5b56c7838539425abf82cada9d6c8bf8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1928-10-16,1928-11-16,https://shakespeareandco.princeton.edu/members/ullmann-lisette/,Lisette Ullmann / Mme Claude Ullmann,"Ullmann, Lisette",,,1 month,31,2,,1928-10-16,,,,,,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Lisette Ullmann Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/3ecf7f71-fb9f-441d-906e-3a8404457702/manifest,;https://iiif.princeton.edu/loris/figgy_prod/5b%2F56%2Fc7%2F5b56c7838539425abf82cada9d6c8bf8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-10-16,,https://shakespeareandco.princeton.edu/members/ullmann-lisette/,Lisette Ullmann / Mme Claude Ullmann,"Ullmann, Lisette",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/joyce-portrait-artist-young/,A Portrait of the Artist as a Young Man,,"Joyce, James",1916,,Lending Library Card,"Sylvia Beach, Lisette Ullmann Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ecf7f71-fb9f-441d-906e-3a8404457702/manifest,https://iiif.princeton.edu/loris/figgy_prod/5b%2F56%2Fc7%2F5b56c7838539425abf82cada9d6c8bf8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-10-16,,https://shakespeareandco.princeton.edu/members/ullmann-lisette/,Lisette Ullmann / Mme Claude Ullmann,"Ullmann, Lisette",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/baring-c/,C,,"Baring, Maurice",1924,,Lending Library Card,"Sylvia Beach, Lisette Ullmann Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ecf7f71-fb9f-441d-906e-3a8404457702/manifest,https://iiif.princeton.edu/loris/figgy_prod/5b%2F56%2Fc7%2F5b56c7838539425abf82cada9d6c8bf8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1928-10-16,1928-10-16,https://shakespeareandco.princeton.edu/members/ullmann-lisette/,Lisette Ullmann / Mme Claude Ullmann,"Ullmann, Lisette",,,,,,,,,,,25.00,FRF,https://shakespeareandco.princeton.edu/books/wilcox-pan-pipes-woodland/,Pan Pipes: A Woodland Play in One Act,,"Wilcox, Constance Grenelle",1920,,Lending Library Card,"Sylvia Beach, Lisette Ullmann Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ecf7f71-fb9f-441d-906e-3a8404457702/manifest,https://iiif.princeton.edu/loris/figgy_prod/5b%2F56%2Fc7%2F5b56c7838539425abf82cada9d6c8bf8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-10-16,1928-11-07,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/kaye-smith-spell-land-story/,Spell Land: The Story of a Sussex Farm,,"Kaye-Smith, Sheila",1926,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/54%2Fb9%2F90%2F54b9902d15d24fa0953f0dc338355e2e%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1928-10-16,1928-11-16,https://shakespeareandco.princeton.edu/members/ladore/,H. Ladore,"Ladore, H.",25.00,50.00,1 month,31,1,,1928-10-16,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1928-10-17,1929-04-17,https://shakespeareandco.princeton.edu/members/church-4/,Mrs. Ralph Church,"Church, Mrs. Ralph",100.00,50.00,6 months,182,1,,1928-10-17,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Supplement,1928-10-17,1928-11-15,https://shakespeareandco.princeton.edu/members/guthrie-miss/,Miss Guthrie,"Guthrie, Miss",10.00,50.00,29 days,29,1,,1928-10-17,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1928-10-17,1928-11-17,https://shakespeareandco.princeton.edu/members/johnson-g-f/,G. F. A[unclear] Johnson,"Johnson, G. F. A[unclear]",25.00,,1 month,31,1,,1928-10-17,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1928-10-17,1928-10-17,https://shakespeareandco.princeton.edu/members/lack-dorothy/,Dorothy Lack,"Lack, Dorothy",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1928-10-17,1928-10-17,https://shakespeareandco.princeton.edu/members/johnston-jessie/,Jessie Johnston,"Johnston, Jessie",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-10-18,1928-10-25,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/dreiser-sister-carrie/,Sister Carrie,,"Dreiser, Theodore",1900,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fd7%2F90%2Fcbd790e6c7ba4d4d8045abbe354ee697%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1928-10-19,1929-10-19,https://shakespeareandco.princeton.edu/members/hunter-5/,Mrs. Hunter,"Hunter, Mrs.",200.00,,1 year,365,2,AdL,1928-10-19,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-10-19,1928-10-30,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/mottram-mr-dormer/,Our Mr. Dormer,,"Mottram, R. H.",1927,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/41%2F2b%2Ffc%2F412bfcdf7f324e7e889b41a726832583%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1928-10-19,1928-10-19,https://shakespeareandco.princeton.edu/members/hall-l-w/,L. W. Hall,"Hall, L. W.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-10-19,1928-10-30,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/brooks-american-caravan-yearbook/,The American Caravan: A Yearbook of American Literature,,,1927,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/41%2F2b%2Ffc%2F412bfcdf7f324e7e889b41a726832583%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1928-10-19,1928-11-19,https://shakespeareandco.princeton.edu/members/boyle-2/,Catherine Boyle,"Boyle, Catherine",25.00,50.00,1 month,31,1,,1928-10-19,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-10-20,1928-10-26,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/lee-handling-words-studies/,The Handling of Words and Other Studies in Literary Psychology,,"Lee, Vernon",1923,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/17%2Fc5%2F27%2F17c5279577094feb8c09e8e402cfb654%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1928-10-20,1928-11-20,https://shakespeareandco.princeton.edu/members/crawford/,Mrs. B. Crawford,"Crawford, Mrs. B.",25.00,50.00,1 month,31,1,,1928-10-20,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1928-10-20,1928-11-20,https://shakespeareandco.princeton.edu/members/edmonds-gwyneth/,Gwyneth Edmonds,"Edmonds, Gwyneth",12.50,,1 month,31,1,,1928-10-20,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-10-20,1928-11-03,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/pronunciation-english/,The Pronunciation of English,,,,Unidentified. Daniel Jones's *The Pronunciation of English* (1909) or William Craigie's *The Pronunciation of English* (1914).,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/17%2Fc5%2F27%2F17c5279577094feb8c09e8e402cfb654%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-10-20,1928-11-17,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,28,,,https://shakespeareandco.princeton.edu/books/ward-cambridge-history-english/,The Cambridge History of English Literature,"Vol. 6, 1910 The Drama to 1642, Part Two",,,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/17%2Fc5%2F27%2F17c5279577094feb8c09e8e402cfb654%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-10-22,1928-10-26,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/hobbes-love-soul-hunters/,Love and the Soul Hunters,,"Hobbes, John Oliver",1902,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e1%2F87%2Fe7%2Fe187e7d30ac7412b8aea97f907b2b078%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1928-10-23,1928-11-23,https://shakespeareandco.princeton.edu/members/curl/,Frances Curl,"Curl, Frances",20.00,50.00,1 month,31,1,Student,1928-10-23,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-10-23,1928-11-06,https://shakespeareandco.princeton.edu/members/smyth-pigott/,Lady Clare Mary Cecilia Feilding / Lady Clare Smyth-Pigott,"Smyth-Pigott, Clare",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/hamblin-school-paris/,The School of Paris,,"Hamblin, Robert A.",1925,,Lending Library Card,"Sylvia Beach, Clair Smyth-Pigott Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6068331a-83cf-40bf-8850-58d8bc531fdb/manifest,https://iiif.princeton.edu/loris/figgy_prod/55%2F2b%2F3e%2F552b3e6f374947448fccc9b4c9d797bc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-10-23,1928-11-06,https://shakespeareandco.princeton.edu/members/smyth-pigott/,Lady Clare Mary Cecilia Feilding / Lady Clare Smyth-Pigott,"Smyth-Pigott, Clare",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/stevens-brawny-man/,Brawny-Man,,"Stevens, James",1926,,Lending Library Card,"Sylvia Beach, Clair Smyth-Pigott Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6068331a-83cf-40bf-8850-58d8bc531fdb/manifest,https://iiif.princeton.edu/loris/figgy_prod/55%2F2b%2F3e%2F552b3e6f374947448fccc9b4c9d797bc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1928-10-23,1929-10-23,https://shakespeareandco.princeton.edu/members/fosca-francois/,FranΓ§ois Fosca,"Fosca, FranΓ§ois",250.00,,1 year,365,2,,1928-10-23,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1928-10-23,1928-11-23,https://shakespeareandco.princeton.edu/members/whitney-2/,Whitney,Whitney,25.00,150.00,1 month,31,1,,1928-10-23,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-10-25,1928-10-30,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/sketches/,Sketches,,,,Unidentified. Likely Charles Dickens's *Sketches by Boz* (1836).,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fd7%2F90%2Fcbd790e6c7ba4d4d8045abbe354ee697%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-10-25,1928-10-29,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/hurst-president-born/,A President Is Born,,"Hurst, Fannie",1928,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/a6%2F8a%2F5b%2Fa68a5bf3d5a04efd8b4fbb7d8e63f1f0%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-10-26,1928-11-17,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/forster-aspects-novel/,Aspects of the Novel,,"Forster, E. M.",1927,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/17%2Fc5%2F27%2F17c5279577094feb8c09e8e402cfb654%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-10-26,1928-11-10,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/forster-eternal-moment/,The Eternal Moment,,"Forster, E. M.",1928,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2F00%2F2c%2Fcb002c24cc9a4d9c8fa834244db6afcc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1928-10-26,1929-04-26,https://shakespeareandco.princeton.edu/members/blake-w/,W. Blake,"Blake, W.",80.00,,6 months,182,1,Student,1928-10-22,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-10-26,1928-10-30,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/deeping-old-pybus/,Old Pybus,,"Deeping, Warwick",1928,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e1%2F87%2Fe7%2Fe187e7d30ac7412b8aea97f907b2b078%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1928-10-26,1929-01-26,https://shakespeareandco.princeton.edu/members/macduff/,Mme U. MacDuff,"MacDuff, Mme U.",60.00,50.00,3 months,92,1,,1928-10-26,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-10-27,1928-11-05,https://shakespeareandco.princeton.edu/members/jackson-5/,Mrs. Jackson,"Jackson, Mrs.",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/graves-lawrence-arabs/,Lawrence and the Arabs,,"Graves, Robert",1927,,Lending Library Card,"Sylvia Beach, Mrs. Jackson Lending Library Card, Box 59, Folder 6, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ac6269e-f2f6-4df6-861c-40ac8f15296d/manifest,https://iiif-cloud.princeton.edu/iiif/2/3e%2F0d%2Fe4%2F3e0de42656e249318a47a8a8d7828d2e%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1928-10-27,1928-11-27,https://shakespeareandco.princeton.edu/members/bastin-3/,Mme J. Bastin,"Bastin, Mme J.",20.00,,1 month,31,1,,1928-10-27,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1928-10-27,1928-11-27,https://shakespeareandco.princeton.edu/members/bayle-k/,K. Bayle,"Bayle, K.",25.00,50.00,1 month,31,1,,1928-10-27,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1928-10-29,1929-04-29,https://shakespeareandco.princeton.edu/members/leleu/,S. Leleu,"Leleu, S.",250.00,100.00,6 months,182,2,,1928-10-29,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-10-29,1928-11-15,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/thackeray-newcomes/,The Newcomes: Memoirs of a Most Respectable Family,2 vols.,"Thackeray, William Makepeace",1855,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/da%2Fc5%2F79%2Fdac5795476fe4af4858e68e98bddb555%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-10-29,1928-11-15,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/three-plays/,Three Plays,,,,"Unidentified. Padraic Colum's *Three Plays) (1917), Luigi Pirandello's *Three Plays* (1922), or William Archer's *Three Plays* (1927), etc.",Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/a6%2F8a%2F5b%2Fa68a5bf3d5a04efd8b4fbb7d8e63f1f0%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1928-10-29,1929-01-29,https://shakespeareandco.princeton.edu/members/hastings-morris/,Morris C. Hastings,"Hastings, Morris C.",48.00,50.00,3 months,92,1,,1928-10-29,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1928-10-30,1928-10-30,https://shakespeareandco.princeton.edu/members/edmonds-gwyneth/,Gwyneth Edmonds,"Edmonds, Gwyneth",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-10-30,1929-01-15,https://shakespeareandco.princeton.edu/members/ulsh/,Doretha Ulsh Cowen / Miss D. Ulsh,"Ulsh, Doretha",,,,,,,,,Returned,77,,,https://shakespeareandco.princeton.edu/books/dickens-tale-two-cities/,A Tale of Two Cities,,"Dickens, Charles",1859,,Lending Library Card,"Sylvia Beach, Doretha Ulsh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/aefa6047-8ed3-4e6a-8593-1c23bb4fb165/manifest,https://iiif.princeton.edu/loris/figgy_prod/45%2F6b%2F73%2F456b736550a340198c9214e122dc23af%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-10-30,1928-11-02,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/obrien-best-short-stories-1927/,The Best Short Stories of 1927: And the Yearbook of the American Short Story,,,1927,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/41%2F2b%2Ffc%2F412bfcdf7f324e7e889b41a726832583%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-10-30,1928-11-02,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/morley-thunder-left/,Thunder on the Left,,"Morley, Christopher",1925,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/41%2F2b%2Ffc%2F412bfcdf7f324e7e889b41a726832583%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-10-30,1928-11-02,https://shakespeareandco.princeton.edu/members/seager/,Katherine Seager,"Seager, Katherine",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/de-la-mare-connoisseur-stories/,The Connoisseur and Other Stories,,"De la Mare, Walter",1926,,Lending Library Card,"Sylvia Beach, Katherine Seager Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2e6c33f9-87d4-4c5a-b5ee-9d023f87da1d/manifest,https://iiif.princeton.edu/loris/figgy_prod/db%2F89%2F4a%2Fdb894a1bfab446d8a5038c2c0876d247%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1928-10-30,1928-11-30,https://shakespeareandco.princeton.edu/members/seager/,Katherine Seager,"Seager, Katherine",25.00,50.00,1 month,31,1,,1928-10-30,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Katherine Seager Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/2e6c33f9-87d4-4c5a-b5ee-9d023f87da1d/manifest,;https://iiif.princeton.edu/loris/figgy_prod/db%2F89%2F4a%2Fdb894a1bfab446d8a5038c2c0876d247%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1928-10-30,1928-10-30,https://shakespeareandco.princeton.edu/members/guthrie-miss/,Miss Guthrie,"Guthrie, Miss",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-10-30,1929-03,https://shakespeareandco.princeton.edu/members/gilbert-stuart/,Stuart Gilbert,"Gilbert, Stuart",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/quarterly-review/,The Quarterly Review,"Vol. 238, no. 473, Oct, 1922",,,The October 1922 issue of *Quarterly Review* includes Shane Leslie's review of James Joyce's *Ulysses.*,Lending Library Card,"Sylvia Beach, Stuart Gilbert Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/861dcb07-60d7-4a64-b1ba-6296bd9c66c3/manifest,https://iiif.princeton.edu/loris/figgy_prod/af%2Ff0%2Fc0%2Faff0c08e46c84bc68c186495fa2d3eba%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-10-30,1928-11-10,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/mencken-notes-democracy/,Notes on Democracy,,"Mencken, H. L.",1926,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fd7%2F90%2Fcbd790e6c7ba4d4d8045abbe354ee697%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-10-30,1928-11-05,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/rinehart-two-flights/,Two Flights Up,,"Rinehart, Mary Roberts",1928,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e1%2F87%2Fe7%2Fe187e7d30ac7412b8aea97f907b2b078%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1928-10-31,1928-11-30,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",25.00,,1 month,30,1,,1928-10-31,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,;https://iiif.princeton.edu/loris/figgy_prod/7b%2F19%2F70%2F7b197003fd8947029b3fddf6d7733ae7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-10-31,1928-11-02,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/mowrer-american-world/,This American World,,"Mowrer, Edgar Ansel",1928,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/7b%2F19%2F70%2F7b197003fd8947029b3fddf6d7733ae7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1928-10-31,1929-04-30,https://shakespeareandco.princeton.edu/members/dodds-muriel/,Muriel Dodds,"Dodds, Muriel",80.00,50.00,6 months,181,1,,1928-10-31,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1928-10-31,1928-10-31,https://shakespeareandco.princeton.edu/members/ladore/,H. Ladore,"Ladore, H.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1928-11-01,1929-11-01,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",120.00,,1 year,365,2,Professor / Teacher,1928-11-03,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,;https://iiif-cloud.princeton.edu/iiif/2/17%2Fc5%2F27%2F17c5279577094feb8c09e8e402cfb654%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1928-11-02,1929-02-02,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",85.00,,3 months,92,2,,1928-11-05,,,,,FRF,,,,,,,Logbook;Lending Library Card;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest;https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,;https://iiif-cloud.princeton.edu/iiif/2/e0%2Fab%2F03%2Fe0ab03461a3a4090bc62339b41c0a8c5%2Fintermediate_file/full/full/0/default.jpg;https://iiif-cloud.princeton.edu/iiif/2/2a%2Fe1%2F20%2F2ae1204f192e4ecdb46cde153b2d8975%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-11-02,1928-11-24,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/oneill-desire-elms-play/,Desire under the Elms: A Play in Three Parts,,"O'Neill, Eugene",1924,Some editions of *Desire under the Elms* include O'Neill's *Welded* (1924) and [*All God's Chillun Got Wings*](https://shakespeareandco.princeton.edu/books/oneill-gods-chillun-got/) (1924). [M. Villars](https://shakespeareandco.princeton.edu/members/villars/) purchased an edition that includes *All God's Chillun Got Wings.*,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/41%2F2b%2Ffc%2F412bfcdf7f324e7e889b41a726832583%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1928-11-02,1928-11-02,https://shakespeareandco.princeton.edu/members/reynolds-a-m/,Mme A. M. Reynolds,"Reynolds, Mme A. M.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-11-02,1928-11-07,https://shakespeareandco.princeton.edu/members/seager/,Katherine Seager,"Seager, Katherine",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/huddleston-bohemian-literary-social/,Bohemian Literary and Social Life in Paris,,"Huddleston, Sisley",1928,,Lending Library Card,"Sylvia Beach, Katherine Seager Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2e6c33f9-87d4-4c5a-b5ee-9d023f87da1d/manifest,https://iiif.princeton.edu/loris/figgy_prod/db%2F89%2F4a%2Fdb894a1bfab446d8a5038c2c0876d247%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1928-11-02,1928-11-02,https://shakespeareandco.princeton.edu/members/henton-l/;https://shakespeareandco.princeton.edu/members/henton/,L. Henton;Mrs. Henton,"Henton, L.;Henton, Mrs.",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1928-11-02,1928-12-02,https://shakespeareandco.princeton.edu/members/davies-6/,Mrs. G. Davies,"Davies, Mrs. G.",45.00,50.00,1 month,30,3,,1928-11-02,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-11-02,1928-11-02,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/oneill-strange-interlude/,Strange Interlude,,"O'Neill, Eugene",1928,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/7b%2F19%2F70%2F7b197003fd8947029b3fddf6d7733ae7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-11-02,1928-11-05,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/wescott-grandmothers-family-portrait/,The Grandmothers: A Family Portrait,,"Wescott, Glenway",1927,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/7b%2F19%2F70%2F7b197003fd8947029b3fddf6d7733ae7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-11-02,1928-11-24,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/moore-celibate-lives/,Celibate Lives,,"Moore, George",1927,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/41%2F2b%2Ffc%2F412bfcdf7f324e7e889b41a726832583%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1928-11-03,1928-11-03,https://shakespeareandco.princeton.edu/members/forwood/,Mme K. Forwood,"Forwood, Mme K.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-11-03,1928-11-15,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/bennett-strange-vanguard-fantasia/,The Strange Vanguard: A Fantasia,,"Bennett, Arnold",1928,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/4b%2Fa3%2F65%2F4ba365cea0974f05a43fd7f77ce258e9%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1928-11-03,1928-11-10,https://shakespeareandco.princeton.edu/members/bond-3/,J. Bond,"Bond, J.",6.50,,1 week,7,,,1928-11-03,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-11-05,1928-11-16,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/women-daughters/,Women and Daughters,,,,Unidentified. Likely Elizabeth Gaskell's [*Wives and Daughters*](https://shakespeareandco.princeton.edu/books/gaskell-wives-daughters/) (1866).,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e1%2F87%2Fe7%2Fe187e7d30ac7412b8aea97f907b2b078%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-11-05,,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/bridges-poetical-works/,Poetical Works,,"Bridges, Robert",,Mlle Valerio and Tamara van den Bergh borrowed an unspecified edition of Robert Bridges's *Poems.* The other lending library members borrowed an unspecified edition of Robert Bridges's *Poetical Works.*,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1928-11-05,1928-11-06,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/ford-last-post/,Last Post (Parade's End 4),,"Ford, Ford Madox",1928,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/7b%2F19%2F70%2F7b197003fd8947029b3fddf6d7733ae7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1928-11-05,1928-12-05,https://shakespeareandco.princeton.edu/members/vetlard/,Vetlard,Vetlard,25.00,,1 month,30,1,,1928-11-05,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1928-11-05,1928-12-05,https://shakespeareandco.princeton.edu/members/boex/,Mme Boex,"Boex, Mme",25.00,,1 month,30,1,,1928-11-03,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1928-11-05,1929-05-05,https://shakespeareandco.princeton.edu/members/ward/,Ward,Ward,120.00,,6 months,181,2,AdL,1928-11-05,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-11-05,1928-11-10,https://shakespeareandco.princeton.edu/members/jackson-5/,Mrs. Jackson,"Jackson, Mrs.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/arlen-may-fair/,May Fair,,"Arlen, Michael",1925,,Lending Library Card,"Sylvia Beach, Mrs. Jackson Lending Library Card, Box 59, Folder 6, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ac6269e-f2f6-4df6-861c-40ac8f15296d/manifest,https://iiif-cloud.princeton.edu/iiif/2/3e%2F0d%2Fe4%2F3e0de42656e249318a47a8a8d7828d2e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-11-05,1928-11-10,https://shakespeareandco.princeton.edu/members/jackson-5/,Mrs. Jackson,"Jackson, Mrs.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/arlen-green-hat/,The Green Hat: A Romance for a Few People,,"Arlen, Michael",1924,,Lending Library Card,"Sylvia Beach, Mrs. Jackson Lending Library Card, Box 59, Folder 6, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ac6269e-f2f6-4df6-861c-40ac8f15296d/manifest,https://iiif-cloud.princeton.edu/iiif/2/3e%2F0d%2Fe4%2F3e0de42656e249318a47a8a8d7828d2e%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1928-11-05,1929-02-05,https://shakespeareandco.princeton.edu/members/willard-2/,Mr. Willard,"Willard, Mr.",60.00,,3 months,92,1,,1928-11-05,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-11-06,1929-04-01,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Returned,146,,,https://shakespeareandco.princeton.edu/books/moore-mummers-wife/,A Mummer's Wife,,"Moore, George",1885,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Supplement,1928-11-06,1928-12-02,https://shakespeareandco.princeton.edu/members/messick/,Catherine Messick,"Messick, Catherine",8.00,,26 days,26,1,,1928-11-06,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-11-06,1928-11-08,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/meier-graefe-dostoevsky-man-work/,Dostoevsky: The Man and His Work,,"Meier-Graefe, Julius",1928,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/7b%2F19%2F70%2F7b197003fd8947029b3fddf6d7733ae7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-11-06,1929-04-01,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Returned,146,,,https://shakespeareandco.princeton.edu/books/cowper/,Cowper,,,,Unidentified. By or about William Cowper. Likely Hugh I'Anson Fausset's [*William Cowper*](https://shakespeareandco.princeton.edu/books/fausset-william-cowper/) (1928).,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Renewal,1928-11-06,1928-12-06,https://shakespeareandco.princeton.edu/members/levinson-2/,Levinson,Levinson,28.00,,1 month,30,2,Professor / Teacher,1928-10-11,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1928-11-07,1928-12-07,https://shakespeareandco.princeton.edu/members/mercer-leigh/,Leigh Mercer,"Mercer, Leigh",25.00,50.00,1 month,30,1,,1928-11-07,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-11-07,1928-11-13,https://shakespeareandco.princeton.edu/members/seager/,Katherine Seager,"Seager, Katherine",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/w-unclear/,W[unclear],,,,Unidentified. Handwriting unclear.,Lending Library Card,"Sylvia Beach, Katherine Seager Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2e6c33f9-87d4-4c5a-b5ee-9d023f87da1d/manifest,https://iiif.princeton.edu/loris/figgy_prod/db%2F89%2F4a%2Fdb894a1bfab446d8a5038c2c0876d247%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1928-11-07,1929-02-07,https://shakespeareandco.princeton.edu/members/gordon-judith/,Judith Gordon,"Gordon, Judith",48.00,50.00,3 months,92,1,Student,1928-11-07,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-11-08,1928-11-10,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/wharton-children/,The Children,,"Wharton, Edith",1928,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/7b%2F19%2F70%2F7b197003fd8947029b3fddf6d7733ae7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1928-11-09,1929-02-09,https://shakespeareandco.princeton.edu/members/kennedy-robert-1/,Robert Kennedy,"Kennedy, Robert",85.00,,3 months,92,1,,1929-02-02,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-11-10,1928-11-17,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/lindsey-companionate-marriage/,The Companionate Marriage,,"Lindsey, Ben B.;Evans, Wainwright",1927,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/7b%2F19%2F70%2F7b197003fd8947029b3fddf6d7733ae7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-11-10,1928-11-14,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/europe/,Europe,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/7b%2F19%2F70%2F7b197003fd8947029b3fddf6d7733ae7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-11-10,1928-11-12,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/hall-well-loneliness/,The Well of Loneliness,,"Hall, Radclyffe",1926,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/7b%2F19%2F70%2F7b197003fd8947029b3fddf6d7733ae7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-11-10,1928-11-16,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/chesterton-charles-dickens-critical/,Charles Dickens: A Critical Study,,"Chesterton, G. K.",1906,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fd7%2F90%2Fcbd790e6c7ba4d4d8045abbe354ee697%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-11-10,1928-11-16,https://shakespeareandco.princeton.edu/members/jackson-5/,Mrs. Jackson,"Jackson, Mrs.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/gerhardie-pretty-creatures/,Pretty Creatures,,"Gerhardie, William Alexander",1927,,Lending Library Card,"Sylvia Beach, Mrs. Jackson Lending Library Card, Box 59, Folder 6, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ac6269e-f2f6-4df6-861c-40ac8f15296d/manifest,https://iiif-cloud.princeton.edu/iiif/2/58%2F37%2Fbd%2F5837bd0a8ae24868917fb859e2d727a5%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-11-10,1928-11-16,https://shakespeareandco.princeton.edu/members/jackson-5/,Mrs. Jackson,"Jackson, Mrs.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/bullitt-done/,It's Not Done,,"Bullitt, William C.",1926,,Lending Library Card,"Sylvia Beach, Mrs. Jackson Lending Library Card, Box 59, Folder 6, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ac6269e-f2f6-4df6-861c-40ac8f15296d/manifest,https://iiif-cloud.princeton.edu/iiif/2/58%2F37%2Fbd%2F5837bd0a8ae24868917fb859e2d727a5%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-11-10,1928-11-16,https://shakespeareandco.princeton.edu/members/jackson-5/,Mrs. Jackson,"Jackson, Mrs.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/istrati-kyra-kyralina/,Kyra Kyralina,,"Istrati, Panait",1926,,Lending Library Card,"Sylvia Beach, Mrs. Jackson Lending Library Card, Box 59, Folder 6, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ac6269e-f2f6-4df6-861c-40ac8f15296d/manifest,https://iiif-cloud.princeton.edu/iiif/2/58%2F37%2Fbd%2F5837bd0a8ae24868917fb859e2d727a5%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-11-10,1928-11-28,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/richardson-oberland-pilgrimage-9/,Oberland (Pilgrimage 9),,"Richardson, Dorothy M.",1927,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2F00%2F2c%2Fcb002c24cc9a4d9c8fa834244db6afcc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1928-11-10,1928-11-10,https://shakespeareandco.princeton.edu/members/knox-dorothy/,Dorothy Knox,"Knox, Dorothy",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1928-11-10,1928-12-10,https://shakespeareandco.princeton.edu/members/keller-jeanette-h/,Jeanette H. Keller,"Keller, Jeanette H.",25.00,50.00,1 month,30,1,,1928-11-10,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Supplement,1928-11-10,1928-12-16,https://shakespeareandco.princeton.edu/members/jackson-5/,Mrs. Jackson,"Jackson, Mrs.",10.00,,"1 month, 6 days",36,1,,1928-11-10,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Mrs. Jackson Lending Library Card, Box 59, Folder 6, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/7ac6269e-f2f6-4df6-861c-40ac8f15296d/manifest,;https://iiif-cloud.princeton.edu/iiif/2/58%2F37%2Fbd%2F5837bd0a8ae24868917fb859e2d727a5%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1928-11-12,1928-11-12,https://shakespeareandco.princeton.edu/members/bourret/,J. Bourret,"Bourret, J.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-11-13,1928-11-29,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/feuchtwanger-ugly-duchess/,The Ugly Duchess,,"Feuchtwanger, Lion",1927,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/e2%2F8f%2F47%2Fe28f47a0edc74234a7fe62de67b2461a%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1928-11-13,1929-03-13,https://shakespeareandco.princeton.edu/members/kennedy-fitzroy/,Fitzroy Kennedy,"Kennedy, Fitzroy",145.00,,4 months,120,1,,1929-02-02,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-11-13,1928-11-15,https://shakespeareandco.princeton.edu/members/seager/,Katherine Seager,"Seager, Katherine",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/mansfield-garden-party-stories/,The Garden Party and Other Stories,,"Mansfield, Katherine",1922,,Lending Library Card,"Sylvia Beach, Katherine Seager Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2e6c33f9-87d4-4c5a-b5ee-9d023f87da1d/manifest,https://iiif.princeton.edu/loris/figgy_prod/db%2F89%2F4a%2Fdb894a1bfab446d8a5038c2c0876d247%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1928-11-14,1928-12-14,https://shakespeareandco.princeton.edu/members/dehdashti-khalil/,Khalil Dehdashti,"Dehdashti, Khalil",25.00,50.00,1 month,30,1,,1928-11-14,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-11-15,1928-12-06,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/herman-melville/,Herman Melville,,,,Unidentified. By or about Herman Melville.,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/ee%2F79%2Fb9%2Fee79b9f1f5e64724a09ee5b343ebd05a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-11-15,1928-11-22,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/le-queux-crooked-way/,The Crooked Way,,"Le Queux, William",1919,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/a6%2F8a%2F5b%2Fa68a5bf3d5a04efd8b4fbb7d8e63f1f0%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1928-11-15,1929-03-15,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",80.00,,4 months,120,1,Professor / Teacher,1928-11-15,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,;https://iiif-cloud.princeton.edu/iiif/2/a6%2F8a%2F5b%2Fa68a5bf3d5a04efd8b4fbb7d8e63f1f0%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-11-15,1928-11-21,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/trollope-bertrams/,The Bertrams,2 vols.,"Trollope, Anthony",1859,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/da%2Fc5%2F79%2Fdac5795476fe4af4858e68e98bddb555%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1928-11-15,1928-11-15,https://shakespeareandco.princeton.edu/members/anderson-3/,Mrs. F. F. Anderson,"Anderson, Mrs. F. F.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-11-15,1928-11-19,https://shakespeareandco.princeton.edu/members/seager/,Katherine Seager,"Seager, Katherine",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/inge-outspoken-essays/,Outspoken Essays,,"Inge, William Ralph",1919,,Lending Library Card,"Sylvia Beach, Katherine Seager Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2e6c33f9-87d4-4c5a-b5ee-9d023f87da1d/manifest,https://iiif.princeton.edu/loris/figgy_prod/db%2F89%2F4a%2Fdb894a1bfab446d8a5038c2c0876d247%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-11-16,1928-12-03,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/french-revolution/,The French Revolution,Vol. 1,,,Unidentified. CΓ©cile de Montricher likely borrowed volumes 1 and 2 of Thomas Carlyle's *French Revolution* (1837).,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fd7%2F90%2Fcbd790e6c7ba4d4d8045abbe354ee697%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1928-11-16,1928-12-16,https://shakespeareandco.princeton.edu/members/halford-pamela/,Pamela Halford,"Halford, Pamela",2.00,50.00,1 month,30,1,Student,1928-11-16,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-11-16,1928-11-19,https://shakespeareandco.princeton.edu/members/jackson-5/,Mrs. Jackson,"Jackson, Mrs.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/hall-well-loneliness/,The Well of Loneliness,,"Hall, Radclyffe",1926,,Lending Library Card,"Sylvia Beach, Mrs. Jackson Lending Library Card, Box 59, Folder 6, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ac6269e-f2f6-4df6-861c-40ac8f15296d/manifest,https://iiif-cloud.princeton.edu/iiif/2/58%2F37%2Fbd%2F5837bd0a8ae24868917fb859e2d727a5%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-11-16,1928-12-10,https://shakespeareandco.princeton.edu/members/jackson-5/,Mrs. Jackson,"Jackson, Mrs.",,,,,,,,,Returned,24,,,https://shakespeareandco.princeton.edu/books/wells-tono-bungay/,Tono-Bungay,,"Wells, H. G.",1909,,Lending Library Card,"Sylvia Beach, Mrs. Jackson Lending Library Card, Box 59, Folder 6, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ac6269e-f2f6-4df6-861c-40ac8f15296d/manifest,https://iiif-cloud.princeton.edu/iiif/2/58%2F37%2Fbd%2F5837bd0a8ae24868917fb859e2d727a5%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-11-16,1928-12-27,https://shakespeareandco.princeton.edu/members/jackson-5/,Mrs. Jackson,"Jackson, Mrs.",,,,,,,,,Returned,41,,,https://shakespeareandco.princeton.edu/books/hergesheimer-three-black-pennys/,The Three Black Pennys,,"Hergesheimer, Joseph",1917,,Lending Library Card,"Sylvia Beach, Mrs. Jackson Lending Library Card, Box 59, Folder 6, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ac6269e-f2f6-4df6-861c-40ac8f15296d/manifest,https://iiif-cloud.princeton.edu/iiif/2/58%2F37%2Fbd%2F5837bd0a8ae24868917fb859e2d727a5%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-11-16,1928-11-21,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/baring-comfortless-memory/,Comfortless Memory,,"Baring, Maurice",1928,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e1%2F87%2Fe7%2Fe187e7d30ac7412b8aea97f907b2b078%2Fintermediate_file.jp2/full/full/0/default.jpg
+Crossed out,1928-11-16,,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/mansfield-letters-katherine-mansfield/,The Letters of Katherine Mansfield,,"Mansfield, Katherine",1928,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e1%2F87%2Fe7%2Fe187e7d30ac7412b8aea97f907b2b078%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-11-17,1928-12-01,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/huxley-point-counter-point/,Point Counter Point,,"Huxley, Aldous",1928,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/17%2Fc5%2F27%2F17c5279577094feb8c09e8e402cfb654%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-11-17,1928-11-24,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/forster-eternal-moment/,The Eternal Moment,,"Forster, E. M.",1928,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/17%2Fc5%2F27%2F17c5279577094feb8c09e8e402cfb654%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-11-17,1928-11-24,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/criterion/,The Criterion,,,,"Renamed *The New Criterion* from January 1926 to January 1927, and *The Monthly Criterion* from May 1927 to March 1928.",Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/17%2Fc5%2F27%2F17c5279577094feb8c09e8e402cfb654%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-11-17,1928-11-19,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/stephens-charwomans-daughter/,The Charwoman's Daughter,,"Stephens, James",1912,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/7b%2F19%2F70%2F7b197003fd8947029b3fddf6d7733ae7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-11-19,1928-11-26,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/russell-right-happy/,The Right to be Happy,,"Russell, Dora",1927,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/7b%2F19%2F70%2F7b197003fd8947029b3fddf6d7733ae7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-11-19,1928-11-22,https://shakespeareandco.princeton.edu/members/seager/,Katherine Seager,"Seager, Katherine",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/lowes-convention-revolt-poetry/,Convention and Revolt in Poetry,,"Lowes, John Livingston",1919,,Lending Library Card,"Sylvia Beach, Katherine Seager Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2e6c33f9-87d4-4c5a-b5ee-9d023f87da1d/manifest,https://iiif.princeton.edu/loris/figgy_prod/db%2F89%2F4a%2Fdb894a1bfab446d8a5038c2c0876d247%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-11-19,1928-11-27,https://shakespeareandco.princeton.edu/members/jackson-5/,Mrs. Jackson,"Jackson, Mrs.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/pope-essay-criticism/,An Essay on Criticism,,"Pope, Alexander",1711,,Lending Library Card,"Sylvia Beach, Mrs. Jackson Lending Library Card, Box 59, Folder 6, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ac6269e-f2f6-4df6-861c-40ac8f15296d/manifest,https://iiif-cloud.princeton.edu/iiif/2/58%2F37%2Fbd%2F5837bd0a8ae24868917fb859e2d727a5%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-11-19,1928-11-27,https://shakespeareandco.princeton.edu/members/jackson-5/,Mrs. Jackson,"Jackson, Mrs.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/watson-ways-behaviourism/,Ways of Behaviourism,,"Watson, John Broadus",1928,,Lending Library Card,"Sylvia Beach, Mrs. Jackson Lending Library Card, Box 59, Folder 6, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ac6269e-f2f6-4df6-861c-40ac8f15296d/manifest,https://iiif-cloud.princeton.edu/iiif/2/58%2F37%2Fbd%2F5837bd0a8ae24868917fb859e2d727a5%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1928-11-19,1929-02-19,https://shakespeareandco.princeton.edu/members/beach-3/,Dagmar Doneghy / Mrs. Joseph Warren Beach,"Doneghy, Dagmar",60.00,50.00,3 months,92,1,,1928-11-19,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1928-11-19,1929-02-19,https://shakespeareandco.princeton.edu/members/yost/,Yost,Yost,68.00,100.00,3 months,92,2,Student,1928-11-19,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1928-11-20,1928-12-20,https://shakespeareandco.princeton.edu/members/johnson-g-f/,G. F. A[unclear] Johnson,"Johnson, G. F. A[unclear]",25.00,,1 month,30,1,,1928-11-20,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1928-11-21,1928-11-21,https://shakespeareandco.princeton.edu/members/cree-2/,Cree,Cree,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-11-21,1928-11-26,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/gaskell-sylvias-lovers/,Sylvia's Lovers,,"Gaskell, Elizabeth",1863,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e1%2F87%2Fe7%2Fe187e7d30ac7412b8aea97f907b2b078%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-11-21,1928-11-27,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/trollope-small-house-allington/,The Small House at Allington,,"Trollope, Anthony",1864,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/da%2Fc5%2F79%2Fdac5795476fe4af4858e68e98bddb555%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1928-11-21,1929-02-21,https://shakespeareandco.princeton.edu/members/conner-g-s/,Mrs. G. S. Connor,"Connor, Mrs. G. S.",85.00,100.00,3 months,92,2,,1928-11-21,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-11-22,1929-12-03,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,376,,,https://shakespeareandco.princeton.edu/books/fletcher-scarhaven-keep/,Scarhaven Keep,,"Fletcher, Joseph Smith",1920,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/a6%2F8a%2F5b%2Fa68a5bf3d5a04efd8b4fbb7d8e63f1f0%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1928-11-22,1929-02-22,https://shakespeareandco.princeton.edu/members/gruening-4/,Gruening,Gruening,,,3 months,92,2,,1928-11-22,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1928-11-22,1928-11-22,https://shakespeareandco.princeton.edu/members/curl/,Frances Curl,"Curl, Frances",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-11-22,1928-11-30,https://shakespeareandco.princeton.edu/members/seager/,Katherine Seager,"Seager, Katherine",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/mansfield-doves-nest-stories/,The Doves' Nest and Other Stories,,"Mansfield, Katherine",1923,,Lending Library Card,"Sylvia Beach, Katherine Seager Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2e6c33f9-87d4-4c5a-b5ee-9d023f87da1d/manifest,https://iiif.princeton.edu/loris/figgy_prod/db%2F89%2F4a%2Fdb894a1bfab446d8a5038c2c0876d247%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-11-22,1928-12-03,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/fletcher-green-ink-stories/,Green Ink and Other Stories,,"Fletcher, Joseph Smith",1926,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/a6%2F8a%2F5b%2Fa68a5bf3d5a04efd8b4fbb7d8e63f1f0%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1928-11-23,1928-12-23,https://shakespeareandco.princeton.edu/members/gatchel/,Mrs. F. Gatchel,"Gatchel, Mrs. F.",25.00,50.00,1 month,30,1,,1928-11-23,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-11-24,1928-11-28,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/merezhkovsky-birth-gods/,The Birth of the Gods,,"Merezhkovsky, Dmitry",1926,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/41%2F2b%2Ffc%2F412bfcdf7f324e7e889b41a726832583%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-11-24,1928-12-08,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/archer-old-drama-new/,The Old Drama and the New,,"Archer, William",1923,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/17%2Fc5%2F27%2F17c5279577094feb8c09e8e402cfb654%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-11-24,1928-11-28,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/fascism/,Fascism,,,,Unidentified. Odon Por's *Fascism* (1923) or Giuseppe Prezzolini's *Fascism* (1926).,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/41%2F2b%2Ffc%2F412bfcdf7f324e7e889b41a726832583%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-11-26,1928-11-28,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/memories-reflections/,Memories and Reflections,,,,"Unidentified. Laura Troubridge's *Memories and Reflections* (1925) or H. H. Asquith's *Memories and Reflections, 1852β1927* (1928).",Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/ef%2Fef%2Fcb%2Fefefcbf627f44dea9bec88151c20f0a2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-11-26,1928-11-28,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/stephens-etched-moonlight/,Etched in Moonlight,,"Stephens, James",1928,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/7b%2F19%2F70%2F7b197003fd8947029b3fddf6d7733ae7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-11-26,1928-11-28,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/asquith-duchess-york-intimate/,The Duchess of York: An Intimate and Authentic Life Story,,"Asquith, Cynthia, Lady",1928,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/ef%2Fef%2Fcb%2Fefefcbf627f44dea9bec88151c20f0a2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-11-26,1928-11-28,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/strachey-elizabeth-essex-tragic/,Elizabeth and Essex: A Tragic History,,"Strachey, Giles Lytton",1928,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/ef%2Fef%2Fcb%2Fefefcbf627f44dea9bec88151c20f0a2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-11-26,1928-11-28,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/paterson-george-eliots-family/,George Eliot's Family Life and Letters,,"Paterson, Arthur",1928,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/ef%2Fef%2Fcb%2Fefefcbf627f44dea9bec88151c20f0a2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-11-26,1928-11-28,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/dostoevskaia-dostoevsky-portrayed-wife/,Dostoevsky Portrayed by His Wife: The Diary and Reminiscences of Mme Dostoevsky,,"Dostoevskaia, Anna",1926,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/ef%2Fef%2Fcb%2Fefefcbf627f44dea9bec88151c20f0a2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-11-26,1928-11-26,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/mansfield-letters-katherine-mansfield/,The Letters of Katherine Mansfield,2 vols.,"Mansfield, Katherine",1928,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e1%2F87%2Fe7%2Fe187e7d30ac7412b8aea97f907b2b078%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1928-11-26,1928-12-26,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",35.00,,1 month,30,2,,1928-11-28,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,;https://iiif-cloud.princeton.edu/iiif/2/ef%2Fef%2Fcb%2Fefefcbf627f44dea9bec88151c20f0a2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-11-27,1928-12-10,https://shakespeareandco.princeton.edu/members/jackson-5/,Mrs. Jackson,"Jackson, Mrs.",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/wilder-cabala/,The Cabala,,"Wilder, Thornton",1926,,Lending Library Card,"Sylvia Beach, Mrs. Jackson Lending Library Card, Box 59, Folder 6, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ac6269e-f2f6-4df6-861c-40ac8f15296d/manifest,https://iiif-cloud.princeton.edu/iiif/2/58%2F37%2Fbd%2F5837bd0a8ae24868917fb859e2d727a5%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1928-11-27,1928-11-27,https://shakespeareandco.princeton.edu/members/lemer/,Mrs. N. A. Lemer,"Lemer, Mrs. N. A.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-11-28,1928-12-05,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/hamsun-women-pump/,The Women at the Pump,,"Hamsun, Knut",1928,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/41%2F2b%2Ffc%2F412bfcdf7f324e7e889b41a726832583%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-11-28,1928-12-06,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/pilkington-memoirs-mrs-laetitia/,"Memoirs of Mrs. Laetitia Pilkington, 1712 β 1750",,"Pilkington, Laetitia",1928,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/f8%2F16%2F70%2Ff8167044678547c6838e05ae70e5df35%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-11-28,1929-07-16,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,230,,,https://shakespeareandco.princeton.edu/books/baring-comfortless-memory/,Comfortless Memory,,"Baring, Maurice",1928,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/f8%2F16%2F70%2Ff8167044678547c6838e05ae70e5df35%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-11-28,1928-12-06,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/dostoevskaia-dostoevsky-portrayed-wife/,Dostoevsky Portrayed by His Wife: The Diary and Reminiscences of Mme Dostoevsky,,"Dostoevskaia, Anna",1926,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/f8%2F16%2F70%2Ff8167044678547c6838e05ae70e5df35%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-11-28,1928-12-11,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/strachey-queen-victoria/,Queen Victoria,,"Strachey, Giles Lytton",1921,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2F00%2F2c%2Fcb002c24cc9a4d9c8fa834244db6afcc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-11-28,1928-12-06,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/hardy-early-life-thomas/,The Early Life of Thomas Hardy,,"Hardy, Florence Emily",1928,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/f8%2F16%2F70%2Ff8167044678547c6838e05ae70e5df35%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-11-28,1928-12-29,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,31,,,https://shakespeareandco.princeton.edu/books/james-maisie-knew/,What Maisie Knew,,"James, Henry",1897,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/f8%2F16%2F70%2Ff8167044678547c6838e05ae70e5df35%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1928-11-28,1929-11-28,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",144.00,,1 year,365,1,,1929-01-11,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,;https://iiif-cloud.princeton.edu/iiif/2/af%2Fcd%2F4b%2Fafcd4b7698644be4ad8edf82445910ee%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-11-28,1928-12-03,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/trollope-last-chronicle-barset/,The Last Chronicle of Barset,2 vols.,"Trollope, Anthony",1867,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/da%2Fc5%2F79%2Fdac5795476fe4af4858e68e98bddb555%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-11-28,1928-12-05,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/hemingway-torrents-spring/,The Torrents of Spring,,"Hemingway, Ernest",1926,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/41%2F2b%2Ffc%2F412bfcdf7f324e7e889b41a726832583%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1928-11-29,1928-12-29,https://shakespeareandco.princeton.edu/members/johnson-joy/,Joy Johnson,"Johnson, Joy",28.00,100.00,1 month,30,2,Student,1928-11-29,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-11-29,1928-12-21,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/ford-last-post/,Last Post (Parade's End 4),,"Ford, Ford Madox",1928,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/e2%2F8f%2F47%2Fe28f47a0edc74234a7fe62de67b2461a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-11-29,1928-12-21,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/hergesheimer-quiet-cities/,Quiet Cities,,"Hergesheimer, Joseph",1928,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/e2%2F8f%2F47%2Fe28f47a0edc74234a7fe62de67b2461a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-11-30,1928-12-08,https://shakespeareandco.princeton.edu/members/seager/,Katherine Seager,"Seager, Katherine",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/kennedy-red-sky-morning/,Red Sky at Morning,,"Kennedy, Margaret",1927,,Lending Library Card,"Sylvia Beach, Katherine Seager Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2e6c33f9-87d4-4c5a-b5ee-9d023f87da1d/manifest,https://iiif.princeton.edu/loris/figgy_prod/db%2F89%2F4a%2Fdb894a1bfab446d8a5038c2c0876d247%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1928-11-30,1928-12-30,https://shakespeareandco.princeton.edu/members/seager/,Katherine Seager,"Seager, Katherine",25.00,,1 month,30,1,,1928-12-08,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Katherine Seager Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2e6c33f9-87d4-4c5a-b5ee-9d023f87da1d/manifest,https://iiif.princeton.edu/loris/figgy_prod/db%2F89%2F4a%2Fdb894a1bfab446d8a5038c2c0876d247%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-11-30,1929-04-01,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Returned,122,,,https://shakespeareandco.princeton.edu/books/goethe-faust/,Faust,,"Goethe, Johann Wolfgang von",,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1928-12-01,,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/stephens-ladies/,Here Are Ladies,,"Stephens, James",1913,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/17%2Fc5%2F27%2F17c5279577094feb8c09e8e402cfb654%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1928-12-01,1929-01-01,https://shakespeareandco.princeton.edu/members/green-m-p/,Mrs. M. P. Green,"Green, Mrs. M. P.",25.00,50.00,1 month,31,1,,1928-12-01,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-12-01,1928-12-20,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/sabatini-hounds-god/,The Hounds of God,,"Sabatini, Rafael",1928,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/2a%2Fe1%2F20%2F2ae1204f192e4ecdb46cde153b2d8975%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1928-12-02,1928-12-02,https://shakespeareandco.princeton.edu/members/messick/,Catherine Messick,"Messick, Catherine",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-12-03,1928-12-07,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/french-revolution/,The French Revolution,,,,Unidentified. CΓ©cile de Montricher likely borrowed volumes 1 and 2 of Thomas Carlyle's *French Revolution* (1837).,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fd7%2F90%2Fcbd790e6c7ba4d4d8045abbe354ee697%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1928-12-03,1929-01-03,https://shakespeareandco.princeton.edu/members/rabache-2/,M. Rabache,"Rabache, M.",20.00,,1 month,31,1,AdL,1928-11-30,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-12-03,1928-12-18,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/trollope-barchester-towers/,Barchester Towers,,"Trollope, Anthony",1857,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/da%2Fc5%2F79%2Fdac5795476fe4af4858e68e98bddb555%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-12-03,1928-12-18,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/dell-moon-calf/,Moon-Calf,,"Dell, Floyd",1920,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/a6%2F8a%2F5b%2Fa68a5bf3d5a04efd8b4fbb7d8e63f1f0%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-12-03,1928-12-07,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/forster-life-charles-dickens/,The Life of Charles Dickens,,"Forster, John;Gissing, George Robert",1903,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fd7%2F90%2Fcbd790e6c7ba4d4d8045abbe354ee697%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1928-12-03,1928-12-03,https://shakespeareandco.princeton.edu/members/davies-6/,Mrs. G. Davies,"Davies, Mrs. G.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1928-12-03,1928-12-03,https://shakespeareandco.princeton.edu/members/michaud-s/,S. Michaud,"Michaud, S.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-12-03,1928-12-26,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/trollope-framley-parsonage/,Framley Parsonage,,"Trollope, Anthony",1861,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/da%2Fc5%2F79%2Fdac5795476fe4af4858e68e98bddb555%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1928-12-03,1928-12-03,https://shakespeareandco.princeton.edu/members/mercer-leigh/,Leigh Mercer,"Mercer, Leigh",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1928-12-03,1929-03-03,https://shakespeareandco.princeton.edu/members/ericson-david/,David Ericson,"Ericson, David",60.00,50.00,3 months,90,1,,1928-12-03,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-12-03,1928-12-22,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/kennedy-constant-nymph/,The Constant Nymph,,"Kennedy, Margaret",1924,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fd7%2F90%2Fcbd790e6c7ba4d4d8045abbe354ee697%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1928-12-04,1929-01-04,https://shakespeareandco.princeton.edu/members/nardal/,Paulette Nardal,"Nardal, Paulette",20.00,,1 month,31,1,Student,1928-12-04,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1928-12-04,1929-01-04,https://shakespeareandco.princeton.edu/members/dieterlin-germaine/,Germaine Dieterlin,"Dieterlin, Germaine",35.00,,1 month,31,2,,1928-12-04,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1928-12-04,1929-01-04,https://shakespeareandco.princeton.edu/members/churchies/,Marie Churchill,"Churchill, Marie",25.00,150.00,1 month,31,1,,1928-12-04,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-12-04,1928-12-14,https://shakespeareandco.princeton.edu/members/potocki-de-montalk/,Geoffrey Potocki de Montalk,"Potocki de Montalk, Geoffrey",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/hodgson-life-james-elroy/,The Life of James Elroy Flecker,,"Hodgson, Geraldine Emma",1925,,Lending Library Card,"Sylvia Beach, Geoffrey Potocki de Montalk Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3d3346d0-18e1-4066-8756-0990f97aac13/manifest,https://iiif.princeton.edu/loris/figgy_prod/78%2F9d%2Fbd%2F789dbdcd3ce8447ea3796376cd13cb51%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1928-12-05,1929-01-05,https://shakespeareandco.princeton.edu/members/kelsey-mary/,Mary Kelsey,"Kelsey, Mary",25.00,,1 month,31,1,,1928-12-03,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-12-05,1928-12-10,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/leacock-nonsense-novels/,Nonsense Novels,,"Leacock, Stephen",1920,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/41%2F2b%2Ffc%2F412bfcdf7f324e7e889b41a726832583%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1928-12-05,1929-01-05,https://shakespeareandco.princeton.edu/members/larking-4/,Mrs. Larking,"Larking, Mrs.",45.00,,1 month,31,3,,1928-12-03,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-12-05,1928-12-10,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/leacock-frenzied-fiction/,Frenzied Fiction,,"Leacock, Stephen",1917,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/41%2F2b%2Ffc%2F412bfcdf7f324e7e889b41a726832583%2Fintermediate_file/full/full/0/default.jpg
+Generic,1928-12-06,,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/goethe/,Goethe,,,,Unidentified. Dolly Wilde borrowed volumes 1 and 2 of an unspecified edition.,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/f8%2F16%2F70%2Ff8167044678547c6838e05ae70e5df35%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1928-12-06,1929-03-06,https://shakespeareandco.princeton.edu/members/luze/,Mlle M. de Luze,"de Luze, Mlle M.",60.00,50.00,3 months,90,1,,1928-12-06,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-12-06,1928-12-29,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/mccurdy-mind-leonardo-da/,The Mind of Leonardo da Vinci,,"McCurdy, Edward",1928,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/f8%2F16%2F70%2Ff8167044678547c6838e05ae70e5df35%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1928-12-06,1929-01-06,https://shakespeareandco.princeton.edu/members/levinson-2/,Levinson,Levinson,28.00,,1 month,31,2,,1928-11-14,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Generic,1928-12-06,,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/williams-voyage-pagany/,A Voyage to Pagany,,"Williams, William Carlos",1928,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/f8%2F16%2F70%2Ff8167044678547c6838e05ae70e5df35%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-12-06,1929-01-02,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,27,,,https://shakespeareandco.princeton.edu/books/lewisohn-stream-american-chronicle/,Up Stream: An American Chronicle,,"Lewisohn, Ludwig",1922,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/ee%2F79%2Fb9%2Fee79b9f1f5e64724a09ee5b343ebd05a%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1928-12-07,1929-06-07,https://shakespeareandco.princeton.edu/members/worthing-8/,Worthing,Worthing,150.00,,6 months,182,2,,1928-11-30,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-12-07,1928-12-17,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/wilder-bridge-san-luis/,The Bridge of San Luis Rey,,"Wilder, Thornton",1927,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e1%2F87%2Fe7%2Fe187e7d30ac7412b8aea97f907b2b078%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-12-08,1928-12-24,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/davies-shorter-lyrics-twentieth/,Shorter Lyrics of the Twentieth Century 1900 β 1922,,,1922,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/17%2Fc5%2F27%2F17c5279577094feb8c09e8e402cfb654%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1928-12-08,1929-01-08,https://shakespeareandco.princeton.edu/members/mcclintock-g/,G. McClintock,"McClintock, G.",25.00,30.00,1 month,31,1,,1928-12-08,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1928-12-08,1928-12-08,https://shakespeareandco.princeton.edu/members/smith-24/,Smith,Smith,,,,,,,,150.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1928-12-08,1929-01-08,https://shakespeareandco.princeton.edu/members/blanc/,George Blanc,"Blanc, George",25.00,50.00,1 month,31,1,,1928-12-08,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-12-08,1928-12-14,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/atherton-vengeful-gods-processional/,"The Vengeful Gods: A Processional Novel of the Fifth Century, B. C. (Concerning One Alcibiades)",,"Atherton, Gertrude Franklin Horn",1928,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/2a%2Fe1%2F20%2F2ae1204f192e4ecdb46cde153b2d8975%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-12-08,1928-12-24,https://shakespeareandco.princeton.edu/members/seager/,Katherine Seager,"Seager, Katherine",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/woolf-mrs-dalloway/,Mrs. Dalloway,,"Woolf, Virginia",1925,,Lending Library Card,"Sylvia Beach, Katherine Seager Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2e6c33f9-87d4-4c5a-b5ee-9d023f87da1d/manifest,https://iiif.princeton.edu/loris/figgy_prod/db%2F89%2F4a%2Fdb894a1bfab446d8a5038c2c0876d247%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-12-08,1928-12-24,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/forster-howards-end/,Howards End,,"Forster, E. M.",1910,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/17%2Fc5%2F27%2F17c5279577094feb8c09e8e402cfb654%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-12-10,1928-12-14,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/maugham-trembling-leaf-little/,The Trembling of a Leaf: Little Stories of the South Sea Islands,,"Maugham, W. Somerset",1921,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/41%2F2b%2Ffc%2F412bfcdf7f324e7e889b41a726832583%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1928-12-10,1929-03-10,https://shakespeareandco.princeton.edu/members/howard-5/,Miss [unclear] Howard,"Howard, Miss [unclear]",60.00,50.00,3 months,90,1,,1928-12-10,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1928-12-10,1929-03-10,https://shakespeareandco.princeton.edu/members/lincoln-brigham/,Mrs. Lincoln Brigham,"Brigham, Mrs. Lincoln",60.00,50.00,3 months,90,1,,1928-12-10,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-12-10,1928-12-15,https://shakespeareandco.princeton.edu/members/jackson-5/,Mrs. Jackson,"Jackson, Mrs.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/mackenzie-youths-encounter/,Youth's Encounter,,"Mackenzie, Compton",1913,,Lending Library Card,"Sylvia Beach, Mrs. Jackson Lending Library Card, Box 59, Folder 6, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ac6269e-f2f6-4df6-861c-40ac8f15296d/manifest,https://iiif-cloud.princeton.edu/iiif/2/58%2F37%2Fbd%2F5837bd0a8ae24868917fb859e2d727a5%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-12-10,1928-12-15,https://shakespeareandco.princeton.edu/members/jackson-5/,Mrs. Jackson,"Jackson, Mrs.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/wilder-bridge-san-luis/,The Bridge of San Luis Rey,,"Wilder, Thornton",1927,,Lending Library Card,"Sylvia Beach, Mrs. Jackson Lending Library Card, Box 59, Folder 6, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ac6269e-f2f6-4df6-861c-40ac8f15296d/manifest,https://iiif-cloud.princeton.edu/iiif/2/58%2F37%2Fbd%2F5837bd0a8ae24868917fb859e2d727a5%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-12-10,1928-12-15,https://shakespeareandco.princeton.edu/members/jackson-5/,Mrs. Jackson,"Jackson, Mrs.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/millin-coming-lord/,The Coming of the Lord,,"Millin, Sarah Gertrude",1928,,Lending Library Card,"Sylvia Beach, Mrs. Jackson Lending Library Card, Box 59, Folder 6, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ac6269e-f2f6-4df6-861c-40ac8f15296d/manifest,https://iiif-cloud.princeton.edu/iiif/2/58%2F37%2Fbd%2F5837bd0a8ae24868917fb859e2d727a5%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-12-10,1928-12-14,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/stephens-demi-gods/,The Demi-Gods,,"Stephens, James",1914,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/41%2F2b%2Ffc%2F412bfcdf7f324e7e889b41a726832583%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1928-12-10,1928-12-10,https://shakespeareandco.princeton.edu/members/roussel-2/,Roussel,Roussel,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-12-11,1928-12-15,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/streets/,Streets,,,,Unidentified. Possibly Archibald Macleish's [*Streets in the Moon*](https://shakespeareandco.princeton.edu/books/macleish-streets-moon/) (1926).,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2F00%2F2c%2Fcb002c24cc9a4d9c8fa834244db6afcc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1928-12-11,1929-01-11,https://shakespeareandco.princeton.edu/members/bourget-2/,Mme M. Bourget,"Bourget, Mme M.",25.00,50.00,1 month,31,1,,1928-12-11,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1928-12-11,1928-12-11,https://shakespeareandco.princeton.edu/members/keller-jeanette-h/,Jeanette H. Keller,"Keller, Jeanette H.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1928-12-11,1929-01-11,https://shakespeareandco.princeton.edu/members/morris-l-a/,L. A. Morris,"Morris, L. A.",25.00,50.00,1 month,31,1,,1928-12-11,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1928-12-12,1928-12-12,https://shakespeareandco.princeton.edu/members/boyle-2/,Catherine Boyle,"Boyle, Catherine",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-12-13,1928-12-14,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/gide-counterfeiters/,The Counterfeiters,,"Gide, AndrΓ©",1927,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/2a%2Fe1%2F20%2F2ae1204f192e4ecdb46cde153b2d8975%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1928-12-13,1928-12-20,https://shakespeareandco.princeton.edu/members/kranenburg-hoen/,Mme Kranenburg-Hoen,"Kranenburg-Hoen, Mme",8.75,,1 week,7,,,1928-12-13,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Supplement,1928-12-13,1929-02-19,https://shakespeareandco.princeton.edu/members/beach-3/,Dagmar Doneghy / Mrs. Joseph Warren Beach,"Doneghy, Dagmar",20.00,,"2 months, 6 days",68,2,,1928-12-13,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1928-12-13,1929-01-13,https://shakespeareandco.princeton.edu/members/mclean-7/,McLean,McLean,25.00,,1 month,31,1,,1928-12-13,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1928-12-13,1928-12-13,https://shakespeareandco.princeton.edu/members/kranenburg-hoen/,Mme Kranenburg-Hoen,"Kranenburg-Hoen, Mme",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1928-12-13,1928-12-13,https://shakespeareandco.princeton.edu/members/smith-24/,Smith,Smith,,,,,,,,150.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-12-14,1928-12-31,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/wharton-glimpses-moon/,The Glimpses of the Moon,,"Wharton, Edith",1922,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/41%2F2b%2Ffc%2F412bfcdf7f324e7e889b41a726832583%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-12-14,1928-12-17,https://shakespeareandco.princeton.edu/members/seager/,Katherine Seager,"Seager, Katherine",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/mann-magic-mountain/,The Magic Mountain,2 vols.,"Mann, Thomas",1927,,Lending Library Card,"Sylvia Beach, Katherine Seager Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2e6c33f9-87d4-4c5a-b5ee-9d023f87da1d/manifest,https://iiif.princeton.edu/loris/figgy_prod/db%2F89%2F4a%2Fdb894a1bfab446d8a5038c2c0876d247%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-12-14,1928-12-22,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/powys-rabelais-life/,"Rabelais, His Life",,"Powys, John Cowper",1913,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/2a%2Fe1%2F20%2F2ae1204f192e4ecdb46cde153b2d8975%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1928-12-14,1928-12-14,https://shakespeareandco.princeton.edu/members/harmer/,Mrs. Harmer,"Harmer, Mrs.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-12-14,1928-12-15,https://shakespeareandco.princeton.edu/members/potocki-de-montalk/,Geoffrey Potocki de Montalk,"Potocki de Montalk, Geoffrey",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/byron-don-juan/,Don Juan,,"Byron, George Gordon Byron",1824,"On April 1, 1926, John Murray borrowed volume 1 of an unknown edition.",Lending Library Card,"Sylvia Beach, Geoffrey Potocki de Montalk Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3d3346d0-18e1-4066-8756-0990f97aac13/manifest,https://iiif.princeton.edu/loris/figgy_prod/78%2F9d%2Fbd%2F789dbdcd3ce8447ea3796376cd13cb51%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-12-14,,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/clark-great-short-stories/,Great Short Stories of the World,,,1925,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/2a%2Fe1%2F20%2F2ae1204f192e4ecdb46cde153b2d8975%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-12-14,1928-12-31,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/woolf-voyage/,The Voyage Out,,"Woolf, Virginia",1915,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/41%2F2b%2Ffc%2F412bfcdf7f324e7e889b41a726832583%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-12-15,1928-12-17,https://shakespeareandco.princeton.edu/members/potocki-de-montalk/,Geoffrey Potocki de Montalk,"Potocki de Montalk, Geoffrey",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/turgenev-eve/,On the Eve,,"Turgenev, Ivan",1895,,Lending Library Card,"Sylvia Beach, Geoffrey Potocki de Montalk Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3d3346d0-18e1-4066-8756-0990f97aac13/manifest,https://iiif.princeton.edu/loris/figgy_prod/78%2F9d%2Fbd%2F789dbdcd3ce8447ea3796376cd13cb51%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1928-12-15,1928-12-15,https://shakespeareandco.princeton.edu/members/crowell/,W. Crowell,"Crowell, W.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-12-15,1928-12-29,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/saintsbury-works-henry-fielding/,The Works of Henry Fielding,,"Saintsbury, George",1928,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2F00%2F2c%2Fcb002c24cc9a4d9c8fa834244db6afcc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-12-15,1928-12-27,https://shakespeareandco.princeton.edu/members/jackson-5/,Mrs. Jackson,"Jackson, Mrs.",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/hemingway-men-without-women/,Men without Women,,"Hemingway, Ernest",1927,,Lending Library Card,"Sylvia Beach, Mrs. Jackson Lending Library Card, Box 59, Folder 6, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ac6269e-f2f6-4df6-861c-40ac8f15296d/manifest,https://iiif-cloud.princeton.edu/iiif/2/58%2F37%2Fbd%2F5837bd0a8ae24868917fb859e2d727a5%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-12-15,1929-03-14,https://shakespeareandco.princeton.edu/members/jackson-5/,Mrs. Jackson,"Jackson, Mrs.",,,,,,,,,Returned,89,,,https://shakespeareandco.princeton.edu/books/douglas-together/,Together,,"Douglas, Norman",1923,,Lending Library Card,"Sylvia Beach, Mrs. Jackson Lending Library Card, Box 59, Folder 6, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ac6269e-f2f6-4df6-861c-40ac8f15296d/manifest,https://iiif-cloud.princeton.edu/iiif/2/58%2F37%2Fbd%2F5837bd0a8ae24868917fb859e2d727a5%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-12-15,1928-12-27,https://shakespeareandco.princeton.edu/members/jackson-5/,Mrs. Jackson,"Jackson, Mrs.",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/henry-cabbages-kings/,Cabbages and Kings,,"Henry, O.",1904,,Lending Library Card,"Sylvia Beach, Mrs. Jackson Lending Library Card, Box 59, Folder 6, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ac6269e-f2f6-4df6-861c-40ac8f15296d/manifest,https://iiif-cloud.princeton.edu/iiif/2/58%2F37%2Fbd%2F5837bd0a8ae24868917fb859e2d727a5%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1928-12-16,1929-03-16,https://shakespeareandco.princeton.edu/members/jackson-5/,Mrs. Jackson,"Jackson, Mrs.",85.00,,3 months,90,2,,1929-03-14,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Mrs. Jackson Lending Library Card, Box 59, Folder 6, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/7ac6269e-f2f6-4df6-861c-40ac8f15296d/manifest,;https://iiif-cloud.princeton.edu/iiif/2/58%2F37%2Fbd%2F5837bd0a8ae24868917fb859e2d727a5%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-12-17,1928-12-26,https://shakespeareandco.princeton.edu/members/potocki-de-montalk/,Geoffrey Potocki de Montalk,"Potocki de Montalk, Geoffrey",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/dostoyevsky-brothers-karamazov/,The Brothers Karamazov,,"Dostoyevsky, Fyodor",1880,,Lending Library Card,"Sylvia Beach, Geoffrey Potocki de Montalk Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3d3346d0-18e1-4066-8756-0990f97aac13/manifest,https://iiif.princeton.edu/loris/figgy_prod/78%2F9d%2Fbd%2F789dbdcd3ce8447ea3796376cd13cb51%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1928-12-17,1928-12-17,https://shakespeareandco.princeton.edu/members/halford-pamela/,Pamela Halford,"Halford, Pamela",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-12-17,1928-12-29,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/wilder-cabala/,The Cabala,,"Wilder, Thornton",1926,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e1%2F87%2Fe7%2Fe187e7d30ac7412b8aea97f907b2b078%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-12-18,1928-12-20,https://shakespeareandco.princeton.edu/members/seager/,Katherine Seager,"Seager, Katherine",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/glaspell-glory-conquered-story/,The Glory of the Conquered: The Story of a Great Love,,"Glaspell, Susan",1909,,Lending Library Card,"Sylvia Beach, Katherine Seager Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2e6c33f9-87d4-4c5a-b5ee-9d023f87da1d/manifest,https://iiif.princeton.edu/loris/figgy_prod/db%2F89%2F4a%2Fdb894a1bfab446d8a5038c2c0876d247%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-12-18,1928-12-26,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/snell-kontrol/,Kontrol,,"Snell, Edmund",1928,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/a6%2F8a%2F5b%2Fa68a5bf3d5a04efd8b4fbb7d8e63f1f0%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-12-18,1928-12-26,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/adams-empty-bed/,The Empty Bed,,"Adams, Herbert",1928,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/a6%2F8a%2F5b%2Fa68a5bf3d5a04efd8b4fbb7d8e63f1f0%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-12-18,1928-12-20,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/lowndes-cressida-mystery/,Cressida: No Mystery,,"Lowndes, Marie Belloc",1928,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/a6%2F8a%2F5b%2Fa68a5bf3d5a04efd8b4fbb7d8e63f1f0%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-12-19,1928-12-29,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/stern-thunderstorm/,Thunderstorm,,"Stern, G. B.",1925,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a9%2F11%2Fd5%2Fa911d51c78fb461396e48d152363a39d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1928-12-19,1929-01-19,https://shakespeareandco.princeton.edu/members/evans-6/,Evans,Evans,28.00,,1 month,31,2,AdL,1928-11-19,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-12-20,1928-12-26,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/stern-jack-amanory/,Jack A'Manory,,"Stern, G. B.",1927,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/a6%2F8a%2F5b%2Fa68a5bf3d5a04efd8b4fbb7d8e63f1f0%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1928-12-20,1929-01-20,https://shakespeareandco.princeton.edu/members/johnson-g-f/,G. F. A[unclear] Johnson,"Johnson, G. F. A[unclear]",25.00,,1 month,31,1,,1928-12-17,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1928-12-20,1929-01-20,https://shakespeareandco.princeton.edu/members/johnston-m-j/,Mrs. M. J. Johnston,"Johnston, Mrs. M. J.",25.00,50.00,1 month,31,1,,1928-12-20,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Crossed out,1928-12-20,,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/maeterlinck-light-beyond/,The Light Beyond,,"Maeterlinck, Maurice",1916,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/a6%2F8a%2F5b%2Fa68a5bf3d5a04efd8b4fbb7d8e63f1f0%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-12-20,1928-12-22,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/johnson-general-history-robberies/,A General History of the Robberies and Murders of the Most Notorious Pirates,,"Johnson, Captain Charles",1926,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/2a%2Fe1%2F20%2F2ae1204f192e4ecdb46cde153b2d8975%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-12-20,1928-12-26,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/coppard-clorinda-walks-heaven/,Clorinda Walks in Heaven,,"Coppard, A. E.",1922,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/a6%2F8a%2F5b%2Fa68a5bf3d5a04efd8b4fbb7d8e63f1f0%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-12-20,1928-12-26,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/coppard-adam-eve-pinch/,Adam and Eve and Pinch Me,,"Coppard, A. E.",1921,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/a6%2F8a%2F5b%2Fa68a5bf3d5a04efd8b4fbb7d8e63f1f0%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-12-20,1928-12-26,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/walpole-golden-scarecrow/,The Golden Scarecrow,,"Walpole, Hugh",1915,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/a6%2F8a%2F5b%2Fa68a5bf3d5a04efd8b4fbb7d8e63f1f0%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1928-12-22,1929-01-22,https://shakespeareandco.princeton.edu/members/meyer-f/,F. Meyer,"Meyer, F.",25.00,50.00,1 month,31,1,,1928-12-22,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-12-22,,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/zola-rome-three-cities/,Rome (Three Cities Trilogy),,"Zola, Γmile",1896,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/2a%2Fe1%2F20%2F2ae1204f192e4ecdb46cde153b2d8975%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1928-12-22,1928-12-27,https://shakespeareandco.princeton.edu/members/aldington-richard/,Richard Aldington,"Aldington, Richard",,,5 days,5,,,1928-12-22,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-12-22,1928-12-24,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/stacpoole-blue-lagoon/,The Blue Lagoon,,"Stacpoole, Henry de Vere",1908,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/2a%2Fe1%2F20%2F2ae1204f192e4ecdb46cde153b2d8975%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1928-12-22,1929-01-05,https://shakespeareandco.princeton.edu/members/henkin/,Mlle Henkin,"Henkin, Mlle",10.00,,2 weeks,14,1,Student,1928-12-22,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-12-22,1929-01-12,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/dreiser-american-tragedy/,An American Tragedy,,"Dreiser, Theodore",1925,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fd7%2F90%2Fcbd790e6c7ba4d4d8045abbe354ee697%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1928-12-22,1928-12-22,https://shakespeareandco.princeton.edu/members/bayle-k/,K. Bayle,"Bayle, K.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-12-24,1929-01-05,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/lawrence-ladybird/,The Ladybird,,"Lawrence, D. H.",1923,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/17%2Fc5%2F27%2F17c5279577094feb8c09e8e402cfb654%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-12-24,1929-01-05,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/forster-angels-fear-tread/,Where Angels Fear to Tread,,"Forster, E. M.",1905,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/17%2Fc5%2F27%2F17c5279577094feb8c09e8e402cfb654%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-12-24,,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/roberts-salt-sea/,Salt of the Sea,,"Roberts, Morley",1913,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/2a%2Fe1%2F20%2F2ae1204f192e4ecdb46cde153b2d8975%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-12-24,1929-01-12,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/poole-harbor/,The Harbor,,"Poole, Ernest",1928,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/2a%2Fe1%2F20%2F2ae1204f192e4ecdb46cde153b2d8975%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1928-12-26,1928-12-26,https://shakespeareandco.princeton.edu/members/gatchel/,Mrs. F. Gatchel,"Gatchel, Mrs. F.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1928-12-26,1929-03-26,https://shakespeareandco.princeton.edu/members/dilimier/,Simone Dalimier,"Dalimier, Simone",68.00,100.00,3 months,90,2,Student,1928-12-26,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-12-26,1929-01-02,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/sadleir-trollope-commentary/,Trollope: A Commentary,,"Sadleir, Michael",1927,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/da%2Fc5%2F79%2Fdac5795476fe4af4858e68e98bddb555%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-12-26,1929-01-02,https://shakespeareandco.princeton.edu/members/potocki-de-montalk/,Geoffrey Potocki de Montalk,"Potocki de Montalk, Geoffrey",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/hardy-tess-durbervilles/,Tess of the d'Urbervilles,,"Hardy, Thomas",1891,,Lending Library Card,"Sylvia Beach, Geoffrey Potocki de Montalk Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3d3346d0-18e1-4066-8756-0990f97aac13/manifest,https://iiif.princeton.edu/loris/figgy_prod/78%2F9d%2Fbd%2F789dbdcd3ce8447ea3796376cd13cb51%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1928-12-27,1929-12-27,https://shakespeareandco.princeton.edu/members/frieseke-sarah/,Sarah Anne Frieseke,"Frieseke, Sarah Anne",250.00,,1 year,365,2,,1928-12-27,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-12-27,1929-04-14,https://shakespeareandco.princeton.edu/members/jackson-5/,Mrs. Jackson,"Jackson, Mrs.",,,,,,,,,Returned,108,,,https://shakespeareandco.princeton.edu/books/nursery-rhymes/,Nursery Rhymes,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Mrs. Jackson Lending Library Card, Box 59, Folder 6, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ac6269e-f2f6-4df6-861c-40ac8f15296d/manifest,https://iiif-cloud.princeton.edu/iiif/2/58%2F37%2Fbd%2F5837bd0a8ae24868917fb859e2d727a5%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-12-27,1929-03-14,https://shakespeareandco.princeton.edu/members/jackson-5/,Mrs. Jackson,"Jackson, Mrs.",,,,,,,,,Returned,77,,,https://shakespeareandco.princeton.edu/books/bell-safar-nameh-persian/,"Safar Nameh, Persian Pictures: A Book of Travel",,"Bell, Gertrude Lowthian",1928,,Lending Library Card,"Sylvia Beach, Mrs. Jackson Lending Library Card, Box 59, Folder 6, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ac6269e-f2f6-4df6-861c-40ac8f15296d/manifest,https://iiif-cloud.princeton.edu/iiif/2/58%2F37%2Fbd%2F5837bd0a8ae24868917fb859e2d727a5%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-12-27,1929-03-14,https://shakespeareandco.princeton.edu/members/jackson-5/,Mrs. Jackson,"Jackson, Mrs.",,,,,,,,,Returned,77,,,https://shakespeareandco.princeton.edu/books/mann-children-fools/,Children and Fools,,"Mann, Thomas",1928,,Lending Library Card,"Sylvia Beach, Mrs. Jackson Lending Library Card, Box 59, Folder 6, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ac6269e-f2f6-4df6-861c-40ac8f15296d/manifest,https://iiif-cloud.princeton.edu/iiif/2/58%2F37%2Fbd%2F5837bd0a8ae24868917fb859e2d727a5%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-12-27,1929-03-14,https://shakespeareandco.princeton.edu/members/jackson-5/,Mrs. Jackson,"Jackson, Mrs.",,,,,,,,,Returned,77,,,https://shakespeareandco.princeton.edu/books/proust-guermantes-way/,The Guermantes Way (Γ la recherche du temps perdu 3),Vol. 1,"Proust, Marcel",1925,,Lending Library Card,"Sylvia Beach, Mrs. Jackson Lending Library Card, Box 59, Folder 6, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ac6269e-f2f6-4df6-861c-40ac8f15296d/manifest,https://iiif-cloud.princeton.edu/iiif/2/58%2F37%2Fbd%2F5837bd0a8ae24868917fb859e2d727a5%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-12-28,1928-12-29,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/sayers-lord-peter-views/,Lord Peter Views the Body,,"Sayers, Dorothy L.",1928,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/a6%2F8a%2F5b%2Fa68a5bf3d5a04efd8b4fbb7d8e63f1f0%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-12-28,1928-12-29,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/lowndes-bread-deceit/,The Bread of Deceit,,"Lowndes, Marie Belloc",1925,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/a6%2F8a%2F5b%2Fa68a5bf3d5a04efd8b4fbb7d8e63f1f0%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1928-12-28,1928-12-28,https://shakespeareandco.princeton.edu/members/morris-l-a/,L. A. Morris,"Morris, L. A.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1928-12-29,1929-01-10,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/benson-worlds-within-worlds/,Worlds within Worlds,,"Benson, Stella",1928,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/f8%2F16%2F70%2Ff8167044678547c6838e05ae70e5df35%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-12-29,1929-01-10,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/goethe/,Goethe,Vol. 1,,,Unidentified. Dolly Wilde borrowed volumes 1 and 2 of an unspecified edition.,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/f8%2F16%2F70%2Ff8167044678547c6838e05ae70e5df35%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-12-29,1929-01-10,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/montpensier-memoirs-grande-mademoiselle/,"Memoirs of la Grande Mademoiselle, Duchesse de Montpensier, 1627 β 1693",,"Montpensier, Anne-Marie-Louise-Henriette d'OrlΓ©ans",1928,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/f8%2F16%2F70%2Ff8167044678547c6838e05ae70e5df35%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-12-29,1929-01-10,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/connington-case-nine-solutions/,The Case with Nine Solutions,,"Connington, J. J.",1928,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/a6%2F8a%2F5b%2Fa68a5bf3d5a04efd8b4fbb7d8e63f1f0%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-12-29,1929-01-12,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/frank-chalk-face/,Chalk Face,,"Frank, Waldo",1924,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2F00%2F2c%2Fcb002c24cc9a4d9c8fa834244db6afcc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-12-29,,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/macaulay-keeping-appearances/,Keeping Up Appearances,,"Macaulay, Rose",1928,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a9%2F11%2Fd5%2Fa911d51c78fb461396e48d152363a39d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-12-29,1928-12-31,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/parrish-kneeling/,All Kneeling,,"Parrish, Anne",1928,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e1%2F87%2Fe7%2Fe187e7d30ac7412b8aea97f907b2b078%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-12-29,1929-01-10,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/drinkwater-charles-james-fox/,Charles James Fox,,"Drinkwater, John",1928,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/f8%2F16%2F70%2Ff8167044678547c6838e05ae70e5df35%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1928-12-30,1928-12-30,https://shakespeareandco.princeton.edu/members/johnson-joy/,Joy Johnson,"Johnson, Joy",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1928-12-31,1929-01-02,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/hall-well-loneliness/,The Well of Loneliness,,"Hall, Radclyffe",1926,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/e2%2F8f%2F47%2Fe28f47a0edc74234a7fe62de67b2461a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-12-31,1929-01-25,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,25,,,https://shakespeareandco.princeton.edu/books/stephens-charwomans-daughter/,The Charwoman's Daughter,,"Stephens, James",1912,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/e2%2F8f%2F47%2Fe28f47a0edc74234a7fe62de67b2461a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-12-31,1929-01-10,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/sitwell-bombardment/,Before the Bombardment,,"Sitwell, Osbert",1926,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e1%2F87%2Fe7%2Fe187e7d30ac7412b8aea97f907b2b078%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1928-12-31,1929-01-09,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/gogol-overcoat-stories/,The Overcoat and Other Stories,,"Gogol, Nikolai",1923,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/12%2Fc0%2F9a%2F12c09a547466442eb8070b17b3423a31%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1928-12-31,1929-01-09,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/morand-closed-night/,Closed All Night,,"Morand, Paul",1924,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/12%2Fc0%2F9a%2F12c09a547466442eb8070b17b3423a31%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1929-01-01,1929-02-01,https://shakespeareandco.princeton.edu/members/green-m-p/,Mrs. M. P. Green,"Green, Mrs. M. P.",25.00,,1 month,31,1,,1928-12-31,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1929-01-02,1929-07-02,https://shakespeareandco.princeton.edu/members/goldet-2/,Goldet,Goldet,150.00,,6 months,181,2,,1929-01-02,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-01-02,1929-01-21,https://shakespeareandco.princeton.edu/members/potocki-de-montalk/,Geoffrey Potocki de Montalk,"Potocki de Montalk, Geoffrey",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/galsworthy-forsyte-saga/,The Forsyte Saga,,"Galsworthy, John",1922,,Lending Library Card,"Sylvia Beach, Geoffrey Potocki de Montalk Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3d3346d0-18e1-4066-8756-0990f97aac13/manifest,https://iiif.princeton.edu/loris/figgy_prod/78%2F9d%2Fbd%2F789dbdcd3ce8447ea3796376cd13cb51%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-01-02,1929-01-14,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/wilder-cabala/,The Cabala,,"Wilder, Thornton",1926,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/e2%2F8f%2F47%2Fe28f47a0edc74234a7fe62de67b2461a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-01-02,1929-01-16,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/trollope-golden-lion-grandpere/,The Golden Lion of Grandpere,,"Trollope, Anthony",1872,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/da%2Fc5%2F79%2Fdac5795476fe4af4858e68e98bddb555%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1929-01-02,1929-01-02,https://shakespeareandco.princeton.edu/members/tracy-e/,E. Tracy,"Tracy, E.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1929-01-02,1929-01-02,https://shakespeareandco.princeton.edu/members/kuntz-1/,Mrs. Charles Kuntz,"Kuntz, Mrs. Charles",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-01-02,1929-02-08,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,37,,,https://shakespeareandco.princeton.edu/books/roberts-heart-flesh-novel/,My Heart and My Flesh: A Novel,,"Roberts, Elizabeth Madox",1927,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/ee%2F79%2Fb9%2Fee79b9f1f5e64724a09ee5b343ebd05a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-01-02,1929-01-16,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/trollope-autobiography/,An Autobiography,,"Trollope, Anthony",1883,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/da%2Fc5%2F79%2Fdac5795476fe4af4858e68e98bddb555%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-01-02,1929-01-11,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/macaulay-orphan-island/,Orphan Island,,"Macaulay, Rose",1924,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a9%2F11%2Fd5%2Fa911d51c78fb461396e48d152363a39d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1929-01-03,1929-01-03,https://shakespeareandco.princeton.edu/members/churchies/,Marie Churchill,"Churchill, Marie",,,,,,,,150.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1929-01-03,1929-02-03,https://shakespeareandco.princeton.edu/members/forwood/,Mme K. Forwood,"Forwood, Mme K.",20.00,,1 month,31,1,Professor / Teacher,1928-12-28,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1929-01-04,1929-02-04,https://shakespeareandco.princeton.edu/members/church-7/,Mrs. Church,"Church, Mrs.",25.00,,1 month,31,1,,1929-01-04,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1929-01-05,1929-01-05,https://shakespeareandco.princeton.edu/members/davies-6/,Mrs. G. Davies,"Davies, Mrs. G.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1929-01-05,1929-02-05,https://shakespeareandco.princeton.edu/members/edwards-7/,Mrs. W. Edwards,"Edwards, Mrs. W.",20.00,50.00,1 month,31,1,,1929-01-05,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-01-05,1929-01-12,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/yeats-reveries-childhood-youth/,Reveries over Childhood and Youth,,"Yeats, William Butler",1915,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/17%2Fc5%2F27%2F17c5279577094feb8c09e8e402cfb654%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1929-01-05,1929-02-05,https://shakespeareandco.princeton.edu/members/stone-2/,Stone,Stone,,50.00,1 month,31,1,,1929-01-05,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1929-01-05,1929-02-05,https://shakespeareandco.princeton.edu/members/kelsey-mary/,Mary Kelsey,"Kelsey, Mary",25.00,,1 month,31,1,,1929-01-04,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1929-01-05,1929-02-05,https://shakespeareandco.princeton.edu/members/larking-4/,Mrs. Larking,"Larking, Mrs.",45.00,,1 month,31,3,,1929-01-02,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-01-05,1929-01-12,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/forster-pharos-pharillon/,Pharos and Pharillon,,"Forster, E. M.",1923,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/17%2Fc5%2F27%2F17c5279577094feb8c09e8e402cfb654%2Fintermediate_file/full/full/0/default.jpg
+Crossed out,1929-01-05,,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/spurgeon-keatss-shakespeare-descriptive/,Keats's Shakespeare: A Descriptive Study Based on New Material,,"Spurgeon, Caroline F. E.",1929,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/17%2Fc5%2F27%2F17c5279577094feb8c09e8e402cfb654%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1929-01-06,1929-02-06,https://shakespeareandco.princeton.edu/members/levinson-2/,Levinson,Levinson,28.00,,1 month,31,2,,1928-12-12,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-01-07,1929-05-18,https://shakespeareandco.princeton.edu/members/dullin/,Charles Dullin,"Dullin, Charles",,,,,,,,,Returned,131,,,https://shakespeareandco.princeton.edu/books/beaumont-beaumont-fletcher/,Beaumont and Fletcher,,"Beaumont, Francis;Fletcher, John",,"Richard Le Gallienne, Charles Dullin, Catherine Yarrow, and Jeanine (Delpech) Teissier borrowed the 2 volume Mermaid Series edition. Mme Mazon and Mme France Raphael borrowed either the Mermaid or Everyman's Library edition.",Lending Library Card,"Sylvia Beach, Dullin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/83e169a1-36bd-4fa4-83c8-2da8e0e40af8/manifest,https://iiif.princeton.edu/loris/figgy_prod/a0%2F35%2F29%2Fa03529506a954ae39e0c2ae8164107f9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1929-01-07,1929-01-07,https://shakespeareandco.princeton.edu/members/meyer-f/,F. Meyer,"Meyer, F.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1929-01-07,1929-01-07,https://shakespeareandco.princeton.edu/members/ericson-david/,David Ericson,"Ericson, David",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1929-01-07,,https://shakespeareandco.princeton.edu/members/dullin/,Charles Dullin,"Dullin, Charles",,,,,,,1929-01-07,,,,,FRF,,,,,,,Lending Library Card;Address Book,"Sylvia Beach, Dullin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/83e169a1-36bd-4fa4-83c8-2da8e0e40af8/manifest;,https://iiif.princeton.edu/loris/figgy_prod/a0%2F35%2F29%2Fa03529506a954ae39e0c2ae8164107f9%2Fintermediate_file.jp2/full/full/0/default.jpg;
+Renewal,1929-01-08,1929-04-08,https://shakespeareandco.princeton.edu/members/pennant-3/,Pennant,Pennant,85.00,,3 months,90,2,,1928-12-27,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1929-01-08,1929-04-08,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",48.00,,3 months,90,1,,1929-01-12,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,;https://iiif.princeton.edu/loris/figgy_prod/cb%2Fd7%2F90%2Fcbd790e6c7ba4d4d8045abbe354ee697%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1929-01-08,1929-04-08,https://shakespeareandco.princeton.edu/members/hauson/,Hauson,Hauson,85.00,,3 months,90,2,,1929-01-08,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1929-01-08,1929-02-08,https://shakespeareandco.princeton.edu/members/adam-4/,J. Adam,"Adam, J.",28.00,100.00,1 month,31,2,Student,1929-01-08,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1929-01-09,1929-01-09,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1929-01-09,1929-02-09,https://shakespeareandco.princeton.edu/members/rabache-2/,M. Rabache,"Rabache, M.",20.00,,1 month,31,1,,1929-01-09,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1929-01-09,1929-02-09,https://shakespeareandco.princeton.edu/members/cook-r-l/,R. L. Cook,"Cook, R. L.",20.00,50.00,1 month,31,1,Student,1929-01-09,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-01-10,1929-01-11,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/catherine-the-great-correspondence-catherine-great/,"Correspondence of Catherine the Great when Grand-Duchess, with Sir Charles Hanbury-Williams, and Letters from Count Poniatowski",,Catherine the Great,1928,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/f8%2F16%2F70%2Ff8167044678547c6838e05ae70e5df35%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1929-01-10,1929-04-10,https://shakespeareandco.princeton.edu/members/speaight-r-l/,R. L. Speaight,"Speaight, R. L.",60.00,50.00,3 months,90,1,,1929-01-10,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, R.L. Speaight Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/c177755e-5b2b-40f4-9a9a-3f27b0f39076/manifest,;https://iiif.princeton.edu/loris/figgy_prod/4a%2F6c%2F5d%2F4a6c5ddea7de415e81ca31a5dfdf001d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1929-01-10,1929-04-10,https://shakespeareandco.princeton.edu/members/ludlow-brown/,Miss Ludlow Brown,"Ludlow Brown, Miss",60.00,,3 months,90,1,,1929-01-10,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-01-10,1929-01-14,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/biron-memoirs-duc-lauzun/,Memoirs of the Duc de Lauzun,,"Biron, Armand Louis de Gontaut",1928,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/f8%2F16%2F70%2Ff8167044678547c6838e05ae70e5df35%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-01-10,1929-01-15,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/werner-brigham-young/,Brigham Young,,"Werner, M. R.",1925,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e1%2F87%2Fe7%2Fe187e7d30ac7412b8aea97f907b2b078%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-01-10,1929-01-18,https://shakespeareandco.princeton.edu/members/speaight-r-l/,R. L. Speaight,"Speaight, R. L.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/wilder-bridge-san-luis/,The Bridge of San Luis Rey,,"Wilder, Thornton",1927,,Lending Library Card,"Sylvia Beach, R.L. Speaight Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c177755e-5b2b-40f4-9a9a-3f27b0f39076/manifest,https://iiif.princeton.edu/loris/figgy_prod/4a%2F6c%2F5d%2F4a6c5ddea7de415e81ca31a5dfdf001d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-01-10,1929-01-10,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/aiken-costumes-eros/,Costumes by Eros,,"Aiken, Conrad",1928,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/a6%2F8a%2F5b%2Fa68a5bf3d5a04efd8b4fbb7d8e63f1f0%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-01-10,1929-01-11,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/beerbohm-dreadful-dragon-hay/,The Dreadful Dragon of Hay Hill,,"Beerbohm, Max",1928,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/f8%2F16%2F70%2Ff8167044678547c6838e05ae70e5df35%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1929-01-11,1929-01-11,https://shakespeareandco.princeton.edu/members/henkin/,Mlle Henkin,"Henkin, Mlle",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-01-11,1929-01-12,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/ford-little-less-gods/,A Little Less than Gods,,"Ford, Ford Madox",1928,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/f8%2F16%2F70%2Ff8167044678547c6838e05ae70e5df35%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-01-11,1929-01-14,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/eliot-lancelot-andrewes-essays/,For Lancelot Andrewes: Essays on Style and Order,,"Eliot, T. S.",1928,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/f8%2F16%2F70%2Ff8167044678547c6838e05ae70e5df35%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-01-11,1929-01-21,https://shakespeareandco.princeton.edu/members/seager/,Katherine Seager,"Seager, Katherine",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/renaissance-2/,The Renaissance,,,,Unidentified. Likely Walter Pater's *The Renaissance: Studies of Art and Poetry* (1873).,Lending Library Card,"Sylvia Beach, Katherine Seager Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2e6c33f9-87d4-4c5a-b5ee-9d023f87da1d/manifest,https://iiif.princeton.edu/loris/figgy_prod/db%2F89%2F4a%2Fdb894a1bfab446d8a5038c2c0876d247%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1929-01-11,1929-02-11,https://shakespeareandco.princeton.edu/members/seager/,Katherine Seager,"Seager, Katherine",25.00,,1 month,31,1,,1929-01-11,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Katherine Seager Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/2e6c33f9-87d4-4c5a-b5ee-9d023f87da1d/manifest,;https://iiif.princeton.edu/loris/figgy_prod/db%2F89%2F4a%2Fdb894a1bfab446d8a5038c2c0876d247%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1929-01-11,1929-01-11,https://shakespeareandco.princeton.edu/members/kahn-l/,Mrs. L. Kahn,"Kahn, Mrs. L.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1929-01-11,1929-01-11,https://shakespeareandco.princeton.edu/members/gary/,J. Gary,"Gary, J.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1929-01-11,1929-01-11,https://shakespeareandco.princeton.edu/members/partridge/,Mrs. Partridge,"Partridge, Mrs.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-01-11,1929-01-22,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/mckay-home-harlem/,Home to Harlem,,"McKay, Claude",1928,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a9%2F11%2Fd5%2Fa911d51c78fb461396e48d152363a39d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-01-11,1929-01-22,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/macaulay-told-idiot/,Told by an Idiot,,"Macaulay, Rose",1923,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a9%2F11%2Fd5%2Fa911d51c78fb461396e48d152363a39d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-01-11,1929-01-25,https://shakespeareandco.princeton.edu/members/linossier-raymonde/,Raymonde Linossier,"Linossier, Raymonde",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/peacock-crotchet-castle/,Crotchet Castle,,"Peacock, Thomas Love",1831,,Lending Library Card,"Sylvia Beach, Raymonde Linossier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/53ede5bf-939d-44f5-9ddb-4dd39363bd20/manifest,https://iiif.princeton.edu/loris/figgy_prod/41%2Fcb%2F6b%2F41cb6b39c8604ec88fecdca454971646%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-01-11,1929-01-14,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/smith-beginning-origin-civilization/,In the Beginning: The Origin of Civilization,,"Smith, Grafton Elliot",1928,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/af%2Fcd%2F4b%2Fafcd4b7698644be4ad8edf82445910ee%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1929-01-12,1929-02-12,https://shakespeareandco.princeton.edu/members/potter-3/,Miss Potter,"Potter, Miss",25.00,50.00,1 month,31,1,,1929-01-12,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-01-12,1929-02-18,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,37,,,https://shakespeareandco.princeton.edu/books/joyce-dubliners/,Dubliners,,"Joyce, James",1914,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2F00%2F2c%2Fcb002c24cc9a4d9c8fa834244db6afcc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1929-01-12,1929-04-12,https://shakespeareandco.princeton.edu/members/love-helen/,Helen Love,"Love, Helen",85.00,100.00,3 months,90,2,,1929-01-12,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-01-12,1929-02-09,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,28,,,https://shakespeareandco.princeton.edu/books/lawrence-collected-poems-h/,The Collected Poems of D. H. Lawrence,,"Lawrence, D. H.",1928,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/17%2Fc5%2F27%2F17c5279577094feb8c09e8e402cfb654%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-01-12,1929-01-24,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/williams-voyage-pagany/,A Voyage to Pagany,,"Williams, William Carlos",1928,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/f8%2F16%2F70%2Ff8167044678547c6838e05ae70e5df35%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-01-12,1929-01-15,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/doyle-mystery-cloomber/,The Mystery of Cloomber,,"Doyle, Arthur Conan",1889,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/2a%2Fe1%2F20%2F2ae1204f192e4ecdb46cde153b2d8975%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-01-12,1929-01-15,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/odonnell-confessions-ghost-hunter/,The Confessions of a Ghost Hunter,,"O'Donnell, Elliot",1928,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/2a%2Fe1%2F20%2F2ae1204f192e4ecdb46cde153b2d8975%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-01-12,1929-01-14,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/gogol-mirgorod/,Mirgorod,,"Gogol, Nikolai",1928,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/f8%2F16%2F70%2Ff8167044678547c6838e05ae70e5df35%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-01-12,1929-01-23,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/frazier-golden-bough-study/,The Golden Bough: A Study in Comparative Religion,,"Frazer, James George",1890,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fd7%2F90%2Fcbd790e6c7ba4d4d8045abbe354ee697%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-01-14,1929-01-19,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/warre-cornish-jane-austen/,Jane Austen,,"Warre Cornish, Francis",1914,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/f8%2F16%2F70%2Ff8167044678547c6838e05ae70e5df35%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-01-14,1929-01-19,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/murasaki-shikibu-wreath-cloud/,A Wreath of Cloud (The Tale of Genji 3),,Murasaki Shikibu,1927,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/f8%2F16%2F70%2Ff8167044678547c6838e05ae70e5df35%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-01-14,1929-01-19,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/austen-letters-jane-austen/,Letters of Jane Austen,,"Austen, Jane",1884,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/f8%2F16%2F70%2Ff8167044678547c6838e05ae70e5df35%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-01-14,1929-01-19,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/louis-bromfield-strange-case-miss/,The Strange Case of Miss Annie Spragg,,"Bromfield, Louis",1928,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/f8%2F16%2F70%2Ff8167044678547c6838e05ae70e5df35%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1929-01-14,1929-04-14,https://shakespeareandco.princeton.edu/members/landin-e/,E. Landin,"Landin, E.",85.00,100.00,3 months,90,2,,1929-01-14,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-01-14,1929-03-13,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,58,,,https://shakespeareandco.princeton.edu/books/pater-greek-studies-series/,Greek Studies: A Series of Essays,,"Pater, Walter",1895,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/af%2Fcd%2F4b%2Fafcd4b7698644be4ad8edf82445910ee%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-01-15,1929-02-02,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/marryat-peter-simple/,Peter Simple,,"Marryat, Frederick",1834,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/2a%2Fe1%2F20%2F2ae1204f192e4ecdb46cde153b2d8975%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-01-15,1929-01-29,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/collins-vanity-sun/,Vanity under the Sun,,"Collins, Dale",1928,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e1%2F87%2Fe7%2Fe187e7d30ac7412b8aea97f907b2b078%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-01-15,1929-01-23,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/sitwell-bombardment/,Before the Bombardment,,"Sitwell, Osbert",1926,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/e2%2F8f%2F47%2Fe28f47a0edc74234a7fe62de67b2461a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-01-15,1929-01-16,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/mansfield-letters-katherine-mansfield/,The Letters of Katherine Mansfield,2 vols.,"Mansfield, Katherine",1928,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/e2%2F8f%2F47%2Fe28f47a0edc74234a7fe62de67b2461a%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1929-01-15,1929-01-15,https://shakespeareandco.princeton.edu/members/bruning-h/,H. Bruning,"Bruning, H.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1929-01-15,1929-01-15,https://shakespeareandco.princeton.edu/members/ulsh/,Doretha Ulsh Cowen / Miss D. Ulsh,"Ulsh, Doretha",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Doretha Ulsh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/aefa6047-8ed3-4e6a-8593-1c23bb4fb165/manifest,;https://iiif.princeton.edu/loris/figgy_prod/45%2F6b%2F73%2F456b736550a340198c9214e122dc23af%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1929-01-15,1929-04-15,https://shakespeareandco.princeton.edu/members/carr-3/,Helen Carr,"Carr, Helen",60.00,40.00,3 months,90,1,,1929-01-15,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-01-16,1929-01-29,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/trollope-orley-farm/,Orley Farm,Vol. 1,"Trollope, Anthony",1862,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/da%2Fc5%2F79%2Fdac5795476fe4af4858e68e98bddb555%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1929-01-16,1929-01-16,https://shakespeareandco.princeton.edu/members/adam-4/,J. Adam,"Adam, J.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1929-01-16,1929-01-16,https://shakespeareandco.princeton.edu/members/cook-r-l/,R. L. Cook,"Cook, R. L.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1929-01-16,1929-02-16,https://shakespeareandco.princeton.edu/members/fadden-mabel/,Mabel Fadden,"Fadden, Mabel",25.00,50.00,1 month,31,1,,1929-01-16,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1929-01-16,1929-02-16,https://shakespeareandco.princeton.edu/members/loomis-payson/,Payson Walker Loomis,"Loomis, Payson",35.00,100.00,1 month,31,2,,1929-01-16,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1929-01-16,1929-01-16,https://shakespeareandco.princeton.edu/members/cowles-edith/,Edith Cowles,"Cowles, Edith",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-01-16,1929-01-23,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/ford-little-less-gods/,A Little Less than Gods,,"Ford, Ford Madox",1928,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/e2%2F8f%2F47%2Fe28f47a0edc74234a7fe62de67b2461a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-01-16,1929-01-22,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/trollope-orley-farm/,Orley Farm,"Vol. 1, Vol. 2","Trollope, Anthony",1862,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/da%2Fc5%2F79%2Fdac5795476fe4af4858e68e98bddb555%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-01-16,1929-02-07,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/butts-armed-madness/,Armed with Madness,,"Butts, Mary",1928,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/e2%2F8f%2F47%2Fe28f47a0edc74234a7fe62de67b2461a%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1929-01-17,1929-07-17,https://shakespeareandco.princeton.edu/members/goldet-2/,Goldet,Goldet,150.00,,6 months,181,2,,1926-10-12,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1929-01-18,1929-07-18,https://shakespeareandco.princeton.edu/members/little-k/,Mrs. K. Little,"Little, Mrs. K.",35.00,100.00,6 months,181,2,,1929-01-18,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-01-18,1929-01-31,https://shakespeareandco.princeton.edu/members/speaight-r-l/,R. L. Speaight,"Speaight, R. L.",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/zweig-case-sergeant-grischa/,The Case of Sergeant Grischa,,"Zweig, Arnold",1928,,Lending Library Card,"Sylvia Beach, R.L. Speaight Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c177755e-5b2b-40f4-9a9a-3f27b0f39076/manifest,https://iiif.princeton.edu/loris/figgy_prod/4a%2F6c%2F5d%2F4a6c5ddea7de415e81ca31a5dfdf001d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1929-01-19,1929-01-19,https://shakespeareandco.princeton.edu/members/bourget-2/,Mme M. Bourget,"Bourget, Mme M.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-01-19,1929-01-31,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/sayers-great-short-stories/,"Great Short Stories of Detection, Mystery and Horror",,,1928,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/a6%2F8a%2F5b%2Fa68a5bf3d5a04efd8b4fbb7d8e63f1f0%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-01-19,1929-01-30,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/cournos-modern-plutarch/,A Modern Plutarch,,"Cournos, John",1928,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/f8%2F16%2F70%2Ff8167044678547c6838e05ae70e5df35%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-01-19,1929-01-25,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/smith-beginning-origin-civilization/,In the Beginning: The Origin of Civilization,,"Smith, Grafton Elliot",1928,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/f8%2F16%2F70%2Ff8167044678547c6838e05ae70e5df35%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-01-19,1929-01-24,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/murry-things-come-essays/,Things to Come: Essays,,"Murry, John Middleton",1928,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/f8%2F16%2F70%2Ff8167044678547c6838e05ae70e5df35%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-01-19,1929-01-31,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/daingerfield-house-across-way/,The House across the Way,,"Daingerfield, Foxhall",1928,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/a6%2F8a%2F5b%2Fa68a5bf3d5a04efd8b4fbb7d8e63f1f0%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-01-19,1929-01-21,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/collected-letters-goldschmidt/,Collected Letters of Goldschmidt,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/f8%2F16%2F70%2Ff8167044678547c6838e05ae70e5df35%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1929-01-20,1929-02-20,https://shakespeareandco.princeton.edu/members/johnson-g-f/,G. F. A[unclear] Johnson,"Johnson, G. F. A[unclear]",25.00,,1 month,31,1,,1929-01-15,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1929-01-21,1929-04-21,https://shakespeareandco.princeton.edu/members/macgregor-mary/,Mary MacGregor,Mary MacGregor,48.00,100.00,3 months,90,1,,1929-01-21,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-01-21,,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/march-wild-party/,The Wild Party,,"March, Joseph Moncure",1928,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/f8%2F16%2F70%2Ff8167044678547c6838e05ae70e5df35%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-01-21,1929-01-24,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/freud-future-illusion/,The Future of an Illusion,,"Freud, Sigmund",1928,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/f8%2F16%2F70%2Ff8167044678547c6838e05ae70e5df35%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-01-21,1929-01-28,https://shakespeareandco.princeton.edu/members/potocki-de-montalk/,Geoffrey Potocki de Montalk,"Potocki de Montalk, Geoffrey",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/galsworthy-silver-spoon/,The Silver Spoon (A Modern Comedy),,"Galsworthy, John",1926,,Lending Library Card,"Sylvia Beach, Geoffrey Potocki de Montalk Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3d3346d0-18e1-4066-8756-0990f97aac13/manifest,https://iiif.princeton.edu/loris/figgy_prod/78%2F9d%2Fbd%2F789dbdcd3ce8447ea3796376cd13cb51%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-01-21,1929-01-24,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/shelley-shelley-leigh-hunt/,Shelley-Leigh Hunt: How Friendship Made History,,"Shelley, Percy Bysshe;Hunt, Leigh",1928,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/f8%2F16%2F70%2Ff8167044678547c6838e05ae70e5df35%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-01-21,1929-01-24,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/diapea-cannibal-jack-true/,Cannibal Jack: The True Autobiography of a White Man in the South Seas,,"Diapea, William",1927,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/f8%2F16%2F70%2Ff8167044678547c6838e05ae70e5df35%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-01-21,1929-01-23,https://shakespeareandco.princeton.edu/members/seager/,Katherine Seager,"Seager, Katherine",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/carroll-alices-adventures-wonderland/,Alice's Adventures in Wonderland,,"Carroll, Lewis",1865,,Lending Library Card,"Sylvia Beach, Katherine Seager Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2e6c33f9-87d4-4c5a-b5ee-9d023f87da1d/manifest,https://iiif.princeton.edu/loris/figgy_prod/db%2F89%2F4a%2Fdb894a1bfab446d8a5038c2c0876d247%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-01-22,1929-01-25,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/brownings/,The Brownings,,,,"Unidentified. J. G. Fuller's *The Brownings: A Tale of the Great Rebellion* (1867), David Loth's *The Brownings: A Victorian Idyll* (1929), or Osbert Burdett's *The Brownings* (1929), etc.",Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/09%2F61%2Ffd%2F0961fd4d9f9444578dfba1955d1ef01a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-01-22,1929-01-29,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/trollope-orley-farm/,Orley Farm,Vol. 3,"Trollope, Anthony",1862,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/da%2Fc5%2F79%2Fdac5795476fe4af4858e68e98bddb555%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1929-01-22,1929-02-22,https://shakespeareandco.princeton.edu/members/black/,Mrs. E. Black,"Black, Mrs. E.",35.00,100.00,1 month,31,2,,1929-01-22,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-01-22,1929-02-13,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/roberts-heart-flesh-novel/,My Heart and My Flesh: A Novel,,"Roberts, Elizabeth Madox",1927,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a9%2F11%2Fd5%2Fa911d51c78fb461396e48d152363a39d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-01-22,1929-02-13,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/millin-mary-glenn/,Mary Glenn,,"Millin, Sarah Gertrude",1925,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a9%2F11%2Fd5%2Fa911d51c78fb461396e48d152363a39d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-01-22,1929-01-29,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/bronte-jane-eyre/,Jane Eyre,,"BrontΓ«, Charlotte",1847,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/da%2Fc5%2F79%2Fdac5795476fe4af4858e68e98bddb555%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1929-01-23,1929-01-23,https://shakespeareandco.princeton.edu/members/edwards-7/,Mrs. W. Edwards,"Edwards, Mrs. W.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-01-23,1929-02-15,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/chesterton-napoleon-notting-hill/,The Napoleon of Notting Hill,,"Chesterton, G. K.",1904,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fd7%2F90%2Fcbd790e6c7ba4d4d8045abbe354ee697%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-01-23,1929-01-27,https://shakespeareandco.princeton.edu/members/seager/,Katherine Seager,"Seager, Katherine",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/richardson-backwater-pilgrimage-2/,Backwater (Pilgrimage 2),,"Richardson, Dorothy M.",1916,,Lending Library Card,"Sylvia Beach, Katherine Seager Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2e6c33f9-87d4-4c5a-b5ee-9d023f87da1d/manifest,https://iiif.princeton.edu/loris/figgy_prod/db%2F89%2F4a%2Fdb894a1bfab446d8a5038c2c0876d247%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-01-23,1929-01-28,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/van-vechten-spider-boy-scenario/,Spider Boy: A Scenario for a Moving Picture,,"Van Vechten, Carl",1928,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/e2%2F8f%2F47%2Fe28f47a0edc74234a7fe62de67b2461a%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1929-01-23,1929-01-23,https://shakespeareandco.princeton.edu/members/adam-4/,J. Adam,"Adam, J.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-01-24,1929-01-30,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/read-phases-english-poetry/,Phases of English Poetry,,"Read, Herbert",1928,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/09%2F61%2Ffd%2F0961fd4d9f9444578dfba1955d1ef01a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-01-24,1929-01-31,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/autobiography/,My Autobiography,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/09%2F61%2Ffd%2F0961fd4d9f9444578dfba1955d1ef01a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-01-24,1929-01-30,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/aiken-costumes-eros/,Costumes by Eros,,"Aiken, Conrad",1928,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/09%2F61%2Ffd%2F0961fd4d9f9444578dfba1955d1ef01a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-01-24,1929-01-30,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/mckay-home-harlem/,Home to Harlem,,"McKay, Claude",1928,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/09%2F61%2Ffd%2F0961fd4d9f9444578dfba1955d1ef01a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-01-24,1929-01-30,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/londres-road-buenos-ayres/,The Road to Buenos Ayres,,"Londres, Albert",1928,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/09%2F61%2Ffd%2F0961fd4d9f9444578dfba1955d1ef01a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-01-24,1929-04-30,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,96,,,https://shakespeareandco.princeton.edu/books/fletcher-isles-illusion-letters/,Isles of Illusion: Letters from the South Seas,,"Fletcher, Robert James",1923,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/09%2F61%2Ffd%2F0961fd4d9f9444578dfba1955d1ef01a%2Fintermediate_file/full/full/0/default.jpg
+Crossed out,1929-01-24,,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/bourrienne-memoirs-napoleon/,Memoirs of Napoleon Bonaparte,,"Bourrienne, Louis-Antoine Fauvelet",,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/09%2F61%2Ffd%2F0961fd4d9f9444578dfba1955d1ef01a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-01-25,1929-02-01,https://shakespeareandco.princeton.edu/members/linossier-raymonde/,Raymonde Linossier,"Linossier, Raymonde",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/christie-mystery-blue-train/,The Mystery of the Blue Train,,"Christie, Agatha",1928,,Lending Library Card,"Sylvia Beach, Raymonde Linossier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/53ede5bf-939d-44f5-9ddb-4dd39363bd20/manifest,https://iiif.princeton.edu/loris/figgy_prod/41%2Fcb%2F6b%2F41cb6b39c8604ec88fecdca454971646%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1929-01-26,1929-02-26,https://shakespeareandco.princeton.edu/members/kastchenko-m/,M. Kastchenko,"Kastchenko, M.",25.00,50.00,1 month,31,1,,1929-01-26,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1929-01-26,1929-01-26,https://shakespeareandco.princeton.edu/members/witherell/,Witherell,Witherell,,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1929-01-28,1929-02-28,https://shakespeareandco.princeton.edu/members/baile/,Cathleen Baile,"Baile, Cathleen",25.00,50.00,1 month,31,1,,1929-01-28,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-01-28,1929-02-02,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/huxley-point-counter-point/,Point Counter Point,,"Huxley, Aldous",1928,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/e2%2F8f%2F47%2Fe28f47a0edc74234a7fe62de67b2461a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-01-28,1929-02-04,https://shakespeareandco.princeton.edu/members/potocki-de-montalk/,Geoffrey Potocki de Montalk,"Potocki de Montalk, Geoffrey",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/mansfield-doves-nest-stories/,The Doves' Nest and Other Stories,,"Mansfield, Katherine",1923,,Lending Library Card,"Sylvia Beach, Geoffrey Potocki de Montalk Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3d3346d0-18e1-4066-8756-0990f97aac13/manifest,https://iiif.princeton.edu/loris/figgy_prod/78%2F9d%2Fbd%2F789dbdcd3ce8447ea3796376cd13cb51%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-01-29,1929-02-02,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/delafield-love/,What Is Love?,,"Delafield, E. M.",1928,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e1%2F87%2Fe7%2Fe187e7d30ac7412b8aea97f907b2b078%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-01-29,1929-02-11,https://shakespeareandco.princeton.edu/members/seager/,Katherine Seager,"Seager, Katherine",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/galsworthy-forsyte-saga/,The Forsyte Saga,,"Galsworthy, John",1922,,Lending Library Card,"Sylvia Beach, Katherine Seager Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2e6c33f9-87d4-4c5a-b5ee-9d023f87da1d/manifest,https://iiif.princeton.edu/loris/figgy_prod/db%2F89%2F4a%2Fdb894a1bfab446d8a5038c2c0876d247%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-01-29,1929-02-11,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/swift-gullivers-travels/,Gulliver's Travels,,"Swift, Jonathan",1726,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/da%2Fc5%2F79%2Fdac5795476fe4af4858e68e98bddb555%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-01-30,1929-02-05,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/charles-baudelaire/,Charles Baudelaire,,,,Unidentified. By or about Charles Baudelaire.,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/09%2F61%2Ffd%2F0961fd4d9f9444578dfba1955d1ef01a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-01-30,1929-02-05,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/dreiser-dreiser-looks-russia/,Dreiser Looks at Russia,,"Dreiser, Theodore",1928,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/09%2F61%2Ffd%2F0961fd4d9f9444578dfba1955d1ef01a%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1929-01-30,1929-01-30,https://shakespeareandco.princeton.edu/members/lallemand-pauline-de/,Pauline de Lallemand,"de Lallemand, Pauline",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-01-30,1929-02-05,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/gladstone-thirty-years/,After Thirty Years,,"Gladstone, Herbert John, Viscount",1928,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/09%2F61%2Ffd%2F0961fd4d9f9444578dfba1955d1ef01a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-01-30,1929-02-05,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/bootes-deep-sea-bubbles/,"Deep-Sea Bubbles or, the Cruise of the Anna Lombard",,"Bootes, Henry H.",1929,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/09%2F61%2Ffd%2F0961fd4d9f9444578dfba1955d1ef01a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-01-31,1929-02-16,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/obrien-best-short-stories-1928/,The Best Short Stories 1928: And the Yearbook of the American Short Story,,,1928,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/a6%2F8a%2F5b%2Fa68a5bf3d5a04efd8b4fbb7d8e63f1f0%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-01-31,1929-02-14,https://shakespeareandco.princeton.edu/members/speaight-r-l/,R. L. Speaight,"Speaight, R. L.",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/mansfield-letters-katherine-mansfield/,The Letters of Katherine Mansfield,Vol. 1,"Mansfield, Katherine",1928,,Lending Library Card,"Sylvia Beach, R.L. Speaight Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c177755e-5b2b-40f4-9a9a-3f27b0f39076/manifest,https://iiif.princeton.edu/loris/figgy_prod/4a%2F6c%2F5d%2F4a6c5ddea7de415e81ca31a5dfdf001d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1929-01-31,1929-04-30,https://shakespeareandco.princeton.edu/members/ursel/,Comte d'Ursel,"d'Ursel, Comte",60.00,,3 months,89,1,,1929-01-31,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1929-01-31,1929-02-28,https://shakespeareandco.princeton.edu/members/gordon-i/,I. Gordon,"Gordon, I.",35.00,100.00,1 month,28,1,,1929-01-31,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1929-02-01,1929-02-01,https://shakespeareandco.princeton.edu/members/stokes/,M. Stokes,"Stokes, M.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-02-02,1929-02-09,https://shakespeareandco.princeton.edu/members/mayre-n-e/,N. E. Mayre,"Mayre, N. E.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/ben-jonson/,Ben Jonson,,,,"Unidentified edition. N. E. Mayer borrows volume 1, Stanislas Pascal Franchot borrows volume 3, Irene Wissotzky borrows volumes 1β3, and Francoise de Marcilly borrows volume 2.",Lending Library Card,"Sylvia Beach, N.E. Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ec1c32ef-7770-43a3-a5ae-d6afe67a337b/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F18%2F12%2F631812f8c131443ab33c1ab716110a6f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-02-02,1929-02-05,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/strachey-elizabeth-essex-tragic/,Elizabeth and Essex: A Tragic History,,"Strachey, Giles Lytton",1928,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e1%2F87%2Fe7%2Fe187e7d30ac7412b8aea97f907b2b078%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1929-02-02,1929-02-02,https://shakespeareandco.princeton.edu/members/billetdoux-wood/,Mme Wood Billetdoux,"Billetdoux, Mme Wood",,,,,,,,40.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-02-02,1929-02-05,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/doughty-travels-arabia-deserta/,Travels in Arabia Deserta,2 vols.,"Doughty, Charles Montagu",1883,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/2a%2Fe1%2F20%2F2ae1204f192e4ecdb46cde153b2d8975%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1929-02-02,1929-02-02,https://shakespeareandco.princeton.edu/members/lemierre-4/,Lemierre,Lemierre,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1929-02-02,1929-05-02,https://shakespeareandco.princeton.edu/members/mayre-n-e/,N. E. Mayre,"Mayre, N. E.",60.00,,3 months,89,1,,1929-02-02,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, N.E. Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/ec1c32ef-7770-43a3-a5ae-d6afe67a337b/manifest,;https://iiif.princeton.edu/loris/figgy_prod/63%2F18%2F12%2F631812f8c131443ab33c1ab716110a6f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-02-02,1929-04-02,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,59,,,https://shakespeareandco.princeton.edu/books/duncan-life/,My Life,,"Duncan, Isadora",1927,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/e2%2F8f%2F47%2Fe28f47a0edc74234a7fe62de67b2461a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-02-04,1929-02-08,https://shakespeareandco.princeton.edu/members/potocki-de-montalk/,Geoffrey Potocki de Montalk,"Potocki de Montalk, Geoffrey",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/galsworthy-swan-song/,Swan Song (A Modern Comedy),,"Galsworthy, John",1928,,Lending Library Card,"Sylvia Beach, Geoffrey Potocki de Montalk Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3d3346d0-18e1-4066-8756-0990f97aac13/manifest,https://iiif.princeton.edu/loris/figgy_prod/78%2F9d%2Fbd%2F789dbdcd3ce8447ea3796376cd13cb51%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1929-02-04,1929-03-04,https://shakespeareandco.princeton.edu/members/charlier/,E. Charlier,"Charlier, E.",25.00,50.00,1 month,28,1,,1929-02-04,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-02-05,1929-02-11,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/stephens-etched-moonlight/,Etched in Moonlight,,"Stephens, James",1928,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/09%2F61%2Ffd%2F0961fd4d9f9444578dfba1955d1ef01a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-02-05,1929-02-11,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/nicoll-history-early-eighteenth/,"A History of Early Eighteenth Century Drama, 1700 β 1750",,"Nicoll, Allardyce",1925,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/09%2F61%2Ffd%2F0961fd4d9f9444578dfba1955d1ef01a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-02-05,1929-02-11,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/ker-form-style-poetry/,Form and Style in Poetry: Lectures and Notes,,"Ker, W. P.",1928,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/09%2F61%2Ffd%2F0961fd4d9f9444578dfba1955d1ef01a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-02-05,1929-02-11,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/mccurdy-mind-leonardo-da/,The Mind of Leonardo da Vinci,,"McCurdy, Edward",1928,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/09%2F61%2Ffd%2F0961fd4d9f9444578dfba1955d1ef01a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-02-05,1929-02-11,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/raleigh-selection-letters-sir/,A Selection from the Letters of Sir Walter Raleigh (1880 β 1922),,"Raleigh, Walter Alexander",1928,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/09%2F61%2Ffd%2F0961fd4d9f9444578dfba1955d1ef01a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-02-05,1929-02-12,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/goethe/,Goethe,Vol. 2,,,Unidentified. Dolly Wilde borrowed volumes 1 and 2 of an unspecified edition.,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/09%2F61%2Ffd%2F0961fd4d9f9444578dfba1955d1ef01a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-02-05,1929-02-11,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/niles-condemned-devils-island/,Condemned to Devil's Island,,"Niles, Blair",1928,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/09%2F61%2Ffd%2F0961fd4d9f9444578dfba1955d1ef01a%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1929-02-05,1929-02-05,https://shakespeareandco.princeton.edu/members/thayer-2/,Miss Thayer,"Thayer, Miss",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-02-05,1929-02-13,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/moore-celibate-lives/,Celibate Lives,,"Moore, George",1927,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e1%2F87%2Fe7%2Fe187e7d30ac7412b8aea97f907b2b078%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-02-06,1929-02-09,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/eliot-lancelot-andrewes-essays/,For Lancelot Andrewes: Essays on Style and Order,,"Eliot, T. S.",1928,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/2e%2F51%2Fbf%2F2e51bf8386fc444d94a5a38a2bfc728f%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1929-02-06,1929-05-06,https://shakespeareandco.princeton.edu/members/ferguson-helen/,Helen Ferguson / Mrs. Edmonds,"Ferguson, Helen",85.00,100.00,3 months,89,2,,1929-02-06,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1929-02-06,1929-03-06,https://shakespeareandco.princeton.edu/members/forwood/,Mme K. Forwood,"Forwood, Mme K.",85.00,,1 month,28,1,,1929-02-06,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1929-02-07,1929-03-07,https://shakespeareandco.princeton.edu/members/leland-marine/,Marine Leland,"Leland, Marine",25.00,,1 month,28,1,,1929-02-07,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1929-02-07,1929-02-07,https://shakespeareandco.princeton.edu/members/gordon-judith/,Judith Gordon,"Gordon, Judith",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-02-07,1929-02-20,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/strachey-elizabeth-essex-tragic/,Elizabeth and Essex: A Tragic History,,"Strachey, Giles Lytton",1928,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/e2%2F8f%2F47%2Fe28f47a0edc74234a7fe62de67b2461a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-02-08,1929-02-19,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/sinclair-boston/,Boston,Vol. 1,"Sinclair, Upton",1928,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/ee%2F79%2Fb9%2Fee79b9f1f5e64724a09ee5b343ebd05a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-02-08,1929-02-12,https://shakespeareandco.princeton.edu/members/potocki-de-montalk/,Geoffrey Potocki de Montalk,"Potocki de Montalk, Geoffrey",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/moore-confessions-young-man/,The Confessions of a Young Man,,"Moore, George",1886,,Lending Library Card,"Sylvia Beach, Geoffrey Potocki de Montalk Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3d3346d0-18e1-4066-8756-0990f97aac13/manifest,https://iiif.princeton.edu/loris/figgy_prod/78%2F9d%2Fbd%2F789dbdcd3ce8447ea3796376cd13cb51%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1929-02-08,1929-02-08,https://shakespeareandco.princeton.edu/members/leland-marine/,Marine Leland,"Leland, Marine",,,,,,,,125.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1929-02-09,1929-03-09,https://shakespeareandco.princeton.edu/members/rabache-2/,M. Rabache,"Rabache, M.",20.00,,1 month,28,1,,1929-02-08,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-02-09,1929-02-11,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/dreiser-sister-carrie/,Sister Carrie,,"Dreiser, Theodore",1900,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/2e%2F51%2Fbf%2F2e51bf8386fc444d94a5a38a2bfc728f%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-02-09,1929-02-23,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/saintsbury-works-henry-fielding/,The Works of Henry Fielding,,"Saintsbury, George",1928,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/17%2Fc5%2F27%2F17c5279577094feb8c09e8e402cfb654%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-02-09,1929-02-23,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/read-phases-english-poetry/,Phases of English Poetry,,"Read, Herbert",1928,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/17%2Fc5%2F27%2F17c5279577094feb8c09e8e402cfb654%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-02-09,1929-05-23,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,103,,,https://shakespeareandco.princeton.edu/books/mclaurin-north-africa-travel/,"What About North Africa? Travel in Morocco, Algeria, and Tunisia",,"McLaurin, Hamish",1927,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/2a%2Fe1%2F20%2F2ae1204f192e4ecdb46cde153b2d8975%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-02-09,1929-04-17,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,67,,,https://shakespeareandco.princeton.edu/books/smollett-adventures-peregrine-pickle/,The Adventures of Peregrine Pickle,2 vols.,"Smollett, Tobias",1751,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/2a%2Fe1%2F20%2F2ae1204f192e4ecdb46cde153b2d8975%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-02-09,1929-02-16,https://shakespeareandco.princeton.edu/members/mayre-n-e/,N. E. Mayre,"Mayre, N. E.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/coleridge-table-talk-omniana/,Table Talk and Omniana of Samuel Taylor Coleridge,,"Coleridge, Samuel Taylor",1884,,Lending Library Card,"Sylvia Beach, N.E. Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ec1c32ef-7770-43a3-a5ae-d6afe67a337b/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F18%2F12%2F631812f8c131443ab33c1ab716110a6f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-02-11,1929-02-13,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/bennett-accident/,Accident,,"Bennett, Arnold",1929,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/2e%2F51%2Fbf%2F2e51bf8386fc444d94a5a38a2bfc728f%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-02-11,1929-02-12,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/joad-future-life-theory/,The Future of Life: A Theory of Vitalism,,"Joad, C. E. M.",1928,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/09%2F61%2Ffd%2F0961fd4d9f9444578dfba1955d1ef01a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-02-11,1929-02-12,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/ojetti-seemed/,As They Seemed to Me,,"Ojetti, Ugo",1927,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/09%2F61%2Ffd%2F0961fd4d9f9444578dfba1955d1ef01a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-02-11,1929-02-12,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/tennyson-queen-mary-drama/,Queen Mary: A Drama,,"Tennyson, Alfred",1875,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/09%2F61%2Ffd%2F0961fd4d9f9444578dfba1955d1ef01a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-02-11,1929-02-21,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/history-english-literature/,History of English Literature,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/da%2Fc5%2F79%2Fdac5795476fe4af4858e68e98bddb555%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-02-11,1929-02-15,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/coquiot-paul-cezanne/,Paul CΓ©zanne,,,,"Unidentified. Likely Ambroise Vollard's *Paul CeΜzanne: His Life and Art,* translated by Harold L. Van Doren (1923); or Roger Fry's *CeΜzanne: A Study of his Development* (1927). Michael Reynolds identifies the book that Ernest Hemingway borrowed as Vollard's *Paul CeΜzanne.*",Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/da%2Fc5%2F79%2Fdac5795476fe4af4858e68e98bddb555%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-02-11,1929-02-25,https://shakespeareandco.princeton.edu/members/seager/,Katherine Seager,"Seager, Katherine",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/galsworthy-white-monkey/,The White Monkey (A Modern Comedy),,"Galsworthy, John",1924,,Lending Library Card,"Sylvia Beach, Katherine Seager Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2e6c33f9-87d4-4c5a-b5ee-9d023f87da1d/manifest,https://iiif.princeton.edu/loris/figgy_prod/db%2F89%2F4a%2Fdb894a1bfab446d8a5038c2c0876d247%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1929-02-11,1929-04-11,https://shakespeareandco.princeton.edu/members/seager/,Katherine Seager,"Seager, Katherine",50.00,,2 months,59,1,,1929-03-20,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Katherine Seager Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/2e6c33f9-87d4-4c5a-b5ee-9d023f87da1d/manifest,;https://iiif.princeton.edu/loris/figgy_prod/97%2F10%2F76%2F9710767a1c2345cf82b7b334d09ead67%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1929-02-11,1929-05-11,https://shakespeareandco.princeton.edu/members/melera-mme/,Mme Melera,"Melera, Mme",60.00,,3 months,89,1,,1929-02-11,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Crossed out,1929-02-12,,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/zetland-life-lord-curzon/,The Life of Lord Curzon,,"Dundas, Lawrence, Earl of Ronaldshay",1928,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/09%2F61%2Ffd%2F0961fd4d9f9444578dfba1955d1ef01a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-02-12,1929-07-16,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,154,,,https://shakespeareandco.princeton.edu/books/huxley-jesting-pilate-diary/,Jesting Pilate: The Diary of a Journey,,"Huxley, Aldous",1926,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/09%2F61%2Ffd%2F0961fd4d9f9444578dfba1955d1ef01a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-02-12,1929-03-06,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/figgis-return-hero/,The Return of the Hero,,"Figgis, Darrell",1923,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/09%2F61%2Ffd%2F0961fd4d9f9444578dfba1955d1ef01a%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1929-02-12,1929-02-12,https://shakespeareandco.princeton.edu/members/loomis-payson/,Payson Walker Loomis,"Loomis, Payson",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1929-02-12,1929-03-12,https://shakespeareandco.princeton.edu/members/church-3/,Church,Church,25.00,50.00,1 month,28,2,,1929-02-12,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-02-12,1929-03-06,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/coppard-silver-circus/,Silver Circus,,"Coppard, A. E.",1928,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/09%2F61%2Ffd%2F0961fd4d9f9444578dfba1955d1ef01a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-02-12,1929-03-06,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/butts-armed-madness/,Armed with Madness,,"Butts, Mary",1928,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/09%2F61%2Ffd%2F0961fd4d9f9444578dfba1955d1ef01a%2Fintermediate_file/full/full/0/default.jpg
+Crossed out,1929-02-12,,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/collins-talks-thomas-hardy/,"Talks with Thomas Hardy at Max Gate, 1920 β 22",,"Collins, Vere H.;Hardy, Thomas",1928,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/09%2F61%2Ffd%2F0961fd4d9f9444578dfba1955d1ef01a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-02-12,1929-02-15,https://shakespeareandco.princeton.edu/members/potocki-de-montalk/,Geoffrey Potocki de Montalk,"Potocki de Montalk, Geoffrey",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/montague-rough-justice/,Rough Justice,,"Montague, C. E.",1926,,Lending Library Card,"Sylvia Beach, Geoffrey Potocki de Montalk Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3d3346d0-18e1-4066-8756-0990f97aac13/manifest,https://iiif.princeton.edu/loris/figgy_prod/78%2F9d%2Fbd%2F789dbdcd3ce8447ea3796376cd13cb51%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-02-12,1929-07-19,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,157,,,https://shakespeareandco.princeton.edu/books/sitwell-german-baroque-art/,German Baroque Art,,"Sitwell, Sacheverell",1928,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/09%2F61%2Ffd%2F0961fd4d9f9444578dfba1955d1ef01a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-02-13,1929-02-16,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/swinnerton-summer-storm/,Summer Storm,,"Swinnerton, Frank",1926,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e1%2F87%2Fe7%2Fe187e7d30ac7412b8aea97f907b2b078%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-02-13,1929-02-15,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/king-england-wordsworth-dickens/,England from Wordsworth to Dickens,,"King, R. W.",1928,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/2e%2F51%2Fbf%2F2e51bf8386fc444d94a5a38a2bfc728f%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-02-13,1929-02-15,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/woolf-lighthouse/,To the Lighthouse,,"Woolf, Virginia",1927,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/cf%2Fe8%2F57%2Fcfe8575743fb43c7a50cec35cb76d9a0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1929-02-13,1929-03-13,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",25.00,50.00,1 month,28,1,,1929-02-13,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,;https://iiif.princeton.edu/loris/figgy_prod/cf%2Fe8%2F57%2Fcfe8575743fb43c7a50cec35cb76d9a0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-02-13,1929-04-09,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,55,,,https://shakespeareandco.princeton.edu/books/wilder-bridge-san-luis/,The Bridge of San Luis Rey,,"Wilder, Thornton",1927,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a9%2F11%2Fd5%2Fa911d51c78fb461396e48d152363a39d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1929-02-13,1929-02-13,https://shakespeareandco.princeton.edu/members/blanc/,George Blanc,"Blanc, George",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-02-14,1929-02-16,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/hall-well-loneliness/,The Well of Loneliness,,"Hall, Radclyffe",1926,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/70%2F1a%2Ff5%2F701af56e9b064e78a6e4135d00839f94%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-02-14,1929-03-01,https://shakespeareandco.princeton.edu/members/speaight-r-l/,R. L. Speaight,"Speaight, R. L.",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/mansfield-bliss-short-stories/,Bliss and Other Stories,,"Mansfield, Katherine",1920,,Lending Library Card,"Sylvia Beach, R.L. Speaight Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c177755e-5b2b-40f4-9a9a-3f27b0f39076/manifest,https://iiif.princeton.edu/loris/figgy_prod/4a%2F6c%2F5d%2F4a6c5ddea7de415e81ca31a5dfdf001d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-02-15,1929-02-19,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/joyce-portrait-artist-young/,A Portrait of the Artist as a Young Man,,"Joyce, James",1916,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/cf%2Fe8%2F57%2Fcfe8575743fb43c7a50cec35cb76d9a0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1929-02-15,,https://shakespeareandco.princeton.edu/members/kramer-lewis/,Lewis Kramer,"Kramer, Lewis",,,,,,Free,1929-02-15,,,,,FRF,,,,,,,Lending Library Card;Address Book,"Sylvia Beach, Lewis Kramer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/822274d5-cf0a-4668-8469-92b799791e88/manifest;,https://iiif.princeton.edu/loris/figgy_prod/5e%2Ffb%2F27%2F5efb27688e3c40e2b02c35a647e04408%2Fintermediate_file.jp2/full/full/0/default.jpg;
+Borrow,1929-02-15,1929-02-26,https://shakespeareandco.princeton.edu/members/potocki-de-montalk/,Geoffrey Potocki de Montalk,"Potocki de Montalk, Geoffrey",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/mansfield-german-pension/,In a German Pension,,"Mansfield, Katherine",1911,,Lending Library Card,"Sylvia Beach, Geoffrey Potocki de Montalk Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3d3346d0-18e1-4066-8756-0990f97aac13/manifest,https://iiif.princeton.edu/loris/figgy_prod/78%2F9d%2Fbd%2F789dbdcd3ce8447ea3796376cd13cb51%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-02-15,1929-02-27,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/woolf-lighthouse/,To the Lighthouse,,"Woolf, Virginia",1927,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fd7%2F90%2Fcbd790e6c7ba4d4d8045abbe354ee697%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-02-15,1929-03-23,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,36,,,https://shakespeareandco.princeton.edu/books/oneill-strange-interlude/,Strange Interlude,,"O'Neill, Eugene",1928,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fd7%2F90%2Fcbd790e6c7ba4d4d8045abbe354ee697%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1929-02-15,,https://shakespeareandco.princeton.edu/members/capelli-jucchi/,Capelli-Jucchi,Capelli-Jucchi,25.00,50.00,,,,,1929-02-15,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1929-02-15,1929-05-15,https://shakespeareandco.princeton.edu/members/stokes/,M. Stokes,"Stokes, M.",60.00,,3 months,89,1,,1929-02-11,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-02-15,1929-02-27,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/spenser-edmund-spenser/,Edmund Spenser's Works,,"Spenser, Edmund",,"Madeleine Blaess borrowed *The Poetical Works of Edmund Spenser,* edited by J. C. Smith and E. de Selincurt (Oxford, 1912).",Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/da%2Fc5%2F79%2Fdac5795476fe4af4858e68e98bddb555%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-02-15,1929-02-18,https://shakespeareandco.princeton.edu/members/kramer-lewis/,Lewis Kramer,"Kramer, Lewis",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/meier-graefe-vincent-van-gogh/,Vincent van Gogh: A Biographical Study,2 vols.,"Meier-Graefe, Julius",1922,,Lending Library Card,"Sylvia Beach, Lewis Kramer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/822274d5-cf0a-4668-8469-92b799791e88/manifest,https://iiif.princeton.edu/loris/figgy_prod/5e%2Ffb%2F27%2F5efb27688e3c40e2b02c35a647e04408%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-02-15,1929-02-18,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/trollope-belton-estate/,The Belton Estate,,"Trollope, Anthony",1866,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/2e%2F51%2Fbf%2F2e51bf8386fc444d94a5a38a2bfc728f%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-02-16,1929-03-11,https://shakespeareandco.princeton.edu/members/mayre-n-e/,N. E. Mayre,"Mayre, N. E.",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/coleridge-aids-reflection/,Aids to Reflection,,"Coleridge, Samuel Taylor",1825,,Lending Library Card,"Sylvia Beach, N.E. Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ec1c32ef-7770-43a3-a5ae-d6afe67a337b/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F18%2F12%2F631812f8c131443ab33c1ab716110a6f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-02-16,1929-02-21,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/van-vechten-merry-go-round/,The Merry-Go-Round,,"Van Vechten, Carl",1918,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/70%2F1a%2Ff5%2F701af56e9b064e78a6e4135d00839f94%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1929-02-16,1929-03-16,https://shakespeareandco.princeton.edu/members/bagger/,Eugene Szekeres Bagger,"Bagger, Eugene Szekeres",35.00,100.00,1 month,28,2,,1929-02-16,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1929-02-16,1929-03-16,https://shakespeareandco.princeton.edu/members/marry-3/,Mlle Marry,"Marry, Mlle",20.00,,1 month,28,1,AdL,1929-02-16,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-02-16,1929-03-03,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/trites-gypsy/,The Gypsy,,"Trites, W. B.",1928,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/a6%2F8a%2F5b%2Fa68a5bf3d5a04efd8b4fbb7d8e63f1f0%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-02-18,1929-02-20,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/lindsey-companionate-marriage/,The Companionate Marriage,,"Lindsey, Ben B.;Evans, Wainwright",1927,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/2e%2F51%2Fbf%2F2e51bf8386fc444d94a5a38a2bfc728f%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-02-18,1929-02-28,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/woolf-jacobs-room/,Jacob's Room,,"Woolf, Virginia",1922,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2F00%2F2c%2Fcb002c24cc9a4d9c8fa834244db6afcc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1929-02-18,1929-02-18,https://shakespeareandco.princeton.edu/members/kopelanoff-e/,E. Kopelanoff,"Kopelanoff, E.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1929-02-19,1929-02-19,https://shakespeareandco.princeton.edu/members/noguchi-isamu/,Isamu Noguchi,"Noguchi, Isamu",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-02-19,1929-03-11,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/sinclair-boston/,Boston,Vol. 2,"Sinclair, Upton",1928,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/ee%2F79%2Fb9%2Fee79b9f1f5e64724a09ee5b343ebd05a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-02-19,,https://shakespeareandco.princeton.edu/members/kramer-lewis/,Lewis Kramer,"Kramer, Lewis",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/meier-graefe-dostoevsky-man-work/,Dostoevsky: The Man and His Work,,"Meier-Graefe, Julius",1928,,Lending Library Card,"Sylvia Beach, Lewis Kramer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/822274d5-cf0a-4668-8469-92b799791e88/manifest,https://iiif.princeton.edu/loris/figgy_prod/5e%2Ffb%2F27%2F5efb27688e3c40e2b02c35a647e04408%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-02-20,1929-02-26,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/freud-introductory-lectures-psycho/,Introductory Lectures on Psycho-Analysis,,"Freud, Sigmund",1917,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/cf%2Fe8%2F57%2Fcfe8575743fb43c7a50cec35cb76d9a0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1929-02-20,1929-02-20,https://shakespeareandco.princeton.edu/members/carmen/,Carmen,Carmen,,,,,,,,150.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-02-20,1929-02-22,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/swinnerton-tokefield-papers-old/,Tokefield Papers: Old and New,,"Swinnerton, Frank",1928,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/2e%2F51%2Fbf%2F2e51bf8386fc444d94a5a38a2bfc728f%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1929-02-20,1929-03-20,https://shakespeareandco.princeton.edu/members/edmonds-gwyneth/,Gwyneth Edmonds,"Edmonds, Gwyneth",25.00,,1 month,28,1,,1929-02-20,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1929-02-21,1929-02-21,https://shakespeareandco.princeton.edu/members/yost/,Yost,Yost,,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-02-21,1929-03-02,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/erskine-galahad-enough-life/,Galahad: Enough of His Life to Explain His Reputation,,"Erskine, John",1926,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/70%2F1a%2Ff5%2F701af56e9b064e78a6e4135d00839f94%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-02-21,1929-02-27,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/brandes-william-shakespeare-critical/,William Shakespeare: A Critical Study,,"Brandes, Georg",1898,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/da%2Fc5%2F79%2Fdac5795476fe4af4858e68e98bddb555%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1929-02-22,1929-02-22,https://shakespeareandco.princeton.edu/members/black/,Mrs. E. Black,"Black, Mrs. E.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-02-22,1929-02-25,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/march-wild-party/,The Wild Party,,"March, Joseph Moncure",1928,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/2e%2F51%2Fbf%2F2e51bf8386fc444d94a5a38a2bfc728f%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1929-02-22,1929-05-22,https://shakespeareandco.princeton.edu/members/richardson-mrs-arthur/,Mrs. Arthur W. Richardson,"Richardson, Mrs. Arthur W.",60.00,,3 months,89,1,,1929-02-22,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Mrs Arthur Richardson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/19b41b12-9a69-4bbd-9709-28461e3a1aca/manifest,;https://iiif.princeton.edu/loris/figgy_prod/84%2F20%2Fb5%2F8420b5513cb24e73a85af5cf2afc7ead%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1929-02-22,1929-05-22,https://shakespeareandco.princeton.edu/members/dubois-2/,Noelle Dubois,"Dubois, Noelle",48.00,,3 months,89,1,,1929-02-22,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1929-02-22,1929-04-05,https://shakespeareandco.princeton.edu/members/davey/,Mme Davey,"Davey, Mme",37.50,,6 weeks,42,1,,1929-02-22,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-02-22,1929-02-25,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/doyle-hound-baskervilles/,The Hound of the Baskervilles,,"Doyle, Arthur Conan",1902,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/2e%2F51%2Fbf%2F2e51bf8386fc444d94a5a38a2bfc728f%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-02-22,1929-02-28,https://shakespeareandco.princeton.edu/members/richardson-mrs-arthur/,Mrs. Arthur W. Richardson,"Richardson, Mrs. Arthur W.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/mansfield-letters-katherine-mansfield/,The Letters of Katherine Mansfield,Vol. 1,"Mansfield, Katherine",1928,,Lending Library Card,"Sylvia Beach, Mrs Arthur Richardson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/19b41b12-9a69-4bbd-9709-28461e3a1aca/manifest,https://iiif.princeton.edu/loris/figgy_prod/84%2F20%2Fb5%2F8420b5513cb24e73a85af5cf2afc7ead%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-02-23,1929-03-09,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/grierson-lyrical-poetry-blake/,Lyrical Poetry from Blake to Hardy,,"Grierson, H. J. C.",1928,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/17%2Fc5%2F27%2F17c5279577094feb8c09e8e402cfb654%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-02-23,1929-04-10,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,46,,,https://shakespeareandco.princeton.edu/books/dreiser-financier/,Financier,,"Dreiser, Theodore",1912,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fd7%2F90%2Fcbd790e6c7ba4d4d8045abbe354ee697%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1929-02-23,1929-03-23,https://shakespeareandco.princeton.edu/members/corstret-1/,Corstret,Corstret,35.00,,1 month,28,2,,1929-02-23,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-02-23,1929-03-09,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/lucas-colvins-friends/,The Colvins and Their Friends,,"Lucas, E. V.",1928,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/17%2Fc5%2F27%2F17c5279577094feb8c09e8e402cfb654%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1929-02-23,1929-03-23,https://shakespeareandco.princeton.edu/members/viele/,Viele,Viele,25.00,,1 month,28,1,,1929-01-29,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-02-25,1929-02-26,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/wolfe-dialogues-monologues/,"Dialogues, Monologues",,"Wolfe, Humbert",1928,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/5c%2Fc1%2Fe1%2F5cc1e1b2d4e240d0b57fe96d7c0ba8b8%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1929-02-25,1929-02-25,https://shakespeareandco.princeton.edu/members/johnson-g-f/,G. F. A[unclear] Johnson,"Johnson, G. F. A[unclear]",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-02-25,1929-03-12,https://shakespeareandco.princeton.edu/members/seager/,Katherine Seager,"Seager, Katherine",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/montague-rough-justice/,Rough Justice,,"Montague, C. E.",1926,,Lending Library Card,"Sylvia Beach, Katherine Seager Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2e6c33f9-87d4-4c5a-b5ee-9d023f87da1d/manifest,https://iiif.princeton.edu/loris/figgy_prod/db%2F89%2F4a%2Fdb894a1bfab446d8a5038c2c0876d247%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1929-02-25,1929-02-25,https://shakespeareandco.princeton.edu/members/church-3/,Church,Church,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-02-26,1929-02-27,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/hall-well-loneliness/,The Well of Loneliness,,"Hall, Radclyffe",1926,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/5c%2Fc1%2Fe1%2F5cc1e1b2d4e240d0b57fe96d7c0ba8b8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-02-26,1929-03-19,https://shakespeareandco.princeton.edu/members/potocki-de-montalk/,Geoffrey Potocki de Montalk,"Potocki de Montalk, Geoffrey",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/twain-connecticut-yankee-king/,A Connecticut Yankee in King Arthur's Court,,"Twain, Mark",1889,,Lending Library Card,"Sylvia Beach, Geoffrey Potocki de Montalk Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3d3346d0-18e1-4066-8756-0990f97aac13/manifest,https://iiif.princeton.edu/loris/figgy_prod/78%2F9d%2Fbd%2F789dbdcd3ce8447ea3796376cd13cb51%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-02-26,1929-03-02,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/freud-collected-papers/,Collected Papers,Vol. 3 Case Histories,"Freud, Sigmund",,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/cf%2Fe8%2F57%2Fcfe8575743fb43c7a50cec35cb76d9a0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1929-02-26,1929-03-26,https://shakespeareandco.princeton.edu/members/kastchenko-m/,M. Kastchenko,"Kastchenko, M.",25.00,,1 month,28,1,,1929-02-26,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-02-27,1929-03-08,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/meredith-tragic-comedians-study/,The Tragic Comedians: A Study in a Well-Known Story,,"Meredith, George",1898,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/5c%2Fc1%2Fe1%2F5cc1e1b2d4e240d0b57fe96d7c0ba8b8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-02-27,1929-03,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/trollope-prime-minister/,The Prime Minister,4 vols.,"Trollope, Anthony",1876,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Fb9%2Fad%2Fccb9adb778e74d51bcd6d04425f9e15d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-02-27,1929-03-12,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/read-phases-english-poetry/,Phases of English Poetry,,"Read, Herbert",1928,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fd7%2F90%2Fcbd790e6c7ba4d4d8045abbe354ee697%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1929-02-28,1929-02-28,https://shakespeareandco.princeton.edu/members/frohock-w-m/,W. M. Frohock,"Frohock, W. M.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1929-02-28,1929-05-28,https://shakespeareandco.princeton.edu/members/arndt/,J. Arndt,"Arndt, J.",60.00,,3 months,89,1,,1929-02-27,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1929-02-28,1929-02-28,https://shakespeareandco.princeton.edu/members/baile/,Cathleen Baile,"Baile, Cathleen",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-02-28,,https://shakespeareandco.princeton.edu/members/richardson-mrs-arthur/,Mrs. Arthur W. Richardson,"Richardson, Mrs. Arthur W.",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/spinoza/,Spinoza,,,,Unidentified. By or about Spinoza.,Lending Library Card,"Sylvia Beach, Mrs Arthur Richardson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/19b41b12-9a69-4bbd-9709-28461e3a1aca/manifest,https://iiif.princeton.edu/loris/figgy_prod/84%2F20%2Fb5%2F8420b5513cb24e73a85af5cf2afc7ead%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1929-02-28,1929-08-28,https://shakespeareandco.princeton.edu/members/alvear/,Elvira de Alvear,"de Alvear, Elvira",100.00,,6 months,181,1,,1929-02-28,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Elvira de Alvear Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/19d09c5e-a411-40f1-99df-f07f512e3901/manifest,;https://iiif.princeton.edu/loris/figgy_prod/1b%2F97%2Fdd%2F1b97dd672db940eba36ffbddce721450%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-02-28,1929-03-06,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/asquith-octavia/,Octavia,,"Asquith, Margot",1928,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2F00%2F2c%2Fcb002c24cc9a4d9c8fa834244db6afcc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-03-01,1929-03-12,https://shakespeareandco.princeton.edu/members/speaight-r-l/,R. L. Speaight,"Speaight, R. L.",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/huxley-point-counter-point/,Point Counter Point,,"Huxley, Aldous",1928,,Lending Library Card,"Sylvia Beach, R.L. Speaight Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c177755e-5b2b-40f4-9a9a-3f27b0f39076/manifest,https://iiif.princeton.edu/loris/figgy_prod/4a%2F6c%2F5d%2F4a6c5ddea7de415e81ca31a5dfdf001d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-03-02,1929-03-08,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/west-strange-necessity-essays/,Strange Necessity: Essays and Reviews,,"West, Rebecca",1928,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/70%2F1a%2Ff5%2F701af56e9b064e78a6e4135d00839f94%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1929-03-02,1929-03-02,https://shakespeareandco.princeton.edu/members/renault-3/,Renault,Renault,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-03-02,1929-03-05,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/vaerting-dominant-sex-study/,The Dominant Sex: A Study in the Sociology of Sex Differentiation,,"Vaerting, Mathilde;Vaerting, Mathias",1923,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/cf%2Fe8%2F57%2Fcfe8575743fb43c7a50cec35cb76d9a0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-03-03,1929-03-06,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/jesse-many-latitudes/,Many Latitudes,,"Jesse, F. Tennyson",1928,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/a6%2F8a%2F5b%2Fa68a5bf3d5a04efd8b4fbb7d8e63f1f0%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1929-03-04,1929-03-04,https://shakespeareandco.princeton.edu/members/charlier/,E. Charlier,"Charlier, E.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1929-03-04,1929-06-04,https://shakespeareandco.princeton.edu/members/briggs-2/,G. Briggs,"Briggs, G.",85.00,,3 months,92,2,,1929-03-04,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1929-03-04,1929-04-04,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",20.00,,1 month,31,1,,1929-03-04,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,;https://iiif.princeton.edu/loris/figgy_prod/9b%2Fc6%2Fa6%2F9bc6a6a69687467dbf15abe22893b03f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1929-03-04,1929-03-04,https://shakespeareandco.princeton.edu/members/howard-5/,Miss [unclear] Howard,"Howard, Miss [unclear]",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-03-04,1929-03-08,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/cabell-jurgen-comedy-justice/,Jurgen: A Comedy of Justice,,"Cabell, James Branch",1919,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/9b%2Fc6%2Fa6%2F9bc6a6a69687467dbf15abe22893b03f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1929-03-04,1929-04-04,https://shakespeareandco.princeton.edu/members/jackson-olga/,Olga Jackson,"Jackson, Olga",35.00,100.00,1 month,31,2,,1929-03-04,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-03-04,1929-03-08,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/lewis-man-knew-coolidge/,"The Man Who Knew Coolidge: Being the Soul of Lowell Schmaltz, Constructive and Nordic Citizen",,"Lewis, Sinclair",1928,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/9b%2Fc6%2Fa6%2F9bc6a6a69687467dbf15abe22893b03f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1929-03-05,1930-03-05,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",144.00,,1 year,365,1,,1929-05-03,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2F00%2F2c%2Fcb002c24cc9a4d9c8fa834244db6afcc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-03-05,1929-03-06,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/ellis-sexual-inversion-studies/,Sexual Inversion (Studies in the Psychology of Sex 2),,"Ellis, Havelock",1900,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/cf%2Fe8%2F57%2Fcfe8575743fb43c7a50cec35cb76d9a0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-03-06,1929-03-12,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/wells-way-world-going/,Way the World Is Going,,"Wells, H. G.",1928,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/cf%2Fe8%2F57%2Fcfe8575743fb43c7a50cec35cb76d9a0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-03-06,1929-04-23,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,48,,,https://shakespeareandco.princeton.edu/books/baring-cats-cradle/,Cat's Cradle,,"Baring, Maurice",1925,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2F00%2F2c%2Fcb002c24cc9a4d9c8fa834244db6afcc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-03-06,1929-03-08,https://shakespeareandco.princeton.edu/members/patmore-brigit/,Brigit Patmore,"Patmore, Brigit",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/barnes-ryder/,Ryder,,"Barnes, Djuna",1928,,Lending Library Card,"Sylvia Beach, Brigit Patmore Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ae9d6de8-7a88-4571-94bf-06881c4a2430/manifest,https://iiif.princeton.edu/loris/figgy_prod/60%2F5e%2F1e%2F605e1ee495af4ec9a400f53f99900ceb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1929-03-06,1929-04-06,https://shakespeareandco.princeton.edu/members/la-gorce-agnes-de/,AgnΓ¨s de La Gorce,"La Gorce, AgnΓ¨s de",20.00,50.00,1 month,31,1,,1929-03-06,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1929-03-06,1929-04-06,https://shakespeareandco.princeton.edu/members/forwood/,Mme K. Forwood,"Forwood, Mme K.",20.00,,1 month,31,1,,1929-03-02,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-03-06,1929-03-08,https://shakespeareandco.princeton.edu/members/patmore-brigit/,Brigit Patmore,"Patmore, Brigit",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/wescott-goodbye-wisconsin/,"Goodbye, Wisconsin",,"Wescott, Glenway",1928,,Lending Library Card,"Sylvia Beach, Brigit Patmore Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ae9d6de8-7a88-4571-94bf-06881c4a2430/manifest,https://iiif.princeton.edu/loris/figgy_prod/60%2F5e%2F1e%2F605e1ee495af4ec9a400f53f99900ceb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-03-06,1929-03-18,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/streets/,Streets,,,,Unidentified. Possibly Archibald Macleish's [*Streets in the Moon*](https://shakespeareandco.princeton.edu/books/macleish-streets-moon/) (1926).,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/a6%2F8a%2F5b%2Fa68a5bf3d5a04efd8b4fbb7d8e63f1f0%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1929-03-06,1929-04-06,https://shakespeareandco.princeton.edu/members/patmore-brigit/,Brigit Patmore,"Patmore, Brigit",25.00,50.00,1 month,31,1,,1929-03-06,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Brigit Patmore Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/ae9d6de8-7a88-4571-94bf-06881c4a2430/manifest,;https://iiif.princeton.edu/loris/figgy_prod/60%2F5e%2F1e%2F605e1ee495af4ec9a400f53f99900ceb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1929-03-06,1929-03-06,https://shakespeareandco.princeton.edu/members/crowell/,W. Crowell,"Crowell, W.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-03-08,1929-04-14,https://shakespeareandco.princeton.edu/members/patmore-brigit/,Brigit Patmore,"Patmore, Brigit",,,,,,,,,Returned,37,,,https://shakespeareandco.princeton.edu/books/obrien-best-short-stories-1928/,The Best Short Stories 1928: And the Yearbook of the American Short Story,,,1928,,Lending Library Card,"Sylvia Beach, Brigit Patmore Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ae9d6de8-7a88-4571-94bf-06881c4a2430/manifest,https://iiif.princeton.edu/loris/figgy_prod/60%2F5e%2F1e%2F605e1ee495af4ec9a400f53f99900ceb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-03-08,1929-03-11,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/walpole-wintersmoon/,Wintersmoon,,"Walpole, Hugh",1928,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/70%2F1a%2Ff5%2F701af56e9b064e78a6e4135d00839f94%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-03-08,1929-04-14,https://shakespeareandco.princeton.edu/members/patmore-brigit/,Brigit Patmore,"Patmore, Brigit",,,,,,,,,Returned,37,,,https://shakespeareandco.princeton.edu/books/mckay-home-harlem/,Home to Harlem,,"McKay, Claude",1928,,Lending Library Card,"Sylvia Beach, Brigit Patmore Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ae9d6de8-7a88-4571-94bf-06881c4a2430/manifest,https://iiif.princeton.edu/loris/figgy_prod/60%2F5e%2F1e%2F605e1ee495af4ec9a400f53f99900ceb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-03-08,1929-03-09,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/lowndes-one-ways/,One of Those Ways,,"Lowndes, Marie Belloc",1929,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/5c%2Fc1%2Fe1%2F5cc1e1b2d4e240d0b57fe96d7c0ba8b8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-03-08,1929-03-12,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/baring-daphne-adeane/,Daphne Adeane,,"Baring, Maurice",1927,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/9b%2Fc6%2Fa6%2F9bc6a6a69687467dbf15abe22893b03f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1929-03-08,1930-03-08,https://shakespeareandco.princeton.edu/members/bodington-oliver/,Oliver Bodington,"Bodington, Oliver",144.00,,1 year,365,1,,1929-03-08,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1929-03-09,1929-04-09,https://shakespeareandco.princeton.edu/members/haughwout/,Mr. Haughwout,"Haughwout, Mr.",20.00,50.00,1 month,31,1,,1929-03-09,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-03-09,1929-03-11,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/mackenzie-extremes-meet/,Extremes Meet,,"Mackenzie, Compton",1928,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/5c%2Fc1%2Fe1%2F5cc1e1b2d4e240d0b57fe96d7c0ba8b8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-03-09,1929-03-21,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/richardson-familiar-letters-important/,Familiar Letters on Important Occasions,,"Richardson, Samuel",1741,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/17%2Fc5%2F27%2F17c5279577094feb8c09e8e402cfb654%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-03-09,1929-03-21,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/gower/,Gower,,,,Unidentified. By or about John Gower.,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/17%2Fc5%2F27%2F17c5279577094feb8c09e8e402cfb654%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1929-03-09,1929-04-09,https://shakespeareandco.princeton.edu/members/nash-edward/,Edward Nash,"Nash, Edward",25.00,50.00,1 month,31,1,,1929-03-09,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-03-11,1929-03-18,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/bell-landmarks-nineteenth-century/,Landmarks in Nineteenth-Century Painting,,"Bell, Clive",1927,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/70%2F1a%2Ff5%2F701af56e9b064e78a6e4135d00839f94%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1929-03-11,1929-06-11,https://shakespeareandco.princeton.edu/members/crookston/,Mrs. Crookston,"Crookston, Mrs.",85.00,100.00,3 months,92,2,,1929-03-11,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-03-11,1929-05-05,https://shakespeareandco.princeton.edu/members/gilbert-stuart/,Stuart Gilbert,"Gilbert, Stuart",,,,,,,,,Returned,55,,,https://shakespeareandco.princeton.edu/books/damon-william-blake-philosophy/,William Blake: His Philosophy and Symbols,,"Damon, S. Foster",1924,,Lending Library Card,"Sylvia Beach, Stuart Gilbert Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/861dcb07-60d7-4a64-b1ba-6296bd9c66c3/manifest,https://iiif.princeton.edu/loris/figgy_prod/af%2Ff0%2Fc0%2Faff0c08e46c84bc68c186495fa2d3eba%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-03-11,1929-05-05,https://shakespeareandco.princeton.edu/members/gilbert-stuart/,Stuart Gilbert,"Gilbert, Stuart",,,,,,,,,Returned,55,,,https://shakespeareandco.princeton.edu/books/swift-choice-works-dean/,The Choice Works of Dean Swift in Prose and Verse,,"Swift, Jonathan",1876,,Lending Library Card,"Sylvia Beach, Stuart Gilbert Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/861dcb07-60d7-4a64-b1ba-6296bd9c66c3/manifest,https://iiif.princeton.edu/loris/figgy_prod/af%2Ff0%2Fc0%2Faff0c08e46c84bc68c186495fa2d3eba%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-03-11,,https://shakespeareandco.princeton.edu/members/gilbert-stuart/,Stuart Gilbert,"Gilbert, Stuart",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/joyce-concise-history-ireland/,A Concise History of Ireland,,"Joyce, P. W.",1903,,Lending Library Card,"Sylvia Beach, Stuart Gilbert Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/861dcb07-60d7-4a64-b1ba-6296bd9c66c3/manifest,https://iiif.princeton.edu/loris/figgy_prod/af%2Ff0%2Fc0%2Faff0c08e46c84bc68c186495fa2d3eba%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-03-11,,https://shakespeareandco.princeton.edu/members/gilbert-stuart/,Stuart Gilbert,"Gilbert, Stuart",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/clutton-brock-shakespeares-hamlet/,"Shakespeare's ""Hamlet""",,"Clutton-Brock, A.",1922,,Lending Library Card,"Sylvia Beach, Stuart Gilbert Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/861dcb07-60d7-4a64-b1ba-6296bd9c66c3/manifest,https://iiif.princeton.edu/loris/figgy_prod/af%2Ff0%2Fc0%2Faff0c08e46c84bc68c186495fa2d3eba%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-03-11,1929-05-05,https://shakespeareandco.princeton.edu/members/gilbert-stuart/,Stuart Gilbert,"Gilbert, Stuart",,,,,,,,,Returned,55,,,https://shakespeareandco.princeton.edu/books/blake-blakes-works/,Willam Blake's Works,,"Blake, William",,"At least three editions of Blake's collected works circulated in the lending library. Monique de Vigan borrowed The Poetical Works of William Blake, edited by William Michael Rossetti (Bell, 1874). Jean PrΓ©vost, John Rodker, Guy de Pourtales, Catherine Yarrow, Ella Cassigne, FranΓ§oise Bernheim, and Francoise de Marcilly (in 1939) borrowed The Poetical Works of William Blake, edited by John Sampson (Oxford, 1905). Armand Petitjean, Antoinette Bernheim, and Francoise de Marcilly (in 1938) borrowed Poetry and Prose of William Blake, edited by Geoffrey Keynes (Nonesuch, 1927).",Lending Library Card,"Sylvia Beach, Stuart Gilbert Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/861dcb07-60d7-4a64-b1ba-6296bd9c66c3/manifest,https://iiif.princeton.edu/loris/figgy_prod/af%2Ff0%2Fc0%2Faff0c08e46c84bc68c186495fa2d3eba%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1929-03-11,1929-04-11,https://shakespeareandco.princeton.edu/members/malbank/,Mr. Malbank,"Malban, Mr.",35.00,100.00,1 month,31,2,,1929-03-11,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-03-11,1929-03-13,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/mackenzie-early-life-adventures/,The Early Life and Adventures of Sylvia Scarlett,,"Mackenzie, Compton",1918,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/5c%2Fc1%2Fe1%2F5cc1e1b2d4e240d0b57fe96d7c0ba8b8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-03-11,1929-03-12,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/carr-rampant-age/,The Rampant Age,,"Carr, Robert Spencer",1928,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/ee%2F79%2Fb9%2Fee79b9f1f5e64724a09ee5b343ebd05a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-03-12,1929-03-20,https://shakespeareandco.princeton.edu/members/seager/,Katherine Seager,"Seager, Katherine",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/beerbohm-zuleika-dobson/,Zuleika Dobson,,"Beerbohm, Max",1911,,Lending Library Card,"Sylvia Beach, Katherine Seager Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2e6c33f9-87d4-4c5a-b5ee-9d023f87da1d/manifest,https://iiif.princeton.edu/loris/figgy_prod/db%2F89%2F4a%2Fdb894a1bfab446d8a5038c2c0876d247%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-03-12,1929-03-20,https://shakespeareandco.princeton.edu/members/speaight-r-l/,R. L. Speaight,"Speaight, R. L.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/harris-contemporary-portraits/,Contemporary Portraits,,"Harris, Frank",1915,,Lending Library Card,"Sylvia Beach, R.L. Speaight Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c177755e-5b2b-40f4-9a9a-3f27b0f39076/manifest,https://iiif.princeton.edu/loris/figgy_prod/4a%2F6c%2F5d%2F4a6c5ddea7de415e81ca31a5dfdf001d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-03-12,1929-03-23,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/rinehart-two-flights/,Two Flights Up,,"Rinehart, Mary Roberts",1928,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/ee%2F79%2Fb9%2Fee79b9f1f5e64724a09ee5b343ebd05a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-03-12,1929-03-15,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/galsworthy-swan-song/,Swan Song (A Modern Comedy),,"Galsworthy, John",1928,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fd7%2F90%2Fcbd790e6c7ba4d4d8045abbe354ee697%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-03-12,1929-03-20,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/gale-miss-lulu-bett/,Miss Lulu Bett,,"Gale, Zona",1920,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/9b%2Fc6%2Fa6%2F9bc6a6a69687467dbf15abe22893b03f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1929-03-13,1929-04-13,https://shakespeareandco.princeton.edu/members/russell-mrs/,Mrs. Guy Russell,"Russell, Mrs. Guy",35.00,100.00,1 month,31,2,,1929-03-13,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1929-03-13,1929-03-13,https://shakespeareandco.princeton.edu/members/gordon-i/,I. Gordon,"Gordon, I.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1929-03-13,1929-04-13,https://shakespeareandco.princeton.edu/members/kelsey-mary/,Mary Kelsey,"Kelsey, Mary",25.00,,1 month,31,1,,1929-03-05,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Purchase,1929-03-13,1929-03-13,https://shakespeareandco.princeton.edu/members/alvear/,Elvira de Alvear,"de Alvear, Elvira",,,,,,,,,,,12.50,FRF,https://shakespeareandco.princeton.edu/books/wilde-happy-prince-tales/,The Happy Prince and Other Tales,,"Wilde, Oscar",1888,,Lending Library Card,"Sylvia Beach, Elvira de Alvear Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/19d09c5e-a411-40f1-99df-f07f512e3901/manifest,https://iiif.princeton.edu/loris/figgy_prod/1b%2F97%2Fdd%2F1b97dd672db940eba36ffbddce721450%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-03-13,1929-03-15,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/mackenzie-sylvia-michael/,Sylvia & Michael,,"Mackenzie, Compton",1919,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/5c%2Fc1%2Fe1%2F5cc1e1b2d4e240d0b57fe96d7c0ba8b8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-03-13,1929-03-18,https://shakespeareandco.princeton.edu/members/mayre-n-e/,N. E. Mayre,"Mayre, N. E.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/sterne-works-sterne-life/,"The Works of Sterne: The Life and Opinions of Tristram Shandy, Gentleman & A Sentimental Journey through France and Italy","Vol. 1 The Life and Opinions of Tristram Shandy, Gentleman","Sterne, Laurence",1900,"For additional borrows, see [*Tristram Shandy*](https://shakespeareandco.princeton.edu/books/sterne-life-opinions-tristram/) and [*A Sentimental Journey*](https://shakespeareandco.princeton.edu/books/sterne-sentimental-journey-france/).",Lending Library Card,"Sylvia Beach, N.E. Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ec1c32ef-7770-43a3-a5ae-d6afe67a337b/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F18%2F12%2F631812f8c131443ab33c1ab716110a6f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-03-13,1929-04-04,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/defoe-moll-flanders-roxana/,Moll Flanders and Roxana,,"Defoe, Daniel",1724,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/af%2Fcd%2F4b%2Fafcd4b7698644be4ad8edf82445910ee%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1929-03-13,1929-04-13,https://shakespeareandco.princeton.edu/members/case/,Mrs. Case,"Case, Mrs.",25.00,50.00,1 month,31,1,,1929-03-13,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-03-13,1929-08-01,https://shakespeareandco.princeton.edu/members/alvear/,Elvira de Alvear,"de Alvear, Elvira",,,,,,,,,Returned,141,,,https://shakespeareandco.princeton.edu/books/yeats-poems/,Poems,,"Yeats, William Butler",,Unidentified edition or editions.,Lending Library Card,"Sylvia Beach, Elvira de Alvear Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/19d09c5e-a411-40f1-99df-f07f512e3901/manifest,https://iiif.princeton.edu/loris/figgy_prod/1b%2F97%2Fdd%2F1b97dd672db940eba36ffbddce721450%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-03-14,1929-03-15,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/ellis-analysis-sexual-impulse/,Analysis of the Sexual Impulse; Love and Pain; The Sexual Impulse in Women (Studies in the Psychology of Sex 3),,"Ellis, Havelock",1903,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/cf%2Fe8%2F57%2Fcfe8575743fb43c7a50cec35cb76d9a0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1929-03-14,1929-04-14,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",25.00,,1 month,31,1,,1929-03-14,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,;https://iiif.princeton.edu/loris/figgy_prod/cf%2Fe8%2F57%2Fcfe8575743fb43c7a50cec35cb76d9a0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1929-03-14,1929-03-14,https://shakespeareandco.princeton.edu/members/macgregor-mary/,Mary MacGregor,Mary MacGregor,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Supplement,1929-03-14,1929-04-06,https://shakespeareandco.princeton.edu/members/patmore-brigit/,Brigit Patmore,"Patmore, Brigit",10.00,,23 days,23,1,,1929-03-14,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Brigit Patmore Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/ae9d6de8-7a88-4571-94bf-06881c4a2430/manifest,;https://iiif.princeton.edu/loris/figgy_prod/60%2F5e%2F1e%2F605e1ee495af4ec9a400f53f99900ceb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-03-15,1929-03-18,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/woolf-orlando-biography/,Orlando: A Biography,,"Woolf, Virginia",1928,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/5c%2Fc1%2Fe1%2F5cc1e1b2d4e240d0b57fe96d7c0ba8b8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-03-15,1929-03-19,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/ellis-sexual-selection-man/,Sexual Selection in Man (Studies in the Psychology of Sex 4),,"Ellis, Havelock",1905,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/cf%2Fe8%2F57%2Fcfe8575743fb43c7a50cec35cb76d9a0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1929-03-16,1929-03-16,https://shakespeareandco.princeton.edu/members/malbank/,Mr. Malbank,"Malban, Mr.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1929-03-16,1929-06-16,https://shakespeareandco.princeton.edu/members/church-virginia/,Virginia Church,"Church, Virginia",60.00,50.00,3 months,92,1,,1929-03-16,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-03-18,1929-03-21,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/bennett-accident/,Accident,,"Bennett, Arnold",1929,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/a6%2F8a%2F5b%2Fa68a5bf3d5a04efd8b4fbb7d8e63f1f0%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-03-18,1929-03-21,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/van-vechten-spider-boy-scenario/,Spider Boy: A Scenario for a Moving Picture,,"Van Vechten, Carl",1928,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/70%2F1a%2Ff5%2F701af56e9b064e78a6e4135d00839f94%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1929-03-18,1929-03-18,https://shakespeareandco.princeton.edu/members/duncan-8/,Duncan,Duncan,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-03-18,1929-03-25,https://shakespeareandco.princeton.edu/members/mayre-n-e/,N. E. Mayre,"Mayre, N. E.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/fielding-joseph-andrews/,Joseph Andrews,,"Fielding, Henry",1742,,Lending Library Card,"Sylvia Beach, N.E. Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ec1c32ef-7770-43a3-a5ae-d6afe67a337b/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F18%2F12%2F631812f8c131443ab33c1ab716110a6f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-03-18,1929-03-20,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/moore-story-tellers-holiday/,A Story-Teller's Holiday,,"Moore, George",1918,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/5c%2Fc1%2Fe1%2F5cc1e1b2d4e240d0b57fe96d7c0ba8b8%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1929-03-19,1929-03-19,https://shakespeareandco.princeton.edu/members/wilson-12/,Wilson,Wilson,,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-03-19,1929-04-24,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,36,,,https://shakespeareandco.princeton.edu/books/brackenbury-frederick-great/,Frederick the Great,,"Brackenbury, C. B.",1884,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/09%2F61%2Ffd%2F0961fd4d9f9444578dfba1955d1ef01a%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1929-03-19,1929-04-19,https://shakespeareandco.princeton.edu/members/finn-allan/,Allan Finn,"Finn, Allan",20.00,,1 month,31,2,AdL,1929-03-19,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1929-03-19,1929-03-19,https://shakespeareandco.princeton.edu/members/haughwout/,Mr. Haughwout,"Haughwout, Mr.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-03-19,1929-03-25,https://shakespeareandco.princeton.edu/members/potocki-de-montalk/,Geoffrey Potocki de Montalk,"Potocki de Montalk, Geoffrey",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/hemingway-men-without-women/,Men without Women,,"Hemingway, Ernest",1927,,Lending Library Card,"Sylvia Beach, Geoffrey Potocki de Montalk Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3d3346d0-18e1-4066-8756-0990f97aac13/manifest,https://iiif.princeton.edu/loris/figgy_prod/78%2F9d%2Fbd%2F789dbdcd3ce8447ea3796376cd13cb51%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1929-03-19,1929-03-19,https://shakespeareandco.princeton.edu/members/johnston-m-j/,Mrs. M. J. Johnston,"Johnston, Mrs. M. J.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-03-19,1929-03-20,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/lawrence-st-mawr/,St. Mawr,,"Lawrence, D. H.",1925,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/cf%2Fe8%2F57%2Fcfe8575743fb43c7a50cec35cb76d9a0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-03-20,1929-03-21,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/lawrence-st-mawr/,St. Mawr,,"Lawrence, D. H.",1925,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/5c%2Fc1%2Fe1%2F5cc1e1b2d4e240d0b57fe96d7c0ba8b8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-03-20,1929-03-25,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/stevenson-virginibus-puerisque-papers/,Virginibus Puerisque and Other Papers,,"Stevenson, Robert Louis",1881,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/cf%2Fe8%2F57%2Fcfe8575743fb43c7a50cec35cb76d9a0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1929-03-20,1929-04-20,https://shakespeareandco.princeton.edu/members/burton-2/,Katherine Burton,"Burton, Katherine",20.00,50.00,1 month,31,1,,1929-03-20,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-03-20,1929-03-20,https://shakespeareandco.princeton.edu/members/seager/,Katherine Seager,"Seager, Katherine",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/housman-shropshire-lad/,A Shropshire Lad,,"Housman, A. E.",1896,,Lending Library Card,"Sylvia Beach, Katherine Seager Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2e6c33f9-87d4-4c5a-b5ee-9d023f87da1d/manifest,https://iiif.princeton.edu/loris/figgy_prod/97%2F10%2F76%2F9710767a1c2345cf82b7b334d09ead67%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-03-20,1929-04-03,https://shakespeareandco.princeton.edu/members/speaight-r-l/,R. L. Speaight,"Speaight, R. L.",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/de-la-mare-connoisseur-stories/,The Connoisseur and Other Stories,,"De la Mare, Walter",1926,,Lending Library Card,"Sylvia Beach, R.L. Speaight Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c177755e-5b2b-40f4-9a9a-3f27b0f39076/manifest,https://iiif.princeton.edu/loris/figgy_prod/4a%2F6c%2F5d%2F4a6c5ddea7de415e81ca31a5dfdf001d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-03-20,1929-03-26,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/clark-eugene-oneill-man/,Eugene O'Neill: The Man and His Plays,,"Clark, Barrett H.",1926,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/9b%2Fc6%2Fa6%2F9bc6a6a69687467dbf15abe22893b03f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-03-20,1929-03-26,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/scott-moncrieff-marcel-proust-english/,Marcel Proust: An English Tribute,,"Scott-Moncrieff, C. K.",1923,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/9b%2Fc6%2Fa6%2F9bc6a6a69687467dbf15abe22893b03f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-03-20,1929-03-26,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/williams-spring/,Spring and All,,"Williams, William Carlos",1923,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/9b%2Fc6%2Fa6%2F9bc6a6a69687467dbf15abe22893b03f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-03-21,1929-03-23,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/montague-action-stories/,Action and Other Stories,,"Montague, C. E.",1928,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/0b%2F4b%2F56%2F0b4b565bfedb4014a2309ab7cc8cc359%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-03-21,1929-03-28,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/king-england-wordsworth-dickens/,England from Wordsworth to Dickens,,"King, R. W.",1928,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/c7%2F9b%2F41%2Fc79b419d98a942698de27249b5d06916%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1929-03-21,1929-04-21,https://shakespeareandco.princeton.edu/members/lacourciere-r-s/,R. S. LacourciΓ¨re,"LacourciΓ¨re, R. S.",25.00,50.00,1 month,31,1,,1929-03-21,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-03-21,1929-03-28,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/eliot-lancelot-andrewes-essays/,For Lancelot Andrewes: Essays on Style and Order,,"Eliot, T. S.",1928,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/c7%2F9b%2F41%2Fc79b419d98a942698de27249b5d06916%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-03-21,1929-03-29,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/weston-ritual-romance/,From Ritual to Romance,,"Weston, Jessie",1920,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/5c%2Fc1%2Fe1%2F5cc1e1b2d4e240d0b57fe96d7c0ba8b8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-03-21,1929-03-23,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/bennett-matador-five-towns/,The Matador of the Five Towns and Other Stories,,"Bennett, Arnold",1912,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/0b%2F4b%2F56%2F0b4b565bfedb4014a2309ab7cc8cc359%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-03-21,1929-03-28,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/wilder-cabala/,The Cabala,,"Wilder, Thornton",1926,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/c7%2F9b%2F41%2Fc79b419d98a942698de27249b5d06916%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-03-21,1929-03-25,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/borden-jehovahs-day/,Jehovah's Day,,"Borden, Mary",1928,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/70%2F1a%2Ff5%2F701af56e9b064e78a6e4135d00839f94%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-03-22,1929-03-26,https://shakespeareandco.princeton.edu/members/seager/,Katherine Seager,"Seager, Katherine",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/de-la-mare-broomsticks-tales/,Broomsticks and Other Tales,,"De la Mare, Walter",1925,,Lending Library Card,"Sylvia Beach, Katherine Seager Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2e6c33f9-87d4-4c5a-b5ee-9d023f87da1d/manifest,https://iiif.princeton.edu/loris/figgy_prod/97%2F10%2F76%2F9710767a1c2345cf82b7b334d09ead67%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1929-03-22,1929-03-22,https://shakespeareandco.princeton.edu/members/corstret-1/,Corstret,Corstret,,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1929-03-22,1929-03-22,https://shakespeareandco.princeton.edu/members/dilimier/,Simone Dalimier,"Dalimier, Simone",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1929-03-23,1929-04-23,https://shakespeareandco.princeton.edu/members/fitzgerald-f-scott/,F. Scott Fitzgerald,"Fitzgerald, F. Scott",25.00,50.00,1 month,31,1,,1929-03-23,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-03-23,1929-03-30,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/galsworthy-swan-song/,Swan Song (A Modern Comedy),,"Galsworthy, John",1928,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/ee%2F79%2Fb9%2Fee79b9f1f5e64724a09ee5b343ebd05a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-03-23,1929-03-28,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/bennett-woman-stole-everything/,The Woman Who Stole Everything and Other Stories,,"Bennett, Arnold",1927,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/0b%2F4b%2F56%2F0b4b565bfedb4014a2309ab7cc8cc359%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-03-23,1929-03-28,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/kaye-smith-village-doctor/,The Village Doctor,,"Kaye-Smith, Sheila",1929,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/0b%2F4b%2F56%2F0b4b565bfedb4014a2309ab7cc8cc359%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-03-23,1929-04-05,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/meyerstein-pleasure-lover/,The Pleasure Lover,,"Meyerstein, Edward Harry William",1925,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/70%2F1a%2Ff5%2F701af56e9b064e78a6e4135d00839f94%2Fintermediate_file.jp2/full/full/0/default.jpg
+Generic,1929-03-25,,https://shakespeareandco.princeton.edu/members/mcalmon-robert/,Robert McAlmon,"McAlmon, Robert",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/exile/,Exile,"no. 4, Autumn 1928",,,,Lending Library Card,"Sylvia Beach, Robert McAlmon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/889ff3f8-b62c-42f6-8e88-1dd95434b2f5/manifest,https://iiif-cloud.princeton.edu/iiif/2/96%2Fa8%2F8e%2F96a88eb181d6441e9419ad605d99c121%2Fintermediate_file/full/full/0/default.jpg
+Generic,1929-03-25,,https://shakespeareandco.princeton.edu/members/mcalmon-robert/,Robert McAlmon,"McAlmon, Robert",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/jolas-transition/,transition,"no. 15, 1929",,,,Lending Library Card,"Sylvia Beach, Robert McAlmon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/889ff3f8-b62c-42f6-8e88-1dd95434b2f5/manifest,https://iiif-cloud.princeton.edu/iiif/2/96%2Fa8%2F8e%2F96a88eb181d6441e9419ad605d99c121%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-03-25,1929-05-02,https://shakespeareandco.princeton.edu/members/mayre-n-e/,N. E. Mayre,"Mayre, N. E.",,,,,,,,,Returned,38,,,https://shakespeareandco.princeton.edu/books/fielding-history-tom-jones/,"The History of Tom Jones, a Foundling",Vol. 2,"Fielding, Henry",1749,,Lending Library Card,"Sylvia Beach, N.E. Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ec1c32ef-7770-43a3-a5ae-d6afe67a337b/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F18%2F12%2F631812f8c131443ab33c1ab716110a6f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-03-25,1929-04-15,https://shakespeareandco.princeton.edu/members/mayre-n-e/,N. E. Mayre,"Mayre, N. E.",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/fielding-history-tom-jones/,"The History of Tom Jones, a Foundling",Vol. 1,"Fielding, Henry",1749,,Lending Library Card,"Sylvia Beach, N.E. Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ec1c32ef-7770-43a3-a5ae-d6afe67a337b/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F18%2F12%2F631812f8c131443ab33c1ab716110a6f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-03-25,1929-04-15,https://shakespeareandco.princeton.edu/members/potocki-de-montalk/,Geoffrey Potocki de Montalk,"Potocki de Montalk, Geoffrey",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/lawrence-women-love/,Women in Love,,"Lawrence, D. H.",1920,,Lending Library Card,"Sylvia Beach, Geoffrey Potocki de Montalk Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3d3346d0-18e1-4066-8756-0990f97aac13/manifest,https://iiif.princeton.edu/loris/figgy_prod/78%2F9d%2Fbd%2F789dbdcd3ce8447ea3796376cd13cb51%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-03-25,1929-03-29,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/emerson-essays/,Essays,,"Emerson, Ralph Waldo",,Eric Culley borrowed *Essays: First Series* (1841) and *Essays: Second Series* (1844). Monique de Vigan borrowed volume 2 of an unspecified edition.,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/cf%2Fe8%2F57%2Fcfe8575743fb43c7a50cec35cb76d9a0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1929-03-25,1929-04-08,https://shakespeareandco.princeton.edu/members/canavaggia-2/,Canavaggia,Canavaggia,14.00,,2 weeks,14,,,1929-03-25,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-03-26,1929-04-08,https://shakespeareandco.princeton.edu/members/seager/,Katherine Seager,"Seager, Katherine",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/waugh-georgian-stories-1927/,"Georgian Stories, 1927",,,1928,,Lending Library Card,"Sylvia Beach, Katherine Seager Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2e6c33f9-87d4-4c5a-b5ee-9d023f87da1d/manifest,https://iiif.princeton.edu/loris/figgy_prod/97%2F10%2F76%2F9710767a1c2345cf82b7b334d09ead67%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-03-28,1929-04-13,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/strachey-elizabeth-essex-tragic/,Elizabeth and Essex: A Tragic History,,"Strachey, Giles Lytton",1928,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/c7%2F9b%2F41%2Fc79b419d98a942698de27249b5d06916%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-03-28,1929-03-30,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/lowndes-story-ivy/,The Story of Ivy,,"Lowndes, Marie Belloc",1927,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/0b%2F4b%2F56%2F0b4b565bfedb4014a2309ab7cc8cc359%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-03-28,1929-04-13,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/forster-room-view/,A Room with a View,,"Forster, E. M.",,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/c7%2F9b%2F41%2Fc79b419d98a942698de27249b5d06916%2Fintermediate_file/full/full/0/default.jpg
+Generic,1929-03-29,,https://shakespeareandco.princeton.edu/members/mcalmon-robert/,Robert McAlmon,"McAlmon, Robert",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/lanham-sailors-dont-care/,Sailors Don't Care,,"Lanham, Edwin",1929,,Lending Library Card,"Sylvia Beach, Robert McAlmon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/889ff3f8-b62c-42f6-8e88-1dd95434b2f5/manifest,https://iiif-cloud.princeton.edu/iiif/2/96%2Fa8%2F8e%2F96a88eb181d6441e9419ad605d99c121%2Fintermediate_file/full/full/0/default.jpg
+Generic,1929-03-29,,https://shakespeareandco.princeton.edu/members/mcalmon-robert/,Robert McAlmon,"McAlmon, Robert",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/lanham-sailors-dont-care/,Sailors Don't Care,,"Lanham, Edwin",1929,,Lending Library Card,"Sylvia Beach, Robert McAlmon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/889ff3f8-b62c-42f6-8e88-1dd95434b2f5/manifest,https://iiif-cloud.princeton.edu/iiif/2/96%2Fa8%2F8e%2F96a88eb181d6441e9419ad605d99c121%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-03-29,1929-04-02,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/sinclair-boston/,Boston,Vol. 1,"Sinclair, Upton",1928,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/5c%2Fc1%2Fe1%2F5cc1e1b2d4e240d0b57fe96d7c0ba8b8%2Fintermediate_file/full/full/0/default.jpg
+Crossed out,1929-03-29,,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/spengler-decline-west/,The Decline of the West,Vol. 2,"Spengler, Oswald",1926,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/12%2Fc0%2F9a%2F12c09a547466442eb8070b17b3423a31%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-03-29,1929-04-05,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/huxley-antic-hay/,Antic Hay,,"Huxley, Aldous",1923,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/cf%2Fe8%2F57%2Fcfe8575743fb43c7a50cec35cb76d9a0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Generic,1929-03-29,,https://shakespeareandco.princeton.edu/members/mcalmon-robert/,Robert McAlmon,"McAlmon, Robert",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/lanham-sailors-dont-care/,Sailors Don't Care,,"Lanham, Edwin",1929,,Lending Library Card,"Sylvia Beach, Robert McAlmon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/889ff3f8-b62c-42f6-8e88-1dd95434b2f5/manifest,https://iiif-cloud.princeton.edu/iiif/2/96%2Fa8%2F8e%2F96a88eb181d6441e9419ad605d99c121%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-03-29,1929-04-20,https://shakespeareandco.princeton.edu/members/patmore-brigit/,Brigit Patmore,"Patmore, Brigit",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/van-vechten-tiger-house/,The Tiger in the House,,"Van Vechten, Carl",1920,,Lending Library Card,"Sylvia Beach, Brigit Patmore Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ae9d6de8-7a88-4571-94bf-06881c4a2430/manifest,https://iiif.princeton.edu/loris/figgy_prod/60%2F5e%2F1e%2F605e1ee495af4ec9a400f53f99900ceb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-03-29,1929-04-30,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,32,,,https://shakespeareandco.princeton.edu/books/mackenzie-coral-sequel-carnival/,"Coral: A Sequel to ""Carnival""",,"Mackenzie, Compton",1925,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/5c%2Fc1%2Fe1%2F5cc1e1b2d4e240d0b57fe96d7c0ba8b8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-03-30,1929-04-09,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/bennett-accident/,Accident,,"Bennett, Arnold",1929,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/ee%2F79%2Fb9%2Fee79b9f1f5e64724a09ee5b343ebd05a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-03-30,1929-04-04,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/footner-velvet-hand-new/,The Velvet Hand: New Madame Storey Mysteries,,"Footner, Hulbert",1928,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/0b%2F4b%2F56%2F0b4b565bfedb4014a2309ab7cc8cc359%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-04-02,1930-01-18,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Returned,291,,,https://shakespeareandco.princeton.edu/books/werner-brigham-young/,Brigham Young,,"Werner, M. R.",1925,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1929-04-02,1929-04-04,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/sinclair-boston/,Boston,Vol. 2,"Sinclair, Upton",1928,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/5c%2Fc1%2Fe1%2F5cc1e1b2d4e240d0b57fe96d7c0ba8b8%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1929-04-02,1929-07-02,https://shakespeareandco.princeton.edu/members/de-caro-anita/;https://shakespeareandco.princeton.edu/members/de-caro-1/,Anita de Caro;Mr. de Caro,"de Caro, Anita;de Caro, Mr.",68.00,,3 months,91,2,,1929-02-28,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-04-02,1929-05-30,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,58,,,https://shakespeareandco.princeton.edu/books/mencken-american-mercury/,The American Mercury,"Vol. 10, no. 38, Feb 1927",,,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Fb9%2Fad%2Fccb9adb778e74d51bcd6d04425f9e15d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-04-02,1929-05-30,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,58,,,https://shakespeareandco.princeton.edu/books/mencken-american-mercury/,The American Mercury,"Vol. 13, no. 51, Mar 1928",,,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Fb9%2Fad%2Fccb9adb778e74d51bcd6d04425f9e15d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-04-02,1929-05-30,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,58,,,https://shakespeareandco.princeton.edu/books/mencken-american-mercury/,The American Mercury,"Vol. 14, no. 56, Aug 1928",,,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Fb9%2Fad%2Fccb9adb778e74d51bcd6d04425f9e15d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-04-02,1930-01-18,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Returned,291,,,https://shakespeareandco.princeton.edu/books/werner-barnum/,Barnum,,"Werner, M. R.",1923,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Renewal,1929-04-03,1929-10-03,https://shakespeareandco.princeton.edu/members/hervey-mr/;https://shakespeareandco.princeton.edu/members/hervey-2/,Mr. Hervey;Mrs. Hervey,"Hervey, Mr.;Hervey, Mrs.",300.00,,6 months,183,4,,1929-01-30,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1929-04-03,1929-05-03,https://shakespeareandco.princeton.edu/members/fraser-e/,E. M. Fraser,"Fraser, E. M.",20.00,150.00,1 month,30,1,Professor / Teacher,1929-04-03,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-04-04,1929-04-08,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/mackenzie-vestal-fire/,Vestal Fire,,"Mackenzie, Compton",1927,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/5c%2Fc1%2Fe1%2F5cc1e1b2d4e240d0b57fe96d7c0ba8b8%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1929-04-04,1929-05-04,https://shakespeareandco.princeton.edu/members/levinson-2/,Levinson,Levinson,28.00,,1 month,30,2,Professor / Teacher,1929-04-02,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-04-04,1929-04-08,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/hopkins-london-pilgrimages/,London Pilgrimages,,"Hopkins, R. Thurston",1928,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/5c%2Fc1%2Fe1%2F5cc1e1b2d4e240d0b57fe96d7c0ba8b8%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1929-04-04,1929-07-04,https://shakespeareandco.princeton.edu/members/kennedy-fitzroy/,Fitzroy Kennedy,"Kennedy, Fitzroy",85.00,,3 months,91,2,,1929-04-04,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1929-04-04,1929-07-04,https://shakespeareandco.princeton.edu/members/kennedy-robert-1/,Robert Kennedy,"Kennedy, Robert",145.00,,3 months,91,3,,1929-04-04,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1929-04-04,1929-04-04,https://shakespeareandco.princeton.edu/members/fraser-e/,E. M. Fraser,"Fraser, E. M.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-04-04,1929-04-10,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/richards-hasty-marriage/,The Hasty Marriage,,"Richards, Grant",1928,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/0b%2F4b%2F56%2F0b4b565bfedb4014a2309ab7cc8cc359%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-04-04,1929-04-10,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/wilder-angel-troubled-waters/,The Angel That Troubled the Waters,,"Wilder, Thornton",1928,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/0b%2F4b%2F56%2F0b4b565bfedb4014a2309ab7cc8cc359%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-04-04,1929-04-11,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/mackenzie-extremes-meet/,Extremes Meet,,"Mackenzie, Compton",1928,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/af%2Fcd%2F4b%2Fafcd4b7698644be4ad8edf82445910ee%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-04-05,1929-04-18,https://shakespeareandco.princeton.edu/members/jackson-5/,Mrs. Jackson,"Jackson, Mrs.",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/huxley-point-counter-point/,Point Counter Point,,"Huxley, Aldous",1928,,Lending Library Card,"Sylvia Beach, Mrs. Jackson Lending Library Card, Box 59, Folder 6, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ac6269e-f2f6-4df6-861c-40ac8f15296d/manifest,https://iiif-cloud.princeton.edu/iiif/2/58%2F37%2Fbd%2F5837bd0a8ae24868917fb859e2d727a5%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-04-05,1929-04-18,https://shakespeareandco.princeton.edu/members/jackson-5/,Mrs. Jackson,"Jackson, Mrs.",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/hall-adams-breed/,Adam's Breed,,"Hall, Radclyffe",1926,,Lending Library Card,"Sylvia Beach, Mrs. Jackson Lending Library Card, Box 59, Folder 6, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ac6269e-f2f6-4df6-861c-40ac8f15296d/manifest,https://iiif-cloud.princeton.edu/iiif/2/58%2F37%2Fbd%2F5837bd0a8ae24868917fb859e2d727a5%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-04-05,1929-04-12,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/stephens-crock-gold/,The Crock of Gold,,"Stephens, James",1912,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/cf%2Fe8%2F57%2Fcfe8575743fb43c7a50cec35cb76d9a0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1929-04-05,1929-07-05,https://shakespeareandco.princeton.edu/members/jackson-5/,Mrs. Jackson,"Jackson, Mrs.",85.00,,3 months,91,2,,1929-04-05,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Mrs. Jackson Lending Library Card, Box 59, Folder 6, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/7ac6269e-f2f6-4df6-861c-40ac8f15296d/manifest,;https://iiif-cloud.princeton.edu/iiif/2/58%2F37%2Fbd%2F5837bd0a8ae24868917fb859e2d727a5%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1929-04-06,1929-05-06,https://shakespeareandco.princeton.edu/members/morris-mary/,Mary Morris,"Morris, Mary",25.00,,1 month,30,1,,1929-04-06,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1929-04-06,1929-05-06,https://shakespeareandco.princeton.edu/members/la-gorce-agnes-de/,AgnΓ¨s de La Gorce,"La Gorce, AgnΓ¨s de",20.00,,1 month,30,1,Student,1929-04-25,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-04-06,1929-04-15,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/van-dine-greene-murder-case/,The Greene Murder Case: A Philo Vance Story,,"Van Dine, S. S.",1928,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/ed%2F69%2F87%2Fed698743ad5641058ccc97f94cdc5360%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1929-04-06,1929-05-06,https://shakespeareandco.princeton.edu/members/forwood/,Mme K. Forwood,"Forwood, Mme K.",20.00,,1 month,30,1,Professor / Teacher,1929-04-02,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1929-04-06,1930-04-06,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",180.00,50.00,1 year,365,1,,1929-04-06,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,;https://iiif.princeton.edu/loris/figgy_prod/ed%2F69%2F87%2Fed698743ad5641058ccc97f94cdc5360%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1929-04-08,1929-05-08,https://shakespeareandco.princeton.edu/members/denny/,N. Denny,"Denny, N.",25.00,50.00,1 month,30,1,,1929-04-08,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1929-04-08,1929-04-08,https://shakespeareandco.princeton.edu/members/edwards-7/,Mrs. W. Edwards,"Edwards, Mrs. W.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1929-04-08,1929-07-08,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",48.00,,3 months,91,1,,1929-04-15,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,;https://iiif.princeton.edu/loris/figgy_prod/b0%2Ffc%2F7c%2Fb0fc7c5cf0dc424e9e3c282cd129a6be%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1929-04-08,1929-05-08,https://shakespeareandco.princeton.edu/members/cloupeau/,J. Cloupeau,"Cloupeau, J.",28.00,100.00,1 month,30,2,,1929-04-08,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-04-08,1929-04-10,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/strachey-elizabeth-essex-tragic/,Elizabeth and Essex: A Tragic History,,"Strachey, Giles Lytton",1928,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/5c%2Fc1%2Fe1%2F5cc1e1b2d4e240d0b57fe96d7c0ba8b8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-04-08,1929-04-13,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/mackenzie-vestal-fire/,Vestal Fire,,"Mackenzie, Compton",1927,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/70%2F1a%2Ff5%2F701af56e9b064e78a6e4135d00839f94%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1929-04-08,1929-04-08,https://shakespeareandco.princeton.edu/members/mcalmon-robert/,Robert McAlmon,"McAlmon, Robert",,,,,,,,,,,5.00,FRF,https://shakespeareandco.princeton.edu/books/macpherson-close/,Close Up,,,,,Lending Library Card,"Sylvia Beach, Robert McAlmon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/889ff3f8-b62c-42f6-8e88-1dd95434b2f5/manifest,https://iiif-cloud.princeton.edu/iiif/2/96%2Fa8%2F8e%2F96a88eb181d6441e9419ad605d99c121%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-04-08,1929-04-12,https://shakespeareandco.princeton.edu/members/seager/,Katherine Seager,"Seager, Katherine",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/aiken-costumes-eros/,Costumes by Eros,,"Aiken, Conrad",1928,,Lending Library Card,"Sylvia Beach, Katherine Seager Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2e6c33f9-87d4-4c5a-b5ee-9d023f87da1d/manifest,https://iiif.princeton.edu/loris/figgy_prod/97%2F10%2F76%2F9710767a1c2345cf82b7b334d09ead67%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1929-04-08,1929-04-08,https://shakespeareandco.princeton.edu/members/mcalmon-robert/,Robert McAlmon,"McAlmon, Robert",,,,,,,,,,,43.00,FRF,https://shakespeareandco.princeton.edu/books/walsh-quarter/,This Quarter,,,,,Lending Library Card,"Sylvia Beach, Robert McAlmon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/889ff3f8-b62c-42f6-8e88-1dd95434b2f5/manifest,https://iiif-cloud.princeton.edu/iiif/2/96%2Fa8%2F8e%2F96a88eb181d6441e9419ad605d99c121%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-04-09,1929-05-11,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,32,,,https://shakespeareandco.princeton.edu/books/millin-mary-glenn/,Mary Glenn,,"Millin, Sarah Gertrude",1925,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a9%2F11%2Fd5%2Fa911d51c78fb461396e48d152363a39d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-04-09,1929-04-13,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/maxwell-forget-must/,We Forget because We Must,,"Maxwell, W. B.",1928,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/ee%2F79%2Fb9%2Fee79b9f1f5e64724a09ee5b343ebd05a%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1929-04-09,1929-05-09,https://shakespeareandco.princeton.edu/members/king-d-l/,D. L. King,"King, D. L.",25.00,100.00,1 month,30,1,,1929-04-09,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-04-10,1929-04-11,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/machen-hill-dreams/,The Hill of Dreams,,"Machen, Arthur",1907,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/5c%2Fc1%2Fe1%2F5cc1e1b2d4e240d0b57fe96d7c0ba8b8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-04-10,1929-04-15,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/lewis-man-knew-coolidge/,"The Man Who Knew Coolidge: Being the Soul of Lowell Schmaltz, Constructive and Nordic Citizen",,"Lewis, Sinclair",1928,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fd7%2F90%2Fcbd790e6c7ba4d4d8045abbe354ee697%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1929-04-10,1929-04-10,https://shakespeareandco.princeton.edu/members/love-helen/,Helen Love,"Love, Helen",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-04-10,1929-04-18,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/hergesheimer-quiet-cities/,Quiet Cities,,"Hergesheimer, Joseph",1928,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/0b%2F4b%2F56%2F0b4b565bfedb4014a2309ab7cc8cc359%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1929-04-10,1929-05-10,https://shakespeareandco.princeton.edu/members/mandiargues/,AndrΓ© Pieyre de Mandiargues,"Mandiargues, AndrΓ© Pieyre de",35.00,100.00,1 month,30,2,,1929-04-10,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-04-11,1929-05-02,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/heyward-mambas-daughters/,Mamba's Daughters,,"Heyward, DuBose",1928,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/af%2Fcd%2F4b%2Fafcd4b7698644be4ad8edf82445910ee%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-04-11,1929-04-13,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/swinnerton-staircase/,On the Staircase,,"Swinnerton, Frank",1914,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/5c%2Fc1%2Fe1%2F5cc1e1b2d4e240d0b57fe96d7c0ba8b8%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1929-04-11,1929-04-11,https://shakespeareandco.princeton.edu/members/morris-mary/,Mary Morris,"Morris, Mary",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-04-12,1929-04-17,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/dreiser-sister-carrie/,Sister Carrie,,"Dreiser, Theodore",1900,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/cf%2Fe8%2F57%2Fcfe8575743fb43c7a50cec35cb76d9a0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-04-12,1929-04-15,https://shakespeareandco.princeton.edu/members/seager/,Katherine Seager,"Seager, Katherine",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/huxley-antic-hay/,Antic Hay,,"Huxley, Aldous",1923,,Lending Library Card,"Sylvia Beach, Katherine Seager Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2e6c33f9-87d4-4c5a-b5ee-9d023f87da1d/manifest,https://iiif.princeton.edu/loris/figgy_prod/97%2F10%2F76%2F9710767a1c2345cf82b7b334d09ead67%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1929-04-12,1929-04-12,https://shakespeareandco.princeton.edu/members/larking-4/,Mrs. Larking,"Larking, Mrs.",,,,,,,,150.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-04-13,1929-05-18,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,35,,,https://shakespeareandco.princeton.edu/books/deeping-old-pybus/,Old Pybus,,"Deeping, Warwick",1928,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/ee%2F79%2Fb9%2Fee79b9f1f5e64724a09ee5b343ebd05a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-04-13,1929-04-15,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/walpole-silver-thorn-book/,The Silver Thorn: A Book of Stories,,"Walpole, Hugh",1928,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/5c%2Fc1%2Fe1%2F5cc1e1b2d4e240d0b57fe96d7c0ba8b8%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1929-04-13,1930-04-13,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",144.00,,1 year,365,1,,1929-04-13,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,;https://iiif-cloud.princeton.edu/iiif/2/e0%2F11%2F78%2Fe011789ae91b4941a088b85942d4df17%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-04-13,1929-04-19,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/kaye-smith-village-doctor/,The Village Doctor,,"Kaye-Smith, Sheila",1929,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/70%2F1a%2Ff5%2F701af56e9b064e78a6e4135d00839f94%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-04-13,1929-04-15,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/unclear-unclear/,[unclear] for [unclear],,,,Unidentified. Handwriting unclear.,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/5c%2Fc1%2Fe1%2F5cc1e1b2d4e240d0b57fe96d7c0ba8b8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-04-13,1929-04-27,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/coates-eater-darkness/,The Eater of Darkness,,"Coates, Robert Myron",1926,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/c7%2F9b%2F41%2Fc79b419d98a942698de27249b5d06916%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-04-13,1929-04-17,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/strachey-queen-victoria/,Queen Victoria,,"Strachey, Giles Lytton",1921,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/c7%2F9b%2F41%2Fc79b419d98a942698de27249b5d06916%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-04-13,1929-05-25,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,42,,,https://shakespeareandco.princeton.edu/books/belloc-marie-antoinette/,Marie Antoinette,,"Belloc, Hilaire",1928,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/e0%2F11%2F78%2Fe011789ae91b4941a088b85942d4df17%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-04-13,1929-05-25,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,42,,,https://shakespeareandco.princeton.edu/books/mansfield-journal-katherine-mansfield/,The Journal of Katherine Mansfield,,"Mansfield, Katherine",1927,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/e0%2F11%2F78%2Fe011789ae91b4941a088b85942d4df17%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-04-14,1929-04-20,https://shakespeareandco.princeton.edu/members/patmore-brigit/,Brigit Patmore,"Patmore, Brigit",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/russell-analysis-mind/,The Analysis of Mind,,"Russell, Bertrand",1921,,Lending Library Card,"Sylvia Beach, Brigit Patmore Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ae9d6de8-7a88-4571-94bf-06881c4a2430/manifest,https://iiif.princeton.edu/loris/figgy_prod/60%2F5e%2F1e%2F605e1ee495af4ec9a400f53f99900ceb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-04-14,1929-04-28,https://shakespeareandco.princeton.edu/members/patmore-brigit/,Brigit Patmore,"Patmore, Brigit",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/bury-invasion-europe-barbarians/,The Invasion of Europe by the Barbarians,,"Bury, J. B.",,,Lending Library Card,"Sylvia Beach, Brigit Patmore Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ae9d6de8-7a88-4571-94bf-06881c4a2430/manifest,https://iiif.princeton.edu/loris/figgy_prod/60%2F5e%2F1e%2F605e1ee495af4ec9a400f53f99900ceb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-04-15,1929-05-02,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/van-dine-canary-murder-case/,The Canary Murder Case,,"Van Dine, S. S.",1927,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/ed%2F69%2F87%2Fed698743ad5641058ccc97f94cdc5360%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-04-15,1929-04-22,https://shakespeareandco.princeton.edu/members/seager/,Katherine Seager,"Seager, Katherine",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/huxley-barren-leaves/,Those Barren Leaves,,"Huxley, Aldous",1925,,Lending Library Card,"Sylvia Beach, Katherine Seager Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2e6c33f9-87d4-4c5a-b5ee-9d023f87da1d/manifest,https://iiif.princeton.edu/loris/figgy_prod/97%2F10%2F76%2F9710767a1c2345cf82b7b334d09ead67%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-04-15,1929-05-27,https://shakespeareandco.princeton.edu/members/potocki-de-montalk/,Geoffrey Potocki de Montalk,"Potocki de Montalk, Geoffrey",,,,,,,,,Returned,42,,,https://shakespeareandco.princeton.edu/books/lawrence-aarons-rod/,Aaron's Rod,,"Lawrence, D. H.",1922,,Lending Library Card,"Sylvia Beach, Geoffrey Potocki de Montalk Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3d3346d0-18e1-4066-8756-0990f97aac13/manifest,https://iiif.princeton.edu/loris/figgy_prod/1b%2F07%2F7f%2F1b077fa6aa8f46aab57641ad70eaa938%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-04-15,1929-04-22,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/macaulay-keeping-appearances/,Keeping Up Appearances,,"Macaulay, Rose",1928,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fd7%2F90%2Fcbd790e6c7ba4d4d8045abbe354ee697%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1929-04-15,1929-04-15,https://shakespeareandco.princeton.edu/members/servicen/,Mlle Servicen,"Servicen, Mlle",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-04-15,1929-04-16,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/jordan-smith-strange-altars-book/,On Strange Altars: A Book of Enthusiasms,,"Jordan-Smith, Paul",1924,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/5c%2Fc1%2Fe1%2F5cc1e1b2d4e240d0b57fe96d7c0ba8b8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-04-16,1929-04-19,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/history-devil/,The History of the Devil,,,,"Unidentified. Daniel Defoe's *The Political History of the Devil* (1724), Paul Carus's *History of the Devil and the Idea of Evil* (1899), or R. Lowe Thompson's *The History of the Devil, the Horned God of the West* (1929).",Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/5c%2Fc1%2Fe1%2F5cc1e1b2d4e240d0b57fe96d7c0ba8b8%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1929-04-16,1929-05-16,https://shakespeareandco.princeton.edu/members/bandonneau/,Jacqueline Bondonneau,"Bondonneau, Jacqueline",20.00,50.00,1 month,30,1,,1929-04-16,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1929-04-17,1929-05-01,https://shakespeareandco.princeton.edu/members/case/,Mrs. Case,"Case, Mrs.",12.50,,2 weeks,14,1,,1929-04-17,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1929-04-17,1929-04-17,https://shakespeareandco.princeton.edu/members/nash-edward/,Edward Nash,"Nash, Edward",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-04-17,1929-04-25,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/forster-passage-india/,A Passage to India,,"Forster, E. M.",1924,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/cf%2Fe8%2F57%2Fcfe8575743fb43c7a50cec35cb76d9a0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-04-17,1929-11-16,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,213,,,https://shakespeareandco.princeton.edu/books/cervantes-don-quixote/,Don Quixote,,"Cervantes, Miguel de",1615,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/2a%2Fe1%2F20%2F2ae1204f192e4ecdb46cde153b2d8975%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1929-04-17,1930-04-17,https://shakespeareandco.princeton.edu/members/japp-darsie/,Darsie Japp,"Japp, Darsie",180.00,,1 year,365,1,,1929-04-17,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-04-17,1929-04-20,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/doughty-travels-arabia-deserta/,Travels in Arabia Deserta,2 vols.,"Doughty, Charles Montagu",1883,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/2a%2Fe1%2F20%2F2ae1204f192e4ecdb46cde153b2d8975%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1929-04-17,1929-07-17,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",85.00,,3 months,91,2,,1929-04-17,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/2a%2Fe1%2F20%2F2ae1204f192e4ecdb46cde153b2d8975%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-04-18,1929-04-20,https://shakespeareandco.princeton.edu/members/jackson-5/,Mrs. Jackson,"Jackson, Mrs.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/hafez-poems-divan/,Poems from the Divan of Hafiz,,Hafez,1897,,Lending Library Card,"Sylvia Beach, Mrs. Jackson Lending Library Card, Box 59, Folder 6, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ac6269e-f2f6-4df6-861c-40ac8f15296d/manifest,https://iiif-cloud.princeton.edu/iiif/2/58%2F37%2Fbd%2F5837bd0a8ae24868917fb859e2d727a5%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-04-18,1929-04-20,https://shakespeareandco.princeton.edu/members/jackson-5/,Mrs. Jackson,"Jackson, Mrs.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/beresford-imperfect-mother/,An Imperfect Mother,,"Beresford, J. D.",1920,,Lending Library Card,"Sylvia Beach, Mrs. Jackson Lending Library Card, Box 59, Folder 6, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ac6269e-f2f6-4df6-861c-40ac8f15296d/manifest,https://iiif-cloud.princeton.edu/iiif/2/58%2F37%2Fbd%2F5837bd0a8ae24868917fb859e2d727a5%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-04-18,1929-04-27,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/bodenheim-georgie-may/,Georgie May,,"Bodenheim, Maxwell",1928,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/0b%2F4b%2F56%2F0b4b565bfedb4014a2309ab7cc8cc359%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-04-18,1929-04-23,https://shakespeareandco.princeton.edu/members/jackson-5/,Mrs. Jackson,"Jackson, Mrs.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/mansfield-doves-nest-stories/,The Doves' Nest and Other Stories,,"Mansfield, Katherine",1923,,Lending Library Card,"Sylvia Beach, Mrs. Jackson Lending Library Card, Box 59, Folder 6, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ac6269e-f2f6-4df6-861c-40ac8f15296d/manifest,https://iiif-cloud.princeton.edu/iiif/2/58%2F37%2Fbd%2F5837bd0a8ae24868917fb859e2d727a5%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-04-18,1929-04-22,https://shakespeareandco.princeton.edu/members/seager/,Katherine Seager,"Seager, Katherine",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/galsworthy-swan-song/,Swan Song (A Modern Comedy),,"Galsworthy, John",1928,,Lending Library Card,"Sylvia Beach, Katherine Seager Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2e6c33f9-87d4-4c5a-b5ee-9d023f87da1d/manifest,https://iiif.princeton.edu/loris/figgy_prod/97%2F10%2F76%2F9710767a1c2345cf82b7b334d09ead67%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-04-18,1929-04-27,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/landon-mystery-mansion/,Mystery Mansion,,"Landon, Herman",1928,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/0b%2F4b%2F56%2F0b4b565bfedb4014a2309ab7cc8cc359%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1929-04-18,1929-05-18,https://shakespeareandco.princeton.edu/members/curtiss-nathaniel/,Nathaniel Curtiss,"Curtiss, Nathaniel",35.00,,1 month,30,2,,1929-04-18,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1929-04-18,1929-04-18,https://shakespeareandco.princeton.edu/members/lacourciere-r-s/,R. S. LacourciΓ¨re,"LacourciΓ¨re, R. S.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1929-04-18,1929-05-18,https://shakespeareandco.princeton.edu/members/hughes-glenn-2/,Glenn Hughes,"Hughes, Glenn",35.00,,1 month,30,2,,1929-04-18,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1929-04-19,1929-04-19,https://shakespeareandco.princeton.edu/members/binnie/,Mrs. P. Binnie,"Binnie, Mrs. P.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Crossed out,1929-04-19,,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/gull-oscar-wilde/,Oscar Wilde,,"Ingleby, Leonard Cresswell",1907,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/5c%2Fc1%2Fe1%2F5cc1e1b2d4e240d0b57fe96d7c0ba8b8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-04-19,1929-04-23,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/huddleston-bohemian-literary-social/,Bohemian Literary and Social Life in Paris,,"Huddleston, Sisley",1928,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/5c%2Fc1%2Fe1%2F5cc1e1b2d4e240d0b57fe96d7c0ba8b8%2Fintermediate_file/full/full/0/default.jpg
+Crossed out,1929-04-19,,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/bianchi-life-letters-emily/,The Life and Letters of Emily Dickinson,,"Dickinson, Emily",1924,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/5c%2Fc1%2Fe1%2F5cc1e1b2d4e240d0b57fe96d7c0ba8b8%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1929-04-19,,https://shakespeareandco.princeton.edu/members/stone-3/,Stone,Stone,,175.00,,,,Free,1929-04-19,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1929-04-20,1929-05-20,https://shakespeareandco.princeton.edu/members/burton-2/,Katherine Burton,"Burton, Katherine",28.00,50.00,1 month,30,2,Student,1929-04-16,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-04-20,1929-04-25,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/delmar-bad-girl/,Bad Girl,,"Delmar, ViΓ±a",1928,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/ee%2F79%2Fb9%2Fee79b9f1f5e64724a09ee5b343ebd05a%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1929-04-20,1929-05-20,https://shakespeareandco.princeton.edu/members/patmore-brigit/,Brigit Patmore,"Patmore, Brigit",25.00,,1 month,30,1,,1929-04-20,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Brigit Patmore Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/ae9d6de8-7a88-4571-94bf-06881c4a2430/manifest,;https://iiif.princeton.edu/loris/figgy_prod/60%2F5e%2F1e%2F605e1ee495af4ec9a400f53f99900ceb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1929-04-20,1929-04-20,https://shakespeareandco.princeton.edu/members/patmore-brigit/,Brigit Patmore,"Patmore, Brigit",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-04-20,1929-04-24,https://shakespeareandco.princeton.edu/members/patmore-brigit/,Brigit Patmore,"Patmore, Brigit",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/show-girl/,Show Girl,,,,Unidentified. Likely J. P. McEvoy's *Show Girl* (1928).,Lending Library Card,"Sylvia Beach, Brigit Patmore Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ae9d6de8-7a88-4571-94bf-06881c4a2430/manifest,https://iiif.princeton.edu/loris/figgy_prod/60%2F5e%2F1e%2F605e1ee495af4ec9a400f53f99900ceb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1929-04-20,1930-04-20,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",180.00,,1 year,365,1,,1929-06-03,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,;https://iiif.princeton.edu/loris/figgy_prod/a9%2F11%2Fd5%2Fa911d51c78fb461396e48d152363a39d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-04-20,1929-04-23,https://shakespeareandco.princeton.edu/members/jackson-5/,Mrs. Jackson,"Jackson, Mrs.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/woolf-jacobs-room/,Jacob's Room,,"Woolf, Virginia",1922,,Lending Library Card,"Sylvia Beach, Mrs. Jackson Lending Library Card, Box 59, Folder 6, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ac6269e-f2f6-4df6-861c-40ac8f15296d/manifest,https://iiif-cloud.princeton.edu/iiif/2/58%2F37%2Fbd%2F5837bd0a8ae24868917fb859e2d727a5%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1929-04-20,1929-05-20,https://shakespeareandco.princeton.edu/members/kephala/,Mme M. Kephala,"Kephala, Mme M.",25.00,50.00,1 month,30,1,,1929-04-20,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1929-04-22,1929-05-22,https://shakespeareandco.princeton.edu/members/quignon/,Mlle Quignon,"Quignon, Mlle",25.00,50.00,1 month,30,1,,1929-04-22,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1929-04-22,1930-04-22,https://shakespeareandco.princeton.edu/members/bibliotheque-de-perigneux/,BibliothΓ¨que de PΓ©rigneux,BibliothΓ¨que de PΓ©rigneux,180.00,,1 year,365,,,1929-04-22,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-04-22,1929-05-03,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/dante-gabriel-rossetti/,Dante Gabriel Rossetti,,,,Unidentified. By or about Dante Gabriel Rossetti.,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/b0%2Ffc%2F7c%2Fb0fc7c5cf0dc424e9e3c282cd129a6be%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1929-04-23,1929-04-23,https://shakespeareandco.princeton.edu/members/stone-3/,Stone,Stone,,,,,,,,175.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-04-23,1929-04-27,https://shakespeareandco.princeton.edu/members/jackson-5/,Mrs. Jackson,"Jackson, Mrs.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/tagore-wreck/,The Wreck,,"Tagore, Rabindranath",1927,,Lending Library Card,"Sylvia Beach, Mrs. Jackson Lending Library Card, Box 59, Folder 6, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ac6269e-f2f6-4df6-861c-40ac8f15296d/manifest,https://iiif-cloud.princeton.edu/iiif/2/da%2F22%2F73%2Fda2273e36d4d4ec99185a8c8890b80ee%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1929-04-23,1929-05-23,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",25.00,,1 month,30,1,,1929-04-23,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,;https://iiif.princeton.edu/loris/figgy_prod/cf%2Fe8%2F57%2Fcfe8575743fb43c7a50cec35cb76d9a0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-04-23,1929-04-25,https://shakespeareandco.princeton.edu/members/seager/,Katherine Seager,"Seager, Katherine",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/warner-true-heart/,The True Heart,,"Warner, Sylvia Townsend",1929,,Lending Library Card,"Sylvia Beach, Katherine Seager Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2e6c33f9-87d4-4c5a-b5ee-9d023f87da1d/manifest,https://iiif.princeton.edu/loris/figgy_prod/97%2F10%2F76%2F9710767a1c2345cf82b7b334d09ead67%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-04-23,1929-04-25,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/woolf-orlando-biography/,Orlando: A Biography,,"Woolf, Virginia",1928,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/cf%2Fe8%2F57%2Fcfe8575743fb43c7a50cec35cb76d9a0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-04-23,1929-05-03,https://shakespeareandco.princeton.edu/members/jackson-5/,Mrs. Jackson,"Jackson, Mrs.",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/gordon-modern-french-painters/,Modern French Painters,,"Gordon, Jan",1923,,Lending Library Card,"Sylvia Beach, Mrs. Jackson Lending Library Card, Box 59, Folder 6, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ac6269e-f2f6-4df6-861c-40ac8f15296d/manifest,https://iiif-cloud.princeton.edu/iiif/2/da%2F22%2F73%2Fda2273e36d4d4ec99185a8c8890b80ee%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-04-23,,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/thayer-dial/,The Dial,"Vol. 85, no. 6, Dec 1928",,,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/9a%2Fc7%2F06%2F9ac7061f764c441c8ce8560e695b563d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-04-23,1929-05-16,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/douglas-autobiography-lord-alfred/,The Autobiography of Lord Alfred Douglas,,"Douglas, Alfred",1929,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/9a%2Fc7%2F06%2F9ac7061f764c441c8ce8560e695b563d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-04-23,1929-05-14,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/josephson-zola-time/,Zola and His Time,,"Josephson, Matthew",1928,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/9a%2Fc7%2F06%2F9ac7061f764c441c8ce8560e695b563d%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1929-04-23,1929-05-23,https://shakespeareandco.princeton.edu/members/egger-therese/,ThΓ©rΓ¨se Egger,"Egger, ThΓ©rΓ¨se",35.00,100.00,1 month,30,2,,1929-04-23,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-04-23,1929-04-30,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/cruse-shaping-english-literature/,The Shaping of English Literature and the Readers' Share in the Development of Its Forms,,"Cruse, Amy",1927,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/5c%2Fc1%2Fe1%2F5cc1e1b2d4e240d0b57fe96d7c0ba8b8%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1929-04-23,1929-05-23,https://shakespeareandco.princeton.edu/members/kadar/,LΓvia KΓ‘dΓ‘r,"KΓ‘dΓ‘r, LΓvia",25.00,50.00,1 month,30,1,,1929-04-23,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-04-23,1929-07-13,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,81,,,https://shakespeareandco.princeton.edu/books/hemingway-men-without-women/,Men without Women,,"Hemingway, Ernest",1927,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2F00%2F2c%2Fcb002c24cc9a4d9c8fa834244db6afcc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1929-04-24,1929-04-24,https://shakespeareandco.princeton.edu/members/case/,Mrs. Case,"Case, Mrs.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-04-24,1929-04-29,https://shakespeareandco.princeton.edu/members/patmore-brigit/,Brigit Patmore,"Patmore, Brigit",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/katzin-eight-european-plays/,Eight European Plays,,,1927,,Lending Library Card,"Sylvia Beach, Brigit Patmore Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ae9d6de8-7a88-4571-94bf-06881c4a2430/manifest,https://iiif.princeton.edu/loris/figgy_prod/60%2F5e%2F1e%2F605e1ee495af4ec9a400f53f99900ceb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-04-24,1929-05-11,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/garnett-love/,No Love,,"Garnett, David",1929,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/5c%2F5b%2F3e%2F5c5b3e81f7294acbbb7b06cbba8e32c3%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-04-24,1929-05-11,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/moore-story-tellers-holiday/,A Story-Teller's Holiday,,"Moore, George",1918,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/5c%2F5b%2F3e%2F5c5b3e81f7294acbbb7b06cbba8e32c3%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1929-04-24,1929-05-24,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",28.00,,1 month,30,2,,1929-04-24,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,;https://iiif-cloud.princeton.edu/iiif/2/5c%2F5b%2F3e%2F5c5b3e81f7294acbbb7b06cbba8e32c3%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-04-25,1929-05-01,https://shakespeareandco.princeton.edu/members/seager/,Katherine Seager,"Seager, Katherine",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/mackenzie-vestal-fire/,Vestal Fire,,"Mackenzie, Compton",1927,,Lending Library Card,"Sylvia Beach, Katherine Seager Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2e6c33f9-87d4-4c5a-b5ee-9d023f87da1d/manifest,https://iiif.princeton.edu/loris/figgy_prod/97%2F10%2F76%2F9710767a1c2345cf82b7b334d09ead67%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-04-25,1929-04-26,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/lanham-sailors-dont-care/,Sailors Don't Care,,"Lanham, Edwin",1929,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/cf%2Fe8%2F57%2Fcfe8575743fb43c7a50cec35cb76d9a0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-04-25,1929-06-21,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,57,,,https://shakespeareandco.princeton.edu/books/jerome-tommy-co/,Tommy and Co.,,"Jerome, Jerome K.",1904,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/ee%2F79%2Fb9%2Fee79b9f1f5e64724a09ee5b343ebd05a%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1929-04-26,1929-07-26,https://shakespeareandco.princeton.edu/members/evrat-renee/,RenΓ©e Evrat,"Evrat, RenΓ©e",48.00,,3 months,91,1,,1929-04-17,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-04-26,,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/thayer-dial/,The Dial,"Vol. 86, no. 1, Jan 1929",,,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/9a%2Fc7%2F06%2F9ac7061f764c441c8ce8560e695b563d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-04-26,1929-05-28,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,32,,,https://shakespeareandco.princeton.edu/books/joyce-ulysses/,Ulysses,,"Joyce, James",1922,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/cf%2Fe8%2F57%2Fcfe8575743fb43c7a50cec35cb76d9a0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1929-04-26,1929-05-03,https://shakespeareandco.princeton.edu/members/johnson-6/,Johnson,Johnson,6.25,,1 week,7,2,,1929-04-19,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1929-04-26,1929-05-26,https://shakespeareandco.princeton.edu/members/richardson-arthur-w-2/,Arthur W. Richardson,"Richardson, Arthur W.",20.00,50.00,1 month,30,1,,1929-04-26,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Mrs Arthur Richardson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/19b41b12-9a69-4bbd-9709-28461e3a1aca/manifest,https://iiif.princeton.edu/loris/figgy_prod/86%2F8d%2F40%2F868d409c0274401594ea646caef0eb6b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-04-26,1929-06-01,https://shakespeareandco.princeton.edu/members/richardson-arthur-w-2/,Arthur W. Richardson,"Richardson, Arthur W.",,,,,,,,,Returned,36,,,https://shakespeareandco.princeton.edu/books/bell-since-cezanne/,Since CΓ©zanne,,"Bell, Clive",1922,,Lending Library Card,"Sylvia Beach, Mrs Arthur Richardson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/19b41b12-9a69-4bbd-9709-28461e3a1aca/manifest,https://iiif.princeton.edu/loris/figgy_prod/86%2F8d%2F40%2F868d409c0274401594ea646caef0eb6b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-04-26,1929-05-14,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/lenotre-guillotine-servants/,The Guillotine and Its Servants,,"Lenotre, G.",1929,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/9a%2Fc7%2F06%2F9ac7061f764c441c8ce8560e695b563d%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1929-04-26,1929-05-26,https://shakespeareandco.princeton.edu/members/richardson-mrs-arthur/,Mrs. Arthur W. Richardson,"Richardson, Mrs. Arthur W.",25.00,50.00,1 month,30,1,,1929-04-26,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Mrs Arthur Richardson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/19b41b12-9a69-4bbd-9709-28461e3a1aca/manifest,;https://iiif.princeton.edu/loris/figgy_prod/86%2F8d%2F40%2F868d409c0274401594ea646caef0eb6b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1929-04-27,1929-04-27,https://shakespeareandco.princeton.edu/members/edmonds-gwyneth/,Gwyneth Edmonds,"Edmonds, Gwyneth",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1929-04-27,1929-05-27,https://shakespeareandco.princeton.edu/members/unnamed-member-17/,[unnamed member],[unnamed member],25.00,,1 month,30,1,,1929-04-27,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1929-04-27,1929-04-27,https://shakespeareandco.princeton.edu/members/unclear/,[unclear name],[unclear name],,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-04-27,1929-05-04,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/strachey-landmarks-french-literature/,Landmarks in French Literature,,"Strachey, Giles Lytton",1912,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/c7%2F9b%2F41%2Fc79b419d98a942698de27249b5d06916%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-04-27,1929-05-11,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/samuel-pepys/,Samuel Pepys,,,,Unidentified. By or about Pepys.,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/c7%2F9b%2F41%2Fc79b419d98a942698de27249b5d06916%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-04-27,1929-05-03,https://shakespeareandco.princeton.edu/members/jackson-5/,Mrs. Jackson,"Jackson, Mrs.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/wells-passionate-friends/,The Passionate Friends,,"Wells, H. G.",1913,,Lending Library Card,"Sylvia Beach, Mrs. Jackson Lending Library Card, Box 59, Folder 6, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ac6269e-f2f6-4df6-861c-40ac8f15296d/manifest,https://iiif-cloud.princeton.edu/iiif/2/da%2F22%2F73%2Fda2273e36d4d4ec99185a8c8890b80ee%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-04-27,1929-05-03,https://shakespeareandco.princeton.edu/members/jackson-5/,Mrs. Jackson,"Jackson, Mrs.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/douglas-south-wind/,South Wind,,"Douglas, Norman",1917,,Lending Library Card,"Sylvia Beach, Mrs. Jackson Lending Library Card, Box 59, Folder 6, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ac6269e-f2f6-4df6-861c-40ac8f15296d/manifest,https://iiif-cloud.princeton.edu/iiif/2/da%2F22%2F73%2Fda2273e36d4d4ec99185a8c8890b80ee%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-04-27,1929-05-13,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/gissing-victim-circumstances-stories/,A Victim of Circumstances and Other Stories,,"Gissing, George Robert",1927,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/0b%2F4b%2F56%2F0b4b565bfedb4014a2309ab7cc8cc359%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1929-04-27,1929-04-27,https://shakespeareandco.princeton.edu/members/olver/,Olver,Olver,,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1929-04-27,1929-10-27,https://shakespeareandco.princeton.edu/members/blake-w/,W. Blake,"Blake, W.",80.00,,6 months,183,1,Student,1929-04-15,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-04-28,1929-04-29,https://shakespeareandco.princeton.edu/members/patmore-brigit/,Brigit Patmore,"Patmore, Brigit",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/butts-armed-madness/,Armed with Madness,,"Butts, Mary",1928,,Lending Library Card,"Sylvia Beach, Brigit Patmore Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ae9d6de8-7a88-4571-94bf-06881c4a2430/manifest,https://iiif.princeton.edu/loris/figgy_prod/60%2F5e%2F1e%2F605e1ee495af4ec9a400f53f99900ceb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-04-29,1929-06-10,https://shakespeareandco.princeton.edu/members/patmore-brigit/,Brigit Patmore,"Patmore, Brigit",,,,,,,,,Returned,42,,,https://shakespeareandco.princeton.edu/books/aiken-costumes-eros/,Costumes by Eros,,"Aiken, Conrad",1928,,Lending Library Card,"Sylvia Beach, Brigit Patmore Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ae9d6de8-7a88-4571-94bf-06881c4a2430/manifest,https://iiif.princeton.edu/loris/figgy_prod/60%2F5e%2F1e%2F605e1ee495af4ec9a400f53f99900ceb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1929-04-29,1929-05-29,https://shakespeareandco.princeton.edu/members/chambers/,Mrs. Robert Chambers,"Chambers, Mrs. Robert",35.00,100.00,1 month,30,2,,1929-04-29,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-04-29,1929-05-01,https://shakespeareandco.princeton.edu/members/seager/,Katherine Seager,"Seager, Katherine",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/young-brother-jonathan/,My Brother Jonathan,,"Young, Francis Brett",1928,,Lending Library Card,"Sylvia Beach, Katherine Seager Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2e6c33f9-87d4-4c5a-b5ee-9d023f87da1d/manifest,https://iiif.princeton.edu/loris/figgy_prod/97%2F10%2F76%2F9710767a1c2345cf82b7b334d09ead67%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1929-04-29,1929-04-29,https://shakespeareandco.princeton.edu/members/jackson-olga/,Olga Jackson,"Jackson, Olga",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1929-04-30,1929-05-30,https://shakespeareandco.princeton.edu/members/russell-mr/,Mr. Russell,"Russell, Mr.",35.00,100.00,1 month,30,2,,1929-03-13,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-04-30,1929-05-03,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/jackson-eighteen-nineties/,The Eighteen Nineties,,"Jackson, George Holbrook",1913,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/5c%2Fc1%2Fe1%2F5cc1e1b2d4e240d0b57fe96d7c0ba8b8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-04-30,1929-05-03,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/mackenzie-poor-relations/,Poor Relations,,"Mackenzie, Compton",1919,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/5c%2Fc1%2Fe1%2F5cc1e1b2d4e240d0b57fe96d7c0ba8b8%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1929-04-30,1929-05-30,https://shakespeareandco.princeton.edu/members/keller-sue-b/,Sue B. Keller,"Keller, Sue B.",25.00,50.00,1 month,30,1,,1929-04-30,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1929-04-30,1929-05-30,https://shakespeareandco.princeton.edu/members/dodds-muriel/,Muriel Dodds,"Dodds, Muriel",20.00,,1 month,30,1,Student,1929-04-30,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1929-05-01,1929-05-01,https://shakespeareandco.princeton.edu/members/patmore-brigit/,Brigit Patmore,"Patmore, Brigit",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1929-05-01,1929-06-01,https://shakespeareandco.princeton.edu/members/case/,Mrs. Case,"Case, Mrs.",6.50,,1 month,31,,,1929-04-24,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-05-02,1929-05-11,https://shakespeareandco.princeton.edu/members/mayre-n-e/,N. E. Mayre,"Mayre, N. E.",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/thomas-otway/,Thomas Otway,,,,"Unidentified. By or about Otway. Likely *The Best Plays of Thomas Otway,* edited by Roden Noel (1888), from the [Mermaid Series](https://seriesofseries.owu.edu/mermaid-series/).",Lending Library Card,"Sylvia Beach, N.E. Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ec1c32ef-7770-43a3-a5ae-d6afe67a337b/manifest,https://iiif.princeton.edu/loris/figgy_prod/5b%2F70%2Fde%2F5b70deb648294c9aab24a99f5a35196a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-05-02,1929-05-28,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,26,,,https://shakespeareandco.princeton.edu/books/hemingway-sun-also-rises/,The Sun Also Rises,,"Hemingway, Ernest",1926,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/af%2Fcd%2F4b%2Fafcd4b7698644be4ad8edf82445910ee%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1929-05-02,1929-08-02,https://shakespeareandco.princeton.edu/members/mayre-n-e/,N. E. Mayre,"Mayre, N. E.",60.00,,3 months,92,1,,1929-05-02,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, N.E. Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/ec1c32ef-7770-43a3-a5ae-d6afe67a337b/manifest,;https://iiif.princeton.edu/loris/figgy_prod/5b%2F70%2Fde%2F5b70deb648294c9aab24a99f5a35196a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-05-02,1929-05-04,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/sayers-unpleasantness-bellona-club/,The Unpleasantness at the Bellona Club,,"Sayers, Dorothy L.",1928,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/ed%2F69%2F87%2Fed698743ad5641058ccc97f94cdc5360%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-05-03,1929-05-10,https://shakespeareandco.princeton.edu/members/jackson-5/,Mrs. Jackson,"Jackson, Mrs.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/andersen-fairy-tales-stories/,Fairy Tales,,"Andersen, Hans Christian",,,Lending Library Card,"Sylvia Beach, Mrs. Jackson Lending Library Card, Box 59, Folder 6, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ac6269e-f2f6-4df6-861c-40ac8f15296d/manifest,https://iiif-cloud.princeton.edu/iiif/2/da%2F22%2F73%2Fda2273e36d4d4ec99185a8c8890b80ee%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-05-03,1929-05-10,https://shakespeareandco.princeton.edu/members/jackson-5/,Mrs. Jackson,"Jackson, Mrs.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/masefield-sard-harker/,Sard Harker,,"Masefield, John",1924,,Lending Library Card,"Sylvia Beach, Mrs. Jackson Lending Library Card, Box 59, Folder 6, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ac6269e-f2f6-4df6-861c-40ac8f15296d/manifest,https://iiif-cloud.princeton.edu/iiif/2/da%2F22%2F73%2Fda2273e36d4d4ec99185a8c8890b80ee%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-05-03,1929-05-10,https://shakespeareandco.princeton.edu/members/jackson-5/,Mrs. Jackson,"Jackson, Mrs.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/nichols-star-spangled-manner/,The Star-Spangled Manner,,"Nichols, Beverley",1928,,Lending Library Card,"Sylvia Beach, Mrs. Jackson Lending Library Card, Box 59, Folder 6, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ac6269e-f2f6-4df6-861c-40ac8f15296d/manifest,https://iiif-cloud.princeton.edu/iiif/2/da%2F22%2F73%2Fda2273e36d4d4ec99185a8c8890b80ee%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-05-03,1929-05-09,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/mackenzie-three-couriers/,The Three Couriers,,"Mackenzie, Compton",1929,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/5c%2Fc1%2Fe1%2F5cc1e1b2d4e240d0b57fe96d7c0ba8b8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-05-03,1929-05-10,https://shakespeareandco.princeton.edu/members/jackson-5/,Mrs. Jackson,"Jackson, Mrs.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/masefield-st-george-dragon/,St. George and the Dragon,,"Masefield, John",1919,,Lending Library Card,"Sylvia Beach, Mrs. Jackson Lending Library Card, Box 59, Folder 6, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ac6269e-f2f6-4df6-861c-40ac8f15296d/manifest,https://iiif-cloud.princeton.edu/iiif/2/da%2F22%2F73%2Fda2273e36d4d4ec99185a8c8890b80ee%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-05-03,1929-05-10,https://shakespeareandco.princeton.edu/members/jackson-5/,Mrs. Jackson,"Jackson, Mrs.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/great-betrayal/,Great Betrayal,,,,"Unidentified. Edward Hale Bierstadt's *The Great Betrayal: A Survey of the Near East Problem* (1924) or Julien Benda's *The Great Betrayal* (1928), translated by Richard Aldington.",Lending Library Card,"Sylvia Beach, Mrs. Jackson Lending Library Card, Box 59, Folder 6, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ac6269e-f2f6-4df6-861c-40ac8f15296d/manifest,https://iiif-cloud.princeton.edu/iiif/2/da%2F22%2F73%2Fda2273e36d4d4ec99185a8c8890b80ee%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-05-03,1929-05-06,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/machen-shining-pyramid/,The Shining Pyramid,,"Machen, Arthur",1925,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/5c%2Fc1%2Fe1%2F5cc1e1b2d4e240d0b57fe96d7c0ba8b8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-05-03,1929-05-06,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/oneill-emperor-jones/,The Emperor Jones,,"O'Neill, Eugene",1921,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/b0%2Ffc%2F7c%2Fb0fc7c5cf0dc424e9e3c282cd129a6be%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-05-03,1929-05-10,https://shakespeareandco.princeton.edu/members/jackson-5/,Mrs. Jackson,"Jackson, Mrs.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/mackenzie-vestal-fire/,Vestal Fire,,"Mackenzie, Compton",1927,,Lending Library Card,"Sylvia Beach, Mrs. Jackson Lending Library Card, Box 59, Folder 6, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ac6269e-f2f6-4df6-861c-40ac8f15296d/manifest,https://iiif-cloud.princeton.edu/iiif/2/da%2F22%2F73%2Fda2273e36d4d4ec99185a8c8890b80ee%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-05-03,1929-05-10,https://shakespeareandco.princeton.edu/members/jackson-5/,Mrs. Jackson,"Jackson, Mrs.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/maugham-liza-lambeth/,Liza of Lambeth,,"Maugham, W. Somerset",1897,,Lending Library Card,"Sylvia Beach, Mrs. Jackson Lending Library Card, Box 59, Folder 6, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ac6269e-f2f6-4df6-861c-40ac8f15296d/manifest,https://iiif-cloud.princeton.edu/iiif/2/da%2F22%2F73%2Fda2273e36d4d4ec99185a8c8890b80ee%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-05-03,1929-05-10,https://shakespeareandco.princeton.edu/members/jackson-5/,Mrs. Jackson,"Jackson, Mrs.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/joad-babbitt-warren/,The Babbitt Warren,,"Joad, C. E. M.",1927,,Lending Library Card,"Sylvia Beach, Mrs. Jackson Lending Library Card, Box 59, Folder 6, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ac6269e-f2f6-4df6-861c-40ac8f15296d/manifest,https://iiif-cloud.princeton.edu/iiif/2/da%2F22%2F73%2Fda2273e36d4d4ec99185a8c8890b80ee%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1929-05-04,1929-06-04,https://shakespeareandco.princeton.edu/members/levinson-2/,Levinson,Levinson,28.00,,1 month,31,2,Professor / Teacher,1929-04-25,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-05-04,1929-05-13,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/green-leavenworth-case/,The Leavenworth Case,,"Green, Anna Katharine",1878,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/ed%2F69%2F87%2Fed698743ad5641058ccc97f94cdc5360%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-05-04,1929-05-14,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/hall-well-loneliness/,The Well of Loneliness,,"Hall, Radclyffe",1926,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2F00%2F2c%2Fcb002c24cc9a4d9c8fa834244db6afcc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-05-04,1929-05-11,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/baring-coat-without-seam/,The Coat without Seam,,"Baring, Maurice",1929,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/c7%2F9b%2F41%2Fc79b419d98a942698de27249b5d06916%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1929-05-04,1929-05-04,https://shakespeareandco.princeton.edu/members/rakowska/,Mme Rakowska,"Rakowska, Mme",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-05-04,1929-06-08,https://shakespeareandco.princeton.edu/members/mayre-n-e/,N. E. Mayre,"Mayre, N. E.",,,,,,,,,Returned,35,,,https://shakespeareandco.princeton.edu/books/meredith-diana-crossways/,Diana of the Crossways,,"Meredith, George",1885,,Lending Library Card,"Sylvia Beach, N.E. Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ec1c32ef-7770-43a3-a5ae-d6afe67a337b/manifest,https://iiif.princeton.edu/loris/figgy_prod/5b%2F70%2Fde%2F5b70deb648294c9aab24a99f5a35196a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1929-05-04,1929-06-04,https://shakespeareandco.princeton.edu/members/jude-m/,M. JudΓ©,"JudΓ©, M.",20.00,50.00,1 month,31,1,Student,1929-05-04,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1929-05-04,1929-05-04,https://shakespeareandco.princeton.edu/members/mclean-a/,A. McLean,"McLean, A.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1929-05-05,1930-05-05,https://shakespeareandco.princeton.edu/members/norledge/,Mme Norledge,"Norledge, Mme",375.00,,1 year,365,3,,1929-04-29,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1929-05-06,1929-05-06,https://shakespeareandco.princeton.edu/members/kelsey-mary/,Mary Kelsey,"Kelsey, Mary",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1929-05-06,1929-06-06,https://shakespeareandco.princeton.edu/members/moore-cynthia/,Cynthia Moore,"Moore, Cynthia",60.00,50.00,1 month,31,1,,1929-05-06,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-05-06,1929-05-21,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/swinburne/,Swinburne,,,,"Unidentified. By or about Swinburne. Fernand Colens borrowed volumes 1 and 2, and Ella Cassaigne borrowed volume 1.",Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/b0%2Ffc%2F7c%2Fb0fc7c5cf0dc424e9e3c282cd129a6be%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1929-05-06,1929-05-06,https://shakespeareandco.princeton.edu/members/fraser-e/,E. M. Fraser,"Fraser, E. M.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1929-05-06,1929-06-06,https://shakespeareandco.princeton.edu/members/la-gorce-agnes-de/,AgnΓ¨s de La Gorce,"La Gorce, AgnΓ¨s de",10.00,,1 month,31,1,Student,1929-05-08,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Separate Payment,1929-05-06,1929-05-06,https://shakespeareandco.princeton.edu/members/kelsey-mary/,Mary Kelsey,"Kelsey, Mary",6.50,,,,,,1929-05-06,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-05-06,1929-05-08,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/richardson/,Richardson,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/b7%2Ff9%2F42%2Fb7f94220fdd94b8c9006c2cef8db8e9d%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1929-05-07,1929-05-07,https://shakespeareandco.princeton.edu/members/lee-elga/,Elga Lee,"Lee, Elga",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1929-05-08,1929-06-08,https://shakespeareandco.princeton.edu/members/fadden-mabel/,Mabel Fadden,"Fadden, Mabel",25.00,,1 month,31,1,,1929-04-29,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-05-08,1929-05-10,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/george-bed-roses/,A Bed of Roses,,"George, Walter Lionel",1916,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/b7%2Ff9%2F42%2Fb7f94220fdd94b8c9006c2cef8db8e9d%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1929-05-08,1929-05-08,https://shakespeareandco.princeton.edu/members/cloupeau/,J. Cloupeau,"Cloupeau, J.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1929-05-08,1930-05-08,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",144.00,,1 year,365,1,,1929-05-08,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,;https://iiif.princeton.edu/loris/figgy_prod/70%2F1a%2Ff5%2F701af56e9b064e78a6e4135d00839f94%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-05-08,1929-05-14,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/arlen-lily-christine/,Lily Christine,,"Arlen, Michael",1928,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/70%2F1a%2Ff5%2F701af56e9b064e78a6e4135d00839f94%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1929-05-08,1929-05-08,https://shakespeareandco.princeton.edu/members/fitzgerald-f-scott/,F. Scott Fitzgerald,"Fitzgerald, F. Scott",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-05-10,1929-05-13,https://shakespeareandco.princeton.edu/members/wigram/,"Ava (Bodley) Wigram, Viscountess Waverley / Mrs. Wigram","Wigram, Ava",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/stacpoole-stories-east-west/,Stories East and West: Tales of Men and Women,,"Stacpoole, Henry de Vere",1926,,Lending Library Card,"Sylvia Beach, Mrs Wigram Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cb31053e-8c6b-4519-94bf-4fa00d3e0073/manifest,https://iiif.princeton.edu/loris/figgy_prod/0b%2Feb%2F7f%2F0beb7f51452b476285e26af28d090b93%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1929-05-10,1929-06-10,https://shakespeareandco.princeton.edu/members/wigram/,"Ava (Bodley) Wigram, Viscountess Waverley / Mrs. Wigram","Wigram, Ava",35.00,100.00,1 month,31,2,,1929-05-10,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Mrs Wigram Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cb31053e-8c6b-4519-94bf-4fa00d3e0073/manifest,https://iiif.princeton.edu/loris/figgy_prod/0b%2Feb%2F7f%2F0beb7f51452b476285e26af28d090b93%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-05-10,,https://shakespeareandco.princeton.edu/members/jackson-5/,Mrs. Jackson,"Jackson, Mrs.",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/lavignac-music-musicians/,Music and Musicians,,"Lavignac, Albert",1901,,Lending Library Card,"Sylvia Beach, Mrs. Jackson Lending Library Card, Box 59, Folder 6, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ac6269e-f2f6-4df6-861c-40ac8f15296d/manifest,https://iiif-cloud.princeton.edu/iiif/2/da%2F22%2F73%2Fda2273e36d4d4ec99185a8c8890b80ee%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-05-10,1929-05-14,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/forster-passage-india/,A Passage to India,,"Forster, E. M.",1924,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/b7%2Ff9%2F42%2Fb7f94220fdd94b8c9006c2cef8db8e9d%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1929-05-10,1929-06-10,https://shakespeareandco.princeton.edu/members/mandiargues/,AndrΓ© Pieyre de Mandiargues,"Mandiargues, AndrΓ© Pieyre de",60.00,50.00,1 month,31,2,,1929-05-07,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-05-10,1929-05-18,https://shakespeareandco.princeton.edu/members/wigram/,"Ava (Bodley) Wigram, Viscountess Waverley / Mrs. Wigram","Wigram, Ava",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/huxley-little-mexican-stories/,Little Mexican and Other Stories,,"Huxley, Aldous",1924,,Lending Library Card,"Sylvia Beach, Mrs Wigram Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cb31053e-8c6b-4519-94bf-4fa00d3e0073/manifest,https://iiif.princeton.edu/loris/figgy_prod/0b%2Feb%2F7f%2F0beb7f51452b476285e26af28d090b93%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-05-10,1929-05-13,https://shakespeareandco.princeton.edu/members/wigram/,"Ava (Bodley) Wigram, Viscountess Waverley / Mrs. Wigram","Wigram, Ava",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/delafield-love/,What Is Love?,,"Delafield, E. M.",1928,,Lending Library Card,"Sylvia Beach, Mrs Wigram Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cb31053e-8c6b-4519-94bf-4fa00d3e0073/manifest,https://iiif.princeton.edu/loris/figgy_prod/0b%2Feb%2F7f%2F0beb7f51452b476285e26af28d090b93%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-05-11,1929-07-16,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,66,,,https://shakespeareandco.princeton.edu/books/wilder-angel-troubled-waters/,The Angel That Troubled the Waters,,"Wilder, Thornton",1928,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/5c%2F5b%2F3e%2F5c5b3e81f7294acbbb7b06cbba8e32c3%2Fintermediate_file/full/full/0/default.jpg
+Generic,1929-05-11,,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/sitwell-visit-gypsies/,The Visit of the Gypsies,,"Sitwell, Sacheverell",1929,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/5c%2F5b%2F3e%2F5c5b3e81f7294acbbb7b06cbba8e32c3%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1929-05-11,1929-06-11,https://shakespeareandco.princeton.edu/members/hagfors-l/,L. Hagfors,"Hagfors, L.",25.00,50.00,1 month,31,1,,1929-05-11,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1929-05-11,1929-05-11,https://shakespeareandco.princeton.edu/members/forwood/,Mme K. Forwood,"Forwood, Mme K.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1929-05-11,1929-06-11,https://shakespeareandco.princeton.edu/members/seager/,Katherine Seager,"Seager, Katherine",25.00,,1 month,31,1,,1929-04-29,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Katherine Seager Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/2e6c33f9-87d4-4c5a-b5ee-9d023f87da1d/manifest,;https://iiif.princeton.edu/loris/figgy_prod/97%2F10%2F76%2F9710767a1c2345cf82b7b334d09ead67%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-05-11,1929-05-27,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/wells-mr-blettsworthy-rampole/,Mr. Blettsworthy on Rampole Island,,"Wells, H. G.",1928,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a9%2F11%2Fd5%2Fa911d51c78fb461396e48d152363a39d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-05-11,1929-07-16,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,66,,,https://shakespeareandco.princeton.edu/books/louis-bromfield-awake-rehearse-selected/,Awake and Rehearse: Selected Short Stories of Louis Bromfield,,"Bromfield, Louis",1929,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/5c%2F5b%2F3e%2F5c5b3e81f7294acbbb7b06cbba8e32c3%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-05-11,1929-05-18,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/recollection/,Recollections,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/c7%2F9b%2F41%2Fc79b419d98a942698de27249b5d06916%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-05-11,1929-05-18,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/baring-half-minutes-silence/,Half a Minute's Silence,,"Baring, Maurice",1925,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/c7%2F9b%2F41%2Fc79b419d98a942698de27249b5d06916%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-05-13,1929-05-18,https://shakespeareandco.princeton.edu/members/wigram/,"Ava (Bodley) Wigram, Viscountess Waverley / Mrs. Wigram","Wigram, Ava",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/walpole-wintersmoon/,Wintersmoon,,"Walpole, Hugh",1928,,Lending Library Card,"Sylvia Beach, Mrs Wigram Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cb31053e-8c6b-4519-94bf-4fa00d3e0073/manifest,https://iiif.princeton.edu/loris/figgy_prod/0b%2Feb%2F7f%2F0beb7f51452b476285e26af28d090b93%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1929-05-13,1929-06-13,https://shakespeareandco.princeton.edu/members/coleman-jules/,Jules Coleman,"Coleman, Jules",35.00,100.00,1 month,31,2,,1929-05-13,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-05-13,1929-06-07,https://shakespeareandco.princeton.edu/members/wigram/,"Ava (Bodley) Wigram, Viscountess Waverley / Mrs. Wigram","Wigram, Ava",,,,,,,,,Returned,25,,,https://shakespeareandco.princeton.edu/books/seiss-golden-altar-forms/,The Golden Altar: Forms of Living Faith,,"Seiss, Joseph A.",1900,,Lending Library Card,"Sylvia Beach, Mrs Wigram Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cb31053e-8c6b-4519-94bf-4fa00d3e0073/manifest,https://iiif.princeton.edu/loris/figgy_prod/0b%2Feb%2F7f%2F0beb7f51452b476285e26af28d090b93%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-05-13,1929-06-07,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,25,,,https://shakespeareandco.princeton.edu/books/cole-superintendent-wilsons-holiday/,Superintendent Wilson's Holiday,,"Cole, G. D. H.;Cole, Margaret",1928,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/ed%2F69%2F87%2Fed698743ad5641058ccc97f94cdc5360%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-05-13,1929-05-16,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/trites-ask-young/,Ask the Young,,"Trites, W. B.",1924,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/0b%2F4b%2F56%2F0b4b565bfedb4014a2309ab7cc8cc359%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-05-13,1929-05-23,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/bodenheim-sixty-seconds/,Sixty Seconds,,"Bodenheim, Maxwell",1929,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/0b%2F4b%2F56%2F0b4b565bfedb4014a2309ab7cc8cc359%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-05-14,1929-05-17,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/hart-double-image/,The Double Image,,"Hart, I. R. G.",1928,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/70%2F1a%2Ff5%2F701af56e9b064e78a6e4135d00839f94%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-05-14,1929-05-21,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/huxley-two-three-graces/,Two or Three Graces and Other Stories,,"Huxley, Aldous",1926,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/b7%2Ff9%2F42%2Fb7f94220fdd94b8c9006c2cef8db8e9d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-05-14,1929-05-18,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/symons-charles-baudelaire-study/,Charles Baudelaire: A Study,,"Symons, Arthur",1920,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/b7%2Ff9%2F42%2Fb7f94220fdd94b8c9006c2cef8db8e9d%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1929-05-14,1929-05-14,https://shakespeareandco.princeton.edu/members/denny/,N. Denny,"Denny, N.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-05-15,1929-05-16,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/richmond-times-literary-supplement/,The Times Literary Supplement,,,,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/0b%2F4b%2F56%2F0b4b565bfedb4014a2309ab7cc8cc359%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1929-05-15,1929-06-15,https://shakespeareandco.princeton.edu/members/tierney/,Tierney,Tierney,28.00,100.00,1 month,31,2,,1929-05-15,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1929-05-16,1929-05-16,https://shakespeareandco.princeton.edu/members/king-d-l/,D. L. King,"King, D. L.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1929-05-16,1929-11-15,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",80.00,,"5 months, 30 days",183,1,,1929-05-16,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,;https://iiif-cloud.princeton.edu/iiif/2/0b%2F4b%2F56%2F0b4b565bfedb4014a2309ab7cc8cc359%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-05-16,1929-05-19,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/bennett-woman-stole-everything/,The Woman Who Stole Everything and Other Stories,,"Bennett, Arnold",1927,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/0b%2F4b%2F56%2F0b4b565bfedb4014a2309ab7cc8cc359%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-05-16,1929-05-23,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/richmond-times-literary-supplement/,The Times Literary Supplement,"no. 1421, Apr 25, 1929",,,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/0b%2F4b%2F56%2F0b4b565bfedb4014a2309ab7cc8cc359%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-05-16,,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/coulton-life-middle-ages/,Life in the Middle Ages,,,1928,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/9a%2Fc7%2F06%2F9ac7061f764c441c8ce8560e695b563d%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1929-05-16,1929-05-16,https://shakespeareandco.princeton.edu/members/bandonneau/,Jacqueline Bondonneau,"Bondonneau, Jacqueline",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-05-17,1929-05-22,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/mackenzie-extraordinary-women-theme/,Extraordinary Women: Theme and Variations,,"Mackenzie, Compton",1928,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/70%2F1a%2Ff5%2F701af56e9b064e78a6e4135d00839f94%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-05-18,1929-06-07,https://shakespeareandco.princeton.edu/members/wigram/,"Ava (Bodley) Wigram, Viscountess Waverley / Mrs. Wigram","Wigram, Ava",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/walpole-captives-novel-four/,The Captives: A Novel in Four Parts,,"Walpole, Hugh",1920,,Lending Library Card,"Sylvia Beach, Mrs Wigram Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cb31053e-8c6b-4519-94bf-4fa00d3e0073/manifest,https://iiif.princeton.edu/loris/figgy_prod/0b%2Feb%2F7f%2F0beb7f51452b476285e26af28d090b93%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-05-18,1929-05-30,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/lowell-whats-oclock/,What's O'Clock,,"Lowell, Amy",1925,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/c7%2F9b%2F41%2Fc79b419d98a942698de27249b5d06916%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-05-18,1929-05-30,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/lowell-legends/,Legends,,"Lowell, Amy",1921,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/c7%2F9b%2F41%2Fc79b419d98a942698de27249b5d06916%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-05-18,1929-06-07,https://shakespeareandco.princeton.edu/members/wigram/,"Ava (Bodley) Wigram, Viscountess Waverley / Mrs. Wigram","Wigram, Ava",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/walpole-old-ladies/,The Old Ladies,,"Walpole, Hugh",1924,,Lending Library Card,"Sylvia Beach, Mrs Wigram Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cb31053e-8c6b-4519-94bf-4fa00d3e0073/manifest,https://iiif.princeton.edu/loris/figgy_prod/0b%2Feb%2F7f%2F0beb7f51452b476285e26af28d090b93%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-05-18,1929-05-30,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/english-literature/,English Literature,Vol. 4,,,Unidentified multivolume work.,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/c7%2F9b%2F41%2Fc79b419d98a942698de27249b5d06916%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1929-05-20,1929-06-20,https://shakespeareandco.princeton.edu/members/burton-2/,Katherine Burton,"Burton, Katherine",20.00,,1 month,31,1,Student,1929-05-27,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-05-21,1929-05-31,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/galsworthy-patrician/,The Patrician,,"Galsworthy, John",1911,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/b0%2Ffc%2F7c%2Fb0fc7c5cf0dc424e9e3c282cd129a6be%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1929-05-21,1929-05-21,https://shakespeareandco.princeton.edu/members/crawford/,Mrs. B. Crawford,"Crawford, Mrs. B.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1929-05-21,1929-05-21,https://shakespeareandco.princeton.edu/members/dodds-muriel/,Muriel Dodds,"Dodds, Muriel",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1929-05-21,1929-05-21,https://shakespeareandco.princeton.edu/members/kephala/,Mme M. Kephala,"Kephala, Mme M.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-05-21,1929-07-02,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,42,,,https://shakespeareandco.princeton.edu/books/dostoevskaia-dostoevsky-portrayed-wife/,Dostoevsky Portrayed by His Wife: The Diary and Reminiscences of Mme Dostoevsky,,"Dostoevskaia, Anna",1926,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/9a%2Fc7%2F06%2F9ac7061f764c441c8ce8560e695b563d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-05-21,1929-05-24,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/crofts-inspector-frenchs-case/,Inspector French's Case Book,,"Crofts, Freeman Wills",1928,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/b7%2Ff9%2F42%2Fb7f94220fdd94b8c9006c2cef8db8e9d%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1929-05-22,1929-06-22,https://shakespeareandco.princeton.edu/members/fitzgerald-f-scott/,F. Scott Fitzgerald,"Fitzgerald, F. Scott",35.00,,1 month,31,2,,1929-05-15,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1929-05-22,1929-06-22,https://shakespeareandco.princeton.edu/members/dalston-mary/,Mary Dalston,"Dalston, Mary",25.00,,1 month,31,1,,1929-05-22,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1929-05-22,1929-05-22,https://shakespeareandco.princeton.edu/members/dalston-mary/,Mary Dalston,"Dalston, Mary",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-05-22,1929-05-28,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/hall-adams-breed/,Adam's Breed,,"Hall, Radclyffe",1926,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/70%2F1a%2Ff5%2F701af56e9b064e78a6e4135d00839f94%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1929-05-22,1929-08-22,https://shakespeareandco.princeton.edu/members/volkova/,Volkova / Wolkova,Volkova,85.00,,3 months,92,2,,1929-05-21,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1929-05-23,1929-11-23,https://shakespeareandco.princeton.edu/members/lentilhon/,Mrs. E. Lentilhon,"Lentilhon, Mrs. E.",100.00,,6 months,184,1,,1929-05-13,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1929-05-23,1929-06-23,https://shakespeareandco.princeton.edu/members/rubin/,Rubin,Rubin,20.00,,1 month,31,1,,1929-05-23,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-05-23,1929-11-16,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,177,,,https://shakespeareandco.princeton.edu/books/fitzmaurice-kelly-life-miguel-cervantes/,The Life of Miguel de Cervantes Saavedra,,"Fitzmaurice-Kelly, James",1892,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/2a%2Fe1%2F20%2F2ae1204f192e4ecdb46cde153b2d8975%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-05-23,1929-11-16,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,177,,,https://shakespeareandco.princeton.edu/books/melville-great-german-short/,Great German Short Stories,,,1929,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/2a%2Fe1%2F20%2F2ae1204f192e4ecdb46cde153b2d8975%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-05-23,1929-11-16,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,177,,,https://shakespeareandco.princeton.edu/books/cervantes-history-don-quixote/,The History of Don Quixote,3 vols.,"Cervantes, Miguel de",,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/2a%2Fe1%2F20%2F2ae1204f192e4ecdb46cde153b2d8975%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-05-23,1929-06-06,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/richmond-times-literary-supplement/,The Times Literary Supplement,"no. 1422, May 2, 1929",,,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/0b%2F4b%2F56%2F0b4b565bfedb4014a2309ab7cc8cc359%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-05-23,1929-06-06,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/mottram-english-miss/,The English Miss,,"Mottram, R. H.",1928,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/0b%2F4b%2F56%2F0b4b565bfedb4014a2309ab7cc8cc359%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-05-24,1929-05-28,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/mackenzie-rich-relatives/,Rich Relatives,,"Mackenzie, Compton",1921,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/b7%2Ff9%2F42%2Fb7f94220fdd94b8c9006c2cef8db8e9d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-05-25,1929-06-25,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,31,,,https://shakespeareandco.princeton.edu/books/forster-passage-india/,A Passage to India,,"Forster, E. M.",1924,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/e0%2F11%2F78%2Fe011789ae91b4941a088b85942d4df17%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-05-25,1929-06-25,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,31,,,https://shakespeareandco.princeton.edu/books/forster-aspects-novel/,Aspects of the Novel,,"Forster, E. M.",1927,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/e0%2F11%2F78%2Fe011789ae91b4941a088b85942d4df17%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1929-05-27,1929-05-27,https://shakespeareandco.princeton.edu/members/beach-3/,Dagmar Doneghy / Mrs. Joseph Warren Beach,"Doneghy, Dagmar",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1929-05-27,1929-05-27,https://shakespeareandco.princeton.edu/members/burton-2/,Katherine Burton,"Burton, Katherine",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-05-27,1929-05-29,https://shakespeareandco.princeton.edu/members/potocki-de-montalk/,Geoffrey Potocki de Montalk,"Potocki de Montalk, Geoffrey",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/jolas-transition/,transition,"Vol. 1, 1927",,,,Lending Library Card,"Sylvia Beach, Geoffrey Potocki de Montalk Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3d3346d0-18e1-4066-8756-0990f97aac13/manifest,https://iiif.princeton.edu/loris/figgy_prod/1b%2F07%2F7f%2F1b077fa6aa8f46aab57641ad70eaa938%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-05-27,1929-06-03,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/wilder-cabala/,The Cabala,,"Wilder, Thornton",1926,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a9%2F11%2Fd5%2Fa911d51c78fb461396e48d152363a39d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1929-05-28,1929-08-28,https://shakespeareandco.princeton.edu/members/arndt/,J. Arndt,"Arndt, J.",60.00,,3 months,92,1,,1929-05-17,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-05-28,,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/barrie-auld-licht-idylls/,Auld Licht Idylls,,"Barrie, J. M.",1888,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/b7%2Ff9%2F42%2Fb7f94220fdd94b8c9006c2cef8db8e9d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-05-28,1929-06-03,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/huxley-point-counter-point/,Point Counter Point,,"Huxley, Aldous",1928,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/70%2F1a%2Ff5%2F701af56e9b064e78a6e4135d00839f94%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-05-28,1929-05-29,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/garnett-love/,No Love,,"Garnett, David",1929,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/b7%2Ff9%2F42%2Fb7f94220fdd94b8c9006c2cef8db8e9d%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1929-05-29,1929-05-29,https://shakespeareandco.princeton.edu/members/keller-sue-b/,Sue B. Keller,"Keller, Sue B.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-05-29,1929-05-31,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/rascoe-bookmans-day-book/,A Bookman's Daybook,,"Rascoe, Burton",1929,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/b7%2Ff9%2F42%2Fb7f94220fdd94b8c9006c2cef8db8e9d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-05-29,1929-05-31,https://shakespeareandco.princeton.edu/members/potocki-de-montalk/,Geoffrey Potocki de Montalk,"Potocki de Montalk, Geoffrey",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/mansfield-bliss-short-stories/,Bliss and Other Stories,,"Mansfield, Katherine",1920,,Lending Library Card,"Sylvia Beach, Geoffrey Potocki de Montalk Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3d3346d0-18e1-4066-8756-0990f97aac13/manifest,https://iiif.princeton.edu/loris/figgy_prod/1b%2F07%2F7f%2F1b077fa6aa8f46aab57641ad70eaa938%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-05-30,1929-06-18,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/wilder-bridge-san-luis/,The Bridge of San Luis Rey,,"Wilder, Thornton",1927,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/c7%2F9b%2F41%2Fc79b419d98a942698de27249b5d06916%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-05-30,1929-06-21,https://shakespeareandco.princeton.edu/members/mcalmon-robert/,Robert McAlmon,"McAlmon, Robert",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/napoleon/,Napoleon,,,,"Unidentified. Emil Ludwig's *NapoleΜon,* translated by Eden and Cedar Paul (1926), or Dmitri Merezhkovsky's *Napoleon,* translated by Catherine Zvegintzov (1928).",Lending Library Card,"Sylvia Beach, Robert McAlmon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/889ff3f8-b62c-42f6-8e88-1dd95434b2f5/manifest,https://iiif-cloud.princeton.edu/iiif/2/96%2Fa8%2F8e%2F96a88eb181d6441e9419ad605d99c121%2Fintermediate_file/full/full/0/default.jpg
+Crossed out,1929-05-30,,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/exagmination-round-factification/,Our Exagmination Round His Factification for Incamination of Work in Progress,,"Beckett, Samuel;Brion, Marcel;Budgen, Frank;Gilbert, Stuart;Jolas, Eugene;Llona, Victor;McAlmon, Robert;MacGreevy, Thomas;Paul, Elliot;Rodker, John;Sage, Robert D.;Williams, William Carlos;Slingsby, G. V. L.;Dixon, Vladimir",1929,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Fb9%2Fad%2Fccb9adb778e74d51bcd6d04425f9e15d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-05-30,1929-06-21,https://shakespeareandco.princeton.edu/members/mcalmon-robert/,Robert McAlmon,"McAlmon, Robert",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/gogol-dead-souls/,Dead Souls,2 vols.,"Gogol, Nikolai",1842,,Lending Library Card,"Sylvia Beach, Robert McAlmon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/889ff3f8-b62c-42f6-8e88-1dd95434b2f5/manifest,https://iiif-cloud.princeton.edu/iiif/2/96%2Fa8%2F8e%2F96a88eb181d6441e9419ad605d99c121%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-05-30,1929-06-14,https://shakespeareandco.princeton.edu/members/mcalmon-robert/,Robert McAlmon,"McAlmon, Robert",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/stendhal-charterhouse-parma/,The Charterhouse of Parma,2 vols.,Stendhal,1839,,Lending Library Card,"Sylvia Beach, Robert McAlmon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/889ff3f8-b62c-42f6-8e88-1dd95434b2f5/manifest,https://iiif-cloud.princeton.edu/iiif/2/96%2Fa8%2F8e%2F96a88eb181d6441e9419ad605d99c121%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-05-30,1929-06-05,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/borrow-romano-lavo-lil/,"Romano Lavo-Lil: Word-Book fo the Romany or, English Gypsy Language",,"Borrow, George Henry",1874,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Fb9%2Fad%2Fccb9adb778e74d51bcd6d04425f9e15d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-05-30,1929-06-05,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/borrow-romany-rye/,The Romany Rye,,"Borrow, George Henry",1857,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Fb9%2Fad%2Fccb9adb778e74d51bcd6d04425f9e15d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-05-30,1929-06-21,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/george-meredith/,George Meredith,,,,Unidentified. By or about George Meredith.,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/c7%2F9b%2F41%2Fc79b419d98a942698de27249b5d06916%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-05-31,1929-06-07,https://shakespeareandco.princeton.edu/members/potocki-de-montalk/,Geoffrey Potocki de Montalk,"Potocki de Montalk, Geoffrey",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/jolas-transition/,transition,"Vol. 2, 1927",,,,Lending Library Card,"Sylvia Beach, Geoffrey Potocki de Montalk Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3d3346d0-18e1-4066-8756-0990f97aac13/manifest,https://iiif.princeton.edu/loris/figgy_prod/1b%2F07%2F7f%2F1b077fa6aa8f46aab57641ad70eaa938%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-05-31,1929-06-03,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/trollope-frau-frohmann-stories/,Frau Frohmann and Other Stories,,"Trollope, Anthony",1882,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/b7%2Ff9%2F42%2Fb7f94220fdd94b8c9006c2cef8db8e9d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-05-31,1929-06-20,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/orr-life-letters-robert/,Life and Letters of Robert Browning,,"Orr, Alexandra Sutherland",1891,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/b0%2Ffc%2F7c%2Fb0fc7c5cf0dc424e9e3c282cd129a6be%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1929-06-01,1929-06-01,https://shakespeareandco.princeton.edu/members/lady-colvin/,Lady E. Colvin,"Colvin, Lady E.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1929-06-01,1929-06-01,https://shakespeareandco.princeton.edu/members/renault-3/,Renault,Renault,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1929-06-01,1929-06-01,https://shakespeareandco.princeton.edu/members/richardson-mrs-arthur/,Mrs. Arthur W. Richardson,"Richardson, Mrs. Arthur W.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-06-03,1929-06-06,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/de-la-mare-connoisseur-stories/,The Connoisseur and Other Stories,,"De la Mare, Walter",1926,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/70%2F1a%2Ff5%2F701af56e9b064e78a6e4135d00839f94%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-06-03,1929-06-05,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/wilder-cabala/,The Cabala,,"Wilder, Thornton",1926,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/b7%2Ff9%2F42%2Fb7f94220fdd94b8c9006c2cef8db8e9d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-06-03,1929-06-05,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/rascoe-bookmans-day-book/,A Bookman's Daybook,,"Rascoe, Burton",1929,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/9a%2Fc7%2F06%2F9ac7061f764c441c8ce8560e695b563d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-06-03,1929-06-26,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/huxley-point-counter-point/,Point Counter Point,,"Huxley, Aldous",1928,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a9%2F11%2Fd5%2Fa911d51c78fb461396e48d152363a39d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1929-06-03,1929-06-03,https://shakespeareandco.princeton.edu/members/obrien-3/,O'Brien,O'Brien,,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1929-06-04,1929-07-04,https://shakespeareandco.princeton.edu/members/mclean-a/,A. McLean,"McLean, A.",25.00,,1 month,30,1,,1929-06-04,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1929-06-04,1929-09-04,https://shakespeareandco.princeton.edu/members/briggs-2/,G. Briggs,"Briggs, G.",85.00,,3 months,92,2,,1929-05-30,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1929-06-04,1929-07-04,https://shakespeareandco.princeton.edu/members/levinson-2/,Levinson,Levinson,28.00,,1 month,30,2,,1929-05-30,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1929-06-04,1929-07-04,https://shakespeareandco.princeton.edu/members/mclintosch/,McLintosch,McLintosch,35.00,,1 month,30,2,,1929-06-01,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1929-06-05,1929-07-05,https://shakespeareandco.princeton.edu/members/callaghan-loretto/;https://shakespeareandco.princeton.edu/members/callaghan-morley/,Loretto (Dee) Callaghan;Morley Callaghan,"Callaghan, Loretto;Callaghan, Morley",35.00,100.00,1 month,30,3,,1929-06-05,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1929-06-05,1929-06-05,https://shakespeareandco.princeton.edu/members/willard-2/,Mr. Willard,"Willard, Mr.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-06-05,1929-06-12,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/trollope-belton-estate/,The Belton Estate,,"Trollope, Anthony",1866,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Fb9%2Fad%2Fccb9adb778e74d51bcd6d04425f9e15d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-06-05,1929-06-08,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/christie-mystery-blue-train/,The Mystery of the Blue Train,,"Christie, Agatha",1928,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/b7%2Ff9%2F42%2Fb7f94220fdd94b8c9006c2cef8db8e9d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-06-05,1929-06-21,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/stein-three-lives/,Three Lives,,"Stein, Gertrude",1909,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/9a%2Fc7%2F06%2F9ac7061f764c441c8ce8560e695b563d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-06-05,1929-06-26,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/delafield-love/,What Is Love?,,"Delafield, E. M.",1928,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a9%2F11%2Fd5%2Fa911d51c78fb461396e48d152363a39d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-06-06,1929-06-10,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/swinnerton-brood-ducklings/,A Brood of Ducklings,,"Swinnerton, Frank",1928,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/70%2F1a%2Ff5%2F701af56e9b064e78a6e4135d00839f94%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1929-06-06,1929-06-06,https://shakespeareandco.princeton.edu/members/chambers/,Mrs. Robert Chambers,"Chambers, Mrs. Robert",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1929-06-06,1929-07-06,https://shakespeareandco.princeton.edu/members/seager/,Katherine Seager,"Seager, Katherine",25.00,,1 month,30,1,,1929-06-06,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Katherine Seager Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/2e6c33f9-87d4-4c5a-b5ee-9d023f87da1d/manifest,;https://iiif.princeton.edu/loris/figgy_prod/97%2F10%2F76%2F9710767a1c2345cf82b7b334d09ead67%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-06-06,1929-06-12,https://shakespeareandco.princeton.edu/members/potocki-de-montalk/,Geoffrey Potocki de Montalk,"Potocki de Montalk, Geoffrey",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/exagmination-round-factification/,Our Exagmination Round His Factification for Incamination of Work in Progress,,"Beckett, Samuel;Brion, Marcel;Budgen, Frank;Gilbert, Stuart;Jolas, Eugene;Llona, Victor;McAlmon, Robert;MacGreevy, Thomas;Paul, Elliot;Rodker, John;Sage, Robert D.;Williams, William Carlos;Slingsby, G. V. L.;Dixon, Vladimir",1929,,Lending Library Card,"Sylvia Beach, Geoffrey Potocki de Montalk Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3d3346d0-18e1-4066-8756-0990f97aac13/manifest,https://iiif.princeton.edu/loris/figgy_prod/1b%2F07%2F7f%2F1b077fa6aa8f46aab57641ad70eaa938%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1929-06-06,1929-07-06,https://shakespeareandco.princeton.edu/members/la-gorce-agnes-de/,AgnΓ¨s de La Gorce,"La Gorce, AgnΓ¨s de",10.00,,1 month,30,1,,1929-05-28,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-06-06,1929-06-14,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/asquith-black-cap-new/,The Black Cap: New Stories of Murder and Mystery,,,1927,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/0b%2F4b%2F56%2F0b4b565bfedb4014a2309ab7cc8cc359%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-06-06,1929-06-14,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/richmond-times-literary-supplement/,The Times Literary Supplement,"no. 1424, May 16, 1929",,,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/0b%2F4b%2F56%2F0b4b565bfedb4014a2309ab7cc8cc359%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-06-06,1929-06-07,https://shakespeareandco.princeton.edu/members/seager/,Katherine Seager,"Seager, Katherine",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/huxley-crome-yellow/,Crome Yellow,,"Huxley, Aldous",1921,,Lending Library Card,"Sylvia Beach, Katherine Seager Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2e6c33f9-87d4-4c5a-b5ee-9d023f87da1d/manifest,https://iiif.princeton.edu/loris/figgy_prod/97%2F10%2F76%2F9710767a1c2345cf82b7b334d09ead67%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-06-07,1929-06-18,https://shakespeareandco.princeton.edu/members/hobhouse/,U. Hobhouse,"Hobhouse, U.",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/ford-joseph-conrad-personal/,Joseph Conrad: A Personal Remembrance,,"Ford, Ford Madox",1924,,Lending Library Card,"Sylvia Beach, Miss U. Hobhouse Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b03d3286-f699-432b-8aac-d130f9fdc4e7/manifest,https://iiif.princeton.edu/loris/figgy_prod/3d%2Fb1%2F5c%2F3db15c706ce34c2096c4a4c741ab718d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-06-07,1929-06-18,https://shakespeareandco.princeton.edu/members/hobhouse/,U. Hobhouse,"Hobhouse, U.",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/lehmann-dusty-answer/,Dusty Answer,,"Lehmann, Rosamond",1927,,Lending Library Card,"Sylvia Beach, Miss U. Hobhouse Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b03d3286-f699-432b-8aac-d130f9fdc4e7/manifest,https://iiif.princeton.edu/loris/figgy_prod/3d%2Fb1%2F5c%2F3db15c706ce34c2096c4a4c741ab718d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-06-07,1929-06-10,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/fletcher-green-rope/,The Green Rope,,"Fletcher, Joseph Smith",1927,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/ed%2F69%2F87%2Fed698743ad5641058ccc97f94cdc5360%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-06-07,1929-06-13,https://shakespeareandco.princeton.edu/members/seager/,Katherine Seager,"Seager, Katherine",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/hare-walks-london/,Walks in London,Vol. 1,"Hare, Augustus J. C.",1878,,Lending Library Card,"Sylvia Beach, Katherine Seager Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2e6c33f9-87d4-4c5a-b5ee-9d023f87da1d/manifest,https://iiif.princeton.edu/loris/figgy_prod/97%2F10%2F76%2F9710767a1c2345cf82b7b334d09ead67%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-06-07,1929-06-08,https://shakespeareandco.princeton.edu/members/potocki-de-montalk/,Geoffrey Potocki de Montalk,"Potocki de Montalk, Geoffrey",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/jolas-transition/,transition,"no. 11, 1928",,,,Lending Library Card,"Sylvia Beach, Geoffrey Potocki de Montalk Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3d3346d0-18e1-4066-8756-0990f97aac13/manifest,https://iiif.princeton.edu/loris/figgy_prod/1b%2F07%2F7f%2F1b077fa6aa8f46aab57641ad70eaa938%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-06-07,1929-06-18,https://shakespeareandco.princeton.edu/members/wigram/,"Ava (Bodley) Wigram, Viscountess Waverley / Mrs. Wigram","Wigram, Ava",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/kaye-smith-village-doctor/,The Village Doctor,,"Kaye-Smith, Sheila",1929,,Lending Library Card,"Sylvia Beach, Mrs Wigram Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cb31053e-8c6b-4519-94bf-4fa00d3e0073/manifest,https://iiif.princeton.edu/loris/figgy_prod/0b%2Feb%2F7f%2F0beb7f51452b476285e26af28d090b93%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-06-07,1929-07-04,https://shakespeareandco.princeton.edu/members/wigram/,"Ava (Bodley) Wigram, Viscountess Waverley / Mrs. Wigram","Wigram, Ava",,,,,,,,,Returned,27,,,https://shakespeareandco.princeton.edu/books/baring-c/,C,,"Baring, Maurice",1924,,Lending Library Card,"Sylvia Beach, Mrs Wigram Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cb31053e-8c6b-4519-94bf-4fa00d3e0073/manifest,https://iiif.princeton.edu/loris/figgy_prod/0b%2Feb%2F7f%2F0beb7f51452b476285e26af28d090b93%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-06-07,1929-07-09,https://shakespeareandco.princeton.edu/members/wigram/,"Ava (Bodley) Wigram, Viscountess Waverley / Mrs. Wigram","Wigram, Ava",,,,,,,,,Returned,32,,,https://shakespeareandco.princeton.edu/books/young-brother-jonathan/,My Brother Jonathan,,"Young, Francis Brett",1928,,Lending Library Card,"Sylvia Beach, Mrs Wigram Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cb31053e-8c6b-4519-94bf-4fa00d3e0073/manifest,https://iiif.princeton.edu/loris/figgy_prod/0b%2Feb%2F7f%2F0beb7f51452b476285e26af28d090b93%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1929-06-07,1929-06-07,https://shakespeareandco.princeton.edu/members/crowell/,W. Crowell,"Crowell, W.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1929-06-07,1929-06-07,https://shakespeareandco.princeton.edu/members/elsmie/,Mrs. G. Elsmie,"Elsmie, Mrs. G.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1929-06-07,1929-07-07,https://shakespeareandco.princeton.edu/members/edens-2/,Olive Edens,"Edens, Olive",35.00,100.00,1 month,30,2,,1929-06-07,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1929-06-07,1929-07-07,https://shakespeareandco.princeton.edu/members/hobhouse/,U. Hobhouse,"Hobhouse, U.",35.00,100.00,1 month,30,2,,1929-06-07,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Miss U. Hobhouse Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/b03d3286-f699-432b-8aac-d130f9fdc4e7/manifest,;https://iiif.princeton.edu/loris/figgy_prod/3d%2Fb1%2F5c%2F3db15c706ce34c2096c4a4c741ab718d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-06-08,1929-06-21,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/dreiser-twelve-men/,Twelve Men,,"Dreiser, Theodore",1919,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/c7%2F9b%2F41%2Fc79b419d98a942698de27249b5d06916%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-06-08,1929-06-10,https://shakespeareandco.princeton.edu/members/mayre-n-e/,N. E. Mayre,"Mayre, N. E.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/maugham-trembling-leaf-little/,The Trembling of a Leaf: Little Stories of the South Sea Islands,,"Maugham, W. Somerset",1921,,Lending Library Card,"Sylvia Beach, N.E. Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ec1c32ef-7770-43a3-a5ae-d6afe67a337b/manifest,https://iiif.princeton.edu/loris/figgy_prod/5b%2F70%2Fde%2F5b70deb648294c9aab24a99f5a35196a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-06-08,1929-06-12,https://shakespeareandco.princeton.edu/members/potocki-de-montalk/,Geoffrey Potocki de Montalk,"Potocki de Montalk, Geoffrey",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/jolas-transition/,transition,"no. 12, 1928",,,,Lending Library Card,"Sylvia Beach, Geoffrey Potocki de Montalk Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3d3346d0-18e1-4066-8756-0990f97aac13/manifest,https://iiif.princeton.edu/loris/figgy_prod/1b%2F07%2F7f%2F1b077fa6aa8f46aab57641ad70eaa938%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-06-08,1929-06-15,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/garnett-love/,No Love,,"Garnett, David",1929,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/c7%2F9b%2F41%2Fc79b419d98a942698de27249b5d06916%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-06-08,1929-06-10,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/trollope-kept-dark/,Kept in the Dark,,"Trollope, Anthony",1882,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/b7%2Ff9%2F42%2Fb7f94220fdd94b8c9006c2cef8db8e9d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-06-08,1929-06-12,https://shakespeareandco.princeton.edu/members/potocki-de-montalk/,Geoffrey Potocki de Montalk,"Potocki de Montalk, Geoffrey",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/jolas-transition/,transition,"no. 15, 1929",,,,Lending Library Card,"Sylvia Beach, Geoffrey Potocki de Montalk Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3d3346d0-18e1-4066-8756-0990f97aac13/manifest,https://iiif.princeton.edu/loris/figgy_prod/1b%2F07%2F7f%2F1b077fa6aa8f46aab57641ad70eaa938%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-06-08,1929-06-12,https://shakespeareandco.princeton.edu/members/potocki-de-montalk/,Geoffrey Potocki de Montalk,"Potocki de Montalk, Geoffrey",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/fletcher-isles-illusion-letters/,Isles of Illusion: Letters from the South Seas,,"Fletcher, Robert James",1923,,Lending Library Card,"Sylvia Beach, Geoffrey Potocki de Montalk Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3d3346d0-18e1-4066-8756-0990f97aac13/manifest,https://iiif.princeton.edu/loris/figgy_prod/1b%2F07%2F7f%2F1b077fa6aa8f46aab57641ad70eaa938%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-06-10,1929-06-14,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/delafield-women-like/,Women Are Like That,,"Delafield, E. M.",1929,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/70%2F1a%2Ff5%2F701af56e9b064e78a6e4135d00839f94%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1929-06-10,1929-07-10,https://shakespeareandco.princeton.edu/members/mckenna-thomas/,Thomas McKenna,"McKenna, Thomas",28.00,100.00,1 month,30,2,Student,1929-06-10,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1929-06-10,1929-07-10,https://shakespeareandco.princeton.edu/members/patmore-brigit/,Brigit Patmore,"Patmore, Brigit",31.00,,1 month,30,1,,1929-06-10,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Brigit Patmore Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/ae9d6de8-7a88-4571-94bf-06881c4a2430/manifest,;https://iiif.princeton.edu/loris/figgy_prod/60%2F5e%2F1e%2F605e1ee495af4ec9a400f53f99900ceb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1929-06-10,1929-06-10,https://shakespeareandco.princeton.edu/members/crookston/,Mrs. Crookston,"Crookston, Mrs.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1929-06-10,1929-06-10,https://shakespeareandco.princeton.edu/members/osborne-2/,Osborne,Osborne,,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1929-06-10,1929-06-10,https://shakespeareandco.princeton.edu/members/sawyer-3/,Sawyer,Sawyer,,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-06-10,1929-06-12,https://shakespeareandco.princeton.edu/members/mayre-n-e/,N. E. Mayre,"Mayre, N. E.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/maugham-human-bondage/,Of Human Bondage,,"Maugham, W. Somerset",1915,,Lending Library Card,"Sylvia Beach, N.E. Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ec1c32ef-7770-43a3-a5ae-d6afe67a337b/manifest,https://iiif.princeton.edu/loris/figgy_prod/5b%2F70%2Fde%2F5b70deb648294c9aab24a99f5a35196a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-06-10,1929-06-17,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/fletcher-great-brighton-mystery/,The Great Brighton Mystery,,"Fletcher, Joseph Smith",1925,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/ed%2F69%2F87%2Fed698743ad5641058ccc97f94cdc5360%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-06-10,1929-06-12,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/van-dine-bishop-murder-case/,The Bishop Murder Case: A Philo Vance Story,,"Van Dine, S. S.",1929,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/b7%2Ff9%2F42%2Fb7f94220fdd94b8c9006c2cef8db8e9d%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1929-06-11,1929-09-11,https://shakespeareandco.princeton.edu/members/bertraud/,Alex Bertraud,"Bertraud, Alex",85.00,100.00,3 months,92,2,,1929-06-11,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-06-12,1929-07-07,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,25,,,https://shakespeareandco.princeton.edu/books/gaskell-cranford/,Cranford,,"Gaskell, Elizabeth",1853,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Fb9%2Fad%2Fccb9adb778e74d51bcd6d04425f9e15d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-06-12,1929-06-15,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/lawrence-rainbow/,The Rainbow,,"Lawrence, D. H.",1915,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/b7%2Ff9%2F42%2Fb7f94220fdd94b8c9006c2cef8db8e9d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-06-12,1929-11-27,https://shakespeareandco.princeton.edu/members/mayre-n-e/,N. E. Mayre,"Mayre, N. E.",,,,,,,,,Returned,168,,,https://shakespeareandco.princeton.edu/books/addison-spectator/,The Spectator,Vol. 1,,,Unidentified edition. N. E. Mayer borrows volume 1 and Mrs. Thornton Baker borrows all 3 volumes from an unspecified 3 volume edition.,Lending Library Card,"Sylvia Beach, N.E. Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ec1c32ef-7770-43a3-a5ae-d6afe67a337b/manifest,https://iiif.princeton.edu/loris/figgy_prod/5b%2F70%2Fde%2F5b70deb648294c9aab24a99f5a35196a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1929-06-13,1929-07-13,https://shakespeareandco.princeton.edu/members/moraes/,Mrs. Abano de Moraes,"Moraes, Mrs. Abano de",25.00,50.00,1 month,30,1,,1929-06-13,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1929-06-13,1929-07-13,https://shakespeareandco.princeton.edu/members/karrer-mary/,Mary Karrer,"Karrer, Mary",25.00,50.00,1 month,30,2,,1929-06-13,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1929-06-13,1929-07-13,https://shakespeareandco.princeton.edu/members/coleman-jules/,Jules Coleman,"Coleman, Jules",35.00,,1 month,30,2,,1929-06-13,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-06-13,1929-06-24,https://shakespeareandco.princeton.edu/members/seager/,Katherine Seager,"Seager, Katherine",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/van-vechten-firecrackers-realistic-novel/,Firecrackers: A Realistic Novel,,"Van Vechten, Carl",1925,,Lending Library Card,"Sylvia Beach, Katherine Seager Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2e6c33f9-87d4-4c5a-b5ee-9d023f87da1d/manifest,https://iiif.princeton.edu/loris/figgy_prod/97%2F10%2F76%2F9710767a1c2345cf82b7b334d09ead67%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-06-14,1929-07-08,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,24,,,https://shakespeareandco.princeton.edu/books/mckay-banjo-story-without/,Banjo: A Story without a Plot,,"McKay, Claude",1929,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/0b%2F4b%2F56%2F0b4b565bfedb4014a2309ab7cc8cc359%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-06-14,1929-06-20,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/lewis-childermass/,The Childermass,,"Lewis, Wyndham",1928,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/70%2F1a%2Ff5%2F701af56e9b064e78a6e4135d00839f94%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1929-06-14,1930-06-14,https://shakespeareandco.princeton.edu/members/burt-maud/,Maud Burt,"Burt, Maud",144.00,,1 year,365,1,Professor / Teacher,1929-06-26,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-06-15,1929-06-21,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/whitehead-religion-making-lowell/,"Religion in the Making: Lowell Lectures, 1926",,"Whitehead, Alfred North",1926,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/c7%2F9b%2F41%2Fc79b419d98a942698de27249b5d06916%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-06-15,1929-06-17,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/green-leavenworth-case/,The Leavenworth Case,,"Green, Anna Katharine",1878,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/b7%2Ff9%2F42%2Fb7f94220fdd94b8c9006c2cef8db8e9d%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1929-06-15,1929-07-15,https://shakespeareandco.princeton.edu/members/smith-27/,Miss Smith,"Smith, Miss",35.00,,1 month,30,2,,1929-06-15,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1929-06-15,1929-07-15,https://shakespeareandco.princeton.edu/members/andrews-chase/,Mrs. Chase Andrews,"Andrews, Mrs. Chase",25.00,50.00,1 month,30,1,,1929-06-15,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1929-06-15,1929-07-15,https://shakespeareandco.princeton.edu/members/desproud/,G. Desgrand,"Desgrand, G.",25.00,50.00,1 month,30,1,,1929-06-15,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-06-17,1929-06-28,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/taylor-mediaeval-mind-history/,The Mediaeval Mind: A History of the Development of Thought and Emotion in the Middle Ages,Vol. 1,"Taylor, Henry Osborn",1911,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/b7%2Ff9%2F42%2Fb7f94220fdd94b8c9006c2cef8db8e9d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-06-17,1929-06-22,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/connington-mystery-lynden-sands/,Mystery at Lynden Sands,,"Connington, J. J.",1928,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/ed%2F69%2F87%2Fed698743ad5641058ccc97f94cdc5360%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-06-17,1929-07-17,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,30,,,https://shakespeareandco.princeton.edu/books/fletcher-double-chance/,The Double Chance,,"Fletcher, Joseph Smith",1928,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/ed%2F69%2F87%2Fed698743ad5641058ccc97f94cdc5360%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1929-06-18,1929-07-18,https://shakespeareandco.princeton.edu/members/curtiss-nathaniel/,Nathaniel Curtiss,"Curtiss, Nathaniel",35.00,,1 month,30,2,,1929-05-21,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1929-06-18,1929-06-18,https://shakespeareandco.princeton.edu/members/egger-therese/,ThΓ©rΓ¨se Egger,"Egger, ThΓ©rΓ¨se",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-06-18,1929-07-03,https://shakespeareandco.princeton.edu/members/hobhouse/,U. Hobhouse,"Hobhouse, U.",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/cabell-rivet-grandfathers-neck/,The Rivet in Grandfather's Neck: A Comedy of Limitations,,"Cabell, James Branch",1915,,Lending Library Card,"Sylvia Beach, Miss U. Hobhouse Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b03d3286-f699-432b-8aac-d130f9fdc4e7/manifest,https://iiif.princeton.edu/loris/figgy_prod/3d%2Fb1%2F5c%2F3db15c706ce34c2096c4a4c741ab718d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-06-18,1929-07-03,https://shakespeareandco.princeton.edu/members/hobhouse/,U. Hobhouse,"Hobhouse, U.",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/aiken-blue-voyage/,Blue Voyage,,"Aiken, Conrad",1927,,Lending Library Card,"Sylvia Beach, Miss U. Hobhouse Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b03d3286-f699-432b-8aac-d130f9fdc4e7/manifest,https://iiif.princeton.edu/loris/figgy_prod/3d%2Fb1%2F5c%2F3db15c706ce34c2096c4a4c741ab718d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1929-06-19,1929-06-19,https://shakespeareandco.princeton.edu/members/paris-3/,Mlle Paris,"Paris, Mlle",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-06-20,1929-06-27,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/dreiser-free-stories/,Free and Other Stories,,"Dreiser, Theodore",1918,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/b0%2Ffc%2F7c%2Fb0fc7c5cf0dc424e9e3c282cd129a6be%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-06-20,1929-06-22,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/sedgwick-dark-hester/,Dark Hester,,"Sedgwick, Anne Douglas",1929,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/70%2F1a%2Ff5%2F701af56e9b064e78a6e4135d00839f94%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-06-20,1929-06-27,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/welby-swinburne-critical-study/,Swinburne: A Critical Study,,"Welby, T. Earle",1914,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/b0%2Ffc%2F7c%2Fb0fc7c5cf0dc424e9e3c282cd129a6be%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-06-21,1929-06-24,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/mirsky-contemporary-russian-literature/,Contemporary Russian Literature: 1881 β 1925,,"Mirsky, D. S.",1926,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/9a%2Fc7%2F06%2F9ac7061f764c441c8ce8560e695b563d%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1929-06-21,1929-06-21,https://shakespeareandco.princeton.edu/members/la-gorce-agnes-de/,AgnΓ¨s de La Gorce,"La Gorce, AgnΓ¨s de",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1929-06-21,1929-06-21,https://shakespeareandco.princeton.edu/members/mayre-n-e/,N. E. Mayre,"Mayre, N. E.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-06-21,1929-06-29,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/marble-study-modern-novel/,"A Study of the Modern Novel, British and American, Since 1900",,"Marble, Annie Russell",1928,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/c7%2F9b%2F41%2Fc79b419d98a942698de27249b5d06916%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-06-21,1929-07-01,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/adams-flagrant-years/,The Flagrant Years,,"Adams, Samuel Hopkins",1929,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/ee%2F79%2Fb9%2Fee79b9f1f5e64724a09ee5b343ebd05a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-06-22,1929-06-24,https://shakespeareandco.princeton.edu/members/seager/,Katherine Seager,"Seager, Katherine",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/draper-music-midnight/,Music at Midnight,,"Draper, Muriel",1929,,Lending Library Card,"Sylvia Beach, Katherine Seager Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2e6c33f9-87d4-4c5a-b5ee-9d023f87da1d/manifest,https://iiif.princeton.edu/loris/figgy_prod/97%2F10%2F76%2F9710767a1c2345cf82b7b334d09ead67%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-06-22,1929-06-25,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/wharton-children/,The Children,,"Wharton, Edith",1928,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/70%2F1a%2Ff5%2F701af56e9b064e78a6e4135d00839f94%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1929-06-22,1929-06-22,https://shakespeareandco.princeton.edu/members/kadar/,LΓvia KΓ‘dΓ‘r,"KΓ‘dΓ‘r, LΓvia",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1929-06-24,1929-06-24,https://shakespeareandco.princeton.edu/members/moore-cynthia/,Cynthia Moore,"Moore, Cynthia",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1929-06-24,1929-07-24,https://shakespeareandco.princeton.edu/members/evans-charles/,Charles Evans,"Evans, Charles",35.00,100.00,1 month,30,2,,1929-06-24,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1929-06-24,,https://shakespeareandco.princeton.edu/members/oleary/,O'Leary,O'Leary,10.00,,,,,,1929-06-24,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1929-06-24,1930-06-24,https://shakespeareandco.princeton.edu/members/oconor-1/,Mr. O'Conor,"O'Conor, Mr.",300.00,,1 year,365,2,,1929-06-14,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-06-24,1929-06-29,https://shakespeareandco.princeton.edu/members/seager/,Katherine Seager,"Seager, Katherine",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/macaulay-crewe-train/,Crewe Train,,"Macaulay, Rose",1926,,Lending Library Card,"Sylvia Beach, Katherine Seager Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2e6c33f9-87d4-4c5a-b5ee-9d023f87da1d/manifest,https://iiif.princeton.edu/loris/figgy_prod/97%2F10%2F76%2F9710767a1c2345cf82b7b334d09ead67%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-06-24,,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/chester-round-green-cloth/,Round the Green Cloth,,"Chester, Samuel Beach",1928,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/9a%2Fc7%2F06%2F9ac7061f764c441c8ce8560e695b563d%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1929-06-24,1929-06-24,https://shakespeareandco.princeton.edu/members/rubin/,Rubin,Rubin,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1929-06-25,1929-07-25,https://shakespeareandco.princeton.edu/members/willard-2/,Mr. Willard,"Willard, Mr.",20.00,,1 month,30,1,Student,1929-05-25,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1929-06-25,1929-06-25,https://shakespeareandco.princeton.edu/members/karrer-mary/,Mary Karrer,"Karrer, Mary",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-06-26,1929-07-02,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/morgan-portrait-mirror/,Portrait in a Mirror,,"Morgan, Charles",1929,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/70%2F1a%2Ff5%2F701af56e9b064e78a6e4135d00839f94%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-06-27,1929-07-29,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,32,,,https://shakespeareandco.princeton.edu/books/strachey-elizabeth-essex-tragic/,Elizabeth and Essex: A Tragic History,,"Strachey, Giles Lytton",1928,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/b0%2Ffc%2F7c%2Fb0fc7c5cf0dc424e9e3c282cd129a6be%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1929-06-28,1929-07-28,https://shakespeareandco.princeton.edu/members/brown-11/,Mrs. Charles Louis Brown,"Brown, Mrs. Charles Louis",35.00,100.00,1 month,30,2,,1929-06-28,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-06-28,1929-06-28,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/wodehouse-small-bachelor/,The Small Bachelor,,"Wodehouse, P. G.",1927,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/b7%2Ff9%2F42%2Fb7f94220fdd94b8c9006c2cef8db8e9d%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1929-06-28,1929-06-28,https://shakespeareandco.princeton.edu/members/fadden-mabel/,Mabel Fadden,"Fadden, Mabel",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-06-29,1929-07-02,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/beaverbrook-politicians-war-1914/,"Politicians and the War, 1914 β 1916",,"Beaverbrook, Max Aitken",1928,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/9a%2Fc7%2F06%2F9ac7061f764c441c8ce8560e695b563d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-06-29,1929-07-13,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/leavis-scrutiny-quarterly-review/,Scrutiny: A Quarterly Review,,,,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/c7%2F9b%2F41%2Fc79b419d98a942698de27249b5d06916%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1929-06-29,1929-06-29,https://shakespeareandco.princeton.edu/members/rich/,Rich,Rich,,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-06-29,1929-07-13,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/mordell-notorious-literary-attacks/,Notorious Literary Attacks,,,1926,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/c7%2F9b%2F41%2Fc79b419d98a942698de27249b5d06916%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-06-29,1929-07-01,https://shakespeareandco.princeton.edu/members/seager/,Katherine Seager,"Seager, Katherine",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/oppenheim-missing-delora/,The Missing Delora,,"Oppenheim, E. Phillips",1910,,Lending Library Card,"Sylvia Beach, Katherine Seager Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2e6c33f9-87d4-4c5a-b5ee-9d023f87da1d/manifest,https://iiif.princeton.edu/loris/figgy_prod/97%2F10%2F76%2F9710767a1c2345cf82b7b334d09ead67%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1929-06-29,1929-06-29,https://shakespeareandco.princeton.edu/members/sibley/,Sibley,Sibley,,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-06-29,1929-07-01,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/lewis-dodsworth/,Dodsworth,,"Lewis, Sinclair",1929,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/b7%2Ff9%2F42%2Fb7f94220fdd94b8c9006c2cef8db8e9d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-07-01,1929-07-03,https://shakespeareandco.princeton.edu/members/seager/,Katherine Seager,"Seager, Katherine",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/oppenheim-mr-grex-monte/,Mr. Grex of Monte Carlo,,"Oppenheim, E. Phillips",1915,,Lending Library Card,"Sylvia Beach, Katherine Seager Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2e6c33f9-87d4-4c5a-b5ee-9d023f87da1d/manifest,https://iiif.princeton.edu/loris/figgy_prod/97%2F10%2F76%2F9710767a1c2345cf82b7b334d09ead67%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-07-01,1929-07-02,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/lewisohn-mid-channel-american/,Mid-Channel: An American Chronicle,,"Lewisohn, Ludwig",1929,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/b7%2Ff9%2F42%2Fb7f94220fdd94b8c9006c2cef8db8e9d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-07-01,1929-07-13,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/lewis-dodsworth/,Dodsworth,,"Lewis, Sinclair",1929,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/ee%2F79%2Fb9%2Fee79b9f1f5e64724a09ee5b343ebd05a%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1929-07-01,1929-07-01,https://shakespeareandco.princeton.edu/members/winslow/,Winslow,Winslow,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1929-07-01,1929-07-01,https://shakespeareandco.princeton.edu/members/laws/,Laws,Laws,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-07-02,1929-07-04,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/worner-old-lancaster-tales/,Old Lancaster Tales and Traditions,,"Worner, William Frederic",1927,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/b7%2Ff9%2F42%2Fb7f94220fdd94b8c9006c2cef8db8e9d%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1929-07-02,1929-10-02,https://shakespeareandco.princeton.edu/members/de-caro-anita/;https://shakespeareandco.princeton.edu/members/de-caro-1/,Anita de Caro;Mr. de Caro,"de Caro, Anita;de Caro, Mr.",68.00,,3 months,92,2,Student,1929-07-01,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1929-07-02,1929-08-02,https://shakespeareandco.princeton.edu/members/edens-annette/,Annette Edens,"Edens, Annette",35.00,100.00,1 month,31,2,,1929-07-02,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-07-02,1929-07-17,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/glasgow-barren-ground/,Barren Ground,,"Glasgow, Ellen",1925,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/70%2F1a%2Ff5%2F701af56e9b064e78a6e4135d00839f94%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-07-02,1929-07-17,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/young-vicars-daughter/,The Vicar's Daughter,,"Young, Emily Hilda",1928,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/70%2F1a%2Ff5%2F701af56e9b064e78a6e4135d00839f94%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1929-07-03,1929-07-03,https://shakespeareandco.princeton.edu/members/sketch/,Sketch,Sketch,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1929-07-03,1929-07-03,https://shakespeareandco.princeton.edu/members/shoedlin/,Shoedlin,Shoedlin,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1929-07-03,1929-07-03,https://shakespeareandco.princeton.edu/members/church-4/,Mrs. Ralph Church,"Church, Mrs. Ralph",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-07-03,1929-07-09,https://shakespeareandco.princeton.edu/members/hobhouse/,U. Hobhouse,"Hobhouse, U.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/lewis-dodsworth/,Dodsworth,,"Lewis, Sinclair",1929,,Lending Library Card,"Sylvia Beach, Miss U. Hobhouse Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b03d3286-f699-432b-8aac-d130f9fdc4e7/manifest,https://iiif.princeton.edu/loris/figgy_prod/3d%2Fb1%2F5c%2F3db15c706ce34c2096c4a4c741ab718d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1929-07-03,1929-07-03,https://shakespeareandco.princeton.edu/members/amor-3/,Amor,Amor,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-07-03,1929-07-04,https://shakespeareandco.princeton.edu/members/seager/,Katherine Seager,"Seager, Katherine",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/wallace-flat-2/,Flat 2,,"Wallace, Edgar",1924,,Lending Library Card,"Sylvia Beach, Katherine Seager Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2e6c33f9-87d4-4c5a-b5ee-9d023f87da1d/manifest,https://iiif.princeton.edu/loris/figgy_prod/97%2F10%2F76%2F9710767a1c2345cf82b7b334d09ead67%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1929-07-03,1929-07-03,https://shakespeareandco.princeton.edu/members/church-5/,Mrs. Withington Church,"Church, Mrs. Withington",,,,,,,,125.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-07-03,1929-07-09,https://shakespeareandco.princeton.edu/members/hobhouse/,U. Hobhouse,"Hobhouse, U.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/woolf-orlando-biography/,Orlando: A Biography,,"Woolf, Virginia",1928,,Lending Library Card,"Sylvia Beach, Miss U. Hobhouse Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b03d3286-f699-432b-8aac-d130f9fdc4e7/manifest,https://iiif.princeton.edu/loris/figgy_prod/3d%2Fb1%2F5c%2F3db15c706ce34c2096c4a4c741ab718d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1929-07-03,1929-08-03,https://shakespeareandco.princeton.edu/members/russell-mrs/,Mrs. Guy Russell,"Russell, Mrs. Guy",35.00,,1 month,31,1,,1929-07-03,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1929-07-03,1929-08-03,https://shakespeareandco.princeton.edu/members/church-5/,Mrs. Withington Church,"Church, Mrs. Withington",25.00,100.00,1 month,31,1,,1929-07-03,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1929-07-03,1929-07-03,https://shakespeareandco.princeton.edu/members/church-virginia/,Virginia Church,"Church, Virginia",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1929-07-04,1929-08-04,https://shakespeareandco.princeton.edu/members/levinson-2/,Levinson,Levinson,35.00,,1 month,31,2,,1929-06-13,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-07-04,1929-07-08,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/smollett-expedition-humphry-clinker/,The Expedition of Humphry Clinker,Vol. 1,"Smollett, Tobias",1771,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/b7%2Ff9%2F42%2Fb7f94220fdd94b8c9006c2cef8db8e9d%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1929-07-04,1929-07-04,https://shakespeareandco.princeton.edu/members/sibley/,Sibley,Sibley,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1929-07-04,1929-07-04,https://shakespeareandco.princeton.edu/members/allen-irving/,Irving Allen,"Allen, Irving",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-07-04,1929-07-05,https://shakespeareandco.princeton.edu/members/seager/,Katherine Seager,"Seager, Katherine",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/masterman-2-lo/,2 Lo,,"Masterman, Walter Sydney",1928,,Lending Library Card,"Sylvia Beach, Katherine Seager Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2e6c33f9-87d4-4c5a-b5ee-9d023f87da1d/manifest,https://iiif.princeton.edu/loris/figgy_prod/97%2F10%2F76%2F9710767a1c2345cf82b7b334d09ead67%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-07-05,1929-07-05,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/huxley-antic-hay/,Antic Hay,,"Huxley, Aldous",1923,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a9%2F11%2Fd5%2Fa911d51c78fb461396e48d152363a39d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-07-05,1929-07-31,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,26,,,https://shakespeareandco.princeton.edu/books/walpole-captives-novel-four/,The Captives: A Novel in Four Parts,,"Walpole, Hugh",1920,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a9%2F11%2Fd5%2Fa911d51c78fb461396e48d152363a39d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1929-07-06,1929-07-06,https://shakespeareandco.princeton.edu/members/macduff/,Mme U. MacDuff,"MacDuff, Mme U.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Purchase,1929-07-06,1929-07-06,https://shakespeareandco.princeton.edu/members/wendel/,Hélène de Wendel / Comtesse de Noailles,"de Wendel, Hélène",,,,,,,,,,,24.50,FRF,https://shakespeareandco.princeton.edu/books/blake-blakes-works/,Willam Blake's Works,,"Blake, William",,"At least three editions of Blake's collected works circulated in the lending library. Monique de Vigan borrowed The Poetical Works of William Blake, edited by William Michael Rossetti (Bell, 1874). Jean Prévost, John Rodker, Guy de Pourtales, Catherine Yarrow, Ella Cassigne, Françoise Bernheim, and Francoise de Marcilly (in 1939) borrowed The Poetical Works of William Blake, edited by John Sampson (Oxford, 1905). Armand Petitjean, Antoinette Bernheim, and Francoise de Marcilly (in 1938) borrowed Poetry and Prose of William Blake, edited by Geoffrey Keynes (Nonesuch, 1927).",Lending Library Card,"Sylvia Beach, Madame Hélène Wendel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c70e230a-8313-4c53-9939-22beb5f809b6/manifest,https://iiif-cloud.princeton.edu/iiif/2/a6%2Ffc%2F58%2Fa6fc58fc7f8a431481a50269d0073534%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1929-07-06,1929-07-06,https://shakespeareandco.princeton.edu/members/wendel/,Hélène de Wendel / Comtesse de Noailles,"de Wendel, Hélène",,,,,,,,,,,24.50,FRF,https://shakespeareandco.princeton.edu/books/pater-imaginary-portraits/,Imaginary Portraits,,"Pater, Walter",1896,,Lending Library Card,"Sylvia Beach, Madame Hélène Wendel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c70e230a-8313-4c53-9939-22beb5f809b6/manifest,https://iiif-cloud.princeton.edu/iiif/2/a6%2Ffc%2F58%2Fa6fc58fc7f8a431481a50269d0073534%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1929-07-06,1929-07-06,https://shakespeareandco.princeton.edu/members/wendel/,Hélène de Wendel / Comtesse de Noailles,"de Wendel, Hélène",,,,,,,,,,,24.50,FRF,https://shakespeareandco.princeton.edu/books/mansfield-bliss-short-stories/,Bliss and Other Stories,,"Mansfield, Katherine",1920,,Lending Library Card,"Sylvia Beach, Madame Hélène Wendel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c70e230a-8313-4c53-9939-22beb5f809b6/manifest,https://iiif-cloud.princeton.edu/iiif/2/a6%2Ffc%2F58%2Fa6fc58fc7f8a431481a50269d0073534%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1929-07-07,1929-08-07,https://shakespeareandco.princeton.edu/members/hobhouse/,U. Hobhouse,"Hobhouse, U.",35.00,,1 month,31,2,,1929-07-09,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Miss U. Hobhouse Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/b03d3286-f699-432b-8aac-d130f9fdc4e7/manifest,;https://iiif.princeton.edu/loris/figgy_prod/3d%2Fb1%2F5c%2F3db15c706ce34c2096c4a4c741ab718d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-07-07,1929-08-03,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,27,,,https://shakespeareandco.princeton.edu/books/trollope-kept-dark/,Kept in the Dark,,"Trollope, Anthony",1882,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Fb9%2Fad%2Fccb9adb778e74d51bcd6d04425f9e15d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-07-07,1929-08-03,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,27,,,https://shakespeareandco.princeton.edu/books/borrow-bible-spain/,The Bible in Spain,,"Borrow, George Henry",1843,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Fb9%2Fad%2Fccb9adb778e74d51bcd6d04425f9e15d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1929-07-08,1929-07-08,https://shakespeareandco.princeton.edu/members/mandiargues/,AndrΓ© Pieyre de Mandiargues,"Mandiargues, AndrΓ© Pieyre de",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1929-07-08,1929-10-08,https://shakespeareandco.princeton.edu/members/hauson/,Hauson,Hauson,85.00,,3 months,92,2,Professor / Teacher,1929-07-08,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1929-07-08,1929-10-08,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",48.00,,3 months,92,1,,1929-07-08,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,;https://iiif.princeton.edu/loris/figgy_prod/b0%2Ffc%2F7c%2Fb0fc7c5cf0dc424e9e3c282cd129a6be%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-07-08,1929-07-11,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/smollett-expedition-humphry-clinker/,The Expedition of Humphry Clinker,Vol. 2,"Smollett, Tobias",1771,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/b7%2Ff9%2F42%2Fb7f94220fdd94b8c9006c2cef8db8e9d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-07-09,1929-07-16,https://shakespeareandco.princeton.edu/members/hobhouse/,U. Hobhouse,"Hobhouse, U.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/conrad-secret-agent-simple/,The Secret Agent: A Simple Tale,,"Conrad, Joseph",1907,,Lending Library Card,"Sylvia Beach, Miss U. Hobhouse Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b03d3286-f699-432b-8aac-d130f9fdc4e7/manifest,https://iiif.princeton.edu/loris/figgy_prod/3d%2Fb1%2F5c%2F3db15c706ce34c2096c4a4c741ab718d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1929-07-09,1929-07-09,https://shakespeareandco.princeton.edu/members/jude-m/,M. JudΓ©,"JudΓ©, M.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1929-07-09,1929-10-09,https://shakespeareandco.princeton.edu/members/kennedy-robert-1/,Robert Kennedy,"Kennedy, Robert",110.00,,3 months,92,3,,1929-07-09,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1929-07-09,1929-07-09,https://shakespeareandco.princeton.edu/members/scott-4/,Scott,Scott,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-07-09,1929-07-16,https://shakespeareandco.princeton.edu/members/hobhouse/,U. Hobhouse,"Hobhouse, U.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/douglas-alone/,Alone,,"Douglas, Norman",1921,,Lending Library Card,"Sylvia Beach, Miss U. Hobhouse Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b03d3286-f699-432b-8aac-d130f9fdc4e7/manifest,https://iiif.princeton.edu/loris/figgy_prod/3d%2Fb1%2F5c%2F3db15c706ce34c2096c4a4c741ab718d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1929-07-09,1929-08-09,https://shakespeareandco.princeton.edu/members/keun-odette/,Odette Keun,"Keun, Odette",35.00,100.00,1 month,31,2,,1929-07-09,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1929-07-10,1929-07-10,https://shakespeareandco.princeton.edu/members/burton-2/,Katherine Burton,"Burton, Katherine",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1929-07-10,1929-07-10,https://shakespeareandco.princeton.edu/members/rabache-2/,M. Rabache,"Rabache, M.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1929-07-10,1929-08-10,https://shakespeareandco.princeton.edu/members/kennedy-fitzroy/,Fitzroy Kennedy,"Kennedy, Fitzroy",35.00,,1 month,31,2,,1929-07-10,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1929-07-10,1929-07-10,https://shakespeareandco.princeton.edu/members/kennedy-fitzroy/,Fitzroy Kennedy,"Kennedy, Fitzroy",,,,,,,,65.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1929-07-11,1929-09-22,https://shakespeareandco.princeton.edu/members/wadleigh/,Wadleigh,Wadleigh,65.00,,"2 months, 11 days",73,,Professor / Teacher,1929-07-11,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1929-07-11,1929-08-11,https://shakespeareandco.princeton.edu/members/stirling/,Stirling,Stirling,25.00,300.00,1 month,31,1,,1929-07-11,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1929-07-12,1929-07-12,https://shakespeareandco.princeton.edu/members/phillips-mrs/,Mrs. Phillips,"Phillips, Mrs.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1929-07-12,,https://shakespeareandco.princeton.edu/members/hetherwick-violet/,Violet Hetherwick,"Hetherwick, Violet",25.00,50.00,,,,,1929-07-12,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1929-07-12,1929-08-12,https://shakespeareandco.princeton.edu/members/thirer-2/,Thirer,Thirer,35.00,100.00,1 month,31,2,,1929-07-12,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-07-12,1929-07-16,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/galsworthy-country-house/,The Country House,,"Galsworthy, John",1907,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/b7%2Ff9%2F42%2Fb7f94220fdd94b8c9006c2cef8db8e9d%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1929-07-12,1929-07-26,https://shakespeareandco.princeton.edu/members/proix/,Troise Proix,"Proix, Troise",12.50,,2 weeks,14,1,,1929-07-12,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Troise Proix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/b7152822-4421-406d-9472-740daf9b84e0/manifest,;https://iiif.princeton.edu/loris/figgy_prod/e6%2Fa5%2F3a%2Fe6a53a0fee174f0589dc02ffbad33ba5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-07-12,1929-07-18,https://shakespeareandco.princeton.edu/members/proix/,Troise Proix,"Proix, Troise",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/lehmann-dusty-answer/,Dusty Answer,,"Lehmann, Rosamond",1927,,Lending Library Card,"Sylvia Beach, Troise Proix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b7152822-4421-406d-9472-740daf9b84e0/manifest,https://iiif.princeton.edu/loris/figgy_prod/e6%2Fa5%2F3a%2Fe6a53a0fee174f0589dc02ffbad33ba5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1929-07-13,1930-01-13,https://shakespeareandco.princeton.edu/members/gardiner-charles/,Charles Gardiner,"Gardiner, Charles",150.00,50.00,6 months,184,,,1929-07-13,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-07-13,1929-09-19,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,68,,,https://shakespeareandco.princeton.edu/books/chambers-dark-star/,The Dark Star,,"Chambers, R. W.",1917,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/ee%2F79%2Fb9%2Fee79b9f1f5e64724a09ee5b343ebd05a%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1929-07-13,1929-08-13,https://shakespeareandco.princeton.edu/members/benridge-a-l/,A. L. Berridge,"Berridge, A. L.",35.00,100.00,1 month,31,2,,1929-07-13,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-07-13,1929-07-30,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/arlen-lily-christine/,Lily Christine,,"Arlen, Michael",1928,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2F00%2F2c%2Fcb002c24cc9a4d9c8fa834244db6afcc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-07-13,1929-08-14,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,32,,,https://shakespeareandco.princeton.edu/books/mansfield-journal-katherine-mansfield/,The Journal of Katherine Mansfield,,"Mansfield, Katherine",1927,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/95%2Ffa%2Fe5%2F95fae5271318494da776b55040017d19%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-07-13,1929-08-14,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,32,,,https://shakespeareandco.princeton.edu/books/herman-melville/,Herman Melville,,,,Unidentified. By or about Herman Melville.,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/95%2Ffa%2Fe5%2F95fae5271318494da776b55040017d19%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1929-07-16,1929-08-16,https://shakespeareandco.princeton.edu/members/embericos-alexandra/,Alexandra Embericos,"Embericos, Alexandra",25.00,50.00,1 month,31,1,,1929-07-16,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-07-16,1929-07-17,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/walpole-farthing-hall/,Farthing Hall,,"Walpole, Hugh",1929,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/b7%2Ff9%2F42%2Fb7f94220fdd94b8c9006c2cef8db8e9d%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1929-07-16,1929-07-16,https://shakespeareandco.princeton.edu/members/coleman-jules/,Jules Coleman,"Coleman, Jules",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1929-07-17,1929-10-17,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",68.00,,3 months,92,,,1929-07-17,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,;https://iiif-cloud.princeton.edu/iiif/2/b7%2Ff9%2F42%2Fb7f94220fdd94b8c9006c2cef8db8e9d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-07-17,1929-07-22,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/lawrence-lady-chatterleys-lover/,Lady Chatterley's Lover,,"Lawrence, D. H.",1928,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/70%2F1a%2Ff5%2F701af56e9b064e78a6e4135d00839f94%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-07-17,1929-08-03,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/crofts-sea-mystery-inspector/,The Sea Mystery: An Inspector French Case,,"Crofts, Freeman Wills",1928,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/ed%2F69%2F87%2Fed698743ad5641058ccc97f94cdc5360%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-07-17,,https://shakespeareandco.princeton.edu/members/hobhouse/,U. Hobhouse,"Hobhouse, U.",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/bercovici-story-gypsies/,The Story of the Gypsies,,"Bercovici, Konrad",1928,,Lending Library Card,"Sylvia Beach, Miss U. Hobhouse Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b03d3286-f699-432b-8aac-d130f9fdc4e7/manifest,https://iiif.princeton.edu/loris/figgy_prod/3d%2Fb1%2F5c%2F3db15c706ce34c2096c4a4c741ab718d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-07-17,,https://shakespeareandco.princeton.edu/members/hobhouse/,U. Hobhouse,"Hobhouse, U.",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/oriordan-adam-caroline/,Adam and Caroline,,"O'Riordan, Conal",1921,,Lending Library Card,"Sylvia Beach, Miss U. Hobhouse Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b03d3286-f699-432b-8aac-d130f9fdc4e7/manifest,https://iiif.princeton.edu/loris/figgy_prod/3d%2Fb1%2F5c%2F3db15c706ce34c2096c4a4c741ab718d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-07-17,,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/christie-murder-roger-ackroyd/,The Murder of Roger Ackroyd,,"Christie, Agatha",1926,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/b7%2Ff9%2F42%2Fb7f94220fdd94b8c9006c2cef8db8e9d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-07-17,1929-09-05,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,50,,,https://shakespeareandco.princeton.edu/books/deeping-sorrell/,Sorrell and Son,,"Deeping, Warwick",1926,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a9%2F11%2Fd5%2Fa911d51c78fb461396e48d152363a39d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-07-17,,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/van-vechten-merry-go-round/,The Merry-Go-Round,,"Van Vechten, Carl",1918,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a9%2F11%2Fd5%2Fa911d51c78fb461396e48d152363a39d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1929-07-18,1929-07-18,https://shakespeareandco.princeton.edu/members/mcalmon-robert/,Robert McAlmon,"McAlmon, Robert",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/lanham-sailors-dont-care/,Sailors Don't Care,,"Lanham, Edwin",1929,,Lending Library Card,"Sylvia Beach, Robert McAlmon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/889ff3f8-b62c-42f6-8e88-1dd95434b2f5/manifest,https://iiif-cloud.princeton.edu/iiif/2/96%2Fa8%2F8e%2F96a88eb181d6441e9419ad605d99c121%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1929-07-18,1929-07-26,https://shakespeareandco.princeton.edu/members/mckenna-thomas/,Thomas McKenna,"McKenna, Thomas",8.00,,8 days,8,,Professor / Teacher,1929-07-18,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Purchase,1929-07-18,1929-07-18,https://shakespeareandco.princeton.edu/members/mcalmon-robert/,Robert McAlmon,"McAlmon, Robert",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/williams-contact/,Contact,,,,,Lending Library Card,"Sylvia Beach, Robert McAlmon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/889ff3f8-b62c-42f6-8e88-1dd95434b2f5/manifest,https://iiif-cloud.princeton.edu/iiif/2/96%2Fa8%2F8e%2F96a88eb181d6441e9419ad605d99c121%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1929-07-18,1929-07-18,https://shakespeareandco.princeton.edu/members/mcalmon-robert/,Robert McAlmon,"McAlmon, Robert",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/ihara-quaint-stories-samurais/,Quaint Stories of Samurais,,"Ihara, Saikaku",1928,,Lending Library Card,"Sylvia Beach, Robert McAlmon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/889ff3f8-b62c-42f6-8e88-1dd95434b2f5/manifest,https://iiif-cloud.princeton.edu/iiif/2/96%2Fa8%2F8e%2F96a88eb181d6441e9419ad605d99c121%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1929-07-18,1929-08-18,https://shakespeareandco.princeton.edu/members/curtiss-nathaniel/,Nathaniel Curtiss,"Curtiss, Nathaniel",35.00,,1 month,31,2,,1929-06-03,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1929-07-18,,https://shakespeareandco.princeton.edu/members/madaux/,Madaux,Madaux,25.00,50.00,,,,,1929-07-18,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1929-07-19,,https://shakespeareandco.princeton.edu/members/turpin-2/,Turpin,Turpin,28.00,,,,,,1929-07-17,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-07-20,1929-07-22,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/george-stiff-lip-novel/,The Stiff Lip: A Novel,,"George, Walter Lionel",1922,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/b7%2Ff9%2F42%2Fb7f94220fdd94b8c9006c2cef8db8e9d%2Fintermediate_file/full/full/0/default.jpg
+Crossed out,1929-07-20,,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/locke-tale-triona/,The Tale of Triona,,"Locke, William John",1922,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/b7%2Ff9%2F42%2Fb7f94220fdd94b8c9006c2cef8db8e9d%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1929-07-22,1929-07-22,https://shakespeareandco.princeton.edu/members/mclean-a/,A. McLean,"McLean, A.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1929-07-22,1929-07-22,https://shakespeareandco.princeton.edu/members/quignon/,Mlle Quignon,"Quignon, Mlle",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-07-22,1929-07-23,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/james-hail-hail/,Hail! All Hail!,,"James, Norah C.",1929,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/b7%2Ff9%2F42%2Fb7f94220fdd94b8c9006c2cef8db8e9d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-07-22,1929-07-26,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/maugham-ashenden-british-agent/,Ashenden: Or the British Agent,,"Maugham, W. Somerset",1928,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/70%2F1a%2Ff5%2F701af56e9b064e78a6e4135d00839f94%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1929-07-22,1929-07-22,https://shakespeareandco.princeton.edu/members/idris/,Idris,Idris,,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1929-07-22,1929-08-22,https://shakespeareandco.princeton.edu/members/coons/,J. E. Coons,"Coons, J. E.",35.00,100.00,1 month,31,2,,1929-07-22,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-07-23,1929-07-26,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/gibbs-middle-road/,The Middle of the Road,,"Gibbs, Philip",1922,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/ca%2F6d%2F18%2Fca6d18c2e9c948fcbe2e0cc91914e521%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-07-23,1929-07-24,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/tucker-adventures-ralph-rashleigh/,"The Adventures of Ralph Rashleigh: A Penal Exile in Australia, 1825 β 1844",,"Tucker, James",1929,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/b7%2Ff9%2F42%2Fb7f94220fdd94b8c9006c2cef8db8e9d%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1929-07-24,1929-07-24,https://shakespeareandco.princeton.edu/members/trudgian-2/,Trudgian,Trudgian,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1929-07-24,1929-08-24,https://shakespeareandco.princeton.edu/members/ashenhurst/,Mrs. G. Ashenhurst,"Ashenhurst, Mrs. G.",35.00,100.00,1 month,31,2,,1929-07-24,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-07-26,1929-07-27,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/hoult-poor-women/,Poor Women!,,"Hoult, Norah",1928,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/ca%2F6d%2F18%2Fca6d18c2e9c948fcbe2e0cc91914e521%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-07-26,1929-08-01,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/peterkin-scarlet-sister-mary/,Scarlet Sister Mary,,"Peterkin, Julia Mood",1928,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/70%2F1a%2Ff5%2F701af56e9b064e78a6e4135d00839f94%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-07-27,1929-07-29,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/james-sleeveless-errand/,Sleeveless Errand,,"James, Norah C.",1929,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/ca%2F6d%2F18%2Fca6d18c2e9c948fcbe2e0cc91914e521%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1929-07-28,1929-08-28,https://shakespeareandco.princeton.edu/members/brown-11/,Mrs. Charles Louis Brown,"Brown, Mrs. Charles Louis",35.00,,1 month,31,2,,1929-07-22,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Purchase,1929-07-28,1929-07-28,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,,,115.50,FRF,https://shakespeareandco.princeton.edu/books/concise-oxford-english/,Concise Oxford English Dictionary,,,1911,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/17%2Fc5%2F27%2F17c5279577094feb8c09e8e402cfb654%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-07-29,1929-09-27,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,60,,,https://shakespeareandco.princeton.edu/books/baring-cats-cradle/,Cat's Cradle,,"Baring, Maurice",1925,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/b0%2Ffc%2F7c%2Fb0fc7c5cf0dc424e9e3c282cd129a6be%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-07-29,1929-09-27,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,60,,,https://shakespeareandco.princeton.edu/books/lewis-dodsworth/,Dodsworth,,"Lewis, Sinclair",1929,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/b0%2Ffc%2F7c%2Fb0fc7c5cf0dc424e9e3c282cd129a6be%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1929-07-29,1929-08-29,https://shakespeareandco.princeton.edu/members/douthorn/,Mme d'Outhorn,"d'Outhorn, Mme",35.00,100.00,1 month,31,2,,1929-07-29,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1929-07-29,1929-07-29,https://shakespeareandco.princeton.edu/members/edens-2/,Olive Edens,"Edens, Olive",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-07-29,1929-07-30,https://shakespeareandco.princeton.edu/members/mcnair/,McNair,McNair,,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/wallace-orator/,The Orator,,"Wallace, Edgar",1928,,Lending Library Card,"Sylvia Beach, McNair Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/8c77e06f-3528-45d8-b2b6-1a77d4d3dd4b/manifest,https://iiif.princeton.edu/loris/figgy_prod/ba%2Fe2%2F25%2Fbae2258d61284b2a95f582663d91414f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-07-29,1929-08-01,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/george-second-blooming/,The Second Blooming,,"George, Walter Lionel",1914,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/ca%2F6d%2F18%2Fca6d18c2e9c948fcbe2e0cc91914e521%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1929-07-29,1929-07-29,https://shakespeareandco.princeton.edu/members/edens-annette/,Annette Edens,"Edens, Annette",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1929-07-30,1929-08-30,https://shakespeareandco.princeton.edu/members/episco-nicolas/,Nicolas Episco,"Episco, Nicolas",25.00,50.00,1 month,31,1,,1929-07-30,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-07-30,1929-07-31,https://shakespeareandco.princeton.edu/members/mcnair/,McNair,McNair,,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/deeping-prophetic-marriage/,The Prophetic Marriage,,"Deeping, Warwick",1928,,Lending Library Card,"Sylvia Beach, McNair Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/8c77e06f-3528-45d8-b2b6-1a77d4d3dd4b/manifest,https://iiif.princeton.edu/loris/figgy_prod/ba%2Fe2%2F25%2Fbae2258d61284b2a95f582663d91414f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-07-30,1929-08-16,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/hichens-last-time/,The Last Time,,"Hichens, Robert Smythe",1924,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/0b%2F4b%2F56%2F0b4b565bfedb4014a2309ab7cc8cc359%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-07-30,1929-08-16,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/hichens-december-love/,December Love,,"Hichens, Robert Smythe",1922,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/0b%2F4b%2F56%2F0b4b565bfedb4014a2309ab7cc8cc359%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-07-30,1929-07-31,https://shakespeareandco.princeton.edu/members/mcnair/,McNair,McNair,,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/wallace-flat-2/,Flat 2,,"Wallace, Edgar",1924,,Lending Library Card,"Sylvia Beach, McNair Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/8c77e06f-3528-45d8-b2b6-1a77d4d3dd4b/manifest,https://iiif.princeton.edu/loris/figgy_prod/ba%2Fe2%2F25%2Fbae2258d61284b2a95f582663d91414f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-07-30,1929-07-31,https://shakespeareandco.princeton.edu/members/mcnair/,McNair,McNair,,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/wodehouse-summer-lightning/,Summer Lightning,,"Wodehouse, P. G.",1929,,Lending Library Card,"Sylvia Beach, McNair Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/8c77e06f-3528-45d8-b2b6-1a77d4d3dd4b/manifest,https://iiif.princeton.edu/loris/figgy_prod/ba%2Fe2%2F25%2Fbae2258d61284b2a95f582663d91414f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1929-07-30,1929-07-30,https://shakespeareandco.princeton.edu/members/mcgrath2/,McGrath,McGrath,,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-07-31,1929-08-03,https://shakespeareandco.princeton.edu/members/mcnair/,McNair,McNair,,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/whose-land/,Whose Land,,,,Unidentified.,Lending Library Card,"Sylvia Beach, McNair Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/8c77e06f-3528-45d8-b2b6-1a77d4d3dd4b/manifest,https://iiif.princeton.edu/loris/figgy_prod/ba%2Fe2%2F25%2Fbae2258d61284b2a95f582663d91414f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1929-07-31,1929-07-31,https://shakespeareandco.princeton.edu/members/stirling/,Stirling,Stirling,,,,,,,,300.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-07-31,1929-08-03,https://shakespeareandco.princeton.edu/members/mcnair/,McNair,McNair,,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/rohmer-dream-detective/,The Dream Detective,,"Rohmer, Sax",1920,,Lending Library Card,"Sylvia Beach, McNair Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/8c77e06f-3528-45d8-b2b6-1a77d4d3dd4b/manifest,https://iiif.princeton.edu/loris/figgy_prod/ba%2Fe2%2F25%2Fbae2258d61284b2a95f582663d91414f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-08-01,1929-08-03,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/george-caliban/,Caliban,,"George, Walter Lionel",1920,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/ca%2F6d%2F18%2Fca6d18c2e9c948fcbe2e0cc91914e521%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1929-08-01,1929-08-01,https://shakespeareandco.princeton.edu/members/smith-40/,Smith,Smith,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-08-01,1929-08-07,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/lewis-dodsworth/,Dodsworth,,"Lewis, Sinclair",1929,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/70%2F1a%2Ff5%2F701af56e9b064e78a6e4135d00839f94%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1929-08-01,1929-09-01,https://shakespeareandco.princeton.edu/members/des-sautos/,Mme dos Santos,"dos Santos, Mme",25.00,50.00,1 month,31,1,,1929-08-01,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1929-08-02,1929-08-02,https://shakespeareandco.princeton.edu/members/russell-mr/,Mr. Russell,"Russell, Mr.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-08-03,1929-08-06,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/george-gifts-sheba/,Gifts of Sheba,,"George, Walter Lionel",1926,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/ca%2F6d%2F18%2Fca6d18c2e9c948fcbe2e0cc91914e521%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1929-08-03,1929-09-03,https://shakespeareandco.princeton.edu/members/culyer/,Marion Culver,"Culver, Marion",25.00,50.00,1 month,31,1,,1929-08-03,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-08-03,1929-08-05,https://shakespeareandco.princeton.edu/members/mcnair/,McNair,McNair,,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/wallace-face-night/,The Face in the Night,,"Wallace, Edgar",1924,,Lending Library Card,"Sylvia Beach, McNair Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/8c77e06f-3528-45d8-b2b6-1a77d4d3dd4b/manifest,https://iiif.princeton.edu/loris/figgy_prod/ba%2Fe2%2F25%2Fbae2258d61284b2a95f582663d91414f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-08-03,1929-08-05,https://shakespeareandco.princeton.edu/members/mcnair/,McNair,McNair,,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/mackenzie-three-couriers/,The Three Couriers,,"Mackenzie, Compton",1929,,Lending Library Card,"Sylvia Beach, McNair Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/8c77e06f-3528-45d8-b2b6-1a77d4d3dd4b/manifest,https://iiif.princeton.edu/loris/figgy_prod/ba%2Fe2%2F25%2Fbae2258d61284b2a95f582663d91414f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-08-03,1929-08-05,https://shakespeareandco.princeton.edu/members/mcnair/,McNair,McNair,,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/wodehouse-sam-sudden/,Sam the Sudden,,"Wodehouse, P. G.",1925,,Lending Library Card,"Sylvia Beach, McNair Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/8c77e06f-3528-45d8-b2b6-1a77d4d3dd4b/manifest,https://iiif.princeton.edu/loris/figgy_prod/ba%2Fe2%2F25%2Fbae2258d61284b2a95f582663d91414f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-08-03,1929-10-05,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,63,,,https://shakespeareandco.princeton.edu/books/beerbohm-zuleika-dobson/,Zuleika Dobson,,"Beerbohm, Max",1911,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Fb9%2Fad%2Fccb9adb778e74d51bcd6d04425f9e15d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1929-08-04,1929-09-04,https://shakespeareandco.princeton.edu/members/levinson-2/,Levinson,Levinson,35.00,,1 month,31,2,Professor / Teacher,1929-07-26,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1929-08-05,1929-08-05,https://shakespeareandco.princeton.edu/members/covington/,R. Covington,"Covington, R.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-08-05,1929-08-20,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/bronte-villette/,Villette,,"BrontΓ«, Charlotte",1853,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Fb9%2Fad%2Fccb9adb778e74d51bcd6d04425f9e15d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-08-05,1929-08-06,https://shakespeareandco.princeton.edu/members/mcnair/,McNair,McNair,,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/oppenheim-amazing-quest-mr/,The Amazing Quest of Mr. Ernest Bliss,,"Oppenheim, E. Phillips",1919,,Lending Library Card,"Sylvia Beach, McNair Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/8c77e06f-3528-45d8-b2b6-1a77d4d3dd4b/manifest,https://iiif.princeton.edu/loris/figgy_prod/ba%2Fe2%2F25%2Fbae2258d61284b2a95f582663d91414f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1929-08-05,1929-09-05,https://shakespeareandco.princeton.edu/members/levy-m/,M. Levy,"Levy, M.",25.00,50.00,1 month,31,1,,1929-08-05,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1929-08-05,1929-08-05,https://shakespeareandco.princeton.edu/members/moraes/,Mrs. Abano de Moraes,"Moraes, Mrs. Abano de",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-08-06,1929-08-06,https://shakespeareandco.princeton.edu/members/mcnair/,McNair,McNair,,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/oppenheim-mr-grex-monte/,Mr. Grex of Monte Carlo,,"Oppenheim, E. Phillips",1915,,Lending Library Card,"Sylvia Beach, McNair Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/8c77e06f-3528-45d8-b2b6-1a77d4d3dd4b/manifest,https://iiif.princeton.edu/loris/figgy_prod/ba%2Fe2%2F25%2Fbae2258d61284b2a95f582663d91414f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-08-06,1929-08-07,https://shakespeareandco.princeton.edu/members/mcnair/,McNair,McNair,,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/connington-nemesis-raynham-parva/,Nemesis at Raynham Parva,,"Connington, J. J.",1929,,Lending Library Card,"Sylvia Beach, McNair Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/8c77e06f-3528-45d8-b2b6-1a77d4d3dd4b/manifest,https://iiif.princeton.edu/loris/figgy_prod/ba%2Fe2%2F25%2Fbae2258d61284b2a95f582663d91414f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-08-06,1929-08-08,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/hart-bellamy-trial/,The Bellamy Trial,,"Hart, Frances Noyes",1927,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/ca%2F6d%2F18%2Fca6d18c2e9c948fcbe2e0cc91914e521%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-08-07,1929-08-08,https://shakespeareandco.princeton.edu/members/mcnair/,McNair,McNair,,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/fletcher-secret-barbican-stories/,The Secret of the Barbican and Other Stories,,"Fletcher, Joseph Smith",1924,,Lending Library Card,"Sylvia Beach, McNair Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/8c77e06f-3528-45d8-b2b6-1a77d4d3dd4b/manifest,https://iiif.princeton.edu/loris/figgy_prod/ba%2Fe2%2F25%2Fbae2258d61284b2a95f582663d91414f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-08-07,1929-08-12,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/wilson-painted-room/,The Painted Room,,"Wilson, Margaret",1926,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2Fcd%2Ffb%2Ff2cdfb855c9043afa10d6f55cd2332d0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-08-07,1929-08-08,https://shakespeareandco.princeton.edu/members/mcnair/,McNair,McNair,,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/maeterlinck-light-beyond/,The Light Beyond,,"Maeterlinck, Maurice",1916,,Lending Library Card,"Sylvia Beach, McNair Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/8c77e06f-3528-45d8-b2b6-1a77d4d3dd4b/manifest,https://iiif.princeton.edu/loris/figgy_prod/ba%2Fe2%2F25%2Fbae2258d61284b2a95f582663d91414f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-08-08,1929-08-09,https://shakespeareandco.princeton.edu/members/mcnair/,McNair,McNair,,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/connington-case-nine-solutions/,The Case with Nine Solutions,,"Connington, J. J.",1928,,Lending Library Card,"Sylvia Beach, McNair Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/8c77e06f-3528-45d8-b2b6-1a77d4d3dd4b/manifest,https://iiif.princeton.edu/loris/figgy_prod/ba%2Fe2%2F25%2Fbae2258d61284b2a95f582663d91414f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-08-08,1929-08-12,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/summers-history-witchcraft-demonology/,A History of Witchcraft and Demonology,,"Summers, Montague",1926,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/ca%2F6d%2F18%2Fca6d18c2e9c948fcbe2e0cc91914e521%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-08-08,1929-08-09,https://shakespeareandco.princeton.edu/members/mcnair/,McNair,McNair,,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/wallace-twister/,The Twister,,"Wallace, Edgar",1929,,Lending Library Card,"Sylvia Beach, McNair Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/8c77e06f-3528-45d8-b2b6-1a77d4d3dd4b/manifest,https://iiif.princeton.edu/loris/figgy_prod/ba%2Fe2%2F25%2Fbae2258d61284b2a95f582663d91414f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1929-08-08,1929-08-08,https://shakespeareandco.princeton.edu/members/callaghan-loretto/;https://shakespeareandco.princeton.edu/members/callaghan-morley/,Loretto (Dee) Callaghan;Morley Callaghan,"Callaghan, Loretto;Callaghan, Morley",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1929-08-09,1929-08-09,https://shakespeareandco.princeton.edu/members/keun-odette/,Odette Keun,"Keun, Odette",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-08-09,1929-08-13,https://shakespeareandco.princeton.edu/members/mcnair/,McNair,McNair,,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/sayers-great-short-stories/,"Great Short Stories of Detection, Mystery and Horror",,,1928,,Lending Library Card,"Sylvia Beach, McNair Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/8c77e06f-3528-45d8-b2b6-1a77d4d3dd4b/manifest,https://iiif.princeton.edu/loris/figgy_prod/ba%2Fe2%2F25%2Fbae2258d61284b2a95f582663d91414f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-08-10,1929-08-20,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/joyce-exiles/,Exiles,,"Joyce, James",1918,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Fb9%2Fad%2Fccb9adb778e74d51bcd6d04425f9e15d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-08-12,1929-08-13,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/forster-room-view/,A Room with a View,,"Forster, E. M.",,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/ca%2F6d%2F18%2Fca6d18c2e9c948fcbe2e0cc91914e521%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-08-12,1929-09-02,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/crofts-inspector-frenchs-case/,Inspector French's Case Book,,"Crofts, Freeman Wills",1928,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/ed%2F69%2F87%2Fed698743ad5641058ccc97f94cdc5360%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1929-08-12,1929-09-12,https://shakespeareandco.princeton.edu/members/hatch-2/,Charles Hatch,"Hatch, Charles",25.00,50.00,1 month,31,1,,1929-08-12,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-08-12,1929-08-14,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/hoult-poor-women/,Poor Women!,,"Hoult, Norah",1928,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2Fcd%2Ffb%2Ff2cdfb855c9043afa10d6f55cd2332d0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-08-13,1929-08-17,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/maugham-human-bondage/,Of Human Bondage,,"Maugham, W. Somerset",1915,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/ca%2F6d%2F18%2Fca6d18c2e9c948fcbe2e0cc91914e521%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1929-08-13,1929-09-13,https://shakespeareandco.princeton.edu/members/jordan-howard/,Howard Jordan,"Jordan, Howard",20.00,50.00,1 month,31,1,Student,1929-08-13,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Howard Jordan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/144dd617-dcfd-44c1-954a-7866c01a2fc5/manifest,;https://iiif.princeton.edu/loris/figgy_prod/01%2F22%2Fb8%2F0122b8aaa983464baf58d6865a21a1fe%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-08-14,1929-08-17,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/newman-dead-lovers-faithful/,Dead Lovers Are Faithful Lovers,,"Newman, Frances",1928,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2Fcd%2Ffb%2Ff2cdfb855c9043afa10d6f55cd2332d0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-08-15,1929-09-02,https://shakespeareandco.princeton.edu/members/jordan-howard/,Howard Jordan,"Jordan, Howard",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/wassermann-caspar-hauser/,Caspar Hauser,,"Wassermann, Jakob",1928,,Lending Library Card,"Sylvia Beach, Howard Jordan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/144dd617-dcfd-44c1-954a-7866c01a2fc5/manifest,https://iiif.princeton.edu/loris/figgy_prod/01%2F22%2Fb8%2F0122b8aaa983464baf58d6865a21a1fe%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-08-16,1929-09-09,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,24,,,https://shakespeareandco.princeton.edu/books/hardy-tess-durbervilles/,Tess of the d'Urbervilles,,"Hardy, Thomas",1891,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/0b%2F4b%2F56%2F0b4b565bfedb4014a2309ab7cc8cc359%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-08-16,1929-09-09,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,24,,,https://shakespeareandco.princeton.edu/books/hardy-jude-obscure/,Jude the Obscure,,"Hardy, Thomas",1895,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/0b%2F4b%2F56%2F0b4b565bfedb4014a2309ab7cc8cc359%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1929-08-16,1929-09-16,https://shakespeareandco.princeton.edu/members/desproud/,G. Desgrand,"Desgrand, G.",25.00,,1 month,31,1,,1929-07-30,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1929-08-16,1929-09-16,https://shakespeareandco.princeton.edu/members/jacoby-e/,E. Jacoby,"Jacoby, E.",45.00,150.00,1 month,31,3,,1929-08-16,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-08-17,1929-09-27,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,41,,,https://shakespeareandco.princeton.edu/books/white-flight/,Flight,,"White, Walter Francis",1926,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2Fcd%2Ffb%2Ff2cdfb855c9043afa10d6f55cd2332d0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-08-17,1929-08-27,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/phillpotts-tryphena/,Tryphena,,"Phillpotts, Eden",1929,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2Fcd%2Ffb%2Ff2cdfb855c9043afa10d6f55cd2332d0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-08-17,1929-09-27,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,41,,,https://shakespeareandco.princeton.edu/books/wharton-fruit-tree/,The Fruit of the Tree,,"Wharton, Edith",1907,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2Fcd%2Ffb%2Ff2cdfb855c9043afa10d6f55cd2332d0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-08-17,1929-09-27,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,41,,,https://shakespeareandco.princeton.edu/books/millin-coming-lord/,The Coming of the Lord,,"Millin, Sarah Gertrude",1928,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2Fcd%2Ffb%2Ff2cdfb855c9043afa10d6f55cd2332d0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-08-17,1929-08-19,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/george-strangers-wedding-comedy/,"The Strangers' Wedding; or, The Comedy of a Romantic",,"George, Walter Lionel",1916,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/ca%2F6d%2F18%2Fca6d18c2e9c948fcbe2e0cc91914e521%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-08-17,1929-08-22,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/lewis-man-knew-coolidge/,"The Man Who Knew Coolidge: Being the Soul of Lowell Schmaltz, Constructive and Nordic Citizen",,"Lewis, Sinclair",1928,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/71%2F83%2Fd0%2F7183d02148254c329309776fdbc9659c%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1929-08-18,1929-09-18,https://shakespeareandco.princeton.edu/members/curtiss-nathaniel/,Nathaniel Curtiss,"Curtiss, Nathaniel",35.00,,1 month,31,2,,1929-07-06,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-08-19,1929-08-20,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/galsworthy-fraternity/,Fraternity,,"Galsworthy, John",1909,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/ca%2F6d%2F18%2Fca6d18c2e9c948fcbe2e0cc91914e521%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1929-08-19,1929-09-19,https://shakespeareandco.princeton.edu/members/bowen/,Mrs. Paul Bowen,"Bowen, Mrs. Paul",25.00,50.00,1 month,31,1,,1929-08-19,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1929-08-19,1929-09-19,https://shakespeareandco.princeton.edu/members/thirer-2/,Thirer,Thirer,35.00,,1 month,31,2,,1929-08-19,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-08-20,1929-09-20,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,31,,,https://shakespeareandco.princeton.edu/books/butler-way-flesh/,The Way of All Flesh,,"Butler, Samuel",1903,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/95%2Ffa%2Fe5%2F95fae5271318494da776b55040017d19%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1929-08-20,1929-09-20,https://shakespeareandco.princeton.edu/members/may-sybil/,Sybil H. May,"May, Sybil H.",25.00,50.00,1 month,31,1,,1929-08-20,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-08-20,1929-09-20,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,31,,,https://shakespeareandco.princeton.edu/books/dekker-best-plays-thomas/,The Best Plays of Thomas Dekker,,"Dekker, Thomas",1887,From the [Mermaid Series](https://seriesofseries.owu.edu/mermaid-series/).,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/95%2Ffa%2Fe5%2F95fae5271318494da776b55040017d19%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-08-20,1929-08-22,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/galsworthy-villa-rubein/,Villa Rubein,,"Galsworthy, John",1908,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/ca%2F6d%2F18%2Fca6d18c2e9c948fcbe2e0cc91914e521%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-08-20,1929-09-11,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/thackeray-virginians-tale-last/,The Virginians: A Tale of the Last Century,2 voles.,"Thackeray, William Makepeace",1859,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Fb9%2Fad%2Fccb9adb778e74d51bcd6d04425f9e15d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-08-22,1929-09-04,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/anderson-hello-towns/,Hello Towns!,,"Anderson, Sherwood",1929,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/71%2F83%2Fd0%2F7183d02148254c329309776fdbc9659c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-08-22,1929-08-23,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/chesterton-incredulity-father-brown/,The Incredulity of Father Brown,,"Chesterton, G. K.",1926,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/ca%2F6d%2F18%2Fca6d18c2e9c948fcbe2e0cc91914e521%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-08-23,1929-08-26,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/walpole-green-mirror/,The Green Mirror: A Quiet Story,2 vols.,"Walpole, Hugh",1917,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/ca%2F6d%2F18%2Fca6d18c2e9c948fcbe2e0cc91914e521%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1929-08-24,1929-08-24,https://shakespeareandco.princeton.edu/members/coons/,J. E. Coons,"Coons, J. E.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-08-26,1929-08-28,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/walpole-cathedral-novel/,The Cathedral: A Novel,,"Walpole, Hugh",1922,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/ca%2F6d%2F18%2Fca6d18c2e9c948fcbe2e0cc91914e521%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1929-08-26,1929-09-26,https://shakespeareandco.princeton.edu/members/ginestet-de/,Mlle de Ginestet,"Ginestet, Mlle de",25.00,50.00,1 month,31,1,,1929-08-26,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1929-08-28,1929-08-28,https://shakespeareandco.princeton.edu/members/robertson-2/,Robertson,Robertson,,,,,,,,150.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-08-28,1929-08-30,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/walpole-duchess-wrexe-decline/,"The Duchess of Wrexe, Her Decline and Death: A Romantic Commentary",,"Walpole, Hugh",1924,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/ca%2F6d%2F18%2Fca6d18c2e9c948fcbe2e0cc91914e521%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1929-08-28,1929-08-28,https://shakespeareandco.princeton.edu/members/brown-11/,Mrs. Charles Louis Brown,"Brown, Mrs. Charles Louis",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1929-08-29,1929-08-29,https://shakespeareandco.princeton.edu/members/edwards-7/,Mrs. W. Edwards,"Edwards, Mrs. W.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1929-08-30,1929-08-30,https://shakespeareandco.princeton.edu/members/prunkel/,Prunkel,Prunkel,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-08-30,1929-09-02,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/galsworthy-swan-song/,Swan Song (A Modern Comedy),,"Galsworthy, John",1928,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/ca%2F6d%2F18%2Fca6d18c2e9c948fcbe2e0cc91914e521%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1929-08-30,1929-08-30,https://shakespeareandco.princeton.edu/members/bloen/,Bloen,Bloen,,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1929-08-30,1929-08-30,https://shakespeareandco.princeton.edu/members/levy-m/,M. Levy,"Levy, M.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1929-08-31,1929-08-31,https://shakespeareandco.princeton.edu/members/hatch-2/,Charles Hatch,"Hatch, Charles",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1929-08-31,1929-08-31,https://shakespeareandco.princeton.edu/members/des-sautos/,Mme dos Santos,"dos Santos, Mme",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1929-08-31,1929-08-31,https://shakespeareandco.princeton.edu/members/dandieu-2/,Dandieu,Dandieu,,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1929-08-31,1929-08-31,https://shakespeareandco.princeton.edu/members/trejarki/,Trejarki,Trejarki,,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1929-09-02,1929-10-02,https://shakespeareandco.princeton.edu/members/greville-v/,Mme V. Greville,"Greville, Mme V.",35.00,100.00,1 month,30,2,,1929-09-02,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-09-02,,https://shakespeareandco.princeton.edu/members/jordan-howard/,Howard Jordan,"Jordan, Howard",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/ludwig-man/,The Son of Man,,"Ludwig, Emil",1928,,Lending Library Card,"Sylvia Beach, Howard Jordan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/144dd617-dcfd-44c1-954a-7866c01a2fc5/manifest,https://iiif.princeton.edu/loris/figgy_prod/01%2F22%2Fb8%2F0122b8aaa983464baf58d6865a21a1fe%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-09-02,1929-09-04,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/galsworthy-man-property-forsyte/,The Man of Property (The Forsyte Saga),,"Galsworthy, John",1906,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/ca%2F6d%2F18%2Fca6d18c2e9c948fcbe2e0cc91914e521%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1929-09-02,1930-03-02,https://shakespeareandco.princeton.edu/members/bruneton-5/,Mlle Bruneton,"Bruneton, Mlle",120.00,,6 months,181,2,,1929-09-02,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1929-09-02,,https://shakespeareandco.princeton.edu/members/steegmuller/,Mr. Steegmuller,"Steegmuller, Mr.",35.00,100.00,,,,,1929-09-02,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-09-04,1929-09-06,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/galsworthy-forsyte-saga/,The Forsyte Saga,,"Galsworthy, John",1922,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/ca%2F6d%2F18%2Fca6d18c2e9c948fcbe2e0cc91914e521%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-09-04,1929-09-10,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/huxley-point-counter-point/,Point Counter Point,,"Huxley, Aldous",1928,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/71%2F83%2Fd0%2F7183d02148254c329309776fdbc9659c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-09-05,1929-10-03,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,28,,,https://shakespeareandco.princeton.edu/books/lewis-mantrap/,Mantrap,,"Lewis, Sinclair",1926,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/c7%2F28%2F03%2Fc72803565c4747ee9d5ea39916575ec4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-09-06,1929-09-09,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/van-vechten-merry-go-round/,The Merry-Go-Round,,"Van Vechten, Carl",1918,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/ca%2F6d%2F18%2Fca6d18c2e9c948fcbe2e0cc91914e521%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1929-09-07,1929-09-07,https://shakespeareandco.princeton.edu/members/may-sybil/,Sybil H. May,"May, Sybil H.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1929-09-09,1929-10-09,https://shakespeareandco.princeton.edu/members/gallio/,Mr. Gallio,"Gallio, Mr.",25.00,50.00,1 month,30,1,,1929-09-09,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-09-09,1929-09-16,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/doyle-mystery-cloomber/,The Mystery of Cloomber,,"Doyle, Arthur Conan",1889,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/4e%2F9f%2F1a%2F4e9f1a2ea63348ff8b188a84c5fa487e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-09-09,1929-09-16,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/hurst-procession/,Procession,,"Hurst, Fannie",1929,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/4e%2F9f%2F1a%2F4e9f1a2ea63348ff8b188a84c5fa487e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-09-09,1929-09-11,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/walpole-wooden-horse/,The Wooden Horse,,"Walpole, Hugh",1909,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/ca%2F6d%2F18%2Fca6d18c2e9c948fcbe2e0cc91914e521%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1929-09-09,1929-10-09,https://shakespeareandco.princeton.edu/members/kranenburg-hoen/,Mme Kranenburg-Hoen,"Kranenburg-Hoen, Mme",85.00,100.00,1 month,30,1,,1929-09-09,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1929-09-09,1929-09-09,https://shakespeareandco.princeton.edu/members/newcomb/,Newcomb,Newcomb,,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-09-10,1930-01-15,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,127,,,https://shakespeareandco.princeton.edu/books/crawley-mystic-rose-study/,The Mystic Rose: A Study of Primitive Marriage,2 vols.,"Crawley, Ernest",1902,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/71%2F83%2Fd0%2F7183d02148254c329309776fdbc9659c%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1929-09-10,1929-12-10,https://shakespeareandco.princeton.edu/members/church-8/,Mrs. Church,"Church, Mrs.",60.00,50.00,3 months,91,1,,1929-09-10,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1929-09-10,1929-09-10,https://shakespeareandco.princeton.edu/members/lincoln-brigham/,Mrs. Lincoln Brigham,"Brigham, Mrs. Lincoln",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-09-11,1929-09-13,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/orczy-skin-o-tooth/,"Skin O' My Tooth: His Memoirs, by His Confidential Clerk",,"Orczy, Baroness",1928,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/ca%2F6d%2F18%2Fca6d18c2e9c948fcbe2e0cc91914e521%2Fintermediate_file/full/full/0/default.jpg
+Crossed out,1929-09-11,,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/fernandez-messages/,Messages,,"FernΓ‘ndez, RamΓ³n",1927,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/ca%2F6d%2F18%2Fca6d18c2e9c948fcbe2e0cc91914e521%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-09-11,1929-10-05,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,24,,,https://shakespeareandco.princeton.edu/books/bronte-tenant-wildfell-hall/,The Tenant of Wildfell Hall,2 vols.,"BrontΓ«, Anne",1848,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Fb9%2Fad%2Fccb9adb778e74d51bcd6d04425f9e15d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Crossed out,1929-09-11,,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/wilson-paris-parade/,Paris on Parade,,"Wilson, Robert Forrest",1924,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/ca%2F6d%2F18%2Fca6d18c2e9c948fcbe2e0cc91914e521%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1929-09-11,1929-09-11,https://shakespeareandco.princeton.edu/members/king-6/,King,King,,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1929-09-11,1929-09-11,https://shakespeareandco.princeton.edu/members/desproud/,G. Desgrand,"Desgrand, G.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1929-09-11,1929-12-11,https://shakespeareandco.princeton.edu/members/bertraud/,Alex Bertraud,"Bertraud, Alex",60.00,,3 months,91,1,,1929-09-06,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1929-09-12,1929-09-12,https://shakespeareandco.princeton.edu/members/embericos-alexandra/,Alexandra Embericos,"Embericos, Alexandra",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1929-09-12,1929-09-12,https://shakespeareandco.princeton.edu/members/palmer-2/,Palmer,Palmer,,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-09-13,1929-09-16,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/phillpotts-tryphena/,Tryphena,,"Phillpotts, Eden",1929,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/ca%2F6d%2F18%2Fca6d18c2e9c948fcbe2e0cc91914e521%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1929-09-16,1929-12-16,https://shakespeareandco.princeton.edu/members/pissot-6/,Mlle Pissot,"Pissot, Mlle",48.00,,3 months,91,1,Student,1929-09-16,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-09-16,1929-09-25,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/stacpoole-stories-east-west/,Stories East and West: Tales of Men and Women,,"Stacpoole, Henry de Vere",1926,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/4e%2F9f%2F1a%2F4e9f1a2ea63348ff8b188a84c5fa487e%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1929-09-16,1929-09-16,https://shakespeareandco.princeton.edu/members/perelman/,Perelman / Perleman,Perelman,,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1929-09-16,1929-12-16,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",85.00,100.00,3 months,91,2,,1929-09-16,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,;https://iiif.princeton.edu/loris/figgy_prod/12%2F8c%2F4f%2F128c4f1d37b747b4b6abfaed7a09f71d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-09-16,1929-09-20,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/trollope-last-chronicle-barset/,The Last Chronicle of Barset,2 vols.,"Trollope, Anthony",1867,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/ca%2F6d%2F18%2Fca6d18c2e9c948fcbe2e0cc91914e521%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1929-09-17,1929-09-17,https://shakespeareandco.princeton.edu/members/greville-v/,Mme V. Greville,"Greville, Mme V.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1929-09-18,1929-10-18,https://shakespeareandco.princeton.edu/members/curtiss-nathaniel/,Nathaniel Curtiss,"Curtiss, Nathaniel",35.00,,1 month,30,4,,1929-08-02,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1929-09-18,1929-10-18,https://shakespeareandco.princeton.edu/members/foster-ruth/,Ruth Foster,"Foster, Ruth",35.00,100.00,1 month,30,2,,1929-09-18,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1929-09-19,1929-09-19,https://shakespeareandco.princeton.edu/members/szerb/,Szerb / Zerb,Szerb,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1929-09-19,1929-10-19,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",25.00,,1 month,30,1,,1929-09-19,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,;https://iiif.princeton.edu/loris/figgy_prod/63%2F34%2F0c%2F63340cf78b80443d8baa057c6515d217%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-09-19,1929-09-27,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/walsh-quarter/,This Quarter,"Vol. 2, no. 1, Jul β Sep 1929",,,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/b6%2F0b%2F14%2Fb60b14334c334becae48d027d0a1b1a9%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-09-19,,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/renn-war/,War,,"Renn, Ludwig",1929,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/b6%2F0b%2F14%2Fb60b14334c334becae48d027d0a1b1a9%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-09-19,1929-09-27,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/lawrence-lady-chatterleys-lover/,Lady Chatterley's Lover,,"Lawrence, D. H.",1928,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/b6%2F0b%2F14%2Fb60b14334c334becae48d027d0a1b1a9%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-09-19,1929-09-28,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/mottram-boroughmonger/,The Boroughmonger,,"Mottram, R. H.",1929,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/ee%2F79%2Fb9%2Fee79b9f1f5e64724a09ee5b343ebd05a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-09-19,,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/hall-well-loneliness/,The Well of Loneliness,,"Hall, Radclyffe",1926,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F34%2F0c%2F63340cf78b80443d8baa057c6515d217%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1929-09-20,1929-09-20,https://shakespeareandco.princeton.edu/members/thirer-2/,Thirer,Thirer,,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-09-20,1929-09-25,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/james-golden-bowl/,The Golden Bowl,,"James, Henry",1904,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/ca%2F6d%2F18%2Fca6d18c2e9c948fcbe2e0cc91914e521%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1929-09-21,1929-10-21,https://shakespeareandco.princeton.edu/members/blockey/,Mrs. Blockey,"Blockey, Mrs.",25.00,,1 month,30,1,,1929-09-21,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1929-09-23,1929-09-23,https://shakespeareandco.princeton.edu/members/wilson-14/,Wilson,Wilson,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1929-09-23,1929-09-23,https://shakespeareandco.princeton.edu/members/malbert-b/,B. Malbert,"Malbert, B.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1929-09-24,1929-10-24,https://shakespeareandco.princeton.edu/members/cowell/,Jannette Cowell,"Cowell, Jannette",35.00,100.00,1 month,30,2,,1929-09-24,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1929-09-24,1929-09-24,https://shakespeareandco.princeton.edu/members/ashenhurst/,Mrs. G. Ashenhurst,"Ashenhurst, Mrs. G.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-09-24,1929-10-03,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/hardy-return-native/,The Return of the Native,2 vols.,"Hardy, Thomas",1878,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/e0%2F11%2F78%2Fe011789ae91b4941a088b85942d4df17%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-09-24,1929-10-30,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,36,,,https://shakespeareandco.princeton.edu/books/conrad-tales-unrest/,Tales of Unrest,,"Conrad, Joseph",1898,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/e0%2F11%2F78%2Fe011789ae91b4941a088b85942d4df17%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1929-09-25,1929-10-25,https://shakespeareandco.princeton.edu/members/mahmoud/,Mr. Mahmoud,"Mahmoud, Mr.",100.00,100.00,1 month,30,1,,1929-09-25,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-09-25,1929-10-07,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/trites-paterfamilias/,Paterfamilias,,"Trites, W. B.",1929,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/4e%2F9f%2F1a%2F4e9f1a2ea63348ff8b188a84c5fa487e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-09-25,1929-10-07,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/warner-true-heart/,The True Heart,,"Warner, Sylvia Townsend",1929,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/4e%2F9f%2F1a%2F4e9f1a2ea63348ff8b188a84c5fa487e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-09-25,1929-09-27,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/birmingham-murder-foul-gallery/,Murder Most Foul! A Gallery of Famous Criminals,,"Birmingham, George A.",1929,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/ca%2F6d%2F18%2Fca6d18c2e9c948fcbe2e0cc91914e521%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-09-25,1929-09-30,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/plato-phaedrus/,Phaedrus,,Plato,,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F34%2F0c%2F63340cf78b80443d8baa057c6515d217%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-09-25,1929-10-04,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/hardy-jude-obscure/,Jude the Obscure,,"Hardy, Thomas",1895,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F34%2F0c%2F63340cf78b80443d8baa057c6515d217%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-09-25,1929-10-19,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,24,,,https://shakespeareandco.princeton.edu/books/adventures-sir-walter/,Adventures of Sir Walter Raleigh,,,,"Unidentified. In *Hemingway's Reading 1910β1940* (1981), Michael S. Reynolds suggests that the author is ""perhaps John Buchan, Milton Waldman, or Martin A. S. Hume.""",Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/b6%2F0b%2F14%2Fb60b14334c334becae48d027d0a1b1a9%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1929-09-25,1929-09-25,https://shakespeareandco.princeton.edu/members/benridge-a-l/,A. L. Berridge,"Berridge, A. L.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1929-09-26,1929-09-26,https://shakespeareandco.princeton.edu/members/gavrustullia/,Mme Gavrustullia,"Gavrustullia, Mme",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-09-27,1930-01-23,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,118,,,https://shakespeareandco.princeton.edu/books/dostoyevsky-idiot/,The Idiot,,"Dostoyevsky, Fyodor",1874,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/b6%2F0b%2F14%2Fb60b14334c334becae48d027d0a1b1a9%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-09-27,1929-09-28,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/mayo-slaves-gods/,Slaves of the Gods,,"Mayo, Katherine",1929,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2Fcd%2Ffb%2Ff2cdfb855c9043afa10d6f55cd2332d0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-09-27,1929-09-28,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/beerbohm-christmas-garland/,A Christmas Garland,,"Beerbohm, Max",1912,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/b0%2Ffc%2F7c%2Fb0fc7c5cf0dc424e9e3c282cd129a6be%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-09-27,,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/turgenev-eve/,On the Eve,,"Turgenev, Ivan",1895,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/b6%2F0b%2F14%2Fb60b14334c334becae48d027d0a1b1a9%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1929-09-27,1929-09-27,https://shakespeareandco.princeton.edu/members/curtiss-nathaniel/,Nathaniel Curtiss,"Curtiss, Nathaniel",,,,,,,,200.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-09-27,,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/turgenev-sportsmans-sketches/,A Sportsman's Sketches,,"Turgenev, Ivan",1895,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/b6%2F0b%2F14%2Fb60b14334c334becae48d027d0a1b1a9%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-09-27,1929-09-30,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/riding-survey-modernist-poetry/,A Survey of Modernist Poetry,,"Riding, Laura;Graves, Robert",1927,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/bb%2F21%2Ff5%2Fbb21f524e68c45359aed1a0ad2ce69ac%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1929-09-27,1929-10-27,https://shakespeareandco.princeton.edu/members/houghton-1/,Mrs. E. M. Houghton,"Houghton, Mrs. E. M.",35.00,,1 month,30,2,,1929-09-27,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-09-28,1929-10-09,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/lawrence-women-love/,Women in Love,,"Lawrence, D. H.",1920,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/b0%2Ffc%2F7c%2Fb0fc7c5cf0dc424e9e3c282cd129a6be%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-09-28,1929-10-24,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,26,,,https://shakespeareandco.princeton.edu/books/connington-case-nine-solutions/,The Case with Nine Solutions,,"Connington, J. J.",1928,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/ed%2F69%2F87%2Fed698743ad5641058ccc97f94cdc5360%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-09-28,1929-10-12,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/bradford-ol-man-adam/,Ol' Man Adam an' His Chillun,,"Bradford, Roark",1928,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/ee%2F79%2Fb9%2Fee79b9f1f5e64724a09ee5b343ebd05a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-09-28,1929-10-11,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/beresford-imperturbable-duchess-stories/,The Imperturbable Duchess and Other Stories,,"Beresford, J. D.",1923,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2Fcd%2Ffb%2Ff2cdfb855c9043afa10d6f55cd2332d0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1929-09-29,1929-10-29,https://shakespeareandco.princeton.edu/members/volkova/,Volkova / Wolkova,Volkova,35.00,,1 month,30,2,,1929-09-21,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-09-30,1929-10-02,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/wharton-fruit-tree/,The Fruit of the Tree,,"Wharton, Edith",1907,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/bb%2F21%2Ff5%2Fbb21f524e68c45359aed1a0ad2ce69ac%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1929-09-30,1929-10-30,https://shakespeareandco.princeton.edu/members/dodly-caroline/,Caroline Dodly,"Dodly, Caroline",25.00,50.00,1 month,30,1,,1929-09-30,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1929-10-01,1930-04-01,https://shakespeareandco.princeton.edu/members/goodland-roger/,Roger Goodland,"Goodland, Roger",100.00,,6 months,182,1,,1929-10-01,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1929-10-02,1930-04-02,https://shakespeareandco.princeton.edu/members/betbeder/,Mlle Betbeder-Matibet,"Betbeder-Matibet, Mlle",80.00,50.00,6 months,182,1,,1929-10-02,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1929-10-02,1929-10-02,https://shakespeareandco.princeton.edu/members/meyer-f/,F. Meyer,"Meyer, F.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-10-02,1929-10-11,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/lawrence-lady-chatterleys-lover/,Lady Chatterley's Lover,,"Lawrence, D. H.",1928,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/bb%2F21%2Ff5%2Fbb21f524e68c45359aed1a0ad2ce69ac%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1929-10-02,1930-01-02,https://shakespeareandco.princeton.edu/members/de-caro-anita/;https://shakespeareandco.princeton.edu/members/de-caro-1/,Anita de Caro;Mr. de Caro,"de Caro, Anita;de Caro, Mr.",68.00,100.00,3 months,92,2,,1929-09-03,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1929-10-02,1929-10-17,https://shakespeareandco.princeton.edu/members/meyer-f/,F. Meyer,"Meyer, F.",12.50,,15 days,15,1,,1929-10-02,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-10-02,1929-11-09,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,38,,,https://shakespeareandco.princeton.edu/books/beresford-world-women/,A World of Women,,"Beresford, J. D.",1913,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/ee%2F79%2Fb9%2Fee79b9f1f5e64724a09ee5b343ebd05a%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1929-10-03,1930-01-03,https://shakespeareandco.princeton.edu/members/hervey-mr/;https://shakespeareandco.princeton.edu/members/hervey-2/,Mr. Hervey;Mrs. Hervey,"Hervey, Mr.;Hervey, Mrs.",170.00,,3 months,92,4,,1929-10-01,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-10-03,1929-11-06,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,34,,,https://shakespeareandco.princeton.edu/books/borden-jane-stranger/,JaneβOur Stranger,,"Borden, Mary",1924,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/c7%2F28%2F03%2Fc72803565c4747ee9d5ea39916575ec4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-10-03,1929-10-20,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/bronte-wuthering-heights/,Wuthering Heights,,"BrontΓ«, Emily",1847,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/e0%2F11%2F78%2Fe011789ae91b4941a088b85942d4df17%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-10-03,1929-10-19,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/lawrence-rainbow/,The Rainbow,,"Lawrence, D. H.",1915,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/e0%2F11%2F78%2Fe011789ae91b4941a088b85942d4df17%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1929-10-03,1929-10-03,https://shakespeareandco.princeton.edu/members/volkova/,Volkova / Wolkova,Volkova,,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1929-10-04,1929-11-04,https://shakespeareandco.princeton.edu/members/kirk-mary/,Mary Kirk,"Kirk, Mary",35.00,100.00,1 month,31,2,,1929-10-04,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-10-04,1929-10-10,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/wodehouse-summer-lightning/,Summer Lightning,,"Wodehouse, P. G.",1929,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2Fcd%2Ffb%2Ff2cdfb855c9043afa10d6f55cd2332d0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-10-04,1929-10-10,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/hardy-tess-durbervilles/,Tess of the d'Urbervilles,,"Hardy, Thomas",1891,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F34%2F0c%2F63340cf78b80443d8baa057c6515d217%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1929-10-04,1930-01-04,https://shakespeareandco.princeton.edu/members/alabaster/,Mme V. Alabaster,"Alabaster, Mme V.",85.00,100.00,3 months,92,2,,1929-10-04,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-10-04,1929-10-07,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/west-harriet-hume-london/,Harriet Hume: A London Fantasy,,"West, Rebecca",1929,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/bb%2F21%2Ff5%2Fbb21f524e68c45359aed1a0ad2ce69ac%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-10-05,1929-10-31,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,26,,,https://shakespeareandco.princeton.edu/books/bronte-shirley/,Shirley,,"BrontΓ«, Charlotte",1849,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Fb9%2Fad%2Fccb9adb778e74d51bcd6d04425f9e15d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-10-07,1929-10-11,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/everyman/,Everyman,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/bb%2F21%2Ff5%2Fbb21f524e68c45359aed1a0ad2ce69ac%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-10-07,1929-10-14,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/baring-comfortless-memory/,Comfortless Memory,,"Baring, Maurice",1928,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/4e%2F9f%2F1a%2F4e9f1a2ea63348ff8b188a84c5fa487e%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1929-10-07,1930-01-07,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",48.00,,3 months,92,1,,1929-10-07,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,;https://iiif-cloud.princeton.edu/iiif/2/bb%2F21%2Ff5%2Fbb21f524e68c45359aed1a0ad2ce69ac%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1929-10-07,1929-10-07,https://shakespeareandco.princeton.edu/members/edmonds-gwyneth/,Gwyneth Edmonds,"Edmonds, Gwyneth",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1929-10-08,1929-10-23,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",10.00,,15 days,15,1,,1929-10-23,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,;https://iiif.princeton.edu/loris/figgy_prod/b0%2Ffc%2F7c%2Fb0fc7c5cf0dc424e9e3c282cd129a6be%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1929-10-08,1930-01-08,https://shakespeareandco.princeton.edu/members/monnier-j/,J. Monnier,"Monnier, J.",60.00,50.00,3 months,92,1,,1929-10-08,,,,,FRF,,,,,,,Logbook;Lending Library Card;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, J. Monnier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/df9a3d51-011b-4364-82ba-111bc447e7fe/manifest;,;https://iiif.princeton.edu/loris/figgy_prod/cd%2F38%2F4e%2Fcd384e3666d54ff9b7b986e5f0fe3190%2Fintermediate_file.jp2/full/full/0/default.jpg;
+Subscription,1929-10-08,1929-11-08,https://shakespeareandco.princeton.edu/members/morse-c-r/,C. R. Morse,"Morse, C. R.",25.00,50.00,1 month,31,1,,1929-10-08,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-10-08,1929-10-14,https://shakespeareandco.princeton.edu/members/monnier-j/,J. Monnier,"Monnier, J.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/woolf-mrs-dalloway/,Mrs. Dalloway,,"Woolf, Virginia",1925,,Lending Library Card,"Sylvia Beach, J. Monnier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/df9a3d51-011b-4364-82ba-111bc447e7fe/manifest,https://iiif.princeton.edu/loris/figgy_prod/cd%2F38%2F4e%2Fcd384e3666d54ff9b7b986e5f0fe3190%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-10-09,1929-10-10,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/woolf-mr-bennett-mrs/,Mr. Bennett and Mrs. Brown,,"Woolf, Virginia",1924,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/b0%2Ffc%2F7c%2Fb0fc7c5cf0dc424e9e3c282cd129a6be%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1929-10-09,1929-11-09,https://shakespeareandco.princeton.edu/members/kennedy-robert-1/,Robert Kennedy,"Kennedy, Robert",60.00,,1 month,31,3,,1929-09-18,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1929-10-09,1929-10-09,https://shakespeareandco.princeton.edu/members/gallio/,Mr. Gallio,"Gallio, Mr.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1929-10-09,1929-10-09,https://shakespeareandco.princeton.edu/members/s-sapira/,S. Sapira,S. Sapira,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-10-10,1929-10-23,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/strachey-books-characters-french/,"Books and Characters, French and English",,"Strachey, Giles Lytton",1922,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/b0%2Ffc%2F7c%2Fb0fc7c5cf0dc424e9e3c282cd129a6be%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1929-10-10,,https://shakespeareandco.princeton.edu/members/mclean-a/,A. McLean,"McLean, A.",60.00,50.00,,,,,1929-10-10,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1929-10-10,1929-10-10,https://shakespeareandco.princeton.edu/members/church-8/,Mrs. Church,"Church, Mrs.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-10-10,1929-10-18,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/baring-coat-without-seam/,The Coat without Seam,,"Baring, Maurice",1929,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2Fcd%2Ffb%2Ff2cdfb855c9043afa10d6f55cd2332d0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-10-10,1929-10-11,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/hemingway-men-without-women/,Men without Women,,"Hemingway, Ernest",1927,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F34%2F0c%2F63340cf78b80443d8baa057c6515d217%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-10-11,1929-10-11,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/wilder-angel-troubled-waters/,The Angel That Troubled the Waters,,"Wilder, Thornton",1928,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/95%2Ffa%2Fe5%2F95fae5271318494da776b55040017d19%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-10-11,1929-10-25,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/ward-cambridge-history-english/,The Cambridge History of English Literature,"Vol. 2, 1908 The End of the Middle Ages",,,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/95%2Ffa%2Fe5%2F95fae5271318494da776b55040017d19%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-10-11,1929-10-19,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/gozlan-balzac-slippers/,Balzac in Slippers,,"Gozlan, LΓ©on",1929,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/b6%2F0b%2F14%2Fb60b14334c334becae48d027d0a1b1a9%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-10-11,1929-10-17,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/smollett-expedition-humphry-clinker/,The Expedition of Humphry Clinker,2 vols.,"Smollett, Tobias",1771,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F34%2F0c%2F63340cf78b80443d8baa057c6515d217%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-10-11,1929-10-14,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/walpole-fortitude/,Fortitude,,"Walpole, Hugh",1913,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/bb%2F21%2Ff5%2Fbb21f524e68c45359aed1a0ad2ce69ac%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1929-10-11,1929-11-11,https://shakespeareandco.princeton.edu/members/mason-e-c/,Mrs. E. C. Mason,"Mason, Mrs. E. C.",25.00,50.00,1 month,31,1,,1929-10-11,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1929-10-11,1929-10-11,https://shakespeareandco.princeton.edu/members/hagfors-l/,L. Hagfors,"Hagfors, L.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-10-11,1929-10-19,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/sampson-cambridge-book-prose/,The Cambridge Book of Prose and Verse,,,1924,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/95%2Ffa%2Fe5%2F95fae5271318494da776b55040017d19%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1929-10-12,1930-04-12,https://shakespeareandco.princeton.edu/members/besse-jeanne/,Jeanne Besse,"Besse, Jeanne",120.00,100.00,6 months,182,2,,1929-10-12,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-10-12,1929-10-18,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/louis-bromfield-awake-rehearse-selected/,Awake and Rehearse: Selected Short Stories of Louis Bromfield,,"Bromfield, Louis",1929,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/ee%2F79%2Fb9%2Fee79b9f1f5e64724a09ee5b343ebd05a%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1929-10-12,1929-11-12,https://shakespeareandco.princeton.edu/members/iden-mark/,Mark Iden,"Iden, Mark",35.00,100.00,1 month,31,2,,1929-10-12,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-10-14,1929-10-19,https://shakespeareandco.princeton.edu/members/monnier-j/,J. Monnier,"Monnier, J.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/swinnerton-nocturne/,Nocturne,,"Swinnerton, Frank",1917,,Lending Library Card,"Sylvia Beach, J. Monnier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/df9a3d51-011b-4364-82ba-111bc447e7fe/manifest,https://iiif.princeton.edu/loris/figgy_prod/cd%2F38%2F4e%2Fcd384e3666d54ff9b7b986e5f0fe3190%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-10-14,1929-10-25,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/beresford-meeting-place-stories/,The Meeting Place and Other Stories,,"Beresford, J. D.",1929,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/4e%2F9f%2F1a%2F4e9f1a2ea63348ff8b188a84c5fa487e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-10-14,1929-11-12,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,29,,,https://shakespeareandco.princeton.edu/books/richmond-times-literary-supplement/,The Times Literary Supplement,"no. 1444, Oct 3, 1929",,,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/4e%2F9f%2F1a%2F4e9f1a2ea63348ff8b188a84c5fa487e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-10-14,1929-10-15,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/west-harriet-hume-london/,Harriet Hume: A London Fantasy,,"West, Rebecca",1929,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/bb%2F21%2Ff5%2Fbb21f524e68c45359aed1a0ad2ce69ac%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-10-15,1929-10-17,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/starrett-fourteen-great-detective/,Fourteen Great Detective Stories,,,1928,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/bb%2F21%2Ff5%2Fbb21f524e68c45359aed1a0ad2ce69ac%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1929-10-15,1929-11-15,https://shakespeareandco.princeton.edu/members/gilles-rager/,Roger Gilles,"Gilles, Roger",25.00,100.00,1 month,31,1,,1929-10-15,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-10-16,1929-11-05,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/de-la-mare-memoirs-midget/,Memoirs of a Midget,,"De la Mare, Walter",1921,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/e2%2F8f%2F47%2Fe28f47a0edc74234a7fe62de67b2461a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-10-16,1929-11-05,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/garnett-lady-fox/,Lady into Fox,,"Garnett, David",1922,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/e2%2F8f%2F47%2Fe28f47a0edc74234a7fe62de67b2461a%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1929-10-17,1929-11-17,https://shakespeareandco.princeton.edu/members/caparn/,Rhys Caparn,"Caparn, Rhys",20.00,50.00,1 month,31,1,,1929-10-17,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-10-17,1929-10-31,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/fielding-history-tom-jones/,"The History of Tom Jones, a Foundling",Vol. 1,"Fielding, Henry",1749,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Fb9%2Fad%2Fccb9adb778e74d51bcd6d04425f9e15d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-10-17,1929-11-09,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/crashaw-poems-richard-crashaw/,Poems of Richard Crashaw,,"Crashaw, Richard",,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Fb9%2Fad%2Fccb9adb778e74d51bcd6d04425f9e15d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-10-17,1929-10-18,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/hemingway-sun-also-rises/,The Sun Also Rises,,"Hemingway, Ernest",1926,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F34%2F0c%2F63340cf78b80443d8baa057c6515d217%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1929-10-17,1929-11-17,https://shakespeareandco.princeton.edu/members/caparn-anne/,Anne Caparn,"Caparn, Anne",20.00,50.00,1 month,31,1,,1929-10-17,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-10-17,1929-10-21,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/smollett-life-adventures-sir/,The Life and Adventures of Sir Launcelot Greaves,,"Smollett, Tobias",1760,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/bb%2F21%2Ff5%2Fbb21f524e68c45359aed1a0ad2ce69ac%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1929-10-17,1930-01-17,https://shakespeareandco.princeton.edu/members/morley-pegge/,Mrs. Morley-Pegge,"Morley-Pegge, Mrs.",60.00,50.00,3 months,92,1,,1929-10-17,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1929-10-17,1929-10-17,https://shakespeareandco.princeton.edu/members/blockey/,Mrs. Blockey,"Blockey, Mrs.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1929-10-18,1929-11-18,https://shakespeareandco.princeton.edu/members/hetherwick-violet/,Violet Hetherwick,"Hetherwick, Violet",25.00,,1 month,31,1,,1929-10-15,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1929-10-18,1929-11-18,https://shakespeareandco.princeton.edu/members/curtiss-nathaniel/,Nathaniel Curtiss,"Curtiss, Nathaniel",70.00,,1 month,31,4,,1929-08-28,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-10-18,1929-10-22,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/chambers-dark-star/,The Dark Star,,"Chambers, R. W.",1917,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/ee%2F79%2Fb9%2Fee79b9f1f5e64724a09ee5b343ebd05a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-10-18,1929-10-23,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/joyce-exiles/,Exiles,,"Joyce, James",1918,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F34%2F0c%2F63340cf78b80443d8baa057c6515d217%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-10-18,1929-10-23,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/garnett-man-zoo/,A Man in the Zoo,,"Garnett, David",1924,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F34%2F0c%2F63340cf78b80443d8baa057c6515d217%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-10-18,1929-10-21,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/cabell-something-eve-comedy/,Something about Eve: A Comedy of Fig-leaves,,"Cabell, James Branch",1927,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2Fcd%2Ffb%2Ff2cdfb855c9043afa10d6f55cd2332d0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1929-10-18,1929-11-18,https://shakespeareandco.princeton.edu/members/esty/,Mrs. J. C. Esty,"Esty, Mrs. J. C.",35.00,100.00,1 month,31,2,,1929-10-18,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-10-19,1929-11-14,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,26,,,https://shakespeareandco.princeton.edu/books/huxley-antic-hay/,Antic Hay,,"Huxley, Aldous",1923,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/e0%2F11%2F78%2Fe011789ae91b4941a088b85942d4df17%2Fintermediate_file/full/full/0/default.jpg
+Separate Payment,1929-10-19,1929-10-19,https://shakespeareandco.princeton.edu/members/pissot-6/,Mlle Pissot,"Pissot, Mlle",48.00,,,,1,,1929-10-19,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-10-19,1929-11-09,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/swinburne-study-shakespeare/,A Study of Shakespeare,,"Swinburne, Algernon Charles",1880,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/95%2Ffa%2Fe5%2F95fae5271318494da776b55040017d19%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1929-10-19,1929-11-19,https://shakespeareandco.princeton.edu/members/culyer/,Marion Culver,"Culver, Marion",35.00,,1 month,31,2,,1929-10-14,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-10-19,1929-10-23,https://shakespeareandco.princeton.edu/members/monnier-j/,J. Monnier,"Monnier, J.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/disraeli-sybil-two-nations/,"Sybil: Or, the Two Nations",,"Disraeli, Benjamin",1845,,Lending Library Card,"Sylvia Beach, J. Monnier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/df9a3d51-011b-4364-82ba-111bc447e7fe/manifest,https://iiif.princeton.edu/loris/figgy_prod/cd%2F38%2F4e%2Fcd384e3666d54ff9b7b986e5f0fe3190%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1929-10-19,1929-10-19,https://shakespeareandco.princeton.edu/members/merriman-christine/,Christine Merriman,"Merriman, Christine",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-10-19,1929-10-25,https://shakespeareandco.princeton.edu/members/proix/,Troise Proix,"Proix, Troise",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/baring-daphne-adeane/,Daphne Adeane,,"Baring, Maurice",1927,,Lending Library Card,"Sylvia Beach, Troise Proix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b7152822-4421-406d-9472-740daf9b84e0/manifest,https://iiif.princeton.edu/loris/figgy_prod/74%2F86%2F66%2F7486663be2ca4bafa6ecad8fdaeb39a6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-10-21,1929-10-23,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/james-travelling-companions/,Travelling Companions,,"James, Henry",1919,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/bb%2F21%2Ff5%2Fbb21f524e68c45359aed1a0ad2ce69ac%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1929-10-21,1930-01-21,https://shakespeareandco.princeton.edu/members/james-olia/,Olia James,"James, Olia",85.00,150.00,3 months,92,2,,1929-10-21,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-10-21,1929-10-24,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/goldsmith-belated-adventure/,Belated Adventure,,"Goldsmith, Margaret L.",1929,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2Fcd%2Ffb%2Ff2cdfb855c9043afa10d6f55cd2332d0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1929-10-22,1930-01-22,https://shakespeareandco.princeton.edu/members/constable-r/,R. Constable,"Constable, R.",60.00,50.00,3 months,92,1,,1929-10-22,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1929-10-22,1929-10-22,https://shakespeareandco.princeton.edu/members/culyer/,Marion Culver,"Culver, Marion",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-10-22,1929-11-04,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/deeping-ropers-row/,Roper's Row,,"Deeping, Warwick",1929,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/ee%2F79%2Fb9%2Fee79b9f1f5e64724a09ee5b343ebd05a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-10-23,1929-11-05,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/baring-tinkers-leave/,Tinker's Leave,,"Baring, Maurice",1927,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/b0%2Ffc%2F7c%2Fb0fc7c5cf0dc424e9e3c282cd129a6be%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1929-10-23,1929-11-23,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",20.00,,1 month,31,1,AdL,1929-10-23,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,;https://iiif.princeton.edu/loris/figgy_prod/63%2F34%2F0c%2F63340cf78b80443d8baa057c6515d217%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1929-10-23,1929-11-23,https://shakespeareandco.princeton.edu/members/conrad-mine/,Mine Conrad,"Conrad, Mine",25.00,50.00,1 month,31,1,,1929-10-23,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1929-10-23,1929-10-23,https://shakespeareandco.princeton.edu/members/cowell/,Jannette Cowell,"Cowell, Jannette",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1929-10-23,1930-04-23,https://shakespeareandco.princeton.edu/members/fosca-francois/,FranΓ§ois Fosca,"Fosca, FranΓ§ois",150.00,,6 months,182,2,,1929-10-23,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1929-10-23,1930-01-23,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",68.00,,3 months,92,2,,1929-10-23,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,;https://iiif.princeton.edu/loris/figgy_prod/b0%2Ffc%2F7c%2Fb0fc7c5cf0dc424e9e3c282cd129a6be%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-10-23,1929-11-07,https://shakespeareandco.princeton.edu/members/monnier-j/,J. Monnier,"Monnier, J.",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/austen-pride-prejudice/,Pride and Prejudice,,"Austen, Jane",1813,,Lending Library Card,"Sylvia Beach, J. Monnier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/df9a3d51-011b-4364-82ba-111bc447e7fe/manifest,https://iiif.princeton.edu/loris/figgy_prod/cd%2F38%2F4e%2Fcd384e3666d54ff9b7b986e5f0fe3190%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-10-23,1929-10-29,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/bronte-jane-eyre/,Jane Eyre,,"BrontΓ«, Charlotte",1847,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/b0%2Ffc%2F7c%2Fb0fc7c5cf0dc424e9e3c282cd129a6be%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-10-23,1929-10-25,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/trollope-small-house-allington/,The Small House at Allington,,"Trollope, Anthony",1864,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/bb%2F21%2Ff5%2Fbb21f524e68c45359aed1a0ad2ce69ac%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-10-23,1929-10-29,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/lehmann-dusty-answer/,Dusty Answer,,"Lehmann, Rosamond",1927,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F34%2F0c%2F63340cf78b80443d8baa057c6515d217%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-10-24,1929-11-09,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/masterman-wrong-letter/,The Wrong Letter,,"Masterman, Walter Sydney",1926,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/ed%2F69%2F87%2Fed698743ad5641058ccc97f94cdc5360%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-10-24,1929-11-09,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/smollett-expedition-humphry-clinker/,The Expedition of Humphry Clinker,,"Smollett, Tobias",1771,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2Fcd%2Ffb%2Ff2cdfb855c9043afa10d6f55cd2332d0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-10-25,1929-10-31,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/mackenzie-three-couriers/,The Three Couriers,,"Mackenzie, Compton",1929,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/4e%2F9f%2F1a%2F4e9f1a2ea63348ff8b188a84c5fa487e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-10-25,1929-11-09,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/meynell-alice-meynell-memoir/,Alice Meynell: A Memoir,,"Meynell, Viola",1929,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/95%2Ffa%2Fe5%2F95fae5271318494da776b55040017d19%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-10-25,1929-10-30,https://shakespeareandco.princeton.edu/members/proix/,Troise Proix,"Proix, Troise",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/joyce-exiles/,Exiles,,"Joyce, James",1918,,Lending Library Card,"Sylvia Beach, Troise Proix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b7152822-4421-406d-9472-740daf9b84e0/manifest,https://iiif.princeton.edu/loris/figgy_prod/74%2F86%2F66%2F7486663be2ca4bafa6ecad8fdaeb39a6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-10-25,1929-10-29,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/dreiser-genius/,"The ""Genius""",,"Dreiser, Theodore",1915,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/bb%2F21%2Ff5%2Fbb21f524e68c45359aed1a0ad2ce69ac%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-10-26,1931-11-14,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,749,,,https://shakespeareandco.princeton.edu/books/deirdre/,Deirdre,,,,"Unidentified. Robert Dwyer Joyce's *DeirdreΜ* (1877), A. E.'s *Deirdre* (1902), or W. B. Yeats's *Deirdre* (1907), etc.",Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/e0%2F11%2F78%2Fe011789ae91b4941a088b85942d4df17%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-10-29,1929-11-04,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/fletcher-isles-illusion-letters/,Isles of Illusion: Letters from the South Seas,,"Fletcher, Robert James",1923,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F34%2F0c%2F63340cf78b80443d8baa057c6515d217%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-10-29,1929-10-31,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/langbridge-charlotte-bronte-psychological/,Charlotte Bronte: A Psychological Study,,"Langbridge, Rosamund",1929,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/b0%2Ffc%2F7c%2Fb0fc7c5cf0dc424e9e3c282cd129a6be%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1929-10-29,1929-10-29,https://shakespeareandco.princeton.edu/members/dodly-caroline/,Caroline Dodly,"Dodly, Caroline",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-10-29,1929-10-30,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/christie-partners-crime/,Partners in Crime,,"Christie, Agatha",1929,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/bb%2F21%2Ff5%2Fbb21f524e68c45359aed1a0ad2ce69ac%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1929-10-30,1929-10-30,https://shakespeareandco.princeton.edu/members/mason-frances/,Frances Mason,"Mason, Frances",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1929-10-30,1929-10-30,https://shakespeareandco.princeton.edu/members/tytla/,Tytla,Tytla,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-10-30,1929-11-04,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/collins-moonstone/,The Moonstone,,"Collins, Wilkie",1868,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/bb%2F21%2Ff5%2Fbb21f524e68c45359aed1a0ad2ce69ac%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-10-30,1929-11-04,https://shakespeareandco.princeton.edu/members/proix/,Troise Proix,"Proix, Troise",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/maugham-casuarina-tree/,The Casuarina Tree: Six Stories,,"Maugham, W. Somerset",1926,,Lending Library Card,"Sylvia Beach, Troise Proix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b7152822-4421-406d-9472-740daf9b84e0/manifest,https://iiif.princeton.edu/loris/figgy_prod/74%2F86%2F66%2F7486663be2ca4bafa6ecad8fdaeb39a6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-10-31,1929-11-05,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/strachey-queen-victoria/,Queen Victoria,,"Strachey, Giles Lytton",1921,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/b0%2Ffc%2F7c%2Fb0fc7c5cf0dc424e9e3c282cd129a6be%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-10-31,1929-12-07,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,37,,,https://shakespeareandco.princeton.edu/books/william-congreve/,William Congreve,,,,Unidentified. By or about Congreve.,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Fb9%2Fad%2Fccb9adb778e74d51bcd6d04425f9e15d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-10-31,1929-11-12,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/chesterton-victorian-age-literature/,The Victorian Age in Literature,,"Chesterton, G. K.",1913,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/4e%2F9f%2F1a%2F4e9f1a2ea63348ff8b188a84c5fa487e%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1929-11-01,1930-11-01,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",120.00,,1 year,365,2,Professor / Teacher,1929-11-09,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,;https://iiif-cloud.princeton.edu/iiif/2/95%2Ffa%2Fe5%2F95fae5271318494da776b55040017d19%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-11-04,1929-11-06,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/sandburg-slabs-sunburnt-west/,Slabs of the Sunburnt West,,"Sandburg, Carl",1922,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/7b%2F19%2F70%2F7b197003fd8947029b3fddf6d7733ae7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-11-04,1929-11-18,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/baring-daphne-adeane/,Daphne Adeane,,"Baring, Maurice",1927,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F34%2F0c%2F63340cf78b80443d8baa057c6515d217%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-11-04,1929-11-06,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/tolstoy-letters-tolstoy-cousin/,The Letters of Tolstoy and His Cousin Countess Alexandra Tolstoy (1857 β 1903),,"Tolstoy, Leo",1929,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/7b%2F19%2F70%2F7b197003fd8947029b3fddf6d7733ae7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1929-11-04,1929-11-19,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",12.00,,15 days,15,1,,1929-11-04,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,;https://iiif.princeton.edu/loris/figgy_prod/7b%2F19%2F70%2F7b197003fd8947029b3fddf6d7733ae7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1929-11-04,1930-05-04,https://shakespeareandco.princeton.edu/members/marrey-paulette/,Paulette Marrey,"Marrey, Paulette",60.00,,6 months,181,1,Student,1929-11-04,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-11-05,1929-11-08,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/whitman-leaves-grass/,Leaves of Grass,,"Whitman, Walt",,Unspecified edition.,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/b0%2Ffc%2F7c%2Fb0fc7c5cf0dc424e9e3c282cd129a6be%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-11-05,1929-11-08,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/wilson-alone-life-private/,All Alone: The Life and Private History of Emily Jane Bronte,,"Wilson, Romer",1928,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/b0%2Ffc%2F7c%2Fb0fc7c5cf0dc424e9e3c282cd129a6be%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1929-11-05,1929-12-05,https://shakespeareandco.princeton.edu/members/scott-4/,Scott,Scott,35.00,,1 month,30,2,,1929-10-28,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-11-06,1929-11-12,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/oneill-lazarus-laughed/,Lazarus Laughed,,"O'Neill, Eugene",1927,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/7b%2F19%2F70%2F7b197003fd8947029b3fddf6d7733ae7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1929-11-06,1930-05-06,https://shakespeareandco.princeton.edu/members/blake-w/,W. Blake,"Blake, W.",80.00,,6 months,181,1,,1929-11-06,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-11-06,1929-12-15,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,39,,,https://shakespeareandco.princeton.edu/books/frankau-dance-little-gentleman/,"Dance, Little Gentleman!",,"Frankau, Gilbert",1929,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/c7%2F28%2F03%2Fc72803565c4747ee9d5ea39916575ec4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-11-06,1929-12-07,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,31,,,https://shakespeareandco.princeton.edu/books/dreiser-sister-carrie/,Sister Carrie,,"Dreiser, Theodore",1900,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/c7%2F28%2F03%2Fc72803565c4747ee9d5ea39916575ec4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Generic,1929-11-07,,https://shakespeareandco.princeton.edu/members/aldington-richard/,Richard Aldington,"Aldington, Richard",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/fletcher-tree-life/,The Tree of Life,,"Fletcher, John Gould",1918,,Lending Library Card,"Sylvia Beach, Richard Aldington Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd1dcd3-9f25-4e3a-b153-e7f85b43fb8e/manifest,https://iiif.princeton.edu/loris/figgy_prod/81%2F4e%2F63%2F814e6371c7ab4781aacfb4c396959a8d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-11-07,1929-11-09,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/bennett-lions-share/,The Lion's Share,,"Bennett, Arnold",1916,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/bb%2F21%2Ff5%2Fbb21f524e68c45359aed1a0ad2ce69ac%2Fintermediate_file/full/full/0/default.jpg
+Generic,1929-11-07,,https://shakespeareandco.princeton.edu/members/aldington-richard/,Richard Aldington,"Aldington, Richard",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/van-vechten-spider-boy-scenario/,Spider Boy: A Scenario for a Moving Picture,,"Van Vechten, Carl",1928,,Lending Library Card,"Sylvia Beach, Richard Aldington Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd1dcd3-9f25-4e3a-b153-e7f85b43fb8e/manifest,https://iiif.princeton.edu/loris/figgy_prod/81%2F4e%2F63%2F814e6371c7ab4781aacfb4c396959a8d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Generic,1929-11-07,1929-11-16,https://shakespeareandco.princeton.edu/members/aldington-richard/,Richard Aldington,"Aldington, Richard",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/fletcher-breakers-granite/,Breakers and Granite,,"Fletcher, John Gould",1921,,Lending Library Card,"Sylvia Beach, Richard Aldington Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd1dcd3-9f25-4e3a-b153-e7f85b43fb8e/manifest,https://iiif.princeton.edu/loris/figgy_prod/81%2F4e%2F63%2F814e6371c7ab4781aacfb4c396959a8d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Generic,1929-11-07,,https://shakespeareandco.princeton.edu/members/aldington-richard/,Richard Aldington,"Aldington, Richard",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/fletcher-irradiations-sand-spray/,"Irradiations, Sand and Spray",,"Fletcher, John Gould",1915,,Lending Library Card,"Sylvia Beach, Richard Aldington Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd1dcd3-9f25-4e3a-b153-e7f85b43fb8e/manifest,https://iiif.princeton.edu/loris/figgy_prod/81%2F4e%2F63%2F814e6371c7ab4781aacfb4c396959a8d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Generic,1929-11-07,,https://shakespeareandco.princeton.edu/members/aldington-richard/,Richard Aldington,"Aldington, Richard",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/fletcher-goblins-pagodas/,Goblins and Pagodas,,"Fletcher, John Gould",1916,,Lending Library Card,"Sylvia Beach, Richard Aldington Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd1dcd3-9f25-4e3a-b153-e7f85b43fb8e/manifest,https://iiif.princeton.edu/loris/figgy_prod/81%2F4e%2F63%2F814e6371c7ab4781aacfb4c396959a8d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Generic,1929-11-07,1929-11-16,https://shakespeareandco.princeton.edu/members/aldington-richard/,Richard Aldington,"Aldington, Richard",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/fletcher-parables/,Parables,,"Fletcher, John Gould",1925,,Lending Library Card,"Sylvia Beach, Richard Aldington Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd1dcd3-9f25-4e3a-b153-e7f85b43fb8e/manifest,https://iiif.princeton.edu/loris/figgy_prod/81%2F4e%2F63%2F814e6371c7ab4781aacfb4c396959a8d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Generic,1929-11-07,1929-11-16,https://shakespeareandco.princeton.edu/members/aldington-richard/,Richard Aldington,"Aldington, Richard",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/richardson-familiar-letters-important/,Familiar Letters on Important Occasions,,"Richardson, Samuel",1741,,Lending Library Card,"Sylvia Beach, Richard Aldington Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0cd1dcd3-9f25-4e3a-b153-e7f85b43fb8e/manifest,https://iiif.princeton.edu/loris/figgy_prod/81%2F4e%2F63%2F814e6371c7ab4781aacfb4c396959a8d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-11-07,1929-11-13,https://shakespeareandco.princeton.edu/members/monnier-j/,J. Monnier,"Monnier, J.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/bronte-jane-eyre/,Jane Eyre,,"BrontΓ«, Charlotte",1847,,Lending Library Card,"Sylvia Beach, J. Monnier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/df9a3d51-011b-4364-82ba-111bc447e7fe/manifest,https://iiif.princeton.edu/loris/figgy_prod/cd%2F38%2F4e%2Fcd384e3666d54ff9b7b986e5f0fe3190%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-11-08,,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/gardner-william-blake-man/,William Blake: The Man,,"Gardner, Charles",1919,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/b0%2Ffc%2F7c%2Fb0fc7c5cf0dc424e9e3c282cd129a6be%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-11-08,1930-01-10,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,63,,,https://shakespeareandco.princeton.edu/books/symons-william-blake/,William Blake,,"Symons, Arthur",1907,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/b0%2Ffc%2F7c%2Fb0fc7c5cf0dc424e9e3c282cd129a6be%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1929-11-09,1929-11-09,https://shakespeareandco.princeton.edu/members/kranenburg-hoen/,Mme Kranenburg-Hoen,"Kranenburg-Hoen, Mme",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-11-09,1929-11-12,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/trites-paterfamilias/,Paterfamilias,,"Trites, W. B.",1929,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2Fcd%2Ffb%2Ff2cdfb855c9043afa10d6f55cd2332d0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-11-09,1929-11-23,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/maugham-moon-sixpence/,The Moon and Sixpence,,"Maugham, W. Somerset",1919,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2F00%2F2c%2Fcb002c24cc9a4d9c8fa834244db6afcc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-11-09,1929-12-07,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,28,,,https://shakespeareandco.princeton.edu/books/james-daisy-miller/,Daisy Miller,,"James, Henry",1879,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Fb9%2Fad%2Fccb9adb778e74d51bcd6d04425f9e15d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-11-09,1929-11-12,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/bennett-regent-five-towns/,The Regent: A Five Towns Story of Adventure in London,,"Bennett, Arnold",1913,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/bb%2F21%2Ff5%2Fbb21f524e68c45359aed1a0ad2ce69ac%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-11-09,1929-11-26,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/odonnell-adrigoole/,Adrigoole,,"O'Donnell, Peadar",1929,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/ee%2F79%2Fb9%2Fee79b9f1f5e64724a09ee5b343ebd05a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-11-09,1929-11-30,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/gorman-james-joyce-first/,"James Joyce, His First Forty Years",,"Gorman, Herbert Sherman",1924,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/95%2Ffa%2Fe5%2F95fae5271318494da776b55040017d19%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1929-11-10,1929-11-24,https://shakespeareandco.princeton.edu/members/tytla/,Tytla,Tytla,12.50,,2 weeks,14,1,,1929-10-30,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-11-12,1929-11-14,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/galsworthy-beyond/,Beyond,,"Galsworthy, John",1917,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/bb%2F21%2Ff5%2Fbb21f524e68c45359aed1a0ad2ce69ac%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-11-12,1929-11-14,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/bennett-married-life/,Married Life,,"Bennett, Arnold",1919,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/bb%2F21%2Ff5%2Fbb21f524e68c45359aed1a0ad2ce69ac%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-11-12,1929-11-27,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/jolas-transition-stories-twenty/,"Transition Stories: Twenty-Three Stories from ""Transition""",,,1929,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/4e%2F9f%2F1a%2F4e9f1a2ea63348ff8b188a84c5fa487e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-11-12,1929-11-27,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/richmond-times-literary-supplement/,The Times Literary Supplement,"no. 1445, Oct 10, 1929",,,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/4e%2F9f%2F1a%2F4e9f1a2ea63348ff8b188a84c5fa487e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-11-12,1929-11-15,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/oshaughnessy-ways-flesh/,Other Ways and Other Flesh,,"O'Shaughnessy, Edith",1929,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2Fcd%2Ffb%2Ff2cdfb855c9043afa10d6f55cd2332d0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1929-11-12,1929-12-12,https://shakespeareandco.princeton.edu/members/iden-mark/,Mark Iden,"Iden, Mark",35.00,,1 month,30,2,,1929-11-12,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-11-12,1929-11-18,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/new-russia/,New Russia,,,,Unidentified. Leslie Haden Guest's *The New Russia* (1925) or Dorothy Thompson's *The New Russia* (1928).,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/7b%2F19%2F70%2F7b197003fd8947029b3fddf6d7733ae7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-11-13,1929-11-20,https://shakespeareandco.princeton.edu/members/monnier-j/,J. Monnier,"Monnier, J.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/dane-bill-divorcement/,A Bill of Divorcement,,"Dane, Clemence",1921,,Lending Library Card,"Sylvia Beach, J. Monnier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/df9a3d51-011b-4364-82ba-111bc447e7fe/manifest,https://iiif.princeton.edu/loris/figgy_prod/cd%2F38%2F4e%2Fcd384e3666d54ff9b7b986e5f0fe3190%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1929-11-14,1929-11-28,https://shakespeareandco.princeton.edu/members/taylor-4/,Miss Taylor,"Taylor, Miss",13.00,,2 weeks,14,1,,1929-11-07,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-11-14,1929-11-16,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/mann-buddenbrooks/,Buddenbrooks,,"Mann, Thomas",1924,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/bb%2F21%2Ff5%2Fbb21f524e68c45359aed1a0ad2ce69ac%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-11-14,1931-12-21,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,767,,,https://shakespeareandco.princeton.edu/books/huxley-crome-yellow/,Crome Yellow,,"Huxley, Aldous",1921,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/e0%2F11%2F78%2Fe011789ae91b4941a088b85942d4df17%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1929-11-14,1929-12-14,https://shakespeareandco.princeton.edu/members/moore-henry/,Henry L. Moore,"Moore, Henry L.",25.00,50.00,1 month,30,1,,1929-11-14,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1929-11-15,1929-12-15,https://shakespeareandco.princeton.edu/members/hetherwick-violet/,Violet Hetherwick,"Hetherwick, Violet",25.00,,1 month,30,1,,1929-11-12,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-11-15,1929-11-19,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/james-sleeveless-errand/,Sleeveless Errand,,"James, Norah C.",1929,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2Fcd%2Ffb%2Ff2cdfb855c9043afa10d6f55cd2332d0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-11-15,1929-12-13,https://shakespeareandco.princeton.edu/members/suter/,G. V. Suter,"Suter, G. V.",,,,,,,,,Returned,28,,,https://shakespeareandco.princeton.edu/books/seabrook-magic-island/,The Magic Island,,"Seabrook, William",1929,,Lending Library Card,"Sylvia Beach, G.V. Suter Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f20608fb-4ece-4fc2-879f-36c8e209048b/manifest,https://iiif.princeton.edu/loris/figgy_prod/b7%2Ff1%2Fab%2Fb7f1ab7e61c542d4a9547e774bae6c15%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1929-11-15,1929-11-15,https://shakespeareandco.princeton.edu/members/gilles-rager/,Roger Gilles,"Gilles, Roger",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1929-11-15,1930-05-15,https://shakespeareandco.princeton.edu/members/suter/,G. V. Suter,"Suter, G. V.",100.00,50.00,6 months,181,1,,1929-11-15,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, G.V. Suter Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/f20608fb-4ece-4fc2-879f-36c8e209048b/manifest,;https://iiif.princeton.edu/loris/figgy_prod/b7%2Ff1%2Fab%2Fb7f1ab7e61c542d4a9547e774bae6c15%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1929-11-16,1930-02-16,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",85.00,,3 months,92,2,,1929-11-16,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,;https://iiif-cloud.princeton.edu/iiif/2/0c%2F23%2F2c%2F0c232c4c11da4ecea57504bef367892a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-11-16,1929-12-17,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,31,,,https://shakespeareandco.princeton.edu/books/green-closed-garden/,The Closed Garden,,"Green, Julien",1928,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/0c%2F23%2F2c%2F0c232c4c11da4ecea57504bef367892a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-11-16,,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/stacpoole-stories-east-west/,Stories East and West: Tales of Men and Women,,"Stacpoole, Henry de Vere",1926,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/0c%2F23%2F2c%2F0c232c4c11da4ecea57504bef367892a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-11-16,1929-11-21,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/christie-partners-crime/,Partners in Crime,,"Christie, Agatha",1929,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/ed%2F69%2F87%2Fed698743ad5641058ccc97f94cdc5360%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-11-17,1930-03-10,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,113,,,https://shakespeareandco.princeton.edu/books/green-dark-journey/,The Dark Journey,,"Green, Julien",1929,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/0c%2F23%2F2c%2F0c232c4c11da4ecea57504bef367892a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-11-18,1929-11-19,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/woolf-room-ones/,A Room of One's Own,,"Woolf, Virginia",1929,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F34%2F0c%2F63340cf78b80443d8baa057c6515d217%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-11-18,1929-11-22,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/bennett-twain/,These Twain,,"Bennett, Arnold",1915,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/bb%2F21%2Ff5%2Fbb21f524e68c45359aed1a0ad2ce69ac%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1929-11-18,1929-12-18,https://shakespeareandco.princeton.edu/members/curtiss-nathaniel/,Nathaniel Curtiss,"Curtiss, Nathaniel",35.00,,1 month,30,2,,1929-09-20,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-11-19,1929-11-21,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/thompson-chariot-wheels/,Chariot Wheels,,"Thompson, Sylvia",1929,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2Fcd%2Ffb%2Ff2cdfb855c9043afa10d6f55cd2332d0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-11-20,1929-11-29,https://shakespeareandco.princeton.edu/members/monnier-j/,J. Monnier,"Monnier, J.",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/wells-love-mr-lewisham/,Love and Mr. Lewisham,,"Wells, H. G.",1900,,Lending Library Card,"Sylvia Beach, J. Monnier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/df9a3d51-011b-4364-82ba-111bc447e7fe/manifest,https://iiif.princeton.edu/loris/figgy_prod/cd%2F38%2F4e%2Fcd384e3666d54ff9b7b986e5f0fe3190%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1929-11-20,1929-12-20,https://shakespeareandco.princeton.edu/members/boyden/,Polly Boyden,"Boyden, Polly",35.00,50.00,1 month,30,1,,1929-11-20,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1929-11-20,1930-02-20,https://shakespeareandco.princeton.edu/members/bloch-jean/,Mme Jean Bloch,"Bloch, Mme Jean",85.00,100.00,3 months,92,2,,1929-11-20,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1929-11-20,1929-12-20,https://shakespeareandco.princeton.edu/members/caparn/,Rhys Caparn,"Caparn, Rhys",20.00,,1 month,30,1,Student,1929-11-20,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1929-11-20,1929-11-20,https://shakespeareandco.princeton.edu/members/olver/,Olver,Olver,,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Purchase,1929-11-20,1929-11-20,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,,,35.00,FRF,https://shakespeareandco.princeton.edu/books/wyss-swiss-family-robinson/,The Swiss Family Robinson,,"Wyss, Johann David",1812,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/b6%2F0b%2F14%2Fb60b14334c334becae48d027d0a1b1a9%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1929-11-20,1929-11-20,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,,,35.00,FRF,https://shakespeareandco.princeton.edu/books/lang-yellow-fairy-book/,Yellow Fairy Book,,"Lang, Andrew",1894,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/b6%2F0b%2F14%2Fb60b14334c334becae48d027d0a1b1a9%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1929-11-20,1929-11-20,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,,,35.00,FRF,https://shakespeareandco.princeton.edu/books/grimm-grimms-fairy-tales/,Grimms' Fairy Tales,,"Grimm, Jacob;Grimm, Wilhelm",1812,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/b6%2F0b%2F14%2Fb60b14334c334becae48d027d0a1b1a9%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1929-11-20,1929-11-20,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,,,87.50,FRF,https://shakespeareandco.princeton.edu/books/jennison-natural-history-animals/,Natural History: Animals,,"Jennison, George",1929,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/b6%2F0b%2F14%2Fb60b14334c334becae48d027d0a1b1a9%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1929-11-20,1929-12-20,https://shakespeareandco.princeton.edu/members/caparn-anne/,Anne Caparn,"Caparn, Anne",20.00,,1 month,30,1,Student,1929-11-20,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-11-21,1929-12-05,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/james-hail-hail/,Hail! All Hail!,,"James, Norah C.",1929,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2Fcd%2Ffb%2Ff2cdfb855c9043afa10d6f55cd2332d0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-11-22,1929-11-25,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/swinnerton-sketch-sinner/,Sketch of a Sinner,,"Swinnerton, Frank",1929,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/bb%2F21%2Ff5%2Fbb21f524e68c45359aed1a0ad2ce69ac%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1929-11-22,1929-11-22,https://shakespeareandco.princeton.edu/members/moore-henry/,Henry L. Moore,"Moore, Henry L.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1929-11-22,1929-11-22,https://shakespeareandco.princeton.edu/members/bloch-jean/,Mme Jean Bloch,"Bloch, Mme Jean",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-11-23,1929-12-06,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/ohiggins-detective-duff-unravels/,Detective Duff Unravels it,,"O'Higgins, Harvey Jerrold",1929,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/ed%2F69%2F87%2Fed698743ad5641058ccc97f94cdc5360%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-11-25,1929-11-28,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/mckenna-saviours-society-first/,The Saviours of Society: Being the First Part of The Realists,,"McKenna, Stephen",1926,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/bb%2F21%2Ff5%2Fbb21f524e68c45359aed1a0ad2ce69ac%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-11-25,1929-12-05,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/mansfield-garden-party-stories/,The Garden Party and Other Stories,,"Mansfield, Katherine",1922,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2F00%2F2c%2Fcb002c24cc9a4d9c8fa834244db6afcc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1929-11-26,1929-11-26,https://shakespeareandco.princeton.edu/members/holdon/,Mr. Holdon,"Holdon, Mr.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-11-26,1929-11-30,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/frank-rahab/,Rahab,,"Frank, Waldo",1922,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/ee%2F79%2Fb9%2Fee79b9f1f5e64724a09ee5b343ebd05a%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1929-11-26,1929-11-26,https://shakespeareandco.princeton.edu/members/ericson-miss/,Miss Ericson,"Ericson, Miss",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1929-11-26,1929-11-26,https://shakespeareandco.princeton.edu/members/steegmuller/,Mr. Steegmuller,"Steegmuller, Mr.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-11-27,1929-12-17,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/pinero-second-mrs-tanqueray/,The Second Mrs. Tanqueray: A Play,,"Pinero, Arthur Wing",1894,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/4e%2F9f%2F1a%2F4e9f1a2ea63348ff8b188a84c5fa487e%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1929-11-27,,https://shakespeareandco.princeton.edu/members/squire/,Squire,Squire,28.00,50.00,,,,Student,1929-11-27,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-11-27,1929-12-17,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/morley-thunder-left/,Thunder on the Left,,"Morley, Christopher",1925,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/4e%2F9f%2F1a%2F4e9f1a2ea63348ff8b188a84c5fa487e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-11-28,1929-12-09,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/napoleon/,Napoleon,,,,"Unidentified. Emil Ludwig's *NapoleΜon,* translated by Eden and Cedar Paul (1926), or Dmitri Merezhkovsky's *Napoleon,* translated by Catherine Zvegintzov (1928).",Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/5c%2F5b%2F3e%2F5c5b3e81f7294acbbb7b06cbba8e32c3%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1929-11-28,1929-11-28,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/woolf-room-ones/,A Room of One's Own,,"Woolf, Virginia",1929,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/5c%2F5b%2F3e%2F5c5b3e81f7294acbbb7b06cbba8e32c3%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-11-28,1929-11-30,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/mckenna-secretary-state/,The Secretary of State,,"McKenna, Stephen",1927,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/bb%2F21%2Ff5%2Fbb21f524e68c45359aed1a0ad2ce69ac%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1929-11-28,1929-11-28,https://shakespeareandco.princeton.edu/members/fairfax-j/,J. Fairfax,"Fairfax, J.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1929-11-28,1930-11-28,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",240.00,,1 year,365,1,,1930-01-15,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/71%2F83%2Fd0%2F7183d02148254c329309776fdbc9659c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-11-29,1929-11-29,https://shakespeareandco.princeton.edu/members/monnier-j/,J. Monnier,"Monnier, J.",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/maugham-casuarina-tree/,The Casuarina Tree: Six Stories,,"Maugham, W. Somerset",1926,,Lending Library Card,"Sylvia Beach, J. Monnier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/df9a3d51-011b-4364-82ba-111bc447e7fe/manifest,https://iiif.princeton.edu/loris/figgy_prod/cd%2F38%2F4e%2Fcd384e3666d54ff9b7b986e5f0fe3190%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1929-11-29,1929-12-29,https://shakespeareandco.princeton.edu/members/davies-8/,Mrs. G. Davies,"Davies, Mrs. G.",70.00,100.00,1 month,30,2,,1929-11-29,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1929-11-29,1929-11-29,https://shakespeareandco.princeton.edu/members/douthorn/,Mme d'Outhorn,"d'Outhorn, Mme",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1929-11-30,1930-02-28,https://shakespeareandco.princeton.edu/members/levinson-2/,Levinson,Levinson,68.00,,3 months,90,2,,1929-11-22,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-11-30,1930-01-04,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,35,,,https://shakespeareandco.princeton.edu/books/huxley-point-counter-point/,Point Counter Point,,"Huxley, Aldous",1928,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/ee%2F79%2Fb9%2Fee79b9f1f5e64724a09ee5b343ebd05a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-11-30,1929-12-14,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/ward-cambridge-history-english/,The Cambridge History of English Literature,"Vol. 2, 1908 The End of the Middle Ages",,,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/95%2Ffa%2Fe5%2F95fae5271318494da776b55040017d19%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-11-30,1929-12-14,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/nicolson-sweet-waters-novel/,Sweet Waters: A Novel,,"Nicolson, Harold George",1928,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/95%2Ffa%2Fe5%2F95fae5271318494da776b55040017d19%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1929-11-30,1929-11-30,https://shakespeareandco.princeton.edu/members/editions-les-revues/,Les Revues,"Revues, Les",,,,,,,,,,,83.75,FRF,https://shakespeareandco.princeton.edu/books/joyce-ulysses/,Ulysses,,"Joyce, James",1922,,Lending Library Card,"Sylvia Beach, Les Revues Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/635618fc-3cbf-4df4-815b-239473c13ab0/manifest,https://iiif.princeton.edu/loris/figgy_prod/d5%2F49%2Fae%2Fd549ae7991414bd7b2115468a42df8b0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1929-11-30,1929-11-30,https://shakespeareandco.princeton.edu/members/wendel/,Hélène de Wendel / Comtesse de Noailles,"de Wendel, Hélène",,,,,,,,,,,350.00,FRF,https://shakespeareandco.princeton.edu/books/schelling-book-elizabethan-lyrics/,A Book of Elizabethan Lyrics,,"Schelling, Felix Emmanuel",1895,,Lending Library Card,"Sylvia Beach, Madame Hélène Wendel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c70e230a-8313-4c53-9939-22beb5f809b6/manifest,https://iiif-cloud.princeton.edu/iiif/2/a6%2Ffc%2F58%2Fa6fc58fc7f8a431481a50269d0073534%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-11-30,1929-12-02,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/mckenna-due-reckoning-third/,Due Reckoning: Being the Third and Last Part of the Realists,,"McKenna, Stephen",1927,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/bb%2F21%2Ff5%2Fbb21f524e68c45359aed1a0ad2ce69ac%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1929-11-30,1929-12-30,https://shakespeareandco.princeton.edu/members/ferester-m/,M. Ferester,"Ferester, M.",32.00,50.00,1 month,30,1,,1929-11-30,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1929-12-02,1929-12-02,https://shakespeareandco.princeton.edu/members/iden-mark/,Mark Iden,"Iden, Mark",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-12-02,1929-12-04,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/aldington-death-hero/,Death of a Hero,,"Aldington, Richard",1929,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/65%2F37%2Fe1%2F6537e1a55c314c93a05c41e992813221%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1929-12-02,1929-12-02,https://shakespeareandco.princeton.edu/members/esty/,Mrs. J. C. Esty,"Esty, Mrs. J. C.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1929-12-02,1929-12-02,https://shakespeareandco.princeton.edu/members/james-olia/,Olia James,"James, Olia",,,,,,,,150.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1929-12-04,1930-03-04,https://shakespeareandco.princeton.edu/members/hoopes-1/,Mrs. Edward Hoopes,"Hoopes, Mrs. Edward",100.00,50.00,3 months,90,1,,1929-12-04,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1929-12-04,1929-12-04,https://shakespeareandco.princeton.edu/members/scott-4/,Scott,Scott,,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1929-12-04,1930-01-04,https://shakespeareandco.princeton.edu/members/birch-vera/,Vera Birch,"Birch, Vera",40.00,50.00,1 month,31,1,,1929-12-04,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-12-04,1929-12-09,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/mckenna-tomorrow-tomorrow-novel/,Tomorrow and Tomorrow: A Novel,,"McKenna, Stephen",1924,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/65%2F37%2Fe1%2F6537e1a55c314c93a05c41e992813221%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1929-12-04,1930-01-04,https://shakespeareandco.princeton.edu/members/kirk-mary/,Mary Kirk,"Kirk, Mary",35.00,,1 month,31,2,Student,1929-12-04,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-12-05,1929-12-18,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/barrie-little-minister/,The Little Minister,,"Barrie, J. M.",1898,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2Fcd%2Ffb%2Ff2cdfb855c9043afa10d6f55cd2332d0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1929-12-05,1929-12-05,https://shakespeareandco.princeton.edu/members/wyndham/,Wyndham,Wyndham,,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-12-05,1929-12-17,https://shakespeareandco.princeton.edu/members/monnier-j/,J. Monnier,"Monnier, J.",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/hardy-jude-obscure/,Jude the Obscure,,"Hardy, Thomas",1895,,Lending Library Card,"Sylvia Beach, J. Monnier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/df9a3d51-011b-4364-82ba-111bc447e7fe/manifest,https://iiif.princeton.edu/loris/figgy_prod/cd%2F38%2F4e%2Fcd384e3666d54ff9b7b986e5f0fe3190%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-12-05,1930-01-04,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,30,,,https://shakespeareandco.princeton.edu/books/hughes-high-wind-jamaica/,A High Wind in Jamaica,,"Hughes, Richard",1929,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2F00%2F2c%2Fcb002c24cc9a4d9c8fa834244db6afcc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1929-12-05,1929-12-05,https://shakespeareandco.princeton.edu/members/percin/,Percin,Percin,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1929-12-05,1930-01-05,https://shakespeareandco.princeton.edu/members/balliett/,C. J. Balliett,"Balliett, Mr. C. J.",40.00,50.00,1 month,31,1,,1929-12-05,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-12-06,1930-01-07,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,32,,,https://shakespeareandco.princeton.edu/books/bronte-wuthering-heights/,Wuthering Heights,,"BrontΓ«, Emily",1847,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/ed%2F69%2F87%2Fed698743ad5641058ccc97f94cdc5360%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1929-12-07,1929-12-07,https://shakespeareandco.princeton.edu/members/taylor-6/,Taylor,Taylor,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-12-07,1929-12-28,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/west-henry-james/,Henry James,,"West, Rebecca",1916,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Fb9%2Fad%2Fccb9adb778e74d51bcd6d04425f9e15d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1929-12-07,1930-06-07,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",80.00,,6 months,182,1,,,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/04%2Fe2%2F7d%2F04e27dc5984c425aa0a7b032458ac1c1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-12-07,1929-12-28,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/james-beast-jungle/,The Beast in the Jungle,,"James, Henry",1915,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Fb9%2Fad%2Fccb9adb778e74d51bcd6d04425f9e15d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-12-07,1929-12-28,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/james-portrait-lady/,The Portrait of a Lady,,"James, Henry",1881,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Fb9%2Fad%2Fccb9adb778e74d51bcd6d04425f9e15d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-12-07,1929-12-18,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/frank-dark-mother/,The Dark Mother,,"Frank, Waldo",1920,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/c7%2F28%2F03%2Fc72803565c4747ee9d5ea39916575ec4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-12-07,1930-01-17,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,41,,,https://shakespeareandco.princeton.edu/books/josephson-zola-time/,Zola and His Time,,"Josephson, Matthew",1928,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/5c%2F5b%2F3e%2F5c5b3e81f7294acbbb7b06cbba8e32c3%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-12-07,1930-01-17,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,41,,,https://shakespeareandco.princeton.edu/books/warner-true-heart/,The True Heart,,"Warner, Sylvia Townsend",1929,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/5c%2F5b%2F3e%2F5c5b3e81f7294acbbb7b06cbba8e32c3%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1929-12-07,1930-01-07,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",70.00,,1 month,31,2,,1929-12-07,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,;https://iiif-cloud.princeton.edu/iiif/2/5c%2F5b%2F3e%2F5c5b3e81f7294acbbb7b06cbba8e32c3%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-12-09,1929-12-11,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/leslie-anglo-catholic-sequel/,The Anglo-Catholic: A Sequel to The Cantab,,"Leslie, Shane",1929,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/65%2F37%2Fe1%2F6537e1a55c314c93a05c41e992813221%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1929-12-10,1930-01-10,https://shakespeareandco.princeton.edu/members/paul-dubois/,Louis Paul-Dubois,"Paul-Dubois, Louis",40.00,50.00,1 month,31,1,,1929-12-10,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1929-12-10,1929-12-10,https://shakespeareandco.princeton.edu/members/walls/,Mrs. C. Walls,"Walls, Mrs. C.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-12-11,1929-12-12,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/kreymborg-new-american-caravan/,The New American Caravan: A Yearbook of American Literature,,,1929,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/65%2F37%2Fe1%2F6537e1a55c314c93a05c41e992813221%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1929-12-11,1929-12-11,https://shakespeareandco.princeton.edu/members/jandel/,J. Jandel,"Jandel, J.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1929-12-12,1929-12-12,https://shakespeareandco.princeton.edu/members/helstein-nadia/,Nadia Helstein,"Helstein, Nadia",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1929-12-12,1929-12-12,https://shakespeareandco.princeton.edu/members/mercer-leigh/,Leigh Mercer,"Mercer, Leigh",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1929-12-12,1929-12-12,https://shakespeareandco.princeton.edu/members/crowell/,W. Crowell,"Crowell, W.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-12-12,1929-12-14,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/hergesheimer-java-head/,Java Head,,"Hergesheimer, Joseph",1918,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/65%2F37%2Fe1%2F6537e1a55c314c93a05c41e992813221%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-12-13,1930-04-03,https://shakespeareandco.princeton.edu/members/suter/,G. V. Suter,"Suter, G. V.",,,,,,,,,Returned,111,,,https://shakespeareandco.princeton.edu/books/lawrence-england-england-stories/,"England, My England and Other Stories",,"Lawrence, D. H.",1922,,Lending Library Card,"Sylvia Beach, G.V. Suter Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f20608fb-4ece-4fc2-879f-36c8e209048b/manifest,https://iiif.princeton.edu/loris/figgy_prod/b7%2Ff1%2Fab%2Fb7f1ab7e61c542d4a9547e774bae6c15%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1929-12-13,1930-12-13,https://shakespeareandco.princeton.edu/members/barney-natalie-clifford/,Natalie Clifford Barney,"Barney, Natalie Clifford",250.00,,1 year,365,2,,1929-12-13,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1929-12-14,1929-12-14,https://shakespeareandco.princeton.edu/members/esty/,Mrs. J. C. Esty,"Esty, Mrs. J. C.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-12-14,1929-12-16,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/hughes-high-wind-jamaica/,A High Wind in Jamaica,,"Hughes, Richard",1929,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/65%2F37%2Fe1%2F6537e1a55c314c93a05c41e992813221%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1929-12-14,1929-12-14,https://shakespeareandco.princeton.edu/members/kirk-mary/,Mary Kirk,"Kirk, Mary",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-12-14,1930-01-17,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,34,,,https://shakespeareandco.princeton.edu/books/nicolson-people/,Some People,,"Nicolson, Harold George",1926,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/95%2Ffa%2Fe5%2F95fae5271318494da776b55040017d19%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-12-14,1930-01-17,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,34,,,https://shakespeareandco.princeton.edu/books/ward-cambridge-history-english/,The Cambridge History of English Literature,"Vol. 5, 1910 The Drama to 1642, Part One",,,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/95%2Ffa%2Fe5%2F95fae5271318494da776b55040017d19%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1929-12-14,1930-02-14,https://shakespeareandco.princeton.edu/members/kennedy-robert-1/,Robert Kennedy,"Kennedy, Robert",100.00,,2 months,62,3,,1929-12-14,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-12-15,1929-12-18,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/van-dine-benson-murder-case/,The Benson Murder Case,,"Van Dine, S. S.",1926,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/65%2F37%2Fe1%2F6537e1a55c314c93a05c41e992813221%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1929-12-16,1929-12-16,https://shakespeareandco.princeton.edu/members/hetherwick-violet/,Violet Hetherwick,"Hetherwick, Violet",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1929-12-16,1930-01-16,https://shakespeareandco.princeton.edu/members/bruce-patrick-henry/,Patrick Henry Bruce / P. H. Bruce,"Bruce, Patrick Henry",40.00,50.00,1 month,31,1,,1929-12-16,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1929-12-16,1930-01-16,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",20.00,,1 month,31,,,1929-12-16,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,;https://iiif.princeton.edu/loris/figgy_prod/63%2F34%2F0c%2F63340cf78b80443d8baa057c6515d217%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1929-12-16,1929-12-16,https://shakespeareandco.princeton.edu/members/johnson-6/,Johnson,Johnson,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-12-16,1929-12-19,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/strachey-elizabeth-essex-tragic/,Elizabeth and Essex: A Tragic History,,"Strachey, Giles Lytton",1928,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F34%2F0c%2F63340cf78b80443d8baa057c6515d217%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-12-17,1929-12-31,https://shakespeareandco.princeton.edu/members/monnier-j/,J. Monnier,"Monnier, J.",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/butler-way-flesh/,The Way of All Flesh,,"Butler, Samuel",1903,,Lending Library Card,"Sylvia Beach, J. Monnier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/df9a3d51-011b-4364-82ba-111bc447e7fe/manifest,https://iiif.princeton.edu/loris/figgy_prod/cd%2F38%2F4e%2Fcd384e3666d54ff9b7b986e5f0fe3190%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-12-17,1930-01-06,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/richmond-times-literary-supplement/,The Times Literary Supplement,"no. 1451, Nov 21, 1929",,,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/4e%2F9f%2F1a%2F4e9f1a2ea63348ff8b188a84c5fa487e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-12-17,1930-01-06,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/obrien-best-short-stories-1928/,The Best Short Stories 1928: And the Yearbook of the American Short Story,,,1928,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/4e%2F9f%2F1a%2F4e9f1a2ea63348ff8b188a84c5fa487e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-12-18,1929-12-24,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/nesbit-babes-wood/,Babes in the Wood,,"Nesbit, Edith",1896,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2Fcd%2Ffb%2Ff2cdfb855c9043afa10d6f55cd2332d0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1929-12-18,1929-12-18,https://shakespeareandco.princeton.edu/members/black-j/,J. Black,"Black, J.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-12-18,1929-12-23,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/frazier-folklore-old-testament/,Folklore in the Old Testament: Studies in Comparative Religion,,"Frazer, James George",1918,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/65%2F37%2Fe1%2F6537e1a55c314c93a05c41e992813221%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-12-18,1930-02-15,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,59,,,https://shakespeareandco.princeton.edu/books/trollope-prime-minister/,The Prime Minister,4 vols.,"Trollope, Anthony",1876,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/c7%2F28%2F03%2Fc72803565c4747ee9d5ea39916575ec4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-12-19,1929-12-24,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/seabrook-magic-island/,The Magic Island,,"Seabrook, William",1929,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F34%2F0c%2F63340cf78b80443d8baa057c6515d217%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1929-12-19,1930-01-19,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,1 month,31,2,,1929-01-09,,,,,,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,;https://iiif-cloud.princeton.edu/iiif/2/12%2Fc0%2F9a%2F12c09a547466442eb8070b17b3423a31%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1929-12-20,1930-12-20,https://shakespeareandco.princeton.edu/members/dyer-louise/,Louise Dyer / Mrs. James Dyer,"Dyer, Louise",240.00,50.00,1 year,365,1,,1929-12-20,,,,,FRF,,,,,,,Logbook;Lending Library Card;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Louise Dyer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/64796425-698e-4f26-8e62-dea45d1d502c/manifest;,;https://iiif.princeton.edu/loris/figgy_prod/a4%2F59%2F36%2Fa45936869ab74ab483df36a3f1e44bb6%2Fintermediate_file.jp2/full/full/0/default.jpg;
+Borrow,1929-12-20,1929-12-24,https://shakespeareandco.princeton.edu/members/dyer-louise/,Louise Dyer / Mrs. James Dyer,"Dyer, Louise",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/woolf-mrs-dalloway/,Mrs. Dalloway,,"Woolf, Virginia",1925,,Lending Library Card,"Sylvia Beach, Louise Dyer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/64796425-698e-4f26-8e62-dea45d1d502c/manifest,https://iiif.princeton.edu/loris/figgy_prod/a4%2F59%2F36%2Fa45936869ab74ab483df36a3f1e44bb6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1929-12-20,1929-12-20,https://shakespeareandco.princeton.edu/members/gieberich-oscar/,Oscar Gieberich,"Gieberich, Oscar",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1929-12-20,1929-12-20,https://shakespeareandco.princeton.edu/members/stokes/,M. Stokes,"Stokes, M.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1929-12-21,1930-01-21,https://shakespeareandco.princeton.edu/members/gosse-emilienne/,Emilienne Gosse,"Gosse, Emilienne",32.00,50.00,1 month,31,1,Student,1929-12-21,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Emilienne Gosse Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/01f2fbfc-845f-4e39-a309-68fa0d514be2/manifest,;https://iiif.princeton.edu/loris/figgy_prod/08%2Fdb%2F87%2F08db87652dd34269aa52b06e1f2cb46e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-12-21,1931-11-19,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,698,,,https://shakespeareandco.princeton.edu/books/a-e-imaginations-reveries/,Imaginations and Reveries,,Γ,1915,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/e0%2F11%2F78%2Fe011789ae91b4941a088b85942d4df17%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-12-21,1929-12-30,https://shakespeareandco.princeton.edu/members/gosse-emilienne/,Emilienne Gosse,"Gosse, Emilienne",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/miscellaneous-pieces/,Miscellaneous Pieces,,,1913,Unidentified. Likely Ralph Waldo Emerson's *Miscellaneous Pieces* (1913).,Lending Library Card,"Sylvia Beach, Emilienne Gosse Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/01f2fbfc-845f-4e39-a309-68fa0d514be2/manifest,https://iiif.princeton.edu/loris/figgy_prod/08%2Fdb%2F87%2F08db87652dd34269aa52b06e1f2cb46e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1929-12-21,1930-01-21,https://shakespeareandco.princeton.edu/members/dessonnes/,Mme Marcel Dessonnes / Mme Dessonnes,"Dessonnes, Mme",32.00,,1 month,31,1,AdL,1929-12-05,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1929-12-23,1930-06-23,https://shakespeareandco.princeton.edu/members/blein/,Blein,Blein,144.00,,6 months,182,1,Student,1929-12-23,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-12-23,1929-12-28,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/thackeray-vanity-fair/,Vanity Fair,,"Thackeray, William Makepeace",1847,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/65%2F37%2Fe1%2F6537e1a55c314c93a05c41e992813221%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-12-24,1929-12-27,https://shakespeareandco.princeton.edu/members/dyer-louise/,Louise Dyer / Mrs. James Dyer,"Dyer, Louise",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/hemingway-farewell-arms/,A Farewell to Arms,,"Hemingway, Ernest",1929,,Lending Library Card,"Sylvia Beach, Louise Dyer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/64796425-698e-4f26-8e62-dea45d1d502c/manifest,https://iiif.princeton.edu/loris/figgy_prod/a4%2F59%2F36%2Fa45936869ab74ab483df36a3f1e44bb6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-12-24,1929-12-28,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/sassoon-memoirs-fox-hunting/,Memoirs of a Fox-Hunting Man,,"Sassoon, Siegfried",1929,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2Fcd%2Ffb%2Ff2cdfb855c9043afa10d6f55cd2332d0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-12-24,1929-12-28,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/hughes-high-wind-jamaica/,A High Wind in Jamaica,,"Hughes, Richard",1929,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F34%2F0c%2F63340cf78b80443d8baa057c6515d217%2Fintermediate_file.jp2/full/full/0/default.jpg
+Generic,1929-12-27,,https://shakespeareandco.princeton.edu/members/crosby-caresse/,Caresse Crosby,"Crosby, Caresse",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/lawrence-escaped-cock/,The Escaped Cock / The Man Who Died,,"Lawrence, D. H.",1929,The Caresse Crosby activities are for the Black Sun Press edition of *The Escaped Cock.*,Lending Library Card,"Sylvia Beach, Caresse Crosby Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d66901cf-3231-4dd3-bb55-d9f5ac9b3a07/manifest,https://iiif-cloud.princeton.edu/iiif/2/55%2Fdf%2F0f%2F55df0f56af144f18a8fda53b034bf4f8%2Fintermediate_file/full/full/0/default.jpg
+Generic,1929-12-27,,https://shakespeareandco.princeton.edu/members/crosby-caresse/,Caresse Crosby,"Crosby, Caresse",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/crosby-sleeping-together-book/,Sleeping Together: A Book of Dreams,no. 59,"Crosby, Harry",1929,,Lending Library Card,"Sylvia Beach, Caresse Crosby Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d66901cf-3231-4dd3-bb55-d9f5ac9b3a07/manifest,https://iiif-cloud.princeton.edu/iiif/2/55%2Fdf%2F0f%2F55df0f56af144f18a8fda53b034bf4f8%2Fintermediate_file/full/full/0/default.jpg
+Generic,1929-12-27,,https://shakespeareandco.princeton.edu/members/crosby-caresse/,Caresse Crosby,"Crosby, Caresse",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/crosby-sleeping-together-book/,Sleeping Together: A Book of Dreams,no. 50,"Crosby, Harry",1929,,Lending Library Card,"Sylvia Beach, Caresse Crosby Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d66901cf-3231-4dd3-bb55-d9f5ac9b3a07/manifest,https://iiif-cloud.princeton.edu/iiif/2/55%2Fdf%2F0f%2F55df0f56af144f18a8fda53b034bf4f8%2Fintermediate_file/full/full/0/default.jpg
+Generic,1929-12-27,,https://shakespeareandco.princeton.edu/members/crosby-caresse/,Caresse Crosby,"Crosby, Caresse",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/crosby-sleeping-together-book/,Sleeping Together: A Book of Dreams,no. 34,"Crosby, Harry",1929,,Lending Library Card,"Sylvia Beach, Caresse Crosby Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d66901cf-3231-4dd3-bb55-d9f5ac9b3a07/manifest,https://iiif-cloud.princeton.edu/iiif/2/55%2Fdf%2F0f%2F55df0f56af144f18a8fda53b034bf4f8%2Fintermediate_file/full/full/0/default.jpg
+Generic,1929-12-27,,https://shakespeareandco.princeton.edu/members/crosby-caresse/,Caresse Crosby,"Crosby, Caresse",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/crosby-sleeping-together-book/,Sleeping Together: A Book of Dreams,no. 33,"Crosby, Harry",1929,,Lending Library Card,"Sylvia Beach, Caresse Crosby Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d66901cf-3231-4dd3-bb55-d9f5ac9b3a07/manifest,https://iiif-cloud.princeton.edu/iiif/2/55%2Fdf%2F0f%2F55df0f56af144f18a8fda53b034bf4f8%2Fintermediate_file/full/full/0/default.jpg
+Generic,1929-12-27,,https://shakespeareandco.princeton.edu/members/crosby-caresse/,Caresse Crosby,"Crosby, Caresse",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/crosby-sleeping-together-book/,Sleeping Together: A Book of Dreams,no. 32,"Crosby, Harry",1929,,Lending Library Card,"Sylvia Beach, Caresse Crosby Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d66901cf-3231-4dd3-bb55-d9f5ac9b3a07/manifest,https://iiif-cloud.princeton.edu/iiif/2/55%2Fdf%2F0f%2F55df0f56af144f18a8fda53b034bf4f8%2Fintermediate_file/full/full/0/default.jpg
+Generic,1929-12-27,,https://shakespeareandco.princeton.edu/members/crosby-caresse/,Caresse Crosby,"Crosby, Caresse",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/lawrence-escaped-cock/,The Escaped Cock / The Man Who Died,,"Lawrence, D. H.",1929,The Caresse Crosby activities are for the Black Sun Press edition of *The Escaped Cock.*,Lending Library Card,"Sylvia Beach, Caresse Crosby Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d66901cf-3231-4dd3-bb55-d9f5ac9b3a07/manifest,https://iiif-cloud.princeton.edu/iiif/2/55%2Fdf%2F0f%2F55df0f56af144f18a8fda53b034bf4f8%2Fintermediate_file/full/full/0/default.jpg
+Generic,1929-12-27,,https://shakespeareandco.princeton.edu/members/crosby-caresse/,Caresse Crosby,"Crosby, Caresse",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/lawrence-escaped-cock/,The Escaped Cock / The Man Who Died,,"Lawrence, D. H.",1929,The Caresse Crosby activities are for the Black Sun Press edition of *The Escaped Cock.*,Lending Library Card,"Sylvia Beach, Caresse Crosby Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d66901cf-3231-4dd3-bb55-d9f5ac9b3a07/manifest,https://iiif-cloud.princeton.edu/iiif/2/55%2Fdf%2F0f%2F55df0f56af144f18a8fda53b034bf4f8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-12-27,1930-01-08,https://shakespeareandco.princeton.edu/members/dyer-louise/,Louise Dyer / Mrs. James Dyer,"Dyer, Louise",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/seabrook-magic-island/,The Magic Island,,"Seabrook, William",1929,,Lending Library Card,"Sylvia Beach, Louise Dyer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/64796425-698e-4f26-8e62-dea45d1d502c/manifest,https://iiif.princeton.edu/loris/figgy_prod/a4%2F59%2F36%2Fa45936869ab74ab483df36a3f1e44bb6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1929-12-28,1929-12-28,https://shakespeareandco.princeton.edu/members/ericson-miss/,Miss Ericson,"Ericson, Miss",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1929-12-28,1930-03-28,https://shakespeareandco.princeton.edu/members/piper/,Piper,Piper,200.00,,3 months,90,2,,1929-12-28,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1929-12-28,1930-01-04,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/sidgwick-six/,Six of Them,,"Sidgwick, Cecily",1929,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2Fcd%2Ffb%2Ff2cdfb855c9043afa10d6f55cd2332d0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1929-12-28,1929-12-28,https://shakespeareandco.princeton.edu/members/brandeis/,F. Brandeis,"Brandeis, F.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-12-28,1930-01-07,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/crofts-inspector-french-cheyne/,Inspector French and the Cheyne Mystery,,"Crofts, Freeman Wills",1926,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/ed%2F69%2F87%2Fed698743ad5641058ccc97f94cdc5360%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-12-28,1930-01-11,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/james-golden-bowl/,The Golden Bowl,2 vols.,"James, Henry",1904,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Fb9%2Fad%2Fccb9adb778e74d51bcd6d04425f9e15d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-12-28,1930-02-01,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,35,,,https://shakespeareandco.princeton.edu/books/james-aspern-papers/,The Aspern Papers,,"James, Henry",1888,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Fb9%2Fad%2Fccb9adb778e74d51bcd6d04425f9e15d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-12-28,1929-12-31,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/bronte-villette/,Villette,,"BrontΓ«, Charlotte",1853,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/65%2F37%2Fe1%2F6537e1a55c314c93a05c41e992813221%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1929-12-28,1930-03-28,https://shakespeareandco.princeton.edu/members/morris-dorothy/,Dorothy Morris,"Morris, Dorothy",100.00,50.00,3 months,90,1,,1929-12-28,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1929-12-28,1930-06-28,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",288.00,,6 months,182,2,,1930-02-05,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/5c%2F5b%2F3e%2F5c5b3e81f7294acbbb7b06cbba8e32c3%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-12-28,1930-01-24,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,27,,,https://shakespeareandco.princeton.edu/books/frazier-golden-bough-study/,The Golden Bough: A Study in Comparative Religion,,"Frazer, James George",1890,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F34%2F0c%2F63340cf78b80443d8baa057c6515d217%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-12-28,1929-12-31,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/march-wild-party/,The Wild Party,,"March, Joseph Moncure",1928,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F34%2F0c%2F63340cf78b80443d8baa057c6515d217%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-12-30,1929-12-31,https://shakespeareandco.princeton.edu/members/gosse-emilienne/,Emilienne Gosse,"Gosse, Emilienne",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/poe-works-edgar-allan/,The Works of Edgar Allan Poe,,"Poe, Edgar Allan",,"Volumes from at least two sets of Poeβs works circulated in the lending library: the 10-volume *The Complete Works of Edgar Allan Poe* (Putnam, 1902) and the 8-volume *The Works of Edgar Allan Poe* (Lippincott, 1906). On April 4, 1924, Mlle Valerio borrowed volume 10 (*Miscellany*) from *The Complete Works,* and on January 21, 1925, volumes 1 and 3 from an unspecified set. M. Rieder borrowed volumes 7 and 8 from an unspecified set. On May 1, 1926, Nathalie Sarraute borrowed *Poeβs Tales.* Anatole Rivoallan borrowed volume 5 (*Poems*) from the *The Works.* Emilienne Gosse borrowed volume 1 from an unspecific set. Natalie Walker borrowed volume 1 (*Tales*) from the *The Works.* Eric Culley borrowed an unspecified volume from an unspecified set. Jeanine (Delpech) Teissier borrowed volumes 2 and 4 (both *Tales*) from *The Works.* On October 18, 1938, Sarraute purchased *Poeβs Tales.* Bianca (Bienenfeld) Lamblin borrowed *Poeβs Poems.*",Lending Library Card,"Sylvia Beach, Emilienne Gosse Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/01f2fbfc-845f-4e39-a309-68fa0d514be2/manifest,https://iiif.princeton.edu/loris/figgy_prod/08%2Fdb%2F87%2F08db87652dd34269aa52b06e1f2cb46e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1929-12-30,1929-12-30,https://shakespeareandco.princeton.edu/members/robertson-william-cowper/,William Cowper Robertson / Rev. W. Cowper Robertson,"Robertson, William Cowper",,,,,,,,,,,30.00,FRF,https://shakespeareandco.princeton.edu/books/aristotle-nicomachean-ethics/,Nicomachean Ethics,,Aristotle,,,Lending Library Card,"Sylvia Beach, W. Cowper Robertson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/33769c35-cdbb-47ab-b0b9-ca17c85798d6/manifest,https://iiif.princeton.edu/loris/figgy_prod/e5%2F5f%2F34%2Fe55f347dfb534162a1de11248ea88470%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1929-12-30,1929-12-30,https://shakespeareandco.princeton.edu/members/davies-8/,Mrs. G. Davies,"Davies, Mrs. G.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Purchase,1929-12-30,1929-12-30,https://shakespeareandco.princeton.edu/members/robertson-william-cowper/,William Cowper Robertson / Rev. W. Cowper Robertson,"Robertson, William Cowper",,,,,,,,,,,30.00,FRF,https://shakespeareandco.princeton.edu/books/aristotle-poetics/,Poetics,,Aristotle,,,Lending Library Card,"Sylvia Beach, W. Cowper Robertson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/33769c35-cdbb-47ab-b0b9-ca17c85798d6/manifest,https://iiif.princeton.edu/loris/figgy_prod/e5%2F5f%2F34%2Fe55f347dfb534162a1de11248ea88470%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1929-12-30,1929-12-30,https://shakespeareandco.princeton.edu/members/walker-3/,Walker,Walker,,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1929-12-31,1930-03-31,https://shakespeareandco.princeton.edu/members/chautemps-marianne/,Marianne Chautemps,"Chautemps, Marianne",80.00,,3 months,90,,,1929-12-31,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1929-12-31,1930-01-10,https://shakespeareandco.princeton.edu/members/monnier-j/,J. Monnier,"Monnier, J.",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/conrad-lord-jim/,Lord Jim,,"Conrad, Joseph",1900,,Lending Library Card,"Sylvia Beach, J. Monnier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/df9a3d51-011b-4364-82ba-111bc447e7fe/manifest,https://iiif.princeton.edu/loris/figgy_prod/cd%2F38%2F4e%2Fcd384e3666d54ff9b7b986e5f0fe3190%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1929-12-31,1930-01-02,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/chesterton-return-don-quixote/,The Return of Don Quixote,,"Chesterton, G. K.",1927,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/65%2F37%2Fe1%2F6537e1a55c314c93a05c41e992813221%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1929-12-31,1930-01-11,https://shakespeareandco.princeton.edu/members/gosse-emilienne/,Emilienne Gosse,"Gosse, Emilienne",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/synge-plays/,Plays,,"Synge, John Millington",,Suzanne Mespoulet borrowed the Tauchnitz edition of Synge's *Plays* (1922).,Lending Library Card,"Sylvia Beach, Emilienne Gosse Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/01f2fbfc-845f-4e39-a309-68fa0d514be2/manifest,https://iiif.princeton.edu/loris/figgy_prod/08%2Fdb%2F87%2F08db87652dd34269aa52b06e1f2cb46e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1929-12-31,1930-06-30,https://shakespeareandco.princeton.edu/members/aeschlimann/,Mme R. Aeschlimann,"Aeschlimann, Mme R.",144.00,,6 months,181,1,,1929-12-31,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1930-01-01,1930-07-01,https://shakespeareandco.princeton.edu/members/creances/,Mlle Creances,"Creances, Mlle",144.00,,6 months,181,1,Professor / Teacher,1929-12-23,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1930-01-02,1930-04-02,https://shakespeareandco.princeton.edu/members/de-caro-anita/;https://shakespeareandco.princeton.edu/members/de-caro-1/,Anita de Caro;Mr. de Caro,"de Caro, Anita;de Caro, Mr.",68.00,,3 months,90,2,,1929-12-21,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1930-01-02,1930-01-04,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/hemingway-farewell-arms/,A Farewell to Arms,,"Hemingway, Ernest",1929,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/65%2F37%2Fe1%2F6537e1a55c314c93a05c41e992813221%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-01-04,1930-01-21,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/mayne-one-grandmothers/,One of Our Grandmothers,,"Mayne, Ethel Colburn",1916,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/ee%2F79%2Fb9%2Fee79b9f1f5e64724a09ee5b343ebd05a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-01-04,1930-01-06,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/james-hail-hail/,Hail! All Hail!,,"James, Norah C.",1929,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2Fcd%2Ffb%2Ff2cdfb855c9043afa10d6f55cd2332d0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-01-04,1930-02-06,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,33,,,https://shakespeareandco.princeton.edu/books/bennett-accident/,Accident,,"Bennett, Arnold",1929,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2F00%2F2c%2Fcb002c24cc9a4d9c8fa834244db6afcc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-01-06,1930-01-22,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/sitwell-man-lost/,The Man Who Lost Himself,,"Sitwell, Osbert",1930,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/4e%2F9f%2F1a%2F4e9f1a2ea63348ff8b188a84c5fa487e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-01-06,1930-01-17,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/pilkington-memoirs-mrs-laetitia/,"Memoirs of Mrs. Laetitia Pilkington, 1712 β 1750",,"Pilkington, Laetitia",1928,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2Fcd%2Ffb%2Ff2cdfb855c9043afa10d6f55cd2332d0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1930-01-07,1930-01-07,https://shakespeareandco.princeton.edu/members/robertson-william-cowper/,William Cowper Robertson / Rev. W. Cowper Robertson,"Robertson, William Cowper",,,,,,,,,,,24.50,FRF,https://shakespeareandco.princeton.edu/books/gissing-town-traveller/,The Town Traveller,,"Gissing, George Robert",1898,,Lending Library Card,"Sylvia Beach, W. Cowper Robertson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/33769c35-cdbb-47ab-b0b9-ca17c85798d6/manifest,https://iiif.princeton.edu/loris/figgy_prod/e5%2F5f%2F34%2Fe55f347dfb534162a1de11248ea88470%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-01-07,1930-01-11,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/arnold-happened-andals/,What Happened at Andals?,,"Arnold, John",1929,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/ed%2F69%2F87%2Fed698743ad5641058ccc97f94cdc5360%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1930-01-08,1931-01-08,https://shakespeareandco.princeton.edu/members/monnier-j/,J. Monnier,"Monnier, J.",240.00,,1 year,365,1,,1930-01-17,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, J. Monnier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/df9a3d51-011b-4364-82ba-111bc447e7fe/manifest,https://iiif.princeton.edu/loris/figgy_prod/cd%2F38%2F4e%2Fcd384e3666d54ff9b7b986e5f0fe3190%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-01-08,1930-01-21,https://shakespeareandco.princeton.edu/members/dyer-louise/,Louise Dyer / Mrs. James Dyer,"Dyer, Louise",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/woolf-jacobs-room/,Jacob's Room,,"Woolf, Virginia",1922,,Lending Library Card,"Sylvia Beach, Louise Dyer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/64796425-698e-4f26-8e62-dea45d1d502c/manifest,https://iiif.princeton.edu/loris/figgy_prod/a4%2F59%2F36%2Fa45936869ab74ab483df36a3f1e44bb6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-01-10,1930-01-22,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/mansfield-letters-katherine-mansfield/,The Letters of Katherine Mansfield,Vol. 1,"Mansfield, Katherine",1928,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/b0%2Ffc%2F7c%2Fb0fc7c5cf0dc424e9e3c282cd129a6be%2Fintermediate_file.jp2/full/full/0/default.jpg
+Generic,1930-01-10,,https://shakespeareandco.princeton.edu/members/crosby-caresse/,Caresse Crosby,"Crosby, Caresse",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/lawrence-escaped-cock/,The Escaped Cock / The Man Who Died,,"Lawrence, D. H.",1929,The Caresse Crosby activities are for the Black Sun Press edition of *The Escaped Cock.*,Lending Library Card,"Sylvia Beach, Caresse Crosby Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d66901cf-3231-4dd3-bb55-d9f5ac9b3a07/manifest,https://iiif-cloud.princeton.edu/iiif/2/55%2Fdf%2F0f%2F55df0f56af144f18a8fda53b034bf4f8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-01-10,1930-01-15,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/beresford-meeting-place-stories/,The Meeting Place and Other Stories,,"Beresford, J. D.",1929,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/b0%2Ffc%2F7c%2Fb0fc7c5cf0dc424e9e3c282cd129a6be%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-01-11,1930-02-01,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/james-wings-dove/,The Wings of the Dove,,"James, Henry",1902,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Fb9%2Fad%2Fccb9adb778e74d51bcd6d04425f9e15d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-01-11,1930-01-15,https://shakespeareandco.princeton.edu/members/gosse-emilienne/,Emilienne Gosse,"Gosse, Emilienne",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/nesbit-babes-wood/,Babes in the Wood,,"Nesbit, Edith",1896,,Lending Library Card,"Sylvia Beach, Emilienne Gosse Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/01f2fbfc-845f-4e39-a309-68fa0d514be2/manifest,https://iiif.princeton.edu/loris/figgy_prod/08%2Fdb%2F87%2F08db87652dd34269aa52b06e1f2cb46e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-01-11,1930-01-16,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/hart-bellamy-trial/,The Bellamy Trial,,"Hart, Frances Noyes",1927,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/7c%2Fc2%2Fca%2F7cc2ca60c7804155b3bc9d1d11727d32%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-01-11,1930-02-01,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/james-little-tour-france/,A Little Tour in France,,"James, Henry",1900,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Fb9%2Fad%2Fccb9adb778e74d51bcd6d04425f9e15d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-01-15,1930-01-24,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/herman-melville/,Herman Melville,,,,Unidentified. By or about Herman Melville.,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/71%2F83%2Fd0%2F7183d02148254c329309776fdbc9659c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-01-15,1930-01-17,https://shakespeareandco.princeton.edu/members/gosse-emilienne/,Emilienne Gosse,"Gosse, Emilienne",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/remarque-quiet-western-front/,All Quiet on the Western Front,,"Remarque, Erich Maria",1929,,Lending Library Card,"Sylvia Beach, Emilienne Gosse Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/01f2fbfc-845f-4e39-a309-68fa0d514be2/manifest,https://iiif.princeton.edu/loris/figgy_prod/08%2Fdb%2F87%2F08db87652dd34269aa52b06e1f2cb46e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-01-15,1930-01-29,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/mansfield-letters-katherine-mansfield/,The Letters of Katherine Mansfield,Vol. 2,"Mansfield, Katherine",1928,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/16%2F9e%2F3d%2F169e3de9faf046a989463efd25e3aef3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Generic,1930-01-16,,https://shakespeareandco.princeton.edu/members/crosby-caresse/,Caresse Crosby,"Crosby, Caresse",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/crosby-sleeping-together-book/,Sleeping Together: A Book of Dreams,,"Crosby, Harry",1929,,Lending Library Card,"Sylvia Beach, Caresse Crosby Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d66901cf-3231-4dd3-bb55-d9f5ac9b3a07/manifest,https://iiif-cloud.princeton.edu/iiif/2/55%2Fdf%2F0f%2F55df0f56af144f18a8fda53b034bf4f8%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1930-01-16,1930-02-16,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",20.00,,1 month,31,1,,1930-01-16,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F34%2F0c%2F63340cf78b80443d8baa057c6515d217%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-01-16,1930-01-17,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/van-dine-benson-murder-case/,The Benson Murder Case,,"Van Dine, S. S.",1926,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/7c%2Fc2%2Fca%2F7cc2ca60c7804155b3bc9d1d11727d32%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-01-16,1930-03-13,https://shakespeareandco.princeton.edu/members/flanner-janet/,Janet Flanner,"Flanner, Janet",,,,,,,,,Returned,56,,,https://shakespeareandco.princeton.edu/books/fournel-rues-vieux-paris/,Les Rues du vieux Paris: Galerie populaire et pittoresque,,"Fournel, Victor",1879,,Lending Library Card,"Sylvia Beach, Janet Flanner Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3c36cd98-f34d-423a-a386-074c68e7cbc4/manifest,https://iiif.princeton.edu/loris/figgy_prod/d8%2Fd8%2Fa5%2Fd8d8a57ec3eb48bd8cd3b51d264a508f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-01-17,1930-01-22,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/aldington-death-hero/,Death of a Hero,,"Aldington, Richard",1929,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/5c%2F5b%2F3e%2F5c5b3e81f7294acbbb7b06cbba8e32c3%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-01-17,1930-02-07,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/ker-form-style-poetry/,Form and Style in Poetry: Lectures and Notes,,"Ker, W. P.",1928,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/95%2Ffa%2Fe5%2F95fae5271318494da776b55040017d19%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-01-17,1930-01-22,https://shakespeareandco.princeton.edu/members/gosse-emilienne/,Emilienne Gosse,"Gosse, Emilienne",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/dreiser-gallery-women/,A Gallery of Women,Vol. 1,"Dreiser, Theodore",1929,,Lending Library Card,"Sylvia Beach, Emilienne Gosse Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/01f2fbfc-845f-4e39-a309-68fa0d514be2/manifest,https://iiif.princeton.edu/loris/figgy_prod/08%2Fdb%2F87%2F08db87652dd34269aa52b06e1f2cb46e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-01-17,1930-01-22,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/seabrook-magic-island/,The Magic Island,,"Seabrook, William",1929,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/5c%2F5b%2F3e%2F5c5b3e81f7294acbbb7b06cbba8e32c3%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-01-17,1930-02-05,https://shakespeareandco.princeton.edu/members/monnier-j/,J. Monnier,"Monnier, J.",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/chesterton-innocence-father-brown/,The Innocence of Father Brown,,"Chesterton, G. K.",1911,,Lending Library Card,"Sylvia Beach, J. Monnier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/df9a3d51-011b-4364-82ba-111bc447e7fe/manifest,https://iiif.princeton.edu/loris/figgy_prod/cd%2F38%2F4e%2Fcd384e3666d54ff9b7b986e5f0fe3190%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-01-17,1930-02-07,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/woolf-mr-bennett-mrs/,Mr. Bennett and Mrs. Brown,,"Woolf, Virginia",1924,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/95%2Ffa%2Fe5%2F95fae5271318494da776b55040017d19%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-01-17,1930-01-18,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/criterion/,The Criterion,"Vol. 9, no. 35, Jan 1930",,,"Renamed *The New Criterion* from January 1926 to January 1927, and *The Monthly Criterion* from May 1927 to March 1928.",Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/95%2Ffa%2Fe5%2F95fae5271318494da776b55040017d19%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-01-17,1930-01-20,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/gilbert-death-four-corners/,Death at Four Corners,,"Gilbert, Anthony",1929,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/7c%2Fc2%2Fca%2F7cc2ca60c7804155b3bc9d1d11727d32%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-01-18,1930-01-20,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/arnim-enchanted-april/,The Enchanted April,,"Arnim, Elizabeth von",1922,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/7c%2Fc2%2Fca%2F7cc2ca60c7804155b3bc9d1d11727d32%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-01-18,1930-02-22,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,35,,,https://shakespeareandco.princeton.edu/books/hall-well-loneliness/,The Well of Loneliness,,"Hall, Radclyffe",1926,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/95%2Ffa%2Fe5%2F95fae5271318494da776b55040017d19%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-01-18,1930-01-22,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/mcneill-moss-love/,That Other Love,,"McNeill-Moss, Geoffrey",1929,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2Fcd%2Ffb%2Ff2cdfb855c9043afa10d6f55cd2332d0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-01-20,1930-01-25,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/arnim-pastors-wife/,The Pastor's Wife,,"Arnim, Elizabeth von",1914,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/7c%2Fc2%2Fca%2F7cc2ca60c7804155b3bc9d1d11727d32%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-01-21,1930-03-06,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,44,,,https://shakespeareandco.princeton.edu/books/swinnerton-sketch-sinner/,Sketch of a Sinner,,"Swinnerton, Frank",1929,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/ee%2F79%2Fb9%2Fee79b9f1f5e64724a09ee5b343ebd05a%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1930-01-21,1930-04-21,https://shakespeareandco.princeton.edu/members/gosse-emilienne/,Emilienne Gosse,"Gosse, Emilienne",80.00,,3 months,90,1,Student,1930-01-22,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Emilienne Gosse Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/01f2fbfc-845f-4e39-a309-68fa0d514be2/manifest,https://iiif.princeton.edu/loris/figgy_prod/08%2Fdb%2F87%2F08db87652dd34269aa52b06e1f2cb46e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-01-21,1930-04-09,https://shakespeareandco.princeton.edu/members/dyer-louise/,Louise Dyer / Mrs. James Dyer,"Dyer, Louise",,,,,,,,,Returned,78,,,https://shakespeareandco.princeton.edu/books/hughes-high-wind-jamaica/,A High Wind in Jamaica,,"Hughes, Richard",1929,,Lending Library Card,"Sylvia Beach, Louise Dyer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/64796425-698e-4f26-8e62-dea45d1d502c/manifest,https://iiif.princeton.edu/loris/figgy_prod/a4%2F59%2F36%2Fa45936869ab74ab483df36a3f1e44bb6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-01-22,1930-01-23,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/galsworthy-two-forsyte-interludes/,Two Forsyte Interludes (The Forsyte Saga),,"Galsworthy, John",1927,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/16%2F9e%2F3d%2F169e3de9faf046a989463efd25e3aef3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-01-22,1930-02-05,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/hemingway-farewell-arms/,A Farewell to Arms,,"Hemingway, Ernest",1929,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/5c%2F5b%2F3e%2F5c5b3e81f7294acbbb7b06cbba8e32c3%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-01-22,1930-01-27,https://shakespeareandco.princeton.edu/members/gosse-emilienne/,Emilienne Gosse,"Gosse, Emilienne",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/obrien-best-short-stories-1929/,The Best Short Stories of 1929: And the Yearbook of the American Short Story,,,1929,,Lending Library Card,"Sylvia Beach, Emilienne Gosse Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/01f2fbfc-845f-4e39-a309-68fa0d514be2/manifest,https://iiif.princeton.edu/loris/figgy_prod/08%2Fdb%2F87%2F08db87652dd34269aa52b06e1f2cb46e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-01-22,1930-02-05,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/james-portrait-lady/,The Portrait of a Lady,,"James, Henry",1881,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/5c%2F5b%2F3e%2F5c5b3e81f7294acbbb7b06cbba8e32c3%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-01-22,1930-03-03,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,40,,,https://shakespeareandco.princeton.edu/books/connington-nemesis-raynham-parva/,Nemesis at Raynham Parva,,"Connington, J. J.",1929,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/4e%2F9f%2F1a%2F4e9f1a2ea63348ff8b188a84c5fa487e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-01-22,1930-01-24,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/adams-flagrant-years/,The Flagrant Years,,"Adams, Samuel Hopkins",1929,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2Fcd%2Ffb%2Ff2cdfb855c9043afa10d6f55cd2332d0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1930-01-23,1930-04-23,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,3 months,90,,,1930-01-23,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/16%2F9e%2F3d%2F169e3de9faf046a989463efd25e3aef3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-01-23,1930-01-27,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/mirrlees-lud-mist/,Lud-in-the-Mist,,"Mirrlees, Hope",1927,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/16%2F9e%2F3d%2F169e3de9faf046a989463efd25e3aef3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-01-23,1930-01-24,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/firbank-flower-beneath-foot/,The Flower Beneath the Foot: Being a Record of the Early Life of St. Laura de Nazianzi and the Times in Which She Lived,,"Firbank, Ronald",1923,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F34%2F0c%2F63340cf78b80443d8baa057c6515d217%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-01-24,1930-02-05,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/smith-famous-trials-history/,Famous Trials of History,,"Smith, F. E., Earl of Birkenhead",1926,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F34%2F0c%2F63340cf78b80443d8baa057c6515d217%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-01-24,1930-01-30,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/dreiser-american-tragedy/,An American Tragedy,,"Dreiser, Theodore",1925,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/71%2F83%2Fd0%2F7183d02148254c329309776fdbc9659c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-01-24,1930-01-29,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/aldington-death-hero/,Death of a Hero,,"Aldington, Richard",1929,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2Fcd%2Ffb%2Ff2cdfb855c9043afa10d6f55cd2332d0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1930-01-25,1930-02-25,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",40.00,,1 month,31,1,,1930-01-25,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/ff%2F5a%2Fdb%2Fff5adb39fae044aba6169aba6526ec65%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-01-25,1930-01-28,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/connington-tragedy-ravensthorpe/,The Tragedy at Ravensthorpe,,"Connington, J. J.",1927,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/7c%2Fc2%2Fca%2F7cc2ca60c7804155b3bc9d1d11727d32%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-01-25,1930-01-27,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/austen-pride-prejudice/,Pride and Prejudice,,"Austen, Jane",1813,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/ff%2F5a%2Fdb%2Fff5adb39fae044aba6169aba6526ec65%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1930-01-25,1930-02-25,https://shakespeareandco.princeton.edu/members/foster-ruth/,Ruth Foster,"Foster, Ruth",80.00,,1 month,31,2,,1929-12-18,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1930-01-27,1930-02-06,https://shakespeareandco.princeton.edu/members/gosse-emilienne/,Emilienne Gosse,"Gosse, Emilienne",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/renn-war/,War,,"Renn, Ludwig",1929,,Lending Library Card,"Sylvia Beach, Emilienne Gosse Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/01f2fbfc-845f-4e39-a309-68fa0d514be2/manifest,https://iiif.princeton.edu/loris/figgy_prod/08%2Fdb%2F87%2F08db87652dd34269aa52b06e1f2cb46e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-01-27,1930-01-29,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/mencken-book-prefaces/,A Book of Prefaces,,"Mencken, H. L.",1917,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/16%2F9e%2F3d%2F169e3de9faf046a989463efd25e3aef3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-01-27,1930-01-29,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/scott-heart-midlothian/,The Heart of Midlothian,,"Scott, Walter",1818,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/ff%2F5a%2Fdb%2Fff5adb39fae044aba6169aba6526ec65%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-01-28,1930-02-01,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/christie-mystery-blue-train/,The Mystery of the Blue Train,,"Christie, Agatha",1928,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/7c%2Fc2%2Fca%2F7cc2ca60c7804155b3bc9d1d11727d32%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-01-29,1930-02-03,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/harris-contemporary-portraits/,Contemporary Portraits,,"Harris, Frank",1915,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/16%2F9e%2F3d%2F169e3de9faf046a989463efd25e3aef3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-01-29,1930-01-31,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/hughes-high-wind-jamaica/,A High Wind in Jamaica,,"Hughes, Richard",1929,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2Fcd%2Ffb%2Ff2cdfb855c9043afa10d6f55cd2332d0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-01-29,1930-01-31,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/galsworthy-forsyte-saga/,The Forsyte Saga,,"Galsworthy, John",1922,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/ff%2F5a%2Fdb%2Fff5adb39fae044aba6169aba6526ec65%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-01-30,1930-02-01,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/hemingway-farewell-arms/,A Farewell to Arms,,"Hemingway, Ernest",1929,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/71%2F83%2Fd0%2F7183d02148254c329309776fdbc9659c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-01-31,1930-02-12,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/new-russia/,New Russia,,,,Unidentified. Leslie Haden Guest's *The New Russia* (1925) or Dorothy Thompson's *The New Russia* (1928).,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/ff%2F5a%2Fdb%2Fff5adb39fae044aba6169aba6526ec65%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-01-31,1930-02-08,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/dahlberg-bottom-dogs/,Bottom Dogs,,"Dahlberg, Edward",1929,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2Fcd%2Ffb%2Ff2cdfb855c9043afa10d6f55cd2332d0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-02-01,1930-07-25,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,174,,,https://shakespeareandco.princeton.edu/books/malory-morte-darthur/,Le Morte d'Arthur,,"Malory, Thomas",1485,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/71%2F83%2Fd0%2F7183d02148254c329309776fdbc9659c%2Fintermediate_file/full/full/0/default.jpg
+Generic,1930-02-01,,https://shakespeareandco.princeton.edu/members/crosby-caresse/,Caresse Crosby,"Crosby, Caresse",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/boyle-short-stories/,Short Stories,,"Boyle, Kay",1929,Published by Black Sun Press.,Lending Library Card,"Sylvia Beach, Caresse Crosby Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d66901cf-3231-4dd3-bb55-d9f5ac9b3a07/manifest,https://iiif-cloud.princeton.edu/iiif/2/55%2Fdf%2F0f%2F55df0f56af144f18a8fda53b034bf4f8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-02-01,1930-02-08,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/masterman-2-lo/,2 Lo,,"Masterman, Walter Sydney",1928,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/7c%2Fc2%2Fca%2F7cc2ca60c7804155b3bc9d1d11727d32%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-02-01,1930-02-22,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/james-maisie-knew/,What Maisie Knew,,"James, Henry",1897,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/90%2Fd9%2Fa8%2F90d9a8306f194f94a3476fc1821b94a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Generic,1930-02-01,,https://shakespeareandco.princeton.edu/members/crosby-caresse/,Caresse Crosby,"Crosby, Caresse",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/crosby-sleeping-together-book/,Sleeping Together: A Book of Dreams,,"Crosby, Harry",1929,,Lending Library Card,"Sylvia Beach, Caresse Crosby Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d66901cf-3231-4dd3-bb55-d9f5ac9b3a07/manifest,https://iiif-cloud.princeton.edu/iiif/2/55%2Fdf%2F0f%2F55df0f56af144f18a8fda53b034bf4f8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-02-03,1930-02-05,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/gosse-diversions-man-letters/,Some Diversions of a Man of Letters,,"Gosse, Edmund",1919,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/16%2F9e%2F3d%2F169e3de9faf046a989463efd25e3aef3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1930-02-04,1930-02-04,https://shakespeareandco.princeton.edu/members/mellera-3/,Mellera,Mellera,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1930-02-05,1930-04-15,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,69,,,https://shakespeareandco.princeton.edu/books/sitwell-man-lost/,The Man Who Lost Himself,,"Sitwell, Osbert",1930,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/5c%2F5b%2F3e%2F5c5b3e81f7294acbbb7b06cbba8e32c3%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-02-05,1930-02-17,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/dreiser-hey-rub-dub/,Hey Rub-a-Dub-Dub: A Book of the Mystery and Wonder and Terror of Life,,"Dreiser, Theodore",1920,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/16%2F9e%2F3d%2F169e3de9faf046a989463efd25e3aef3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-02-05,1930-02-14,https://shakespeareandco.princeton.edu/members/monnier-j/,J. Monnier,"Monnier, J.",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/bronte-jane-eyre/,Jane Eyre,,"BrontΓ«, Charlotte",1847,,Lending Library Card,"Sylvia Beach, J. Monnier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/df9a3d51-011b-4364-82ba-111bc447e7fe/manifest,https://iiif.princeton.edu/loris/figgy_prod/cd%2F38%2F4e%2Fcd384e3666d54ff9b7b986e5f0fe3190%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-02-05,1930-02-11,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/lawrence-lady-chatterleys-lover/,Lady Chatterley's Lover,,"Lawrence, D. H.",1928,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F34%2F0c%2F63340cf78b80443d8baa057c6515d217%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-02-05,1930-03-17,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,40,,,https://shakespeareandco.princeton.edu/books/exagmination-round-factification/,Our Exagmination Round His Factification for Incamination of Work in Progress,,"Beckett, Samuel;Brion, Marcel;Budgen, Frank;Gilbert, Stuart;Jolas, Eugene;Llona, Victor;McAlmon, Robert;MacGreevy, Thomas;Paul, Elliot;Rodker, John;Sage, Robert D.;Williams, William Carlos;Slingsby, G. V. L.;Dixon, Vladimir",1929,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/16%2F9e%2F3d%2F169e3de9faf046a989463efd25e3aef3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-02-06,1930-02-13,https://shakespeareandco.princeton.edu/members/gosse-emilienne/,Emilienne Gosse,"Gosse, Emilienne",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/dawson-scott-twenty-seven-humorous/,Twenty-Seven Humorous Tales,,,1926,,Lending Library Card,"Sylvia Beach, Emilienne Gosse Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/01f2fbfc-845f-4e39-a309-68fa0d514be2/manifest,https://iiif.princeton.edu/loris/figgy_prod/08%2Fdb%2F87%2F08db87652dd34269aa52b06e1f2cb46e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-02-06,1930-02-27,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/frank-new-years-eve/,New Year's Eve: A Play,,"Frank, Waldo",1929,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2F00%2F2c%2Fcb002c24cc9a4d9c8fa834244db6afcc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-02-07,1930-02-22,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/greig-scheherazade-future-english/,"Scheherazade: Or, the Future of the English Novel",,"Greig, J. Y. T.",1928,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/95%2Ffa%2Fe5%2F95fae5271318494da776b55040017d19%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-02-08,1930-02-13,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/maugham-human-bondage/,Of Human Bondage,,"Maugham, W. Somerset",1915,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/7c%2Fc2%2Fca%2F7cc2ca60c7804155b3bc9d1d11727d32%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-02-08,1930-02-18,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/harris-contemporary-portraits/,Contemporary Portraits,,"Harris, Frank",1915,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2Fcd%2Ffb%2Ff2cdfb855c9043afa10d6f55cd2332d0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-02-11,1930-02-13,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/lawrence-pornography-obscenity/,Pornography and Obscenity,,"Lawrence, D. H.",1929,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F34%2F0c%2F63340cf78b80443d8baa057c6515d217%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-02-11,1930-02-18,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/aldington-death-hero/,Death of a Hero,,"Aldington, Richard",1929,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F34%2F0c%2F63340cf78b80443d8baa057c6515d217%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-02-12,1930-02-13,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/lewisohn-mid-channel-american/,Mid-Channel: An American Chronicle,,"Lewisohn, Ludwig",1929,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/ff%2F5a%2Fdb%2Fff5adb39fae044aba6169aba6526ec65%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-02-13,1930-02-19,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/untermeyer-modern-american-poetry/,Modern American Poetry: An Introduction,,,1919,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/ff%2F5a%2Fdb%2Fff5adb39fae044aba6169aba6526ec65%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-02-13,1930-02-18,https://shakespeareandco.princeton.edu/members/gosse-emilienne/,Emilienne Gosse,"Gosse, Emilienne",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/maugham-human-bondage/,Of Human Bondage,,"Maugham, W. Somerset",1915,,Lending Library Card,"Sylvia Beach, Emilienne Gosse Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/01f2fbfc-845f-4e39-a309-68fa0d514be2/manifest,https://iiif.princeton.edu/loris/figgy_prod/08%2Fdb%2F87%2F08db87652dd34269aa52b06e1f2cb46e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-02-13,1930-02-24,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/sayers-unpleasantness-bellona-club/,The Unpleasantness at the Bellona Club,,"Sayers, Dorothy L.",1928,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/7c%2Fc2%2Fca%2F7cc2ca60c7804155b3bc9d1d11727d32%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-02-14,1930-03-11,https://shakespeareandco.princeton.edu/members/monnier-j/,J. Monnier,"Monnier, J.",,,,,,,,,Returned,25,,,https://shakespeareandco.princeton.edu/books/chesterton-man-thursday/,The Man Who Was Thursday,,"Chesterton, G. K.",1908,,Lending Library Card,"Sylvia Beach, J. Monnier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/df9a3d51-011b-4364-82ba-111bc447e7fe/manifest,https://iiif.princeton.edu/loris/figgy_prod/cd%2F38%2F4e%2Fcd384e3666d54ff9b7b986e5f0fe3190%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-02-14,1930-02-27,https://shakespeareandco.princeton.edu/members/solano/,Solita Solano,"Solano, Solita",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/whitehead-process-reality/,Process and Reality,,"Whitehead, Alfred North",1929,,Lending Library Card,"Sylvia Beach, Solita Solano Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ae91e41-ccc0-4df6-9150-63a893d8d633/manifest,https://iiif.princeton.edu/loris/figgy_prod/ec%2F0a%2F8f%2Fec0a8f2c51534c21948ffd2e4c0054d2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-02-15,1930-02-21,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/kaye-smith-village-doctor/,The Village Doctor,,"Kaye-Smith, Sheila",1929,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/c7%2F28%2F03%2Fc72803565c4747ee9d5ea39916575ec4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-02-15,1930-03-01,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/james-lesson-master/,The Lesson of the Master,,"James, Henry",1888,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/90%2Fd9%2Fa8%2F90d9a8306f194f94a3476fc1821b94a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1930-02-16,1930-04-23,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",100.00,,"2 months, 7 days",66,1,,1930-03-14,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/0c%2F23%2F2c%2F0c232c4c11da4ecea57504bef367892a%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1930-02-16,1930-03-16,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",20.00,,1 month,28,1,,1930-02-18,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/fa%2F5f%2Fff%2Ffa5fff9082334e3a8927578d40e58135%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-02-17,1930-03-04,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/mansfield-journal-katherine-mansfield/,The Journal of Katherine Mansfield,,"Mansfield, Katherine",1927,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/16%2F9e%2F3d%2F169e3de9faf046a989463efd25e3aef3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-02-18,1930-02-25,https://shakespeareandco.princeton.edu/members/gosse-emilienne/,Emilienne Gosse,"Gosse, Emilienne",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/nichols-star-spangled-manner/,The Star-Spangled Manner,,"Nichols, Beverley",1928,,Lending Library Card,"Sylvia Beach, Emilienne Gosse Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/01f2fbfc-845f-4e39-a309-68fa0d514be2/manifest,https://iiif.princeton.edu/loris/figgy_prod/08%2Fdb%2F87%2F08db87652dd34269aa52b06e1f2cb46e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-02-18,1930-02-21,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/hemingway-farewell-arms/,A Farewell to Arms,,"Hemingway, Ernest",1929,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2Fcd%2Ffb%2Ff2cdfb855c9043afa10d6f55cd2332d0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-02-18,1930-02-25,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/mansfield-garden-party-stories/,The Garden Party and Other Stories,,"Mansfield, Katherine",1922,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/63%2F34%2F0c%2F63340cf78b80443d8baa057c6515d217%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-02-19,1930-03-05,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/dewey-quest-certainty-study/,The Quest for Certainty: A Study of the Relation of Knowledge and Action,,"Dewey, John",1929,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/ff%2F5a%2Fdb%2Fff5adb39fae044aba6169aba6526ec65%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-02-21,1930-02-25,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/hoult-time-gentlemen-time/,Time Gentlemen! Time!,,"Hoult, Norah",1930,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0f%2F9c%2Fb4%2F0f9cb4ea84364dde8a4e4e83427281c5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-02-21,1930-03-07,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/wells-king-king/,The King Who Was a King,,"Wells, H. G.",1929,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/c7%2F28%2F03%2Fc72803565c4747ee9d5ea39916575ec4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-02-22,1930-03-15,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/twain-adventures-huckleberry-finn/,The Adventures of Huckleberry Finn,,"Twain, Mark",1884,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/90%2Fd9%2Fa8%2F90d9a8306f194f94a3476fc1821b94a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-02-22,1930-03-14,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/woolf-common-reader/,The Common Reader,,"Woolf, Virginia",1925,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/95%2Ffa%2Fe5%2F95fae5271318494da776b55040017d19%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-02-22,1930-03-14,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/bradley-oxford-lectures-poetry/,Oxford Lectures on Poetry,,"Bradley, A. C.",1909,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/95%2Ffa%2Fe5%2F95fae5271318494da776b55040017d19%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-02-22,1930-03-01,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/james-letters-william-james/,The Letters of William James,,"James, William",1920,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/90%2Fd9%2Fa8%2F90d9a8306f194f94a3476fc1821b94a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-02-24,1930-02-28,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/vorse-second-cabin/,Second Cabin,,"Vorse, Mary Heaton",1928,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/7c%2Fc2%2Fca%2F7cc2ca60c7804155b3bc9d1d11727d32%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-02-25,1930-02-26,https://shakespeareandco.princeton.edu/members/gosse-emilienne/,Emilienne Gosse,"Gosse, Emilienne",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/oneill-beyond-horizon/,Beyond the Horizon,,"O'Neill, Eugene",1920,,Lending Library Card,"Sylvia Beach, Emilienne Gosse Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/01f2fbfc-845f-4e39-a309-68fa0d514be2/manifest,https://iiif.princeton.edu/loris/figgy_prod/08%2Fdb%2F87%2F08db87652dd34269aa52b06e1f2cb46e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-02-25,1930-03-01,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/stewart-father-william-story/,Father William: A Story of Father and Son,,"Stewart, Donald Ogden",1929,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0f%2F9c%2Fb4%2F0f9cb4ea84364dde8a4e4e83427281c5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1930-02-25,1930-03-25,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",40.00,,1 month,28,1,,1930-03-05,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/ff%2F5a%2Fdb%2Fff5adb39fae044aba6169aba6526ec65%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-02-25,1930-02-27,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/dahlberg-bottom-dogs/,Bottom Dogs,,"Dahlberg, Edward",1929,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/fa%2F5f%2Fff%2Ffa5fff9082334e3a8927578d40e58135%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-02-26,1930-03-03,https://shakespeareandco.princeton.edu/members/gosse-emilienne/,Emilienne Gosse,"Gosse, Emilienne",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/hamsun-chapter-last/,Chapter the Last,,"Hamsun, Knut",1930,,Lending Library Card,"Sylvia Beach, Emilienne Gosse Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/01f2fbfc-845f-4e39-a309-68fa0d514be2/manifest,https://iiif.princeton.edu/loris/figgy_prod/08%2Fdb%2F87%2F08db87652dd34269aa52b06e1f2cb46e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-02-27,1930-03-06,https://shakespeareandco.princeton.edu/members/solano/,Solita Solano,"Solano, Solita",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/cecil-stricken-deer-life/,"The Stricken Deer: Or, the Life of William Cowper",,"Cecil, David",1929,,Lending Library Card,"Sylvia Beach, Solita Solano Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ae91e41-ccc0-4df6-9150-63a893d8d633/manifest,https://iiif.princeton.edu/loris/figgy_prod/ec%2F0a%2F8f%2Fec0a8f2c51534c21948ffd2e4c0054d2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-02-27,1930-04-11,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,43,,,https://shakespeareandco.princeton.edu/books/joyce-portrait-artist-young/,A Portrait of the Artist as a Young Man,,"Joyce, James",1916,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2F00%2F2c%2Fcb002c24cc9a4d9c8fa834244db6afcc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-02-27,1930-03-06,https://shakespeareandco.princeton.edu/members/solano/,Solita Solano,"Solano, Solita",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/seabrook-magic-island/,The Magic Island,,"Seabrook, William",1929,,Lending Library Card,"Sylvia Beach, Solita Solano Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ae91e41-ccc0-4df6-9150-63a893d8d633/manifest,https://iiif.princeton.edu/loris/figgy_prod/ec%2F0a%2F8f%2Fec0a8f2c51534c21948ffd2e4c0054d2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-02-27,1930-03-03,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/beasley-first-thirty-years/,My First Thirty Years,,"Beasley, Gertrude",1925,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/fa%2F5f%2Fff%2Ffa5fff9082334e3a8927578d40e58135%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-02-28,1930-03-05,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/bennett-accident/,Accident,,"Bennett, Arnold",1929,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/7c%2Fc2%2Fca%2F7cc2ca60c7804155b3bc9d1d11727d32%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-03-01,1930-04-26,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,56,,,https://shakespeareandco.princeton.edu/books/thackeray-history-henry-esmond/,"The History of Henry Esmond, Esq., a Colonel in the Service of Her Majesty Queen Anne",,"Thackeray, William Makepeace",1852,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/90%2Fd9%2Fa8%2F90d9a8306f194f94a3476fc1821b94a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-03-01,1930-03-08,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/priestley-good-companions/,The Good Companions,,"Priestley, J. B.",1929,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0f%2F9c%2Fb4%2F0f9cb4ea84364dde8a4e4e83427281c5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-03-03,1930-03-11,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/obrien-best-short-stories-1929/,The Best Short Stories of 1929: And the Yearbook of the American Short Story,,,1929,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/4e%2F9f%2F1a%2F4e9f1a2ea63348ff8b188a84c5fa487e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-03-03,1930-03-17,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/mansfield-bliss-short-stories/,Bliss and Other Stories,,"Mansfield, Katherine",1920,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/fa%2F5f%2Fff%2Ffa5fff9082334e3a8927578d40e58135%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-03-03,1930-03-11,https://shakespeareandco.princeton.edu/members/gosse-emilienne/,Emilienne Gosse,"Gosse, Emilienne",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/dreiser-gallery-women/,A Gallery of Women,Vol. 2,"Dreiser, Theodore",1929,,Lending Library Card,"Sylvia Beach, Emilienne Gosse Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/01f2fbfc-845f-4e39-a309-68fa0d514be2/manifest,https://iiif.princeton.edu/loris/figgy_prod/08%2Fdb%2F87%2F08db87652dd34269aa52b06e1f2cb46e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-03-04,1930-03-11,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/lawrence-trespasser/,The Trespasser,,"Lawrence, D. H.",1912,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/16%2F9e%2F3d%2F169e3de9faf046a989463efd25e3aef3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1930-03-05,1931-03-05,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",240.00,,1 year,365,1,,1930-05-09,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2F00%2F2c%2Fcb002c24cc9a4d9c8fa834244db6afcc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-03-05,1930-03-06,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/eliot-lancelot-andrewes-essays/,For Lancelot Andrewes: Essays on Style and Order,,"Eliot, T. S.",1928,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/ff%2F5a%2Fdb%2Fff5adb39fae044aba6169aba6526ec65%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-03-05,1930-03-12,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/maugham-painted-veil/,The Painted Veil,,"Maugham, W. Somerset",1925,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/7c%2Fc2%2Fca%2F7cc2ca60c7804155b3bc9d1d11727d32%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-03-06,1930-03-13,https://shakespeareandco.princeton.edu/members/solano/,Solita Solano,"Solano, Solita",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/strachey-books-characters-french/,"Books and Characters, French and English",,"Strachey, Giles Lytton",1922,,Lending Library Card,"Sylvia Beach, Solita Solano Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ae91e41-ccc0-4df6-9150-63a893d8d633/manifest,https://iiif.princeton.edu/loris/figgy_prod/ec%2F0a%2F8f%2Fec0a8f2c51534c21948ffd2e4c0054d2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-03-06,1930-04-05,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,30,,,https://shakespeareandco.princeton.edu/books/warner-lolly-willowes/,Lolly Willowes,,"Warner, Sylvia Townsend",1926,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/ee%2F79%2Fb9%2Fee79b9f1f5e64724a09ee5b343ebd05a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-03-06,1930-03-13,https://shakespeareandco.princeton.edu/members/solano/,Solita Solano,"Solano, Solita",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/zola/,Zola,,,,Unidentified. By or about Γmile Zola.,Lending Library Card,"Sylvia Beach, Solita Solano Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ae91e41-ccc0-4df6-9150-63a893d8d633/manifest,https://iiif.princeton.edu/loris/figgy_prod/ec%2F0a%2F8f%2Fec0a8f2c51534c21948ffd2e4c0054d2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-03-06,1930-03-07,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/ellis-dance-life/,The Dance of Life,,"Ellis, Havelock",1923,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/ff%2F5a%2Fdb%2Fff5adb39fae044aba6169aba6526ec65%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-03-06,1930-03-13,https://shakespeareandco.princeton.edu/members/solano/,Solita Solano,"Solano, Solita",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/brandon-nighthawks/,Nighthawks!,,"Brandon, John G.",1929,,Lending Library Card,"Sylvia Beach, Solita Solano Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ae91e41-ccc0-4df6-9150-63a893d8d633/manifest,https://iiif.princeton.edu/loris/figgy_prod/ec%2F0a%2F8f%2Fec0a8f2c51534c21948ffd2e4c0054d2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-03-07,1930-03-29,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/lewis-dodsworth/,Dodsworth,,"Lewis, Sinclair",1929,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/c7%2F28%2F03%2Fc72803565c4747ee9d5ea39916575ec4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-03-07,1930-03-13,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/moore-conversations-ebury-street/,Conversations in Ebury Street,,"Moore, George",1910,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/ff%2F5a%2Fdb%2Fff5adb39fae044aba6169aba6526ec65%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-03-08,1930-03-13,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/seabrook-magic-island/,The Magic Island,,"Seabrook, William",1929,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0f%2F9c%2Fb4%2F0f9cb4ea84364dde8a4e4e83427281c5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-03-11,1930-03-17,https://shakespeareandco.princeton.edu/members/gosse-emilienne/,Emilienne Gosse,"Gosse, Emilienne",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/dickens-posthumous-papers-pickwick/,The Posthumous Papers of the Pickwick Club,Vol. 1,"Dickens, Charles",1867,,Lending Library Card,"Sylvia Beach, Emilienne Gosse Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/01f2fbfc-845f-4e39-a309-68fa0d514be2/manifest,https://iiif.princeton.edu/loris/figgy_prod/08%2Fdb%2F87%2F08db87652dd34269aa52b06e1f2cb46e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-03-11,1930-03-31,https://shakespeareandco.princeton.edu/members/monnier-j/,J. Monnier,"Monnier, J.",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/meredith-diana-crossways/,Diana of the Crossways,,"Meredith, George",1885,,Lending Library Card,"Sylvia Beach, J. Monnier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/df9a3d51-011b-4364-82ba-111bc447e7fe/manifest,https://iiif.princeton.edu/loris/figgy_prod/cd%2F38%2F4e%2Fcd384e3666d54ff9b7b986e5f0fe3190%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-03-11,1930-03-20,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/swinnerton-sketch-sinner/,Sketch of a Sinner,,"Swinnerton, Frank",1929,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/4e%2F9f%2F1a%2F4e9f1a2ea63348ff8b188a84c5fa487e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-03-12,1930-03-31,https://shakespeareandco.princeton.edu/members/pfeiffer-virginia/,Virginia Pfeiffer,"Pfeiffer, Virginia",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/merezhkovsky-death-gods/,The Death of the Gods,,"Merezhkovsky, Dmitry",1929,,Lending Library Card,"Sylvia Beach, Virginia Pfeiffer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5f9e74fc-c06a-4c36-a2d1-878b8fce2cd2/manifest,https://iiif.princeton.edu/loris/figgy_prod/6f%2F67%2Fe2%2F6f67e29939464801800978b3b657885b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1930-03-12,1930-04-12,https://shakespeareandco.princeton.edu/members/pfeiffer-virginia/,Virginia Pfeiffer,"Pfeiffer, Virginia",80.00,,1 month,31,2,,1930-03-12,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Virginia Pfeiffer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5f9e74fc-c06a-4c36-a2d1-878b8fce2cd2/manifest,https://iiif.princeton.edu/loris/figgy_prod/6f%2F67%2Fe2%2F6f67e29939464801800978b3b657885b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-03-12,1930-04-03,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/galsworthy-silver-spoon/,The Silver Spoon (A Modern Comedy),,"Galsworthy, John",1926,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/7c%2Fc2%2Fca%2F7cc2ca60c7804155b3bc9d1d11727d32%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-03-12,1930-04-03,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/galsworthy-white-monkey/,The White Monkey (A Modern Comedy),,"Galsworthy, John",1924,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/7c%2Fc2%2Fca%2F7cc2ca60c7804155b3bc9d1d11727d32%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-03-12,1930-03-14,https://shakespeareandco.princeton.edu/members/pfeiffer-virginia/,Virginia Pfeiffer,"Pfeiffer, Virginia",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/oneill-beyond-horizon/,Beyond the Horizon,,"O'Neill, Eugene",1920,,Lending Library Card,"Sylvia Beach, Virginia Pfeiffer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5f9e74fc-c06a-4c36-a2d1-878b8fce2cd2/manifest,https://iiif.princeton.edu/loris/figgy_prod/6f%2F67%2Fe2%2F6f67e29939464801800978b3b657885b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-03-13,1930-03-17,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/grierson-cross-currents-english/,"Cross Currents in English Literature of the XVIIth Century; Or, the World, the Flesh & the Spirit, Their Actions and Reactions",,"Grierson, H. J. C.",1929,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/ff%2F5a%2Fdb%2Fff5adb39fae044aba6169aba6526ec65%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-03-13,1930-03-18,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/guiney-letters-louise-imogen/,Letters of Louise Imogen Guiney,,"Guiney, Louise Imogen",1926,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0f%2F9c%2Fb4%2F0f9cb4ea84364dde8a4e4e83427281c5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-03-14,1930-04-20,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,37,,,https://shakespeareandco.princeton.edu/books/nicolson-swinburne/,Swinburne,,"Nicolson, Harold George",1926,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/95%2Ffa%2Fe5%2F95fae5271318494da776b55040017d19%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-03-14,1930-04-23,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,40,,,https://shakespeareandco.princeton.edu/books/hackett-henry-eighth/,Henry the Eighth,,"Hackett, Francis",1929,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/0c%2F23%2F2c%2F0c232c4c11da4ecea57504bef367892a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-03-14,1930-04-23,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,40,,,https://shakespeareandco.princeton.edu/books/scott-count-robert-paris/,Count Robert of Paris,,"Scott, Walter",1832,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/0c%2F23%2F2c%2F0c232c4c11da4ecea57504bef367892a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-03-14,1930-04-26,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,43,,,https://shakespeareandco.princeton.edu/books/read-phases-english-poetry/,Phases of English Poetry,,"Read, Herbert",1928,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/95%2Ffa%2Fe5%2F95fae5271318494da776b55040017d19%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-03-15,1930-03-24,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/heard-ascent-humanity-essay/,The Ascent of Humanity: An Essay on the Evolution of Civilization From Group Consciousness Through Individuality to Super-consciousness,,"Heard, Gerald",1929,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/52%2F2d%2Fa8%2F522da875457e4f16b24299fceb079f2d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1930-03-15,1930-04-15,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",40.00,,1 month,31,1,,1930-03-15,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/52%2F2d%2Fa8%2F522da875457e4f16b24299fceb079f2d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-03-15,1930-04-26,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,42,,,https://shakespeareandco.princeton.edu/books/smollett-expedition-humphry-clinker/,The Expedition of Humphry Clinker,,"Smollett, Tobias",1771,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/90%2Fd9%2Fa8%2F90d9a8306f194f94a3476fc1821b94a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-03-15,1930-04-26,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,42,,,https://shakespeareandco.princeton.edu/books/boswell-life-samuel-johnson/,Life of Samuel Johnson,Vol. 1,"Boswell, James",1791,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/90%2Fd9%2Fa8%2F90d9a8306f194f94a3476fc1821b94a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1930-03-16,1930-04-16,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",20.00,,1 month,31,1,,1930-03-20,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/fa%2F5f%2Fff%2Ffa5fff9082334e3a8927578d40e58135%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-03-17,1930-03-25,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/starrett-fourteen-great-detective/,Fourteen Great Detective Stories,,,1928,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/ff%2F5a%2Fdb%2Fff5adb39fae044aba6169aba6526ec65%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-03-17,1930-03-25,https://shakespeareandco.princeton.edu/members/gosse-emilienne/,Emilienne Gosse,"Gosse, Emilienne",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/woolf-orlando-biography/,Orlando: A Biography,,"Woolf, Virginia",1928,,Lending Library Card,"Sylvia Beach, Emilienne Gosse Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/01f2fbfc-845f-4e39-a309-68fa0d514be2/manifest,https://iiif.princeton.edu/loris/figgy_prod/08%2Fdb%2F87%2F08db87652dd34269aa52b06e1f2cb46e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-03-17,1930-03-31,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/mansfield-doves-nest-stories/,The Doves' Nest and Other Stories,,"Mansfield, Katherine",1923,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/16%2F9e%2F3d%2F169e3de9faf046a989463efd25e3aef3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-03-17,1930-03-31,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/lawrence-sons-lovers/,Sons and Lovers,,"Lawrence, D. H.",1913,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/16%2F9e%2F3d%2F169e3de9faf046a989463efd25e3aef3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-03-17,1930-03-20,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/thomas-dekker/,Thomas Dekker,,,,Unidentified. By or about Dekker.,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/fa%2F5f%2Fff%2Ffa5fff9082334e3a8927578d40e58135%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-03-18,1930-03-21,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/west-harriet-hume-london/,Harriet Hume: A London Fantasy,,"West, Rebecca",1929,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0f%2F9c%2Fb4%2F0f9cb4ea84364dde8a4e4e83427281c5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1930-03-19,1930-03-19,https://shakespeareandco.princeton.edu/members/alvear/,Elvira de Alvear,"de Alvear, Elvira",,,,,,,,,,,400.00,FRF,https://shakespeareandco.princeton.edu/books/joyce-james-joyce-reading/,"James Joyce Reading ""Anna Livia Plurabelle""",,"Joyce, James",1929,[Listen](https://archive.org/details/JamesJoyceReadsannaLiviaPlurabelleFromFinnegansWake1929).,Lending Library Card,"Sylvia Beach, Elvira de Alvear Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/19d09c5e-a411-40f1-99df-f07f512e3901/manifest,https://iiif.princeton.edu/loris/figgy_prod/1b%2F97%2Fdd%2F1b97dd672db940eba36ffbddce721450%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1930-03-19,1930-03-19,https://shakespeareandco.princeton.edu/members/alvear/,Elvira de Alvear,"de Alvear, Elvira",,,,,,,,,,,35.00,FRF,https://shakespeareandco.princeton.edu/books/woolf-room-ones/,A Room of One's Own,,"Woolf, Virginia",1929,,Lending Library Card,"Sylvia Beach, Elvira de Alvear Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/19d09c5e-a411-40f1-99df-f07f512e3901/manifest,https://iiif.princeton.edu/loris/figgy_prod/1b%2F97%2Fdd%2F1b97dd672db940eba36ffbddce721450%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-03-19,1930-03-29,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/mansfield-bliss-short-stories/,Bliss and Other Stories,,"Mansfield, Katherine",1920,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/e0%2F11%2F78%2Fe011789ae91b4941a088b85942d4df17%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-03-20,1930-03-26,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/frank-new-years-eve/,New Year's Eve: A Play,,"Frank, Waldo",1929,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/4e%2F9f%2F1a%2F4e9f1a2ea63348ff8b188a84c5fa487e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-03-20,1930-04-11,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/richmond-times-literary-supplement/,The Times Literary Supplement,"no. 1465, Feb 27, 1930",,,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/4e%2F9f%2F1a%2F4e9f1a2ea63348ff8b188a84c5fa487e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-03-20,1930-03-25,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/tully-shadows-men/,Shadows of Men,,"Tully, Jim",1930,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/fa%2F5f%2Fff%2Ffa5fff9082334e3a8927578d40e58135%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1930-03-21,1930-06-21,https://shakespeareandco.princeton.edu/members/mayre-n-e/,N. E. Mayre,"Mayre, N. E.",100.00,,3 months,92,1,,1930-03-21,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, N.E. Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ec1c32ef-7770-43a3-a5ae-d6afe67a337b/manifest,https://iiif.princeton.edu/loris/figgy_prod/5b%2F70%2Fde%2F5b70deb648294c9aab24a99f5a35196a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-03-21,1930-04-02,https://shakespeareandco.princeton.edu/members/mayre-n-e/,N. E. Mayre,"Mayre, N. E.",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/william-congreve/,William Congreve,,,,Unidentified. By or about Congreve.,Lending Library Card,"Sylvia Beach, N.E. Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ec1c32ef-7770-43a3-a5ae-d6afe67a337b/manifest,https://iiif.princeton.edu/loris/figgy_prod/5b%2F70%2Fde%2F5b70deb648294c9aab24a99f5a35196a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-03-21,1930-03-28,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/hume-wives-henry-viii/,The Wives of Henry the VIII and the Parts They Played in History,,"Hume, Martin",1905,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0f%2F9c%2Fb4%2F0f9cb4ea84364dde8a4e4e83427281c5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-03-24,1930-03-31,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/lewinsohn-mystery-man-europe/,The Mystery Man of Europe: Sir Basil Zaharoff,,"Lewinsohn, Richard",1929,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/52%2F2d%2Fa8%2F522da875457e4f16b24299fceb079f2d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-03-25,1930-04-02,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/wilder-woman-andros/,The Woman of Andros,,"Wilder, Thornton",1930,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/fa%2F5f%2Fff%2Ffa5fff9082334e3a8927578d40e58135%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-03-25,,https://shakespeareandco.princeton.edu/members/gosse-emilienne/,Emilienne Gosse,"Gosse, Emilienne",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/harrington-best-detective-stories/,The Best Detective Stories of 1928,,,1929,,Lending Library Card,"Sylvia Beach, Emilienne Gosse Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/01f2fbfc-845f-4e39-a309-68fa0d514be2/manifest,https://iiif.princeton.edu/loris/figgy_prod/08%2Fdb%2F87%2F08db87652dd34269aa52b06e1f2cb46e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1930-03-25,1930-04-25,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",40.00,,1 month,31,1,,1930-04-07,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/ff%2F5a%2Fdb%2Fff5adb39fae044aba6169aba6526ec65%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-03-25,1930-03-26,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/stein-geography-plays/,Geography and Plays,,"Stein, Gertrude",1922,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/ff%2F5a%2Fdb%2Fff5adb39fae044aba6169aba6526ec65%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-03-26,1930-04-04,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/kennedy-ladies-lyndon/,The Ladies of Lyndon,,"Kennedy, Margaret",1923,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/4e%2F9f%2F1a%2F4e9f1a2ea63348ff8b188a84c5fa487e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-03-26,1930-03-28,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/moore-conversations-george-moore/,Conversations with George Moore,,"Moore, George",1930,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/ff%2F5a%2Fdb%2Fff5adb39fae044aba6169aba6526ec65%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-03-28,1930-04-15,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/madame-stael/,Madame de Stael,,,,Unidentified. By or about Germaine de StaΓ«l.,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/5c%2F5b%2F3e%2F5c5b3e81f7294acbbb7b06cbba8e32c3%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-03-28,1930-04-07,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/moore-esther-waters/,Esther Waters,,"Moore, George",1894,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/ff%2F5a%2Fdb%2Fff5adb39fae044aba6169aba6526ec65%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-03-28,1930-04-27,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,30,,,https://shakespeareandco.princeton.edu/books/crofts-inspector-french-cheyne/,Inspector French and the Cheyne Mystery,,"Crofts, Freeman Wills",1926,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/5c%2F5b%2F3e%2F5c5b3e81f7294acbbb7b06cbba8e32c3%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-03-28,1930-04-03,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/masefield-hawbucks/,The Hawbucks,,"Masefield, John",1929,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0f%2F9c%2Fb4%2F0f9cb4ea84364dde8a4e4e83427281c5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-03-29,1930-04-03,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/aldington-death-hero/,Death of a Hero,,"Aldington, Richard",1929,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/c7%2F28%2F03%2Fc72803565c4747ee9d5ea39916575ec4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Crossed out,1930-03-29,,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/dreiser-american-tragedy/,An American Tragedy,,"Dreiser, Theodore",1925,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/c7%2F28%2F03%2Fc72803565c4747ee9d5ea39916575ec4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-03-29,1930-05-10,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,42,,,https://shakespeareandco.princeton.edu/books/woolf-jacobs-room/,Jacob's Room,,"Woolf, Virginia",1922,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/e0%2F11%2F78%2Fe011789ae91b4941a088b85942d4df17%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-03-31,1930-04-29,https://shakespeareandco.princeton.edu/members/pfeiffer-virginia/,Virginia Pfeiffer,"Pfeiffer, Virginia",,,,,,,,,Returned,29,,,https://shakespeareandco.princeton.edu/books/crane-red-badge-courage/,The Red Badge of Courage,,"Crane, Stephen",1895,,Lending Library Card,"Sylvia Beach, Virginia Pfeiffer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5f9e74fc-c06a-4c36-a2d1-878b8fce2cd2/manifest,https://iiif.princeton.edu/loris/figgy_prod/6f%2F67%2Fe2%2F6f67e29939464801800978b3b657885b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1930-03-31,1930-03-31,https://shakespeareandco.princeton.edu/members/robertson-william-cowper/,William Cowper Robertson / Rev. W. Cowper Robertson,"Robertson, William Cowper",,,,,,,,,,,11.00,FRF,https://shakespeareandco.princeton.edu/books/addis-book-job-book/,The Book of Job and The Book of Ruth,,,1902,,Lending Library Card,"Sylvia Beach, W. Cowper Robertson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/33769c35-cdbb-47ab-b0b9-ca17c85798d6/manifest,https://iiif.princeton.edu/loris/figgy_prod/e5%2F5f%2F34%2Fe55f347dfb534162a1de11248ea88470%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1930-03-31,1930-03-31,https://shakespeareandco.princeton.edu/members/robertson-william-cowper/,William Cowper Robertson / Rev. W. Cowper Robertson,"Robertson, William Cowper",,,,,,,,,,,11.00,FRF,https://shakespeareandco.princeton.edu/books/harper-book-ezra-nehemiah/,"The Book of Ezra, Nehemiah, and Esther",,,1902,From the Temple Bible series.,Lending Library Card,"Sylvia Beach, W. Cowper Robertson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/33769c35-cdbb-47ab-b0b9-ca17c85798d6/manifest,https://iiif.princeton.edu/loris/figgy_prod/e5%2F5f%2F34%2Fe55f347dfb534162a1de11248ea88470%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1930-03-31,1930-03-31,https://shakespeareandco.princeton.edu/members/robertson-william-cowper/,William Cowper Robertson / Rev. W. Cowper Robertson,"Robertson, William Cowper",,,,,,,,,,,11.00,FRF,https://shakespeareandco.princeton.edu/books/margoliouth-proverbs-ecclesiastes-song/,"Proverbs, Ecclesiastes, and the Song of Solomon",,,1902,,Lending Library Card,"Sylvia Beach, W. Cowper Robertson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/33769c35-cdbb-47ab-b0b9-ca17c85798d6/manifest,https://iiif.princeton.edu/loris/figgy_prod/e5%2F5f%2F34%2Fe55f347dfb534162a1de11248ea88470%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1930-03-31,1930-03-31,https://shakespeareandco.princeton.edu/members/robertson-william-cowper/,William Cowper Robertson / Rev. W. Cowper Robertson,"Robertson, William Cowper",,,,,,,,,,,11.00,FRF,https://shakespeareandco.princeton.edu/books/livy-livy/,Livy,,,,Unidentified. By or about Livy.,Lending Library Card,"Sylvia Beach, W. Cowper Robertson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/33769c35-cdbb-47ab-b0b9-ca17c85798d6/manifest,https://iiif.princeton.edu/loris/figgy_prod/e5%2F5f%2F34%2Fe55f347dfb534162a1de11248ea88470%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-03-31,1930-05-03,https://shakespeareandco.princeton.edu/members/monnier-j/,J. Monnier,"Monnier, J.",,,,,,,,,Returned,33,,,https://shakespeareandco.princeton.edu/books/lehmann-dusty-answer/,Dusty Answer,,"Lehmann, Rosamond",1927,,Lending Library Card,"Sylvia Beach, J. Monnier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/df9a3d51-011b-4364-82ba-111bc447e7fe/manifest,https://iiif.princeton.edu/loris/figgy_prod/cd%2F38%2F4e%2Fcd384e3666d54ff9b7b986e5f0fe3190%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-03-31,1930-04-03,https://shakespeareandco.princeton.edu/members/mayre-n-e/,N. E. Mayre,"Mayre, N. E.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/modern-england-ii/,Modern England II,,,,Unidentified. Likely volume 2 of Justin McCarthy's *Modern England* (1899) or Alfred William Benn's *Modern England* (1908).,Lending Library Card,"Sylvia Beach, N.E. Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ec1c32ef-7770-43a3-a5ae-d6afe67a337b/manifest,https://iiif.princeton.edu/loris/figgy_prod/5b%2F70%2Fde%2F5b70deb648294c9aab24a99f5a35196a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-03-31,1930-04-29,https://shakespeareandco.princeton.edu/members/pfeiffer-virginia/,Virginia Pfeiffer,"Pfeiffer, Virginia",,,,,,,,,Returned,29,,,https://shakespeareandco.princeton.edu/books/dostoyevsky-idiot/,The Idiot,,"Dostoyevsky, Fyodor",1874,,Lending Library Card,"Sylvia Beach, Virginia Pfeiffer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5f9e74fc-c06a-4c36-a2d1-878b8fce2cd2/manifest,https://iiif.princeton.edu/loris/figgy_prod/6f%2F67%2Fe2%2F6f67e29939464801800978b3b657885b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-03-31,1930-04-05,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/mansfield-something-childish-stories/,Something Childish and Other Stories,,"Mansfield, Katherine",1924,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/16%2F9e%2F3d%2F169e3de9faf046a989463efd25e3aef3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-03-31,1930-04-02,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/masters-great-valley/,The Great Valley,,"Masters, Edgar Lee",1916,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/52%2F2d%2Fa8%2F522da875457e4f16b24299fceb079f2d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-04-02,1930-04-05,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/h-lawrence/,D. H. Lawrence,,,,Unidentified. By or about Lawrence. Elvira de Alvear likely purchases multiple copies of Lawrence's [*Lady Chatterley's Lover*](https://shakespeareandco.princeton.edu/books/lawrence-lady-chatterleys-lover/) (1928).,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/52%2F2d%2Fa8%2F522da875457e4f16b24299fceb079f2d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-04-02,1930-04-05,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/seabrook-magic-island/,The Magic Island,,"Seabrook, William",1929,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/52%2F2d%2Fa8%2F522da875457e4f16b24299fceb079f2d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-04-02,1930-04-10,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/hemingway-farewell-arms/,A Farewell to Arms,,"Hemingway, Ernest",1929,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/fa%2F5f%2Fff%2Ffa5fff9082334e3a8927578d40e58135%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1930-04-03,1930-04-03,https://shakespeareandco.princeton.edu/members/robertson-william-cowper/,William Cowper Robertson / Rev. W. Cowper Robertson,"Robertson, William Cowper",,,,,,,,,,,3.50,FRF,https://shakespeareandco.princeton.edu/books/sophocles/,Sophocles,,,,Unidentified. By or about Sophocles.,Lending Library Card,"Sylvia Beach, W. Cowper Robertson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/33769c35-cdbb-47ab-b0b9-ca17c85798d6/manifest,https://iiif.princeton.edu/loris/figgy_prod/e5%2F5f%2F34%2Fe55f347dfb534162a1de11248ea88470%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-04-03,1930-07-18,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,106,,,https://shakespeareandco.princeton.edu/books/dreiser-american-tragedy/,An American Tragedy,,"Dreiser, Theodore",1925,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/c7%2F28%2F03%2Fc72803565c4747ee9d5ea39916575ec4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1930-04-03,1930-04-03,https://shakespeareandco.princeton.edu/members/robertson-william-cowper/,William Cowper Robertson / Rev. W. Cowper Robertson,"Robertson, William Cowper",,,,,,,,,,,15.00,FRF,https://shakespeareandco.princeton.edu/books/dante-alighieri-divine-comedy/,The Divine Comedy,,Dante Alighieri,,William Cowper Robertson borrowed the Everyman's Library edition of *The Divine Comedy.*,Lending Library Card,"Sylvia Beach, W. Cowper Robertson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/33769c35-cdbb-47ab-b0b9-ca17c85798d6/manifest,https://iiif.princeton.edu/loris/figgy_prod/e5%2F5f%2F34%2Fe55f347dfb534162a1de11248ea88470%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1930-04-03,1930-04-03,https://shakespeareandco.princeton.edu/members/robertson-william-cowper/,William Cowper Robertson / Rev. W. Cowper Robertson,"Robertson, William Cowper",,,,,,,,,,,38.00,FRF,https://shakespeareandco.princeton.edu/books/meynell-hearts-controversy/,Hearts of Controversy,,"Meynell, Alice Christiana Thompson",1917,,Lending Library Card,"Sylvia Beach, W. Cowper Robertson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/33769c35-cdbb-47ab-b0b9-ca17c85798d6/manifest,https://iiif.princeton.edu/loris/figgy_prod/e5%2F5f%2F34%2Fe55f347dfb534162a1de11248ea88470%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-04-03,1930-04-08,https://shakespeareandco.princeton.edu/members/mayre-n-e/,N. E. Mayre,"Mayre, N. E.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/huxley-science-education-essays/,Science and Education: Essays,,"Huxley, Thomas Henry",1898,,Lending Library Card,"Sylvia Beach, N.E. Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ec1c32ef-7770-43a3-a5ae-d6afe67a337b/manifest,https://iiif.princeton.edu/loris/figgy_prod/5b%2F70%2Fde%2F5b70deb648294c9aab24a99f5a35196a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-04-03,1930-04-12,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/adams-queens-gate-mystery/,The Queen's Gate Mystery,,"Adams, Herbert",1927,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/7c%2Fc2%2Fca%2F7cc2ca60c7804155b3bc9d1d11727d32%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-04-04,1930-04-11,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/walpole-hans-frost-novel/,Hans Frost: A Novel,,"Walpole, Hugh",1929,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/4e%2F9f%2F1a%2F4e9f1a2ea63348ff8b188a84c5fa487e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-04-05,1930-04-11,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/johnson-autobiography-ex-colored/,The Autobiography of an Ex-Colored Man,,"Johnson, James Weldon",1927,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/ee%2F79%2Fb9%2Fee79b9f1f5e64724a09ee5b343ebd05a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-04-05,1930-05-22,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,47,,,https://shakespeareandco.princeton.edu/books/hamsun-chapter-last/,Chapter the Last,,"Hamsun, Knut",1930,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/16%2F9e%2F3d%2F169e3de9faf046a989463efd25e3aef3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1930-04-06,1931-04-06,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",240.00,,1 year,365,1,,1930-05-10,,,,,FRF,,,,,,,Lending Library Card;Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest;https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/7c%2Fc2%2Fca%2F7cc2ca60c7804155b3bc9d1d11727d32%2Fintermediate_file.jp2/full/full/0/default.jpg;https://iiif.princeton.edu/loris/figgy_prod/29%2F38%2Fe3%2F2938e3f080244a3bbcb44376b685cbe0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-04-07,1930-04-08,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/hemingway-farewell-arms/,A Farewell to Arms,,"Hemingway, Ernest",1929,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/ff%2F5a%2Fdb%2Fff5adb39fae044aba6169aba6526ec65%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-04-08,1930-04-20,https://shakespeareandco.princeton.edu/members/mayre-n-e/,N. E. Mayre,"Mayre, N. E.",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/huxley-science-hebrew-tradition/,Science and Hebrew Tradition,,"Huxley, Thomas Henry",1893,,Lending Library Card,"Sylvia Beach, N.E. Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ec1c32ef-7770-43a3-a5ae-d6afe67a337b/manifest,https://iiif.princeton.edu/loris/figgy_prod/5b%2F70%2Fde%2F5b70deb648294c9aab24a99f5a35196a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-04-08,1930-04-09,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/smith-beginning-origin-civilization/,In the Beginning: The Origin of Civilization,,"Smith, Grafton Elliot",1928,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/ff%2F5a%2Fdb%2Fff5adb39fae044aba6169aba6526ec65%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-04-09,1930-05-15,https://shakespeareandco.princeton.edu/members/dyer-louise/,Louise Dyer / Mrs. James Dyer,"Dyer, Louise",,,,,,,,,Returned,36,,,https://shakespeareandco.princeton.edu/books/obrien-best-short-stories-1929/,The Best Short Stories of 1929: And the Yearbook of the American Short Story,,,1929,,Lending Library Card,"Sylvia Beach, Louise Dyer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/64796425-698e-4f26-8e62-dea45d1d502c/manifest,https://iiif.princeton.edu/loris/figgy_prod/a4%2F59%2F36%2Fa45936869ab74ab483df36a3f1e44bb6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-04-09,1930-04-11,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/garnett-love/,No Love,,"Garnett, David",1929,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/ff%2F5a%2Fdb%2Fff5adb39fae044aba6169aba6526ec65%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-04-10,1930-04-29,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/close-eminent-asians-six/,Eminent Asians: Six Great Personalities of the Near East,,"Hall, Josef Washington",1929,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/fa%2F5f%2Fff%2Ffa5fff9082334e3a8927578d40e58135%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-04-10,1930-04-15,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/swinnerton-sketch-sinner/,Sketch of a Sinner,,"Swinnerton, Frank",1929,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0f%2F9c%2Fb4%2F0f9cb4ea84364dde8a4e4e83427281c5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-04-11,1930-04-21,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/richmond-times-literary-supplement/,The Times Literary Supplement,"no. 1469, Mar 27, 1930",,,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/4e%2F9f%2F1a%2F4e9f1a2ea63348ff8b188a84c5fa487e%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1930-04-11,1930-04-11,https://shakespeareandco.princeton.edu/members/robertson-william-cowper/,William Cowper Robertson / Rev. W. Cowper Robertson,"Robertson, William Cowper",,,,,,,,,,,73.00,FRF,https://shakespeareandco.princeton.edu/books/lucan-civil-war-pharsalia/,The Civil War (Pharsalia),,Lucan,1928,,Lending Library Card,"Sylvia Beach, W. Cowper Robertson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/33769c35-cdbb-47ab-b0b9-ca17c85798d6/manifest,https://iiif.princeton.edu/loris/figgy_prod/e5%2F5f%2F34%2Fe55f347dfb534162a1de11248ea88470%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-04-11,1930-04-12,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/walpole-hans-frost-novel/,Hans Frost: A Novel,,"Walpole, Hugh",1929,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/99%2F96%2Fc7%2F9996c76243504663af4276c991ff36f8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-04-11,1930-04-17,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/obrien-best-short-stories-1929-english/,The Best Short Stories of 1929: English,,,1929,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/4e%2F9f%2F1a%2F4e9f1a2ea63348ff8b188a84c5fa487e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-04-12,1930-04-16,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/lewis-dodsworth/,Dodsworth,,"Lewis, Sinclair",1929,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/ff%2F5a%2Fdb%2Fff5adb39fae044aba6169aba6526ec65%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-04-12,1930-04-15,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/aldington-death-hero/,Death of a Hero,,"Aldington, Richard",1929,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/86%2F21%2F45%2F862145764c5c499cb8a9d2ca1da73cf6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-04-12,1930-04-15,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/hemingway-farewell-arms/,A Farewell to Arms,,"Hemingway, Ernest",1929,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/99%2F96%2Fc7%2F9996c76243504663af4276c991ff36f8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-04-12,1930-05-08,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,26,,,https://shakespeareandco.princeton.edu/books/van-dine-bishop-murder-case/,The Bishop Murder Case: A Philo Vance Story,,"Van Dine, S. S.",1929,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/7c%2Fc2%2Fca%2F7cc2ca60c7804155b3bc9d1d11727d32%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1930-04-12,1930-05-12,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",40.00,50.00,1 month,30,1,,1930-04-12,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/86%2F21%2F45%2F862145764c5c499cb8a9d2ca1da73cf6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1930-04-12,1930-04-29,https://shakespeareandco.princeton.edu/members/pfeiffer-virginia/,Virginia Pfeiffer,"Pfeiffer, Virginia",32.00,,17 days,17,2,,1930-04-29,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Virginia Pfeiffer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5f9e74fc-c06a-4c36-a2d1-878b8fce2cd2/manifest,https://iiif.princeton.edu/loris/figgy_prod/6f%2F67%2Fe2%2F6f67e29939464801800978b3b657885b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-04-14,1930-05-10,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,26,,,https://shakespeareandco.princeton.edu/books/woolf-lighthouse/,To the Lighthouse,,"Woolf, Virginia",1927,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/e0%2F11%2F78%2Fe011789ae91b4941a088b85942d4df17%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-04-15,1930-04-22,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/mcneill-moss-love/,That Other Love,,"McNeill-Moss, Geoffrey",1929,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/86%2F21%2F45%2F862145764c5c499cb8a9d2ca1da73cf6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-04-15,1930-04-23,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/sitwell-man-lost/,The Man Who Lost Himself,,"Sitwell, Osbert",1930,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0f%2F9c%2Fb4%2F0f9cb4ea84364dde8a4e4e83427281c5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-04-15,1930-04-24,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/schiff-true-story-three/,"A True Story in Three Parts and a Postscript, All of Them Facile Rubbish",,"Hudson, Stephen",1930,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/99%2F96%2Fc7%2F9996c76243504663af4276c991ff36f8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-04-15,1930-04-29,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/west-harriet-hume-london/,Harriet Hume: A London Fantasy,,"West, Rebecca",1929,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/1d%2F30%2F89%2F1d3089a9b018473cbf4498b364831b09%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-04-15,1930-04-29,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/connington-case-nine-solutions/,The Case with Nine Solutions,,"Connington, J. J.",1928,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/1d%2F30%2F89%2F1d3089a9b018473cbf4498b364831b09%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-04-16,1930-04-23,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/lawrence-assorted-articles/,Assorted Articles,,"Lawrence, D. H.",1930,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/ff%2F5a%2Fdb%2Fff5adb39fae044aba6169aba6526ec65%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1930-04-16,1930-05-16,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",20.00,,1 month,30,1,,1930-05-05,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/fa%2F5f%2Fff%2Ffa5fff9082334e3a8927578d40e58135%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-04-17,1930-04-25,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/newman-dead-lovers-faithful/,Dead Lovers Are Faithful Lovers,,"Newman, Frances",1928,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/04%2Fe2%2F7d%2F04e27dc5984c425aa0a7b032458ac1c1%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1930-04-20,1931-04-20,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",300.00,,1 year,365,1,,1930-07-23,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,;https://iiif.princeton.edu/loris/figgy_prod/c7%2F28%2F03%2Fc72803565c4747ee9d5ea39916575ec4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-04-22,1930-04-28,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/wallace-golden-hades/,The Golden Hades,,"Wallace, Edgar",1929,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/86%2F21%2F45%2F862145764c5c499cb8a9d2ca1da73cf6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1930-04-23,1930-08-23,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,4 months,122,,,,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/0c%2F23%2F2c%2F0c232c4c11da4ecea57504bef367892a%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1930-04-23,1930-10-23,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",80.00,,6 months,183,1,,1930-04-23,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/16%2F9e%2F3d%2F169e3de9faf046a989463efd25e3aef3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-04-23,1930-05-03,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/hackett-henry-eighth/,Henry the Eighth,,"Hackett, Francis",1929,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0f%2F9c%2Fb4%2F0f9cb4ea84364dde8a4e4e83427281c5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-04-24,1930-04-29,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/james-hail-hail/,Hail! All Hail!,,"James, Norah C.",1929,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/99%2F96%2Fc7%2F9996c76243504663af4276c991ff36f8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-04-25,1930-05-10,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/coyle-flock-birds/,A Flock of Birds,,"Coyle, Kathleen",1930,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/04%2Fe2%2F7d%2F04e27dc5984c425aa0a7b032458ac1c1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-04-25,1930-05-09,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/hemingway-farewell-arms/,A Farewell to Arms,,"Hemingway, Ernest",1929,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2F00%2F2c%2Fcb002c24cc9a4d9c8fa834244db6afcc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-04-26,1930-05-22,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,26,,,https://shakespeareandco.princeton.edu/books/smollett-adventures-peregrine-pickle/,The Adventures of Peregrine Pickle,,"Smollett, Tobias",1751,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/90%2Fd9%2Fa8%2F90d9a8306f194f94a3476fc1821b94a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-04-26,1930-05-10,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/grierson-background-english-literature/,The Background of English Literature,,"Grierson, H. J. C.",1926,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/59%2F7a%2F97%2F597a9716cd97402b8867f6fb7e9c7692%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-04-26,1930-05-10,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/alexander-pope/,Alexander Pope,,,,Unidentified. By or about Alexander Pope. Likely Leslie Stephen's [*Alexander Pope*](https://shakespeareandco.princeton.edu/books/stephen-alexander-pope/) (1880) or Edith Sitwell's [*Alexander Pope*](https://shakespeareandco.princeton.edu/books/sitwell-alexander-pope/) (1930).,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/59%2F7a%2F97%2F597a9716cd97402b8867f6fb7e9c7692%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-04-26,1930-05-08,https://shakespeareandco.princeton.edu/members/mayre-n-e/,N. E. Mayre,"Mayre, N. E.",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/huxley-science-christian-tradition/,Science and Christian Tradition: Essays,,"Huxley, Thomas Henry",1894,,Lending Library Card,"Sylvia Beach, N.E. Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ec1c32ef-7770-43a3-a5ae-d6afe67a337b/manifest,https://iiif.princeton.edu/loris/figgy_prod/5b%2F70%2Fde%2F5b70deb648294c9aab24a99f5a35196a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-04-26,1930-05-22,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,26,,,https://shakespeareandco.princeton.edu/books/james-american/,The American,,"James, Henry",1877,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/90%2Fd9%2Fa8%2F90d9a8306f194f94a3476fc1821b94a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-04-28,1930-05-07,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/buchan-courts-morning/,The Courts of the Morning,,"Buchan, John",1929,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/86%2F21%2F45%2F862145764c5c499cb8a9d2ca1da73cf6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-04-29,1930-07-16,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,78,,,https://shakespeareandco.princeton.edu/books/abraham-lincoln/,Abraham Lincoln,Vol. 1,,,Unidentified. By or about Lincoln. Dolly Wilde borrowed volume 1 of an unspecified edition.,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/1d%2F30%2F89%2F1d3089a9b018473cbf4498b364831b09%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-04-29,1930-05-06,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/stalin-leninism/,Leninism,,"Stalin, Joseph",1928,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/fa%2F5f%2Fff%2Ffa5fff9082334e3a8927578d40e58135%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-04-29,1930-07-02,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,64,,,https://shakespeareandco.princeton.edu/books/antheil-death-dark/,Death in the Dark,,"Antheil, George",1930,"Written under the pseudonym, Stacey Bishop.",Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/1d%2F30%2F89%2F1d3089a9b018473cbf4498b364831b09%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-04-29,1930-07-16,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,78,,,https://shakespeareandco.princeton.edu/books/barton-sober-truth-collection/,"Sober Truth: A Collection of Nineteenth-Century Episodes, Fantastic, Grotesque and Mysterious",,,1930,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/1d%2F30%2F89%2F1d3089a9b018473cbf4498b364831b09%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-04-29,1930-05-03,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/bryner-bridegroom-tarried/,While the Bridegroom Tarried,,"Bryner, Edna",1929,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/99%2F96%2Fc7%2F9996c76243504663af4276c991ff36f8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-05-03,1930-05-15,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/lindsay-redheap/,Redheap,,"Lindsay, Norman",1930,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/99%2F96%2Fc7%2F9996c76243504663af4276c991ff36f8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-05-03,1930-05-05,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/dreiser-gallery-women/,A Gallery of Women,Vol. 1,"Dreiser, Theodore",1929,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0f%2F9c%2Fb4%2F0f9cb4ea84364dde8a4e4e83427281c5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-05-03,1930-05-28,https://shakespeareandco.princeton.edu/members/monnier-j/,J. Monnier,"Monnier, J.",,,,,,,,,Returned,25,,,https://shakespeareandco.princeton.edu/books/mansfield-garden-party-stories/,The Garden Party and Other Stories,,"Mansfield, Katherine",1922,,Lending Library Card,"Sylvia Beach, J. Monnier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/df9a3d51-011b-4364-82ba-111bc447e7fe/manifest,https://iiif.princeton.edu/loris/figgy_prod/cd%2F38%2F4e%2Fcd384e3666d54ff9b7b986e5f0fe3190%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-05-05,1930-05-10,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/bryner-bridegroom-tarried/,While the Bridegroom Tarried,,"Bryner, Edna",1929,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0f%2F9c%2Fb4%2F0f9cb4ea84364dde8a4e4e83427281c5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-05-06,1930-05-14,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/maugham-gentleman-parlour/,The Gentleman in the Parlour,,"Maugham, W. Somerset",1930,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/fa%2F5f%2Fff%2Ffa5fff9082334e3a8927578d40e58135%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-05-07,1930-06-03,https://shakespeareandco.princeton.edu/members/mayre-n-e/,N. E. Mayre,"Mayre, N. E.",,,,,,,,,Returned,27,,,https://shakespeareandco.princeton.edu/books/huxley-hume/,Hume,,"Huxley, Thomas Henry",1886,,Lending Library Card,"Sylvia Beach, N.E. Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ec1c32ef-7770-43a3-a5ae-d6afe67a337b/manifest,https://iiif.princeton.edu/loris/figgy_prod/5b%2F70%2Fde%2F5b70deb648294c9aab24a99f5a35196a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-05-07,1930-05-09,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/obrien-best-short-stories-1929-english/,The Best Short Stories of 1929: English,,,1929,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/86%2F21%2F45%2F862145764c5c499cb8a9d2ca1da73cf6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1930-05-08,1931-05-08,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",240.00,,1 year,365,1,,1930-05-10,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0f%2F9c%2Fb4%2F0f9cb4ea84364dde8a4e4e83427281c5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-05-08,1930-05-10,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/lowndes-lodger/,The Lodger,,"Lowndes, Marie Belloc",1913,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/7c%2Fc2%2Fca%2F7cc2ca60c7804155b3bc9d1d11727d32%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-05-09,1930-06-26,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,48,,,https://shakespeareandco.princeton.edu/books/wallace-face-night/,The Face in the Night,,"Wallace, Edgar",1924,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/86%2F21%2F45%2F862145764c5c499cb8a9d2ca1da73cf6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-05-09,1930-05-30,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/cummings-enormous-room/,The Enormous Room,,"Cummings, E. E.",1922,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2F00%2F2c%2Fcb002c24cc9a4d9c8fa834244db6afcc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-05-10,1930-05-15,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/deeping-ropers-row/,Roper's Row,,"Deeping, Warwick",1929,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0f%2F9c%2Fb4%2F0f9cb4ea84364dde8a4e4e83427281c5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-05-10,1930-05-17,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/garnett-friday-nights-literary/,Friday Nights: Literary Criticisms and Appreciations,,"Garnett, Edward",1922,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/59%2F7a%2F97%2F597a9716cd97402b8867f6fb7e9c7692%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-05-10,1930-05-17,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/gissing-letters-george-gissing/,Letters of George Gissing to Members of His Family,,"Gissing, George Robert",1913,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/59%2F7a%2F97%2F597a9716cd97402b8867f6fb7e9c7692%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-05-10,1930-06-13,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,34,,,https://shakespeareandco.princeton.edu/books/chesterton-manalive/,Manalive,,"Chesterton, G. K.",1912,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/04%2Fe2%2F7d%2F04e27dc5984c425aa0a7b032458ac1c1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-05-10,1930-05-13,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/sayers-lord-peter-views/,Lord Peter Views the Body,,"Sayers, Dorothy L.",1928,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/7c%2Fc2%2Fca%2F7cc2ca60c7804155b3bc9d1d11727d32%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-05-10,1930-06-13,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,34,,,https://shakespeareandco.princeton.edu/books/chesterton-outline-sanity/,The Outline of Sanity,,"Chesterton, G. K.",1926,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/04%2Fe2%2F7d%2F04e27dc5984c425aa0a7b032458ac1c1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-05-13,1930-05-22,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/oppenheim-million-pound-deposit/,The Million Pound Deposit,,"Oppenheim, E. Phillips",1930,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/7c%2Fc2%2Fca%2F7cc2ca60c7804155b3bc9d1d11727d32%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-05-14,1930-05-20,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/huxley-brief-candles-stories/,Brief Candles: Stories,,"Huxley, Aldous",1930,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/fa%2F5f%2Fff%2Ffa5fff9082334e3a8927578d40e58135%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-05-15,1930-05-22,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/beresford-seven-bobsworth/,"Seven, Bobsworth",,"Beresford, J. D.",1930,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0f%2F9c%2Fb4%2F0f9cb4ea84364dde8a4e4e83427281c5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-05-15,1930-05-31,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/sinclair-mountain-city/,Mountain City,,"Sinclair, Upton",1930,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/99%2F96%2Fc7%2F9996c76243504663af4276c991ff36f8%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1930-05-16,1930-06-16,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",20.00,,1 month,31,1,,1930-05-20,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/fa%2F5f%2Fff%2Ffa5fff9082334e3a8927578d40e58135%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-05-17,1930-05-31,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/masters-spoon-river-anthology/,Spoon River Anthology,,"Masters, Edgar Lee",1914,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/59%2F7a%2F97%2F597a9716cd97402b8867f6fb7e9c7692%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-05-17,1930-05-31,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/ker-form-style-poetry/,Form and Style in Poetry: Lectures and Notes,,"Ker, W. P.",1928,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/59%2F7a%2F97%2F597a9716cd97402b8867f6fb7e9c7692%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-05-20,1930-06-04,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/sitwell-man-lost/,The Man Who Lost Himself,,"Sitwell, Osbert",1930,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/fa%2F5f%2Fff%2Ffa5fff9082334e3a8927578d40e58135%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-05-22,1930-05-31,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/smollett-adventures-peregrine-pickle/,The Adventures of Peregrine Pickle,Vol. 3,"Smollett, Tobias",1751,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/90%2Fd9%2Fa8%2F90d9a8306f194f94a3476fc1821b94a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-05-22,1930-07-11,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,50,,,https://shakespeareandco.princeton.edu/books/james-spoils-poynton/,The Spoils of Poynton,,"James, Henry",1897,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/90%2Fd9%2Fa8%2F90d9a8306f194f94a3476fc1821b94a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-05-22,1930-08-22,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,92,,,https://shakespeareandco.princeton.edu/books/mckay-banjo-story-without/,Banjo: A Story without a Plot,,"McKay, Claude",1929,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/16%2F9e%2F3d%2F169e3de9faf046a989463efd25e3aef3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-05-22,1930-08-22,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,92,,,https://shakespeareandco.princeton.edu/books/lawrence-lost-girl/,The Lost Girl,,"Lawrence, D. H.",1920,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/16%2F9e%2F3d%2F169e3de9faf046a989463efd25e3aef3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-05-22,1930-05-26,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/lindsay-redheap/,Redheap,,"Lindsay, Norman",1930,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0f%2F9c%2Fb4%2F0f9cb4ea84364dde8a4e4e83427281c5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-05-22,1930-05-28,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/thackeray-wolves-lamb/,The Wolves and the Lamb,,"Thackeray, William Makepeace",1854,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/7c%2Fc2%2Fca%2F7cc2ca60c7804155b3bc9d1d11727d32%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-05-27,1930-05-28,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/lowndes-cressida-mystery/,Cressida: No Mystery,,"Lowndes, Marie Belloc",1928,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/7c%2Fc2%2Fca%2F7cc2ca60c7804155b3bc9d1d11727d32%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-05-28,1930-06-11,https://shakespeareandco.princeton.edu/members/monnier-j/,J. Monnier,"Monnier, J.",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/mansfield-bliss-short-stories/,Bliss and Other Stories,,"Mansfield, Katherine",1920,,Lending Library Card,"Sylvia Beach, J. Monnier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/df9a3d51-011b-4364-82ba-111bc447e7fe/manifest,https://iiif.princeton.edu/loris/figgy_prod/cd%2F38%2F4e%2Fcd384e3666d54ff9b7b986e5f0fe3190%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-05-28,1930-06-17,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/connington-case-nine-solutions/,The Case with Nine Solutions,,"Connington, J. J.",1928,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/7c%2Fc2%2Fca%2F7cc2ca60c7804155b3bc9d1d11727d32%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-05-30,1930-06-08,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/obrien-best-short-stories-1929/,The Best Short Stories of 1929: And the Yearbook of the American Short Story,,,1929,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/1a%2F31%2F93%2F1a3193da415e4768a82db00a6730db5e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-05-30,,https://shakespeareandco.princeton.edu/members/thiebaut/,Marcel ThiΓ©baut,"ThiΓ©baut, Marcel",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/gorman-james-joyce-first/,"James Joyce, His First Forty Years",,"Gorman, Herbert Sherman",1924,,Lending Library Card,"Sylvia Beach, Monsieur M. Thiebaud Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1b247e6c-3bfa-4095-bfb0-8191de3e3e1f/manifest,https://iiif.princeton.edu/loris/figgy_prod/32%2F30%2Feb%2F3230eb723f3c4edeaedffb86d3192f43%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-05-31,1930-07-11,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,41,,,https://shakespeareandco.princeton.edu/books/blackmore-lorna-doone/,Lorna Doone,,"Blackmore, Richard Doddridge",1869,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/90%2Fd9%2Fa8%2F90d9a8306f194f94a3476fc1821b94a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1930-05-31,,https://shakespeareandco.princeton.edu/members/volkowa-2/,Volkova,Volkova,80.00,,,,,,1930-05-31,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1930-05-31,1930-06-05,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/coyle-flock-birds/,A Flock of Birds,,"Coyle, Kathleen",1930,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0f%2F9c%2Fb4%2F0f9cb4ea84364dde8a4e4e83427281c5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-05-31,1930-08-04,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,65,,,https://shakespeareandco.princeton.edu/books/james-ambassadors/,The Ambassadors,2 vols.,"James, Henry",1903,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/90%2Fd9%2Fa8%2F90d9a8306f194f94a3476fc1821b94a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-05-31,1930-06-19,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/hemingway-farewell-arms/,A Farewell to Arms,,"Hemingway, Ernest",1929,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/59%2F7a%2F97%2F597a9716cd97402b8867f6fb7e9c7692%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-05-31,1930-06-19,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/grierson-cross-currents-english/,"Cross Currents in English Literature of the XVIIth Century; Or, the World, the Flesh & the Spirit, Their Actions and Reactions",,"Grierson, H. J. C.",1929,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/59%2F7a%2F97%2F597a9716cd97402b8867f6fb7e9c7692%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-05-31,1930-06-19,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/wharton-hudson-river-bracketed/,Hudson River Bracketed,,"Wharton, Edith",1929,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/99%2F96%2Fc7%2F9996c76243504663af4276c991ff36f8%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1930-06-02,1930-06-02,https://shakespeareandco.princeton.edu/members/gatti-a/,A. Gatti,"Gatti, A.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1930-06-02,1930-07-02,https://shakespeareandco.princeton.edu/members/phillips-10/,Phillips,Phillips,32.00,50.00,1 month,30,1,AdL,1930-06-02,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1930-06-03,1930-07-03,https://shakespeareandco.princeton.edu/members/ramsay-2/,Ramsay,Ramsay,40.00,50.00,1 month,30,1,,1930-06-03,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1930-06-03,1930-08-01,https://shakespeareandco.princeton.edu/members/mayre-n-e/,N. E. Mayre,"Mayre, N. E.",,,,,,,,,Returned,59,,,https://shakespeareandco.princeton.edu/books/elementary-history-physiology/,Elementary History of Physiology,,,,Unidentified.,Lending Library Card,"Sylvia Beach, N.E. Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ec1c32ef-7770-43a3-a5ae-d6afe67a337b/manifest,https://iiif.princeton.edu/loris/figgy_prod/5b%2F70%2Fde%2F5b70deb648294c9aab24a99f5a35196a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1930-06-03,1930-07-03,https://shakespeareandco.princeton.edu/members/barlen-d/,D. Barlen,"Barlen, D.",32.00,50.00,1 month,30,1,,1930-06-03,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1930-06-04,1930-06-12,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/bell-safar-nameh-persian/,"Safar Nameh, Persian Pictures: A Book of Travel",,"Bell, Gertrude Lowthian",1928,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/fa%2F5f%2Fff%2Ffa5fff9082334e3a8927578d40e58135%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1930-06-04,1930-06-18,https://shakespeareandco.princeton.edu/members/esty/,Mrs. J. C. Esty,"Esty, Mrs. J. C.",16.00,50.00,2 weeks,14,1,,1930-06-04,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1930-06-05,1930-06-10,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/hergesheimer-party-dress/,The Party Dress,,"Hergesheimer, Joseph",1930,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0f%2F9c%2Fb4%2F0f9cb4ea84364dde8a4e4e83427281c5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1930-06-05,1931-06-05,https://shakespeareandco.princeton.edu/members/japp-darsie/,Darsie Japp,"Japp, Darsie",240.00,,1 year,365,1,,1930-06-05,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1930-06-07,1930-06-07,https://shakespeareandco.princeton.edu/members/moody-sue/,Sue Moody,"Moody, Sue",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1930-06-08,1930-06-19,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/kennedy-ladies-lyndon/,The Ladies of Lyndon,,"Kennedy, Margaret",1923,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/1a%2F31%2F93%2F1a3193da415e4768a82db00a6730db5e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1930-06-10,1930-06-10,https://shakespeareandco.princeton.edu/members/trasher-2/,Trasher,Trasher,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1930-06-10,1930-06-14,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/hergesheimer-balisand/,Balisand,,"Hergesheimer, Joseph",1924,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0f%2F9c%2Fb4%2F0f9cb4ea84364dde8a4e4e83427281c5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1930-06-10,1930-07-10,https://shakespeareandco.princeton.edu/members/ybarra-4/,Ybarra,Ybarra,100.00,50.00,1 month,30,2,,1930-06-10,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1930-06-10,1930-07-10,https://shakespeareandco.princeton.edu/members/mclean-5/,McLean,McLean,40.00,,1 month,30,1,,1930-06-10,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1930-06-10,1930-07-29,https://shakespeareandco.princeton.edu/members/leyris-pierre/,Pierre Leyris,"Leyris, Pierre",,,,,,,,,Returned,49,,,https://shakespeareandco.princeton.edu/books/dos-passos-42nd-parallel/,The 42nd Parallel,,"Dos Passos, John",1930,,Lending Library Card,"Sylvia Beach, Pierre Leyris Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6c75c34b-de6f-4465-baee-8f7cd76f5c87/manifest,https://iiif-cloud.princeton.edu/iiif/2/85%2F60%2F17%2F8560171d12994f1f8ad415157e8c3f7f%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1930-06-11,1930-06-11,https://shakespeareandco.princeton.edu/members/hofman/,Hofman,Hofman,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1930-06-11,1930-06-18,https://shakespeareandco.princeton.edu/members/monnier-j/,J. Monnier,"Monnier, J.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/woolf-room-ones/,A Room of One's Own,,"Woolf, Virginia",1929,,Lending Library Card,"Sylvia Beach, J. Monnier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/df9a3d51-011b-4364-82ba-111bc447e7fe/manifest,https://iiif.princeton.edu/loris/figgy_prod/07%2F53%2Fe7%2F0753e7f832074e969277abf52028f871%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-06-12,,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/coyle-flock-birds/,A Flock of Birds,,"Coyle, Kathleen",1930,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/fa%2F5f%2Fff%2Ffa5fff9082334e3a8927578d40e58135%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1930-06-12,1930-06-26,https://shakespeareandco.princeton.edu/members/cheney-h-w/,H. W. Cheney,"Cheney, H. W.",40.00,100.00,2 weeks,14,1,,1930-06-12,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1930-06-13,1930-06-20,https://shakespeareandco.princeton.edu/members/collet-madeleine/,Madeleine Collet,"Collet, Madeleine",8.00,,1 week,7,1,,1930-06-13,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1930-06-13,1930-07-13,https://shakespeareandco.princeton.edu/members/lallemand-pauline-de/,Pauline de Lallemand,"de Lallemand, Pauline",32.00,50.00,1 month,30,1,,1930-06-13,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1930-06-13,1930-06-13,https://shakespeareandco.princeton.edu/members/collet-madeleine/,Madeleine Collet,"Collet, Madeleine",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1930-06-13,1930-06-21,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/hutchinson-golden-pound-stories/,The Golden Pound and Other Stories,,"Hutchinson, A. S. M.",1930,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/04%2Fe2%2F7d%2F04e27dc5984c425aa0a7b032458ac1c1%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1930-06-14,1930-07-14,https://shakespeareandco.princeton.edu/members/foote-florence/,Florence Foote,"Foote, Florence",32.00,50.00,1 month,30,1,,1930-06-14,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1930-06-14,1930-07-14,https://shakespeareandco.princeton.edu/members/thain/,Thain,Thain,40.00,,1 month,30,1,,1930-06-14,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1930-06-14,1930-07-01,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/dos-passos-42nd-parallel/,The 42nd Parallel,,"Dos Passos, John",1930,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0f%2F9c%2Fb4%2F0f9cb4ea84364dde8a4e4e83427281c5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1930-06-16,1930-06-16,https://shakespeareandco.princeton.edu/members/fonseka-lionel-de/,Lionel de Fonseka,"Fonseka, Lionel de",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1930-06-16,1930-07-16,https://shakespeareandco.princeton.edu/members/leyris-pierre/,Pierre Leyris,"Leyris, Pierre",32.00,50.00,1 month,30,1,Student,1930-06-16,,,,,FRF,,,,,,,Logbook;Lending Library Card;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Pierre Leyris Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/6c75c34b-de6f-4465-baee-8f7cd76f5c87/manifest;,;https://iiif-cloud.princeton.edu/iiif/2/85%2F60%2F17%2F8560171d12994f1f8ad415157e8c3f7f%2Fintermediate_file/full/full/0/default.jpg;
+Borrow,1930-06-16,1930-06-19,https://shakespeareandco.princeton.edu/members/leyris-pierre/,Pierre Leyris,"Leyris, Pierre",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/stein-three-lives/,Three Lives,,"Stein, Gertrude",1909,,Lending Library Card,"Sylvia Beach, Pierre Leyris Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6c75c34b-de6f-4465-baee-8f7cd76f5c87/manifest,https://iiif-cloud.princeton.edu/iiif/2/85%2F60%2F17%2F8560171d12994f1f8ad415157e8c3f7f%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1930-06-16,1930-06-16,https://shakespeareandco.princeton.edu/members/esty/,Mrs. J. C. Esty,"Esty, Mrs. J. C.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1930-06-17,1930-07-17,https://shakespeareandco.princeton.edu/members/whyte-4/,Whyte,Whyte,50.00,40.00,1 month,30,1,,1930-06-17,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1930-06-17,1930-06-23,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/fletcher-wild-oat/,The Wild Oat,,"Fletcher, Joseph Smith",1928,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/7c%2Fc2%2Fca%2F7cc2ca60c7804155b3bc9d1d11727d32%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1930-06-18,1930-06-18,https://shakespeareandco.princeton.edu/members/newell-3/,Newell,Newell,,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1930-06-18,1930-06-25,https://shakespeareandco.princeton.edu/members/monnier-j/,J. Monnier,"Monnier, J.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/hardy-tess-durbervilles/,Tess of the d'Urbervilles,,"Hardy, Thomas",1891,,Lending Library Card,"Sylvia Beach, J. Monnier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/df9a3d51-011b-4364-82ba-111bc447e7fe/manifest,https://iiif.princeton.edu/loris/figgy_prod/07%2F53%2Fe7%2F0753e7f832074e969277abf52028f871%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-06-19,1930-06-27,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/dreiser-gallery-women/,A Gallery of Women,Vol. 1,"Dreiser, Theodore",1929,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/1a%2F31%2F93%2F1a3193da415e4768a82db00a6730db5e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-06-19,1930-06-25,https://shakespeareandco.princeton.edu/members/leyris-pierre/,Pierre Leyris,"Leyris, Pierre",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/de-quincey-confessions-english-opium/,Confessions of an English Opium Eater,,"de Quincey, Thomas",1821,"Bernard Saby borrowed *Confessions of an English Opium Eater,* edited by William Sharp (Walter Scott, 1888).",Lending Library Card,"Sylvia Beach, Pierre Leyris Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6c75c34b-de6f-4465-baee-8f7cd76f5c87/manifest,https://iiif-cloud.princeton.edu/iiif/2/85%2F60%2F17%2F8560171d12994f1f8ad415157e8c3f7f%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-06-19,1930-06-27,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/woolf-common-reader/,The Common Reader,,"Woolf, Virginia",1925,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/59%2F7a%2F97%2F597a9716cd97402b8867f6fb7e9c7692%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-06-19,1930-06-27,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/selected-poems/,Selected Poems,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/59%2F7a%2F97%2F597a9716cd97402b8867f6fb7e9c7692%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-06-19,1930-06-26,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/hergesheimer-party-dress/,The Party Dress,,"Hergesheimer, Joseph",1930,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/99%2F96%2Fc7%2F9996c76243504663af4276c991ff36f8%2Fintermediate_file/full/full/0/default.jpg
+Generic,1930-06-20,,https://shakespeareandco.princeton.edu/members/rhein-verlag/,Rhein Verlag,Rhein Verlag,,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/joyce-ulysses/,Ulysses,1930 Eleventh printing,"Joyce, James",1922,,Lending Library Card,"Sylvia Beach, Rhein-Verlag Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/270705ef-082e-482d-8e0f-ca99c90da614/manifest,https://iiif.princeton.edu/loris/figgy_prod/8f%2Ff3%2F99%2F8ff399c85e3147e69e2b53fcf8bcd817%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1930-06-21,1930-07-21,https://shakespeareandco.princeton.edu/members/squire-3/,Squire,Squire,64.00,100.00,1 month,30,2,,1930-06-21,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1930-06-21,1930-06-25,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/kaye-smith-shepherds-sackcloth/,Shepherds in Sackcloth,,"Kaye-Smith, Sheila",1930,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/04%2Fe2%2F7d%2F04e27dc5984c425aa0a7b032458ac1c1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-06-23,1930-06-30,https://shakespeareandco.princeton.edu/members/richard-p/,Mrs. P. Richard,"Richard, Mrs. P.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/seabrook-magic-island/,The Magic Island,,"Seabrook, William",1929,,Lending Library Card,"Sylvia Beach, Mrs. P. Richard Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f03b92a7-389b-4739-bb13-a4ef16a62e01/manifest,https://iiif.princeton.edu/loris/figgy_prod/1f%2Fff%2F97%2F1fff97e8a9c74fb19206ce5eb37b148a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1930-06-23,1930-07-23,https://shakespeareandco.princeton.edu/members/richard-p/,Mrs. P. Richard,"Richard, Mrs. P.",80.00,100.00,1 month,30,2,,1930-06-23,,,,,FRF,,,,,,,Lending Library Card;Logbook,"Sylvia Beach, Mrs. P. Richard Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",https://figgy.princeton.edu/concern/scanned_resources/f03b92a7-389b-4739-bb13-a4ef16a62e01/manifest;,https://iiif.princeton.edu/loris/figgy_prod/1f%2Fff%2F97%2F1fff97e8a9c74fb19206ce5eb37b148a%2Fintermediate_file.jp2/full/full/0/default.jpg;
+Borrow,1930-06-23,1930-07-07,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/adams-sloane-square-mystery/,The Sloane Square Mystery,,"Adams, Herbert",1925,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/7c%2Fc2%2Fca%2F7cc2ca60c7804155b3bc9d1d11727d32%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1930-06-23,1931-06-23,https://shakespeareandco.princeton.edu/members/oconor-1/,Mr. O'Conor,"O'Conor, Mr.",600.00,,1 year,365,2,,1930-06-23,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1930-06-23,1930-06-30,https://shakespeareandco.princeton.edu/members/richard-p/,Mrs. P. Richard,"Richard, Mrs. P.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/huneker-painted-veils/,Painted Veils,,"Huneker, James",1920,,Lending Library Card,"Sylvia Beach, Mrs. P. Richard Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f03b92a7-389b-4739-bb13-a4ef16a62e01/manifest,https://iiif.princeton.edu/loris/figgy_prod/1f%2Fff%2F97%2F1fff97e8a9c74fb19206ce5eb37b148a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1930-06-24,,https://shakespeareandco.princeton.edu/members/cabeen-2/,Cabeen,Cabeen,40.00,50.00,,,,,1930-06-24,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1930-06-25,1930-07-25,https://shakespeareandco.princeton.edu/members/denis-gabriel/,Mme Gabriel Denis,"Denis, Mme Gabriel",40.00,50.00,1 month,30,1,,1930-06-25,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1930-06-25,1930-07-10,https://shakespeareandco.princeton.edu/members/leyris-pierre/,Pierre Leyris,"Leyris, Pierre",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/thomas-dekker/,Thomas Dekker,,,,Unidentified. By or about Dekker.,Lending Library Card,"Sylvia Beach, Pierre Leyris Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6c75c34b-de6f-4465-baee-8f7cd76f5c87/manifest,https://iiif-cloud.princeton.edu/iiif/2/85%2F60%2F17%2F8560171d12994f1f8ad415157e8c3f7f%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-06-25,1930-07-02,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/west-harriet-hume-london/,Harriet Hume: A London Fantasy,,"West, Rebecca",1929,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/04%2Fe2%2F7d%2F04e27dc5984c425aa0a7b032458ac1c1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-06-25,1930-07-02,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/gerhardie-pending-heaven-novel/,Pending Heaven: A Novel,,"Gerhardie, William Alexander",1930,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/04%2Fe2%2F7d%2F04e27dc5984c425aa0a7b032458ac1c1%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1930-06-25,1930-06-25,https://shakespeareandco.princeton.edu/members/stockes-4/,Stockes,Stockes,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1930-06-25,1930-06-30,https://shakespeareandco.princeton.edu/members/monnier-j/,J. Monnier,"Monnier, J.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/poe-tales-mystery-imagination/,Tales of Mystery and Imagination,,"Poe, Edgar Allan",,,Lending Library Card,"Sylvia Beach, J. Monnier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/df9a3d51-011b-4364-82ba-111bc447e7fe/manifest,https://iiif.princeton.edu/loris/figgy_prod/07%2F53%2Fe7%2F0753e7f832074e969277abf52028f871%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-06-26,1930-07-12,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/hurst-president-born/,A President Is Born,,"Hurst, Fannie",1928,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/99%2F96%2Fc7%2F9996c76243504663af4276c991ff36f8%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1930-06-26,1930-07-26,https://shakespeareandco.princeton.edu/members/szerb/,Szerb / Zerb,Szerb,32.00,,1 month,30,1,,1930-06-26,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1930-06-26,1930-09-26,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",100.00,,3 months,92,1,,1930-06-26,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/86%2F21%2F45%2F862145764c5c499cb8a9d2ca1da73cf6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-06-26,1930-08-04,https://shakespeareandco.princeton.edu/members/eloff-fanie/,Fanie Eloff / Mr. S. J. P. Eloff,"Eloff, Fanie",,,,,,,,,Returned,39,,,https://shakespeareandco.princeton.edu/books/keyserling-america-set-free/,America Set Free,,"Keyserling, Hermann von",1929,,Lending Library Card,"Sylvia Beach, Fanie Eloff Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0a96720e-bd20-4cc9-8eb9-62ce6ee5e6dd/manifest,https://iiif.princeton.edu/loris/figgy_prod/41%2F0f%2F45%2F410f45fef01f4d20bcaf62e73c899215%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-06-26,1930-07-11,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/mcneile-finger-fate/,The Finger of Fate,,"McNeile, H. C.",1930,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/86%2F21%2F45%2F862145764c5c499cb8a9d2ca1da73cf6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1930-06-26,1930-09-26,https://shakespeareandco.princeton.edu/members/eloff-fanie/,Fanie Eloff / Mr. S. J. P. Eloff,"Eloff, Fanie",100.00,,3 months,92,1,,1930-06-26,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Fanie Eloff Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/0a96720e-bd20-4cc9-8eb9-62ce6ee5e6dd/manifest,;https://iiif.princeton.edu/loris/figgy_prod/41%2F0f%2F45%2F410f45fef01f4d20bcaf62e73c899215%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-06-27,1930-07-08,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/lawrence-women-love/,Women in Love,,"Lawrence, D. H.",1920,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/1a%2F31%2F93%2F1a3193da415e4768a82db00a6730db5e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-06-27,1930-07-05,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/selected-poems/,Selected Poems,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/59%2F7a%2F97%2F597a9716cd97402b8867f6fb7e9c7692%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-06-27,1930-07-28,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,31,,,https://shakespeareandco.princeton.edu/books/aldington-death-hero/,Death of a Hero,,"Aldington, Richard",1929,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/59%2F7a%2F97%2F597a9716cd97402b8867f6fb7e9c7692%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1930-06-28,1930-07-16,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",165.00,,18 days,18,2,,,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/1d%2F30%2F89%2F1d3089a9b018473cbf4498b364831b09%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1930-06-28,1930-06-28,https://shakespeareandco.princeton.edu/members/mozley-loren/,Loren Mozley,"Mozley, Loren",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1930-06-29,1930-07-31,https://shakespeareandco.princeton.edu/members/leyris-pierre/,Pierre Leyris,"Leyris, Pierre",,,,,,,,,Returned,32,,,https://shakespeareandco.princeton.edu/books/stephens-irish-fairy-tales/,Irish Fairy Tales,,"Stephens, James",1920,,Lending Library Card,"Sylvia Beach, Pierre Leyris Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6c75c34b-de6f-4465-baee-8f7cd76f5c87/manifest,https://iiif-cloud.princeton.edu/iiif/2/85%2F60%2F17%2F8560171d12994f1f8ad415157e8c3f7f%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-06-30,1930-07-11,https://shakespeareandco.princeton.edu/members/richard-p/,Mrs. P. Richard,"Richard, Mrs. P.",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/undset-kristin-lavransdatter-bridal/,"Kristin Lavransdatter: The Bridal Wreath, The Mistress of Husaby, The Cross",,"Undset, Sigrid",1929,,Lending Library Card,"Sylvia Beach, Mrs. P. Richard Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f03b92a7-389b-4739-bb13-a4ef16a62e01/manifest,https://iiif.princeton.edu/loris/figgy_prod/1f%2Fff%2F97%2F1fff97e8a9c74fb19206ce5eb37b148a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-06-30,1930-07-03,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/dos-passos-42nd-parallel/,The 42nd Parallel,,"Dos Passos, John",1930,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/ed%2Fa6%2F78%2Feda678547665411a850aacd220917411%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1930-06-30,1930-12-30,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",144.00,,6 months,183,1,AdL,1930-06-30,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,;https://iiif-cloud.princeton.edu/iiif/2/ed%2Fa6%2F78%2Feda678547665411a850aacd220917411%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-06-30,1930-08-08,https://shakespeareandco.princeton.edu/members/monnier-j/,J. Monnier,"Monnier, J.",,,,,,,,,Returned,39,,,https://shakespeareandco.princeton.edu/books/galsworthy-silver-spoon/,The Silver Spoon (A Modern Comedy),,"Galsworthy, John",1926,,Lending Library Card,"Sylvia Beach, J. Monnier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/df9a3d51-011b-4364-82ba-111bc447e7fe/manifest,https://iiif.princeton.edu/loris/figgy_prod/07%2F53%2Fe7%2F0753e7f832074e969277abf52028f871%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-06-30,1930-07-11,https://shakespeareandco.princeton.edu/members/richard-p/,Mrs. P. Richard,"Richard, Mrs. P.",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/guilbert-song-life/,The Song of My Life,,"Guilbert, Yvette",1927,,Lending Library Card,"Sylvia Beach, Mrs. P. Richard Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f03b92a7-389b-4739-bb13-a4ef16a62e01/manifest,https://iiif.princeton.edu/loris/figgy_prod/1f%2Fff%2F97%2F1fff97e8a9c74fb19206ce5eb37b148a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1930-06-30,1930-07-30,https://shakespeareandco.princeton.edu/members/mclean-5/,McLean,McLean,80.00,,1 month,30,2,,1930-06-30,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1930-07-01,1930-07-15,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/graves-goodbye-autobiography/,Goodbye to All That: An Autobiography,,"Graves, Robert",1929,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0f%2F9c%2Fb4%2F0f9cb4ea84364dde8a4e4e83427281c5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1930-07-01,1930-08-01,https://shakespeareandco.princeton.edu/members/watson-george/,George Watson,"Watson, George",40.00,50.00,1 month,31,1,,1930-07-01,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, George Watson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/17375f21-60da-45b0-98fc-234ed19f9840/manifest,;https://iiif.princeton.edu/loris/figgy_prod/4f%2Fbc%2F83%2F4fbc833965d84129a58956e209f43c82%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-07-01,1930-07-05,https://shakespeareandco.princeton.edu/members/watson-george/,George Watson,"Watson, George",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/keats-letters-john-keats/,Letters of John Keats,,"Keats, John",,"George Dillon borrowed volumes 1 and 2, and Stephen D. Tuttle borrowed volume 1 of *The Letters of John Keats,* edited by Maurice Buxton Forman (1931).",Lending Library Card,"Sylvia Beach, George Watson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/17375f21-60da-45b0-98fc-234ed19f9840/manifest,https://iiif.princeton.edu/loris/figgy_prod/4f%2Fbc%2F83%2F4fbc833965d84129a58956e209f43c82%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-07-02,1930-07-07,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/hemingway-farewell-arms/,A Farewell to Arms,,"Hemingway, Ernest",1929,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/0c%2F23%2F2c%2F0c232c4c11da4ecea57504bef367892a%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1930-07-02,1930-07-02,https://shakespeareandco.princeton.edu/members/savage/,Savage,Savage,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1930-07-02,1930-07-16,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/beasley-first-thirty-years/,My First Thirty Years,,"Beasley, Gertrude",1925,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/1d%2F30%2F89%2F1d3089a9b018473cbf4498b364831b09%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-07-02,1930-07-07,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/hughes-high-wind-jamaica/,A High Wind in Jamaica,,"Hughes, Richard",1929,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/04%2Fe2%2F7d%2F04e27dc5984c425aa0a7b032458ac1c1%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1930-07-03,1930-08-03,https://shakespeareandco.princeton.edu/members/fenison/,Mr. Fenison,"Fenison, Mr.",40.00,50.00,1 month,31,1,,1930-07-03,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1930-07-03,1930-07-04,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/hoult-time-gentlemen-time/,Time Gentlemen! Time!,,"Hoult, Norah",1930,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/ed%2Fa6%2F78%2Feda678547665411a850aacd220917411%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1930-07-03,1930-07-03,https://shakespeareandco.princeton.edu/members/ramsay-2/,Ramsay,Ramsay,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1930-07-04,1930-07-07,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/glasgow-barren-ground/,Barren Ground,,"Glasgow, Ellen",1925,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/ed%2Fa6%2F78%2Feda678547665411a850aacd220917411%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-07-04,1930-07-21,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/huneker-painted-veils/,Painted Veils,,"Huneker, James",1920,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/86%2F21%2F45%2F862145764c5c499cb8a9d2ca1da73cf6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1930-07-05,1930-10-05,https://shakespeareandco.princeton.edu/members/conty/,D. Conty,"Conty, D.",80.00,,3 months,92,1,AdL,1930-07-05,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1930-07-05,1930-07-05,https://shakespeareandco.princeton.edu/members/watson-george/,George Watson,"Watson, George",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1930-07-05,1930-07-28,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/pound-personae/,Personae,,"Pound, Ezra",1909,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/59%2F7a%2F97%2F597a9716cd97402b8867f6fb7e9c7692%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1930-07-05,1930-08-05,https://shakespeareandco.princeton.edu/members/klein-m/,M. Klein,"Klein, M.",32.00,50.00,1 month,31,1,,1930-07-05,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1930-07-07,1930-07-08,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/kaye-smith-shepherds-sackcloth/,Shepherds in Sackcloth,,"Kaye-Smith, Sheila",1930,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/ed%2Fa6%2F78%2Feda678547665411a850aacd220917411%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-07-07,1930-07-17,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/hemingway-men-without-women/,Men without Women,,"Hemingway, Ernest",1927,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/0c%2F23%2F2c%2F0c232c4c11da4ecea57504bef367892a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-07-07,1930-10-03,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,88,,,https://shakespeareandco.princeton.edu/books/oppenheim-amazing-quest-mr/,The Amazing Quest of Mr. Ernest Bliss,,"Oppenheim, E. Phillips",1919,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/7c%2Fc2%2Fca%2F7cc2ca60c7804155b3bc9d1d11727d32%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-07-07,,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/galsworthy-swan-song/,Swan Song (A Modern Comedy),,"Galsworthy, John",1928,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/7c%2Fc2%2Fca%2F7cc2ca60c7804155b3bc9d1d11727d32%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-07-07,,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/asbury-crimson-rope/,The Crimson Rope,,"Asbury, Herbert",1928,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/7c%2Fc2%2Fca%2F7cc2ca60c7804155b3bc9d1d11727d32%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-07-07,1930-07-20,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/hemingway-sun-also-rises/,The Sun Also Rises,,"Hemingway, Ernest",1926,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/0c%2F23%2F2c%2F0c232c4c11da4ecea57504bef367892a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-07-07,1930-07-13,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/sinclair-mountain-city/,Mountain City,,"Sinclair, Upton",1930,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/04%2Fe2%2F7d%2F04e27dc5984c425aa0a7b032458ac1c1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-07-08,1930-07-17,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/christie-partners-crime/,Partners in Crime,,"Christie, Agatha",1929,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/1a%2F31%2F93%2F1a3193da415e4768a82db00a6730db5e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-07-08,1930-07-10,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/oppenheim-amazing-quest-mr/,The Amazing Quest of Mr. Ernest Bliss,,"Oppenheim, E. Phillips",1919,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/ed%2Fa6%2F78%2Feda678547665411a850aacd220917411%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1930-07-09,1930-08-09,https://shakespeareandco.princeton.edu/members/fonseka-lionel-de/,Lionel de Fonseka,"Fonseka, Lionel de",40.00,,1 month,31,1,,1930-07-09,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1930-07-10,1930-07-12,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/glasgow-stooped-folly/,They Stooped to Folly,,"Glasgow, Ellen",1929,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/ed%2Fa6%2F78%2Feda678547665411a850aacd220917411%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-07-11,1930-07-16,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/melville-moby-dick-whale/,"Moby-Dick; Or, the Whale",,"Melville, Herman",1851,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/1d%2F30%2F89%2F1d3089a9b018473cbf4498b364831b09%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-07-11,1930-07-17,https://shakespeareandco.princeton.edu/members/richard-p/,Mrs. P. Richard,"Richard, Mrs. P.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/duncan-life/,My Life,,"Duncan, Isadora",1927,,Lending Library Card,"Sylvia Beach, Mrs. P. Richard Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f03b92a7-389b-4739-bb13-a4ef16a62e01/manifest,https://iiif.princeton.edu/loris/figgy_prod/1f%2Fff%2F97%2F1fff97e8a9c74fb19206ce5eb37b148a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-07-11,1930-08-04,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,24,,,https://shakespeareandco.princeton.edu/books/jenkins-life-george-borrow/,The Life of George Borrow,,"Jenkins, Herbert George",1912,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/90%2Fd9%2Fa8%2F90d9a8306f194f94a3476fc1821b94a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-07-11,1930-07-17,https://shakespeareandco.princeton.edu/members/richard-p/,Mrs. P. Richard,"Richard, Mrs. P.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/hoult-poor-women/,Poor Women!,,"Hoult, Norah",1928,,Lending Library Card,"Sylvia Beach, Mrs. P. Richard Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f03b92a7-389b-4739-bb13-a4ef16a62e01/manifest,https://iiif.princeton.edu/loris/figgy_prod/1f%2Fff%2F97%2F1fff97e8a9c74fb19206ce5eb37b148a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-07-11,1930-07-28,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/van-vechten-merry-go-round/,The Merry-Go-Round,,"Van Vechten, Carl",1918,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/0c%2F23%2F2c%2F0c232c4c11da4ecea57504bef367892a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-07-11,1930-08-04,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,24,,,https://shakespeareandco.princeton.edu/books/gilchrist-life-william-blake/,The Life of William Blake,,"Gilchrist, Alexander",1863,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/90%2Fd9%2Fa8%2F90d9a8306f194f94a3476fc1821b94a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-07-11,1930-08-04,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,24,,,https://shakespeareandco.princeton.edu/books/james-diary-man-fifty/,The Diary of a Man of Fifty,,"James, Henry",1880,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/90%2Fd9%2Fa8%2F90d9a8306f194f94a3476fc1821b94a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-07-12,1930-07-15,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/walpole-rogue-herries/,Rogue Herries,,"Walpole, Hugh",1930,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/ed%2Fa6%2F78%2Feda678547665411a850aacd220917411%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-07-12,1930-07-16,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/hoult-time-gentlemen-time/,Time Gentlemen! Time!,,"Hoult, Norah",1930,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/99%2F96%2Fc7%2F9996c76243504663af4276c991ff36f8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-07-13,1930-07-16,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/frankau-dance-little-gentleman/,"Dance, Little Gentleman!",,"Frankau, Gilbert",1929,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/04%2Fe2%2F7d%2F04e27dc5984c425aa0a7b032458ac1c1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-07-15,1930-07-16,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/landon-mystery-mansion/,Mystery Mansion,,"Landon, Herman",1928,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/ed%2Fa6%2F78%2Feda678547665411a850aacd220917411%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-07-15,1930-07-17,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/huxley-brief-candles-stories/,Brief Candles: Stories,,"Huxley, Aldous",1930,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0f%2F9c%2Fb4%2F0f9cb4ea84364dde8a4e4e83427281c5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-07-16,1930-07-28,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/walpole-captives-novel-four/,The Captives: A Novel in Four Parts,,"Walpole, Hugh",1920,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/04%2Fe2%2F7d%2F04e27dc5984c425aa0a7b032458ac1c1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-07-16,1930-07-23,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/gorky-bystander/,Bystander,,"Gorky, Maxim",1930,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/ed%2Fa6%2F78%2Feda678547665411a850aacd220917411%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-07-16,1930-08-02,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/dreiser-gallery-women/,A Gallery of Women,Vol. 2,"Dreiser, Theodore",1929,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/99%2F96%2Fc7%2F9996c76243504663af4276c991ff36f8%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1930-07-16,1930-08-16,https://shakespeareandco.princeton.edu/members/leyris-pierre/,Pierre Leyris,"Leyris, Pierre",,32.00,1 month,31,1,,1930-07-29,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Pierre Leyris Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/6c75c34b-de6f-4465-baee-8f7cd76f5c87/manifest,;https://iiif-cloud.princeton.edu/iiif/2/85%2F60%2F17%2F8560171d12994f1f8ad415157e8c3f7f%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-07-16,1930-07-28,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/james-reverberator/,The Reverberator,,"James, Henry",1888,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/04%2Fe2%2F7d%2F04e27dc5984c425aa0a7b032458ac1c1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-07-17,1930-07-23,https://shakespeareandco.princeton.edu/members/richard-p/,Mrs. P. Richard,"Richard, Mrs. P.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/walpole-rogue-herries/,Rogue Herries,,"Walpole, Hugh",1930,,Lending Library Card,"Sylvia Beach, Mrs. P. Richard Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f03b92a7-389b-4739-bb13-a4ef16a62e01/manifest,https://iiif.princeton.edu/loris/figgy_prod/1f%2Fff%2F97%2F1fff97e8a9c74fb19206ce5eb37b148a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1930-07-17,1930-07-17,https://shakespeareandco.princeton.edu/members/cabeen-2/,Cabeen,Cabeen,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1930-07-17,1930-08-17,https://shakespeareandco.princeton.edu/members/evans-g/,G. Evans,"Evans, G.",70.00,,1 month,31,4,,1930-07-17,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1930-07-17,1930-07-23,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/lawrence-rainbow/,The Rainbow,,"Lawrence, D. H.",1915,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0f%2F9c%2Fb4%2F0f9cb4ea84364dde8a4e4e83427281c5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-07-17,1930-07-28,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/van-dine-bishop-murder-case/,The Bishop Murder Case: A Philo Vance Story,,"Van Dine, S. S.",1929,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/1a%2F31%2F93%2F1a3193da415e4768a82db00a6730db5e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-07-17,1930-07-28,https://shakespeareandco.princeton.edu/members/richard-p/,Mrs. P. Richard,"Richard, Mrs. P.",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/duncan-isadora-duncans-russian/,Isadora Duncan's Russian Days and Her Last Years in France,,"Duncan, Irma;Macdougall, Allan Ross",1929,,Lending Library Card,"Sylvia Beach, Mrs. P. Richard Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f03b92a7-389b-4739-bb13-a4ef16a62e01/manifest,https://iiif.princeton.edu/loris/figgy_prod/1f%2Fff%2F97%2F1fff97e8a9c74fb19206ce5eb37b148a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1930-07-18,1930-07-18,https://shakespeareandco.princeton.edu/members/phillips-10/,Phillips,Phillips,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1930-07-18,1930-07-18,https://shakespeareandco.princeton.edu/members/wolkowska/,Wolkowska,Wolkowska,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1930-07-18,1930-07-25,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/hergesheimer-party-dress/,The Party Dress,,"Hergesheimer, Joseph",1930,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/c7%2F28%2F03%2Fc72803565c4747ee9d5ea39916575ec4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1930-07-18,1930-08-18,https://shakespeareandco.princeton.edu/members/sholover/,Sholover,Sholover,50.00,50.00,1 month,31,1,,1930-07-18,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1930-07-21,1930-07-21,https://shakespeareandco.princeton.edu/members/squire-3/,Squire,Squire,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1930-07-21,1930-08-21,https://shakespeareandco.princeton.edu/members/squire-3/,Squire,Squire,32.00,,1 month,31,1,,1930-07-21,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1930-07-21,1930-07-29,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/svevo-confessions-zeno/,Confessions of Zeno,,"Svevo, Italo",1930,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/86%2F21%2F45%2F862145764c5c499cb8a9d2ca1da73cf6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1930-07-22,1930-07-22,https://shakespeareandco.princeton.edu/members/schwirer/,Schwirer,Schwirer,,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1930-07-23,1930-07-28,https://shakespeareandco.princeton.edu/members/richard-p/,Mrs. P. Richard,"Richard, Mrs. P.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/aldington-death-hero/,Death of a Hero,,"Aldington, Richard",1929,,Lending Library Card,"Sylvia Beach, Mrs. P. Richard Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f03b92a7-389b-4739-bb13-a4ef16a62e01/manifest,https://iiif.princeton.edu/loris/figgy_prod/1f%2Fff%2F97%2F1fff97e8a9c74fb19206ce5eb37b148a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-07-23,1930-07-28,https://shakespeareandco.princeton.edu/members/richard-p/,Mrs. P. Richard,"Richard, Mrs. P.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/charlotte-bronte/,Charlotte BrontΓ«,,,,Unidentified. By or about Charlotte BrontΓ«.,Lending Library Card,"Sylvia Beach, Mrs. P. Richard Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f03b92a7-389b-4739-bb13-a4ef16a62e01/manifest,https://iiif.princeton.edu/loris/figgy_prod/1f%2Fff%2F97%2F1fff97e8a9c74fb19206ce5eb37b148a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1930-07-23,1930-08-23,https://shakespeareandco.princeton.edu/members/richard-p/,Mrs. P. Richard,"Richard, Mrs. P.",80.00,,1 month,31,2,,1930-07-23,,,,,FRF,,,,,,,Lending Library Card;Logbook,"Sylvia Beach, Mrs. P. Richard Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",https://figgy.princeton.edu/concern/scanned_resources/f03b92a7-389b-4739-bb13-a4ef16a62e01/manifest;,https://iiif.princeton.edu/loris/figgy_prod/1f%2Fff%2F97%2F1fff97e8a9c74fb19206ce5eb37b148a%2Fintermediate_file.jp2/full/full/0/default.jpg;
+Subscription,1930-07-23,1930-08-23,https://shakespeareandco.princeton.edu/members/lanux-de/,de Lanux,"Lanux, de",32.00,,1 month,31,1,,1930-07-23,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1930-07-23,1930-09-01,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,40,,,https://shakespeareandco.princeton.edu/books/priestley-good-companions/,The Good Companions,,"Priestley, J. B.",1929,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/c7%2F28%2F03%2Fc72803565c4747ee9d5ea39916575ec4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-07-23,1930-07-30,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/maugham-gentleman-parlour/,The Gentleman in the Parlour,,"Maugham, W. Somerset",1930,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0f%2F9c%2Fb4%2F0f9cb4ea84364dde8a4e4e83427281c5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-07-23,1930-07-28,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/white-gold/,Gold,,"White, Stewart Edward",1913,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/ed%2Fa6%2F78%2Feda678547665411a850aacd220917411%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-07-25,1930-09-01,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,38,,,https://shakespeareandco.princeton.edu/books/hughes-high-wind-jamaica/,A High Wind in Jamaica,,"Hughes, Richard",1929,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/c7%2F28%2F03%2Fc72803565c4747ee9d5ea39916575ec4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1930-07-25,1930-07-25,https://shakespeareandco.princeton.edu/members/hollard-mireille/,Mireille Hollard,"Hollard, Mireille",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1930-07-25,1930-07-30,https://shakespeareandco.princeton.edu/members/richard-p/,Mrs. P. Richard,"Richard, Mrs. P.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/wilson-alone-life-private/,All Alone: The Life and Private History of Emily Jane Bronte,,"Wilson, Romer",1928,,Lending Library Card,"Sylvia Beach, Mrs. P. Richard Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f03b92a7-389b-4739-bb13-a4ef16a62e01/manifest,https://iiif.princeton.edu/loris/figgy_prod/1f%2Fff%2F97%2F1fff97e8a9c74fb19206ce5eb37b148a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-07-25,1930-07-30,https://shakespeareandco.princeton.edu/members/richard-p/,Mrs. P. Richard,"Richard, Mrs. P.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/sand-intimate-journal-george/,The Intimate Journal of George Sand,,"Sand, George",1929,,Lending Library Card,"Sylvia Beach, Mrs. P. Richard Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f03b92a7-389b-4739-bb13-a4ef16a62e01/manifest,https://iiif.princeton.edu/loris/figgy_prod/1f%2Fff%2F97%2F1fff97e8a9c74fb19206ce5eb37b148a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1930-07-25,1930-07-25,https://shakespeareandco.princeton.edu/members/boer-josephine-de/,Josephine de Boer,"de Boer, Josephine",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1930-07-25,1930-07-25,https://shakespeareandco.princeton.edu/members/denis-gabriel/,Mme Gabriel Denis,"Denis, Mme Gabriel",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1930-07-26,1930-08-02,https://shakespeareandco.princeton.edu/members/foote-florence/,Florence Foote,"Foote, Florence",8.00,,1 week,7,,,1930-07-26,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1930-07-26,1930-07-26,https://shakespeareandco.princeton.edu/members/foote-florence/,Florence Foote,"Foote, Florence",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1930-07-28,1930-08-13,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/maugham-painted-veil/,The Painted Veil,,"Maugham, W. Somerset",1925,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/0c%2F23%2F2c%2F0c232c4c11da4ecea57504bef367892a%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1930-07-28,1930-08-28,https://shakespeareandco.princeton.edu/members/denis-gabriel/,Mme Gabriel Denis,"Denis, Mme Gabriel",40.00,,1 month,31,1,,1930-07-28,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1930-07-28,1930-08-18,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/mansfield-bliss-short-stories/,Bliss and Other Stories,,"Mansfield, Katherine",1920,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/1a%2F31%2F93%2F1a3193da415e4768a82db00a6730db5e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-07-28,1930-08-01,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/merrick-little-dog-laughed/,The Little Dog Laughed,,"Merrick, Leonard",1930,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/04%2Fe2%2F7d%2F04e27dc5984c425aa0a7b032458ac1c1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-07-28,1930-07-29,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/conrad-secret-agent-simple/,The Secret Agent: A Simple Tale,,"Conrad, Joseph",1907,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/ed%2Fa6%2F78%2Feda678547665411a850aacd220917411%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-07-28,1930-08-09,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/byron/,Byron,,,,Unidentified. By or about Byron.,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/0c%2F23%2F2c%2F0c232c4c11da4ecea57504bef367892a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-07-28,1930-08-04,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/gorky-three/,Three of Them,,"Gorky, Maxim",1905,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/71%2F83%2Fd0%2F7183d02148254c329309776fdbc9659c%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1930-07-29,1930-08-12,https://shakespeareandco.princeton.edu/members/phillips-10/,Phillips,Phillips,32.00,,2 weeks,14,2,,1930-07-29,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1930-07-29,1930-08-07,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/nesbit-babes-wood/,Babes in the Wood,,"Nesbit, Edith",1896,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/86%2F21%2F45%2F862145764c5c499cb8a9d2ca1da73cf6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1930-07-29,1930-08-29,https://shakespeareandco.princeton.edu/members/volkowa-2/,Volkova,Volkova,80.00,,1 month,31,2,,1930-07-29,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1930-07-29,1930-07-30,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/conrad-chance/,Chance,,"Conrad, Joseph",1913,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/ed%2Fa6%2F78%2Feda678547665411a850aacd220917411%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1930-07-30,1930-07-30,https://shakespeareandco.princeton.edu/members/arndt/,J. Arndt,"Arndt, J.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1930-07-30,1930-07-31,https://shakespeareandco.princeton.edu/members/richard-p/,Mrs. P. Richard,"Richard, Mrs. P.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/scott-golden-door/,The Golden Door,,"Scott, Evelyn",1925,,Lending Library Card,"Sylvia Beach, Mrs. P. Richard Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f03b92a7-389b-4739-bb13-a4ef16a62e01/manifest,https://iiif.princeton.edu/loris/figgy_prod/1f%2Fff%2F97%2F1fff97e8a9c74fb19206ce5eb37b148a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-07-30,1930-08-01,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/huxley-brief-candles-stories/,Brief Candles: Stories,,"Huxley, Aldous",1930,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/ed%2Fa6%2F78%2Feda678547665411a850aacd220917411%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-07-30,1930-07-31,https://shakespeareandco.princeton.edu/members/richard-p/,Mrs. P. Richard,"Richard, Mrs. P.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/gozlan-balzac-slippers/,Balzac in Slippers,,"Gozlan, LΓ©on",1929,,Lending Library Card,"Sylvia Beach, Mrs. P. Richard Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f03b92a7-389b-4739-bb13-a4ef16a62e01/manifest,https://iiif.princeton.edu/loris/figgy_prod/1f%2Fff%2F97%2F1fff97e8a9c74fb19206ce5eb37b148a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-07-30,1930-08-05,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/lowndes-studies-wives/,Studies in Wives,,"Lowndes, Marie Belloc",1909,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/0f%2F9c%2Fb4%2F0f9cb4ea84364dde8a4e4e83427281c5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-07-31,1930-08-01,https://shakespeareandco.princeton.edu/members/richard-p/,Mrs. P. Richard,"Richard, Mrs. P.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/smedley-daughter-earth/,Daughter of Earth,,"Smedley, Agnes",1929,,Lending Library Card,"Sylvia Beach, Mrs. P. Richard Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f03b92a7-389b-4739-bb13-a4ef16a62e01/manifest,https://iiif.princeton.edu/loris/figgy_prod/1f%2Fff%2F97%2F1fff97e8a9c74fb19206ce5eb37b148a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-07-31,1930-08-01,https://shakespeareandco.princeton.edu/members/richard-p/,Mrs. P. Richard,"Richard, Mrs. P.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/rolland-beethoven-creator/,Beethoven the Creator,,"Rolland, Romain",1929,,Lending Library Card,"Sylvia Beach, Mrs. P. Richard Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f03b92a7-389b-4739-bb13-a4ef16a62e01/manifest,https://iiif.princeton.edu/loris/figgy_prod/1f%2Fff%2F97%2F1fff97e8a9c74fb19206ce5eb37b148a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-08-01,1930-08-19,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/sitwell-hundred-one-harlequins/,The Hundred and One Harlequins,,"Sitwell, Sacheverell",1922,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/59%2F7a%2F97%2F597a9716cd97402b8867f6fb7e9c7692%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-08-01,1930-08-04,https://shakespeareandco.princeton.edu/members/richard-p/,Mrs. P. Richard,"Richard, Mrs. P.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/mcneill-moss-love/,That Other Love,,"McNeill-Moss, Geoffrey",1929,,Lending Library Card,"Sylvia Beach, Mrs. P. Richard Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f03b92a7-389b-4739-bb13-a4ef16a62e01/manifest,https://iiif.princeton.edu/loris/figgy_prod/1f%2Fff%2F97%2F1fff97e8a9c74fb19206ce5eb37b148a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-08-01,1930-08-04,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/delafield-turn-back-leaves/,Turn Back the Leaves,,"Delafield, E. M.",1930,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/ed%2Fa6%2F78%2Feda678547665411a850aacd220917411%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-08-01,1930-08-19,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/dickens-life-adventures-martin/,The Life and Adventures of Martin Chuzzlewit,,"Dickens, Charles",1844,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/59%2F7a%2F97%2F597a9716cd97402b8867f6fb7e9c7692%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-08-01,1930-08-11,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/sinclair-mountain-city/,Mountain City,,"Sinclair, Upton",1930,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/04%2Fe2%2F7d%2F04e27dc5984c425aa0a7b032458ac1c1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-08-01,1930-08-04,https://shakespeareandco.princeton.edu/members/richard-p/,Mrs. P. Richard,"Richard, Mrs. P.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/maugham-gentleman-parlour/,The Gentleman in the Parlour,,"Maugham, W. Somerset",1930,,Lending Library Card,"Sylvia Beach, Mrs. P. Richard Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f03b92a7-389b-4739-bb13-a4ef16a62e01/manifest,https://iiif.princeton.edu/loris/figgy_prod/1f%2Fff%2F97%2F1fff97e8a9c74fb19206ce5eb37b148a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-08-01,1930-08-19,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/young-brother-jonathan/,My Brother Jonathan,,"Young, Francis Brett",1928,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/59%2F7a%2F97%2F597a9716cd97402b8867f6fb7e9c7692%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-08-02,1930-08-18,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/powys-wolf-solent/,Wolf Solent,,"Powys, John Cowper",1929,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/99%2F96%2Fc7%2F9996c76243504663af4276c991ff36f8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-08-04,1930-08-18,https://shakespeareandco.princeton.edu/members/richard-p/,Mrs. P. Richard,"Richard, Mrs. P.",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/anderson-thirty-years-war/,My Thirty Years' War,,"Anderson, Margaret C.",1930,,Lending Library Card,"Sylvia Beach, Mrs. P. Richard Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f03b92a7-389b-4739-bb13-a4ef16a62e01/manifest,https://iiif.princeton.edu/loris/figgy_prod/b8%2Fea%2Fd7%2Fb8ead783d8ad47c596149c6f8544346d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-08-04,1930-08-08,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/frank-dark-mother/,The Dark Mother,,"Frank, Waldo",1920,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/ed%2Fa6%2F78%2Feda678547665411a850aacd220917411%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-08-04,1930-10-10,https://shakespeareandco.princeton.edu/members/vogein/,Pierre Vogein,"Vogein, Pierre",,,,,,,,,Returned,67,,,https://shakespeareandco.princeton.edu/books/goncharov-oblomov/,Oblomov,,"Goncharov, Ivan",1929,,Lending Library Card,"Sylvia Beach, Pierre Vogein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c631331c-6382-44fd-be7d-a34e537ccfe9/manifest,https://iiif-cloud.princeton.edu/iiif/2/71%2F83%2Fd0%2F7183d02148254c329309776fdbc9659c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-08-04,1930-08-18,https://shakespeareandco.princeton.edu/members/richard-p/,Mrs. P. Richard,"Richard, Mrs. P.",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/bryner-bridegroom-tarried/,While the Bridegroom Tarried,,"Bryner, Edna",1929,,Lending Library Card,"Sylvia Beach, Mrs. P. Richard Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f03b92a7-389b-4739-bb13-a4ef16a62e01/manifest,https://iiif.princeton.edu/loris/figgy_prod/b8%2Fea%2Fd7%2Fb8ead783d8ad47c596149c6f8544346d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-08-04,1930-10-04,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,61,,,https://shakespeareandco.princeton.edu/books/james-tragic-muse/,The Tragic Muse,2 vols.,"James, Henry",1890,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/90%2Fd9%2Fa8%2F90d9a8306f194f94a3476fc1821b94a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1930-08-05,1930-11-05,https://shakespeareandco.princeton.edu/members/tony-mayer/,Thérèse Tony-Mayer,"Tony-Mayer, Thérèse",80.00,50.00,3 months,92,1,,1930-08-05,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Thérèse Tony-Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/27246b4c-7d99-4dca-b874-ab90bd542cfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/91%2Ff4%2Fa2%2F91f4a2e69d604c368e409a42f7549f41%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-08-05,1930-09-18,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,44,,,https://shakespeareandco.princeton.edu/books/arnim-pastors-wife/,The Pastor's Wife,,"Arnim, Elizabeth von",1914,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/48%2Fde%2Ff2%2F48def2d871324a3fb61c8ae7b94f7b61%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-08-05,1930-09-18,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,44,,,https://shakespeareandco.princeton.edu/books/vorse-second-cabin/,Second Cabin,,"Vorse, Mary Heaton",1928,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/48%2Fde%2Ff2%2F48def2d871324a3fb61c8ae7b94f7b61%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-08-05,1930-08-25,https://shakespeareandco.princeton.edu/members/tony-mayer/,Thérèse Tony-Mayer,"Tony-Mayer, Thérèse",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/lawrence-women-love/,Women in Love,,"Lawrence, D. H.",1920,,Lending Library Card,"Sylvia Beach, Thérèse Tony-Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/27246b4c-7d99-4dca-b874-ab90bd542cfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/91%2Ff4%2Fa2%2F91f4a2e69d604c368e409a42f7549f41%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-08-05,1930-08-07,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/smollett-expedition-humphry-clinker/,The Expedition of Humphry Clinker,2 vols.,"Smollett, Tobias",1771,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/48%2Fde%2Ff2%2F48def2d871324a3fb61c8ae7b94f7b61%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-08-05,1930-08-21,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/gerhardie-pending-heaven-novel/,Pending Heaven: A Novel,,"Gerhardie, William Alexander",1930,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/48%2Fde%2Ff2%2F48def2d871324a3fb61c8ae7b94f7b61%2Fintermediate_file.jp2/full/full/0/default.jpg
+Generic,1930-08-06,,https://shakespeareandco.princeton.edu/members/rhein-verlag/,Rhein Verlag,Rhein Verlag,,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/joyce-ulysse/,Ulysse,,"Joyce, James",1929,The first French translation of *Ulysses.*,Lending Library Card,"Sylvia Beach, Rhein-Verlag Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/270705ef-082e-482d-8e0f-ca99c90da614/manifest,https://iiif.princeton.edu/loris/figgy_prod/8f%2Ff3%2F99%2F8ff399c85e3147e69e2b53fcf8bcd817%2Fintermediate_file.jp2/full/full/0/default.jpg
+Generic,1930-08-06,,https://shakespeareandco.princeton.edu/members/rhein-verlag/,Rhein Verlag,Rhein Verlag,,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/joyce-ulysses/,Ulysses,1930 Eleventh printing,"Joyce, James",1922,,Lending Library Card,"Sylvia Beach, Rhein-Verlag Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/270705ef-082e-482d-8e0f-ca99c90da614/manifest,https://iiif.princeton.edu/loris/figgy_prod/8f%2Ff3%2F99%2F8ff399c85e3147e69e2b53fcf8bcd817%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-08-07,1930-08-13,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/wilder-bridge-san-luis/,The Bridge of San Luis Rey,,"Wilder, Thornton",1927,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/86%2F21%2F45%2F862145764c5c499cb8a9d2ca1da73cf6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-08-07,1930-09-18,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,42,,,https://shakespeareandco.princeton.edu/books/dreiser-genius/,"The ""Genius""",,"Dreiser, Theodore",1915,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/48%2Fde%2Ff2%2F48def2d871324a3fb61c8ae7b94f7b61%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1930-08-08,1930-08-08,https://shakespeareandco.princeton.edu/members/alvear/,Elvira de Alvear,"de Alvear, Elvira",,,,,,,,,,,100.00,FRF,https://shakespeareandco.princeton.edu/books/eliot-song-simeon/,A Song for Simeon,,"Eliot, T. S.",1928,,Lending Library Card,"Sylvia Beach, Elvira de Alvear Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/19d09c5e-a411-40f1-99df-f07f512e3901/manifest,https://iiif.princeton.edu/loris/figgy_prod/38%2F4f%2Fc3%2F384fc3fb27ea47bfb3f676a766996ac2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1930-08-08,1930-08-08,https://shakespeareandco.princeton.edu/members/alvear/,Elvira de Alvear,"de Alvear, Elvira",,,,,,,,,,,25.00,FRF,https://shakespeareandco.princeton.edu/books/lawrence-pansies/,Pansies,,"Lawrence, D. H.",1929,,Lending Library Card,"Sylvia Beach, Elvira de Alvear Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/19d09c5e-a411-40f1-99df-f07f512e3901/manifest,https://iiif.princeton.edu/loris/figgy_prod/38%2F4f%2Fc3%2F384fc3fb27ea47bfb3f676a766996ac2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1930-08-08,1930-08-08,https://shakespeareandco.princeton.edu/members/alvear/,Elvira de Alvear,"de Alvear, Elvira",,,,,,,,,,,18.00,FRF,https://shakespeareandco.princeton.edu/books/mencken-american-mercury/,The American Mercury,,,,,Lending Library Card,"Sylvia Beach, Elvira de Alvear Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/19d09c5e-a411-40f1-99df-f07f512e3901/manifest,https://iiif.princeton.edu/loris/figgy_prod/38%2F4f%2Fc3%2F384fc3fb27ea47bfb3f676a766996ac2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-08-08,1930-09-12,https://shakespeareandco.princeton.edu/members/monnier-j/,J. Monnier,"Monnier, J.",,,,,,,,,Returned,35,,,https://shakespeareandco.princeton.edu/books/lewis-babbitt/,Babbitt,,"Lewis, Sinclair",1922,,Lending Library Card,"Sylvia Beach, J. Monnier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/df9a3d51-011b-4364-82ba-111bc447e7fe/manifest,https://iiif.princeton.edu/loris/figgy_prod/07%2F53%2Fe7%2F0753e7f832074e969277abf52028f871%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1930-08-08,1930-08-08,https://shakespeareandco.princeton.edu/members/alvear/,Elvira de Alvear,"de Alvear, Elvira",,,,,,,,,,,70.00,FRF,https://shakespeareandco.princeton.edu/books/jolas-transition-stories-twenty/,"Transition Stories: Twenty-Three Stories from ""Transition""",,,1929,,Lending Library Card,"Sylvia Beach, Elvira de Alvear Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/19d09c5e-a411-40f1-99df-f07f512e3901/manifest,https://iiif.princeton.edu/loris/figgy_prod/38%2F4f%2Fc3%2F384fc3fb27ea47bfb3f676a766996ac2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1930-08-08,1930-08-08,https://shakespeareandco.princeton.edu/members/alvear/,Elvira de Alvear,"de Alvear, Elvira",,,,,,,,,,,160.00,FRF,https://shakespeareandco.princeton.edu/books/barney-one-legion/,The One Who Is Legion,,"Barney, Natalie Clifford",1930,,Lending Library Card,"Sylvia Beach, Elvira de Alvear Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/19d09c5e-a411-40f1-99df-f07f512e3901/manifest,https://iiif.princeton.edu/loris/figgy_prod/38%2F4f%2Fc3%2F384fc3fb27ea47bfb3f676a766996ac2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1930-08-08,1930-08-08,https://shakespeareandco.princeton.edu/members/alvear/,Elvira de Alvear,"de Alvear, Elvira",,,,,,,,,,,110.00,FRF,https://shakespeareandco.princeton.edu/books/huxley-brief-candles-stories/,Brief Candles: Stories,,"Huxley, Aldous",1930,,Lending Library Card,"Sylvia Beach, Elvira de Alvear Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/19d09c5e-a411-40f1-99df-f07f512e3901/manifest,https://iiif.princeton.edu/loris/figgy_prod/38%2F4f%2Fc3%2F384fc3fb27ea47bfb3f676a766996ac2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1930-08-08,1930-08-08,https://shakespeareandco.princeton.edu/members/alvear/,Elvira de Alvear,"de Alvear, Elvira",,,,,,,,,,,56.00,FRF,https://shakespeareandco.princeton.edu/books/crane-white-buildings/,White Buildings,,"Crane, Hart",1926,,Lending Library Card,"Sylvia Beach, Elvira de Alvear Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/19d09c5e-a411-40f1-99df-f07f512e3901/manifest,https://iiif.princeton.edu/loris/figgy_prod/38%2F4f%2Fc3%2F384fc3fb27ea47bfb3f676a766996ac2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1930-08-08,1930-08-08,https://shakespeareandco.princeton.edu/members/alvear/,Elvira de Alvear,"de Alvear, Elvira",,,,,,,,,,,55.00,FRF,https://shakespeareandco.princeton.edu/books/doctor-donne-gargantua/,Doctor Donne & Gargantua: The First Six Cantos,,"Sitwell, Sacheverell",1930,,Lending Library Card,"Sylvia Beach, Elvira de Alvear Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/19d09c5e-a411-40f1-99df-f07f512e3901/manifest,https://iiif.princeton.edu/loris/figgy_prod/38%2F4f%2Fc3%2F384fc3fb27ea47bfb3f676a766996ac2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1930-08-08,1930-08-08,https://shakespeareandco.princeton.edu/members/alvear/,Elvira de Alvear,"de Alvear, Elvira",,,,,,,,,,,70.00,FRF,https://shakespeareandco.princeton.edu/books/crane-bridge/,The Bridge,,"Crane, Hart",1930,,Lending Library Card,"Sylvia Beach, Elvira de Alvear Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/19d09c5e-a411-40f1-99df-f07f512e3901/manifest,https://iiif.princeton.edu/loris/figgy_prod/38%2F4f%2Fc3%2F384fc3fb27ea47bfb3f676a766996ac2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1930-08-08,1930-08-08,https://shakespeareandco.princeton.edu/members/alvear/,Elvira de Alvear,"de Alvear, Elvira",,,,,,,,,,,105.00,FRF,https://shakespeareandco.princeton.edu/books/sitwell-alexander-pope/,Alexander Pope,,"Sitwell, Edith",1930,,Lending Library Card,"Sylvia Beach, Elvira de Alvear Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/19d09c5e-a411-40f1-99df-f07f512e3901/manifest,https://iiif.princeton.edu/loris/figgy_prod/38%2F4f%2Fc3%2F384fc3fb27ea47bfb3f676a766996ac2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-08-08,1930-08-11,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/fletcher-great-brighton-mystery/,The Great Brighton Mystery,,"Fletcher, Joseph Smith",1925,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/ed%2Fa6%2F78%2Feda678547665411a850aacd220917411%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1930-08-08,1930-08-08,https://shakespeareandco.princeton.edu/members/alvear/,Elvira de Alvear,"de Alvear, Elvira",,,,,,,,,,,30.00,FRF,https://shakespeareandco.princeton.edu/books/jolas-transition/,transition,"no. 19 β 20, 1930",,,,Lending Library Card,"Sylvia Beach, Elvira de Alvear Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/19d09c5e-a411-40f1-99df-f07f512e3901/manifest,https://iiif.princeton.edu/loris/figgy_prod/38%2F4f%2Fc3%2F384fc3fb27ea47bfb3f676a766996ac2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1930-08-08,1930-08-08,https://shakespeareandco.princeton.edu/members/alvear/,Elvira de Alvear,"de Alvear, Elvira",,,,,,,,,,,375.00,FRF,https://shakespeareandco.princeton.edu/books/joyce-james-joyce-reading/,"James Joyce Reading ""Anna Livia Plurabelle""",,"Joyce, James",1929,[Listen](https://archive.org/details/JamesJoyceReadsannaLiviaPlurabelleFromFinnegansWake1929).,Lending Library Card,"Sylvia Beach, Elvira de Alvear Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/19d09c5e-a411-40f1-99df-f07f512e3901/manifest,https://iiif.princeton.edu/loris/figgy_prod/38%2F4f%2Fc3%2F384fc3fb27ea47bfb3f676a766996ac2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1930-08-08,1930-08-08,https://shakespeareandco.princeton.edu/members/alvear/,Elvira de Alvear,"de Alvear, Elvira",,,,,,,,,,,12.00,FRF,https://shakespeareandco.princeton.edu/books/joyce-pomes-penyeach/,Pomes Penyeach,,"Joyce, James",1927,,Lending Library Card,"Sylvia Beach, Elvira de Alvear Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/19d09c5e-a411-40f1-99df-f07f512e3901/manifest,https://iiif.princeton.edu/loris/figgy_prod/38%2F4f%2Fc3%2F384fc3fb27ea47bfb3f676a766996ac2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1930-08-08,1930-08-08,https://shakespeareandco.princeton.edu/members/alvear/,Elvira de Alvear,"de Alvear, Elvira",,,,,,,,,,,300.00,FRF,https://shakespeareandco.princeton.edu/books/saint-john-perse-anabasis/,Anabasis: A Poem,,Saint-John Perse,1930,,Lending Library Card,"Sylvia Beach, Elvira de Alvear Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/19d09c5e-a411-40f1-99df-f07f512e3901/manifest,https://iiif.princeton.edu/loris/figgy_prod/38%2F4f%2Fc3%2F384fc3fb27ea47bfb3f676a766996ac2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1930-08-08,1930-08-08,https://shakespeareandco.princeton.edu/members/alvear/,Elvira de Alvear,"de Alvear, Elvira",,,,,,,,,,,150.00,FRF,https://shakespeareandco.princeton.edu/books/gilbert-james-joyces-ulysses/,James Joyce's Ulysses: A Study,,"Gilbert, Stuart",1930,,Lending Library Card,"Sylvia Beach, Elvira de Alvear Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/19d09c5e-a411-40f1-99df-f07f512e3901/manifest,https://iiif.princeton.edu/loris/figgy_prod/38%2F4f%2Fc3%2F384fc3fb27ea47bfb3f676a766996ac2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1930-08-08,1930-08-08,https://shakespeareandco.princeton.edu/members/alvear/,Elvira de Alvear,"de Alvear, Elvira",,,,,,,,,,,850.00,FRF,https://shakespeareandco.princeton.edu/books/joyce-haveth-childers-everywhere/,Haveth Childers Everywhere: Fragment of Work in Progress,,"Joyce, James",1930,,Lending Library Card,"Sylvia Beach, Elvira de Alvear Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/19d09c5e-a411-40f1-99df-f07f512e3901/manifest,https://iiif.princeton.edu/loris/figgy_prod/38%2F4f%2Fc3%2F384fc3fb27ea47bfb3f676a766996ac2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-08-09,1930-08-11,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/antheil-death-dark/,Death in the Dark,,"Antheil, George",1930,"Written under the pseudonym, Stacey Bishop.",Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/04%2Fe2%2F7d%2F04e27dc5984c425aa0a7b032458ac1c1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-08-09,1930-08-13,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/joyce-portrait-artist-young/,A Portrait of the Artist as a Young Man,,"Joyce, James",1916,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/0c%2F23%2F2c%2F0c232c4c11da4ecea57504bef367892a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-08-09,1930-08-30,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/spurr-life-writings-alexandre/,The Life and Writings of Alexandre Dumas (1802 β 1870),,"Spurr, Harry A.",1902,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/0c%2F23%2F2c%2F0c232c4c11da4ecea57504bef367892a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-08-11,1930-08-18,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/hichens-last-time/,The Last Time,,"Hichens, Robert Smythe",1924,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/04%2Fe2%2F7d%2F04e27dc5984c425aa0a7b032458ac1c1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-08-11,1930-08-18,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/tarkington-alice-adams/,Alice Adams,,"Tarkington, Booth",1921,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/04%2Fe2%2F7d%2F04e27dc5984c425aa0a7b032458ac1c1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-08-11,1930-08-14,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/galsworthy-patrician/,The Patrician,,"Galsworthy, John",1911,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/ed%2Fa6%2F78%2Feda678547665411a850aacd220917411%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-08-13,1930-08-30,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/doyle-hound-baskervilles/,The Hound of the Baskervilles,,"Doyle, Arthur Conan",1902,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/0c%2F23%2F2c%2F0c232c4c11da4ecea57504bef367892a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-08-13,1930-08-26,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/maugham-painted-veil/,The Painted Veil,,"Maugham, W. Somerset",1925,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/86%2F21%2F45%2F862145764c5c499cb8a9d2ca1da73cf6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-08-14,1930-08-18,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/gibbs-darkened-rooms/,Darkened Rooms,,"Gibbs, Philip",1929,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/ed%2Fa6%2F78%2Feda678547665411a850aacd220917411%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-08-14,1930-08-18,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/frazier-myths-origin-fire/,Myths of the Origin of Fire: An Essay,,"Frazer, James George",1930,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/ed%2Fa6%2F78%2Feda678547665411a850aacd220917411%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-08-18,1930-08-28,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/lewis-lion-fox/,The Lion and the Fox,,"Lewis, Wyndham",1927,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/ed%2Fa6%2F78%2Feda678547665411a850aacd220917411%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-08-18,1930-08-26,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/hoult-poor-women/,Poor Women!,,"Hoult, Norah",1928,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/99%2F96%2Fc7%2F9996c76243504663af4276c991ff36f8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-08-18,1930-08-22,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/james-altar-dead/,The Altar of the Dead,,"James, Henry",1895,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/04%2Fe2%2F7d%2F04e27dc5984c425aa0a7b032458ac1c1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-08-18,1930-08-22,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/james-lesson-master/,The Lesson of the Master,,"James, Henry",1888,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/04%2Fe2%2F7d%2F04e27dc5984c425aa0a7b032458ac1c1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-08-20,1930-10-20,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,61,,,https://shakespeareandco.princeton.edu/books/scott-fortunes-nigel/,The Fortunes of Nigel,,"Scott, Walter",1822,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/0c%2F23%2F2c%2F0c232c4c11da4ecea57504bef367892a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-08-20,1930-10-20,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,61,,,https://shakespeareandco.princeton.edu/books/hergesheimer-tampico/,Tampico,,"Hergesheimer, Joseph",1926,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/0c%2F23%2F2c%2F0c232c4c11da4ecea57504bef367892a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-08-22,1930-11-03,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,73,,,https://shakespeareandco.princeton.edu/books/defoe-moll-flanders/,Moll Flanders,,"Defoe, Daniel",1722,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/16%2F9e%2F3d%2F169e3de9faf046a989463efd25e3aef3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-08-22,1930-08-26,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/macaulay-potterism/,Potterism,,"Macaulay, Rose",1920,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/04%2Fe2%2F7d%2F04e27dc5984c425aa0a7b032458ac1c1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-08-22,1930-08-26,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/tarkington-plutocrat/,The Plutocrat,,"Tarkington, Booth",1927,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/04%2Fe2%2F7d%2F04e27dc5984c425aa0a7b032458ac1c1%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1930-08-23,1930-08-28,https://shakespeareandco.princeton.edu/members/richard-p/,Mrs. P. Richard,"Richard, Mrs. P.",,,5 days,5,2,,1930-08-18,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Mrs. P. Richard Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f03b92a7-389b-4739-bb13-a4ef16a62e01/manifest,https://iiif.princeton.edu/loris/figgy_prod/b8%2Fea%2Fd7%2Fb8ead783d8ad47c596149c6f8544346d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-08-25,1930-09-15,https://shakespeareandco.princeton.edu/members/tony-mayer/,Thérèse Tony-Mayer,"Tony-Mayer, Thérèse",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/lewis-elmer-gantry/,Elmer Gantry,,"Lewis, Sinclair",1927,,Lending Library Card,"Sylvia Beach, Thérèse Tony-Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/27246b4c-7d99-4dca-b874-ab90bd542cfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/91%2Ff4%2Fa2%2F91f4a2e69d604c368e409a42f7549f41%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-08-25,1930-10-10,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,46,,,https://shakespeareandco.princeton.edu/books/shelley-poetical-works-percy/,Shelley's Works,,"Shelley, Percy Bysshe",,"Fernand Colens borrowed the 2 volume Everyman's Library edition of Shelley's poems, edited by A. H. Koszul (1907). Alina Prot borrowed volume 1 of an unidentified edition, and Antoinette Bernheim and Elizabeth Theves borrowed volume 2 of an unidentified edition.",Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/59%2F7a%2F97%2F597a9716cd97402b8867f6fb7e9c7692%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-08-26,1930-09-06,https://shakespeareandco.princeton.edu/members/flanner-janet/,Janet Flanner,"Flanner, Janet",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/strachey-elizabeth-essex-tragic/,Elizabeth and Essex: A Tragic History,,"Strachey, Giles Lytton",1928,,Lending Library Card,"Sylvia Beach, Janet Flanner Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3c36cd98-f34d-423a-a386-074c68e7cbc4/manifest,https://iiif.princeton.edu/loris/figgy_prod/d8%2Fd8%2Fa5%2Fd8d8a57ec3eb48bd8cd3b51d264a508f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-08-26,1930-08-29,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/oppenheim-million-pound-deposit/,The Million Pound Deposit,,"Oppenheim, E. Phillips",1930,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/86%2F21%2F45%2F862145764c5c499cb8a9d2ca1da73cf6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-08-26,1930-09-06,https://shakespeareandco.princeton.edu/members/flanner-janet/,Janet Flanner,"Flanner, Janet",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/hackett-henry-eighth/,Henry the Eighth,,"Hackett, Francis",1929,,Lending Library Card,"Sylvia Beach, Janet Flanner Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3c36cd98-f34d-423a-a386-074c68e7cbc4/manifest,https://iiif.princeton.edu/loris/figgy_prod/d8%2Fd8%2Fa5%2Fd8d8a57ec3eb48bd8cd3b51d264a508f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-08-26,1930-09-05,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/dos-passos-42nd-parallel/,The 42nd Parallel,,"Dos Passos, John",1930,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/99%2F96%2Fc7%2F9996c76243504663af4276c991ff36f8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-08-26,1930-08-28,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/odonovan-vocations/,Vocations,,"O'Donovan, Gerald",1922,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/04%2Fe2%2F7d%2F04e27dc5984c425aa0a7b032458ac1c1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-08-26,1930-08-28,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/tarkington-women/,Women,,"Tarkington, Booth",1925,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/04%2Fe2%2F7d%2F04e27dc5984c425aa0a7b032458ac1c1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-08-26,1930-09-06,https://shakespeareandco.princeton.edu/members/solano/,Solita Solano,"Solano, Solita",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/wallace-white-face/,White Face,,"Wallace, Edgar",1930,,Lending Library Card,"Sylvia Beach, Solita Solano Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ae91e41-ccc0-4df6-9150-63a893d8d633/manifest,https://iiif.princeton.edu/loris/figgy_prod/ec%2F0a%2F8f%2Fec0a8f2c51534c21948ffd2e4c0054d2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-08-28,1930-09-04,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/barton-sober-truth-collection/,"Sober Truth: A Collection of Nineteenth-Century Episodes, Fantastic, Grotesque and Mysterious",,,1930,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/91%2Fea%2F83%2F91ea83a5aee54932b4032e4ba8d8d158%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-08-28,1930-09-04,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/delafield-women-like/,Women Are Like That,,"Delafield, E. M.",1929,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/04%2Fe2%2F7d%2F04e27dc5984c425aa0a7b032458ac1c1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-08-28,1930-09-04,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/kaye-smith-iron-smoke/,Iron and Smoke,,"Kaye-Smith, Sheila",1928,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/04%2Fe2%2F7d%2F04e27dc5984c425aa0a7b032458ac1c1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-08-29,1930-09-01,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/packard-red-ledger/,The Red Ledger,,"Packard, Frank L.",1926,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/86%2F21%2F45%2F862145764c5c499cb8a9d2ca1da73cf6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-09-01,1930-09-03,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/wallace-sinister-man/,The Sinister Man,,"Wallace, Edgar",1925,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/86%2F21%2F45%2F862145764c5c499cb8a9d2ca1da73cf6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-09-03,1930-09-05,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/frankau-dance-little-gentleman/,"Dance, Little Gentleman!",,"Frankau, Gilbert",1929,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/86%2F21%2F45%2F862145764c5c499cb8a9d2ca1da73cf6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-09-04,1930-09-09,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/deeping-prophetic-marriage/,The Prophetic Marriage,,"Deeping, Warwick",1928,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/04%2Fe2%2F7d%2F04e27dc5984c425aa0a7b032458ac1c1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-09-04,1930-09-06,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/woolf-mrs-dalloway/,Mrs. Dalloway,,"Woolf, Virginia",1925,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/91%2Fea%2F83%2F91ea83a5aee54932b4032e4ba8d8d158%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-09-04,1930-09-09,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/locke-tale-triona/,The Tale of Triona,,"Locke, William John",1922,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/04%2Fe2%2F7d%2F04e27dc5984c425aa0a7b032458ac1c1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-09-05,1930-09-16,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/masefield-sard-harker/,Sard Harker,,"Masefield, John",1924,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Faf%2Fe8%2Fccafe843d8e34cf798333f34bb7fbe37%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-09-05,1930-09-20,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/walpole-rogue-herries/,Rogue Herries,,"Walpole, Hugh",1930,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/99%2F96%2Fc7%2F9996c76243504663af4276c991ff36f8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-09-06,1930-10-13,https://shakespeareandco.princeton.edu/members/flanner-janet/,Janet Flanner,"Flanner, Janet",,,,,,,,,Returned,37,,,https://shakespeareandco.princeton.edu/books/boulenger-seventeenth-century-national/,The Seventeenth Century (The National History of France),,"Boulenger, Jacques",1920,,Lending Library Card,"Sylvia Beach, Janet Flanner Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3c36cd98-f34d-423a-a386-074c68e7cbc4/manifest,https://iiif.princeton.edu/loris/figgy_prod/d8%2Fd8%2Fa5%2Fd8d8a57ec3eb48bd8cd3b51d264a508f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-09-06,1930-10-13,https://shakespeareandco.princeton.edu/members/flanner-janet/,Janet Flanner,"Flanner, Janet",,,,,,,,,Returned,37,,,https://shakespeareandco.princeton.edu/books/cruttwell-madame-maintenon/,Madame de Maintenon,,"Cruttwell, Maud",1930,,Lending Library Card,"Sylvia Beach, Janet Flanner Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3c36cd98-f34d-423a-a386-074c68e7cbc4/manifest,https://iiif.princeton.edu/loris/figgy_prod/d8%2Fd8%2Fa5%2Fd8d8a57ec3eb48bd8cd3b51d264a508f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-09-06,1930-09-15,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/alexander-pope/,Alexander Pope,,,,Unidentified. By or about Alexander Pope. Likely Leslie Stephen's [*Alexander Pope*](https://shakespeareandco.princeton.edu/books/stephen-alexander-pope/) (1880) or Edith Sitwell's [*Alexander Pope*](https://shakespeareandco.princeton.edu/books/sitwell-alexander-pope/) (1930).,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/91%2Fea%2F83%2F91ea83a5aee54932b4032e4ba8d8d158%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-09-06,1930-10-13,https://shakespeareandco.princeton.edu/members/flanner-janet/,Janet Flanner,"Flanner, Janet",,,,,,,,,Returned,37,,,https://shakespeareandco.princeton.edu/books/clark-seventeenth-century/,The Seventeenth Century,,"Clark, G. N.",1929,,Lending Library Card,"Sylvia Beach, Janet Flanner Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3c36cd98-f34d-423a-a386-074c68e7cbc4/manifest,https://iiif.princeton.edu/loris/figgy_prod/d8%2Fd8%2Fa5%2Fd8d8a57ec3eb48bd8cd3b51d264a508f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1930-09-08,1930-09-08,https://shakespeareandco.princeton.edu/members/robertson-william-cowper/,William Cowper Robertson / Rev. W. Cowper Robertson,"Robertson, William Cowper",,,,,,,,,,,73.00,FRF,https://shakespeareandco.princeton.edu/books/epictetus/,Epictetus,Vol. 1,,1916,Unidentified. By or about Epictetus.,Lending Library Card,"Sylvia Beach, W. Cowper Robertson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/33769c35-cdbb-47ab-b0b9-ca17c85798d6/manifest,https://iiif.princeton.edu/loris/figgy_prod/e5%2F5f%2F34%2Fe55f347dfb534162a1de11248ea88470%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-09-09,1930-09-13,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/hurst-mannequin/,Mannequin,,"Hurst, Fannie",1926,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/c6%2F2b%2F62%2Fc62b62e6d36c4581927dc5bb52715256%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-09-09,1930-09-13,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/galsworthy-island-pharisees/,The Island Pharisees,,"Galsworthy, John",1904,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/c6%2F2b%2F62%2Fc62b62e6d36c4581927dc5bb52715256%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1930-09-12,1930-12-12,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,3 months,91,1,,1930-11-12,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Faf%2Fe8%2Fccafe843d8e34cf798333f34bb7fbe37%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-09-12,1930-10-07,https://shakespeareandco.princeton.edu/members/monnier-j/,J. Monnier,"Monnier, J.",,,,,,,,,Returned,25,,,https://shakespeareandco.princeton.edu/books/galsworthy-swan-song/,Swan Song (A Modern Comedy),,"Galsworthy, John",1928,,Lending Library Card,"Sylvia Beach, J. Monnier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/df9a3d51-011b-4364-82ba-111bc447e7fe/manifest,https://iiif.princeton.edu/loris/figgy_prod/07%2F53%2Fe7%2F0753e7f832074e969277abf52028f871%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-09-13,1930-09-20,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/sinclair-romantic/,The Romantic,,"Sinclair, May",1920,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/c6%2F2b%2F62%2Fc62b62e6d36c4581927dc5bb52715256%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-09-13,1930-09-20,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/masefield-hawbucks/,The Hawbucks,,"Masefield, John",1929,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/c6%2F2b%2F62%2Fc62b62e6d36c4581927dc5bb52715256%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-09-15,1930-09-23,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/dos-passos-42nd-parallel/,The 42nd Parallel,,"Dos Passos, John",1930,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/c7%2F28%2F03%2Fc72803565c4747ee9d5ea39916575ec4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-09-15,1930-09-18,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/green-selbys/,The Selbys,,"Green, Anne",1930,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/91%2Fea%2F83%2F91ea83a5aee54932b4032e4ba8d8d158%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-09-15,,https://shakespeareandco.princeton.edu/members/monnier-j/,J. Monnier,"Monnier, J.",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/oppenheim-amazing-quest-mr/,The Amazing Quest of Mr. Ernest Bliss,,"Oppenheim, E. Phillips",1919,,Lending Library Card,"Sylvia Beach, J. Monnier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/df9a3d51-011b-4364-82ba-111bc447e7fe/manifest,https://iiif.princeton.edu/loris/figgy_prod/07%2F53%2Fe7%2F0753e7f832074e969277abf52028f871%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-09-15,1930-09-29,https://shakespeareandco.princeton.edu/members/leyris-pierre/,Pierre Leyris,"Leyris, Pierre",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/de-quincey-confessions-english-opium/,Confessions of an English Opium Eater,,"de Quincey, Thomas",1821,"Bernard Saby borrowed *Confessions of an English Opium Eater,* edited by William Sharp (Walter Scott, 1888).",Lending Library Card,"Sylvia Beach, Pierre Leyris Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6c75c34b-de6f-4465-baee-8f7cd76f5c87/manifest,https://iiif-cloud.princeton.edu/iiif/2/85%2F60%2F17%2F8560171d12994f1f8ad415157e8c3f7f%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-09-15,1930-09-29,https://shakespeareandco.princeton.edu/members/leyris-pierre/,Pierre Leyris,"Leyris, Pierre",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/paltock-life-adventures-peter/,The Life and Adventures of Peter Wilkins,,"Paltock, Robert",1751,,Lending Library Card,"Sylvia Beach, Pierre Leyris Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6c75c34b-de6f-4465-baee-8f7cd76f5c87/manifest,https://iiif-cloud.princeton.edu/iiif/2/85%2F60%2F17%2F8560171d12994f1f8ad415157e8c3f7f%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-09-16,1930-09-24,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/le-gallienne-ship-romance/,There Was a Ship: A Romance,,"Le Gallienne, Richard",1930,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Faf%2Fe8%2Fccafe843d8e34cf798333f34bb7fbe37%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-09-18,1930-09-25,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/priestley-good-companions/,The Good Companions,,"Priestley, J. B.",1929,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/91%2Fea%2F83%2F91ea83a5aee54932b4032e4ba8d8d158%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-09-18,1930-09-24,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/kivi-seven-brothers/,Seven Brothers,,"Kivi, Aleksis",1929,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/48%2Fde%2Ff2%2F48def2d871324a3fb61c8ae7b94f7b61%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1930-09-20,1930-09-20,https://shakespeareandco.princeton.edu/members/robertson-william-cowper/,William Cowper Robertson / Rev. W. Cowper Robertson,"Robertson, William Cowper",,,,,,,,,,,24.50,FRF,https://shakespeareandco.princeton.edu/books/mansfield-something-childish-stories/,Something Childish and Other Stories,,"Mansfield, Katherine",1924,,Lending Library Card,"Sylvia Beach, W. Cowper Robertson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/33769c35-cdbb-47ab-b0b9-ca17c85798d6/manifest,https://iiif.princeton.edu/loris/figgy_prod/e5%2F5f%2F34%2Fe55f347dfb534162a1de11248ea88470%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-09-20,1930-09-23,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/walpole-green-mirror/,The Green Mirror: A Quiet Story,2 vols.,"Walpole, Hugh",1917,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/c6%2F2b%2F62%2Fc62b62e6d36c4581927dc5bb52715256%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-09-20,1930-09-27,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/masefield-sard-harker/,Sard Harker,,"Masefield, John",1924,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/c6%2F2b%2F62%2Fc62b62e6d36c4581927dc5bb52715256%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-09-20,1930-09-24,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/huneker-painted-veils/,Painted Veils,,"Huneker, James",1920,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/99%2F96%2Fc7%2F9996c76243504663af4276c991ff36f8%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1930-09-20,1930-09-20,https://shakespeareandco.princeton.edu/members/robertson-william-cowper/,William Cowper Robertson / Rev. W. Cowper Robertson,"Robertson, William Cowper",,,,,,,,,,,11.50,FRF,https://shakespeareandco.princeton.edu/books/prometheus/,Prometheus,,,,Unidentified. Likely Aeschylus's *Prometheus Bound.*,Lending Library Card,"Sylvia Beach, W. Cowper Robertson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/33769c35-cdbb-47ab-b0b9-ca17c85798d6/manifest,https://iiif.princeton.edu/loris/figgy_prod/e5%2F5f%2F34%2Fe55f347dfb534162a1de11248ea88470%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1930-09-23,1932-04-19,https://shakespeareandco.princeton.edu/members/boulenger-elizabeth/,Elizabeth Boulenger,"Boulenger, Elizabeth",,,82 weeks,574,,,1930-09-23,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1930-09-23,1930-10-25,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,32,,,https://shakespeareandco.princeton.edu/books/hoult-time-gentlemen-time/,Time Gentlemen! Time!,,"Hoult, Norah",1930,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/c7%2F28%2F03%2Fc72803565c4747ee9d5ea39916575ec4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-09-23,1930-09-27,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/wodehouse-love-among-chickens/,Love among the Chickens: A Story of the Haps and Mishaps on an English Chicken Farm,,"Wodehouse, P. G.",1906,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/c6%2F2b%2F62%2Fc62b62e6d36c4581927dc5bb52715256%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-09-24,1930-09-25,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/sitwell-man-lost/,The Man Who Lost Himself,,"Sitwell, Osbert",1930,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Faf%2Fe8%2Fccafe843d8e34cf798333f34bb7fbe37%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-09-24,1930-10-07,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/frankau-martin-make-believe/,Martin Make-Believe: A Romance,,"Frankau, Gilbert",1930,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/99%2F96%2Fc7%2F9996c76243504663af4276c991ff36f8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-09-24,1930-10-02,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/hazlitt-table-talk/,Table-Talk,,"Hazlitt, William",1822,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/48%2Fde%2Ff2%2F48def2d871324a3fb61c8ae7b94f7b61%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-09-25,1930-09-29,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/huxley-brief-candles-stories/,Brief Candles: Stories,,"Huxley, Aldous",1930,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Faf%2Fe8%2Fccafe843d8e34cf798333f34bb7fbe37%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-09-25,1930-09-29,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/woolf-room-ones/,A Room of One's Own,,"Woolf, Virginia",1929,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/91%2Fea%2F83%2F91ea83a5aee54932b4032e4ba8d8d158%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1930-09-26,1930-10-26,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",40.00,,1 month,30,1,,1930-09-11,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/86%2F21%2F45%2F862145764c5c499cb8a9d2ca1da73cf6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-09-27,1930-10-01,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/walpole-old-ladies/,The Old Ladies,,"Walpole, Hugh",1924,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/c6%2F2b%2F62%2Fc62b62e6d36c4581927dc5bb52715256%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-09-27,1930-10-09,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/james-shatter-dream/,Shatter the Dream,,"James, Norah C.",1930,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/1a%2F31%2F93%2F1a3193da415e4768a82db00a6730db5e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-09-27,1930-10-08,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/wodehouse-piccadilly-jim/,Piccadilly Jim,,"Wodehouse, P. G.",1929,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/c6%2F2b%2F62%2Fc62b62e6d36c4581927dc5bb52715256%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-09-29,1930-09-30,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/oneill-hairy-ape/,The Hairy Ape,,"O'Neill, Eugene",1923,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Faf%2Fe8%2Fccafe843d8e34cf798333f34bb7fbe37%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-09-29,1930-10-06,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/beach-glass-mountain/,Glass Mountain,,"Beach, Joseph",1930,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/91%2Fea%2F83%2F91ea83a5aee54932b4032e4ba8d8d158%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-09-30,1930-10-06,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/anderson-story-tellers-story/,A Story Teller's Story,,"Anderson, Sherwood",1924,"Anatole Rivoallan's lending library card indicates that he borrowed, ""A Story Teller's Story 2 vols."" Anderson's *A Story Teller's Story,* however, was published in 1 volume. Rivoallan likely borrowed George Moore's 2 volume [*A Story Teller's Holiday*](https://shakespeareandco.princeton.edu/books/moore-story-tellers-holiday/) (1918).",Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/e0%2F11%2F78%2Fe011789ae91b4941a088b85942d4df17%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-09-30,1930-10-06,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/lawrence-women-love/,Women in Love,,"Lawrence, D. H.",1920,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Faf%2Fe8%2Fccafe843d8e34cf798333f34bb7fbe37%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1930-09-30,1931-09-30,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",144.00,70.00,1 year,365,1,,1930-09-30,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,;https://iiif-cloud.princeton.edu/iiif/2/e0%2F11%2F78%2Fe011789ae91b4941a088b85942d4df17%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-10-01,1930-10-08,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/sinclair-allinghams/,The Allinghams,,"Sinclair, May",1927,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/c6%2F2b%2F62%2Fc62b62e6d36c4581927dc5bb52715256%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-10-02,1930-10-10,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/beaumont-beaumont-fletcher/,Beaumont and Fletcher,,"Beaumont, Francis;Fletcher, John",,"Richard Le Gallienne, Charles Dullin, Catherine Yarrow, and Jeanine (Delpech) Teissier borrowed the 2 volume Mermaid Series edition. Mme Mazon and Mme France Raphael borrowed either the Mermaid or Everyman's Library edition.",Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/48%2Fde%2Ff2%2F48def2d871324a3fb61c8ae7b94f7b61%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-10-03,1930-10-10,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/packard-red-ledger/,The Red Ledger,,"Packard, Frank L.",1926,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/29%2F38%2Fe3%2F2938e3f080244a3bbcb44376b685cbe0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-10-04,1930-11-01,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,28,,,https://shakespeareandco.princeton.edu/books/duncan-life/,My Life,,"Duncan, Isadora",1927,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/90%2Fd9%2Fa8%2F90d9a8306f194f94a3476fc1821b94a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-10-04,1930-11-08,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,35,,,https://shakespeareandco.princeton.edu/books/james-awkward-age/,The Awkward Age,,"James, Henry",1899,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/90%2Fd9%2Fa8%2F90d9a8306f194f94a3476fc1821b94a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-10-06,1930-10-08,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/maugham-cakes-ale-skeleton/,"Cakes and Ale, or, the Skeleton in the Cupboard",,"Maugham, W. Somerset",1930,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/91%2Fea%2F83%2F91ea83a5aee54932b4032e4ba8d8d158%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-10-06,1930-10-18,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/walpole-portrait-man-red/,Portrait of a Man with Red Hair: A Romantic Macarbe,,"Walpole, Hugh",1925,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/da%2Fc1%2F0b%2Fdac10b6cc97448048e6edfea2ba2a328%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-10-06,1930-10-13,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/mayo-slaves-gods/,Slaves of the Gods,,"Mayo, Katherine",1929,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Faf%2Fe8%2Fccafe843d8e34cf798333f34bb7fbe37%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-10-07,1930-10-13,https://shakespeareandco.princeton.edu/members/monnier-j/,J. Monnier,"Monnier, J.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/mottram-spanish-farm-trilogy/,"The Spanish Farm Trilogy, 1914 β 1918",,"Mottram, R. H.",1927,,Lending Library Card,"Sylvia Beach, J. Monnier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/df9a3d51-011b-4364-82ba-111bc447e7fe/manifest,https://iiif.princeton.edu/loris/figgy_prod/07%2F53%2Fe7%2F0753e7f832074e969277abf52028f871%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-10-07,1930-10-23,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/coyle-flock-birds/,A Flock of Birds,,"Coyle, Kathleen",1930,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/99%2F96%2Fc7%2F9996c76243504663af4276c991ff36f8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-10-08,1930-10-18,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/powys-rabelais-life/,"Rabelais, His Life",,"Powys, John Cowper",1913,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/91%2Fea%2F83%2F91ea83a5aee54932b4032e4ba8d8d158%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-10-08,1930-10-14,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/phillpotts-demeters-daughter/,Demeter's Daughter,,"Phillpotts, Eden",1911,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/c6%2F2b%2F62%2Fc62b62e6d36c4581927dc5bb52715256%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-10-08,1930-10-14,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/sinclair-far-end/,Far End,,"Sinclair, May",1926,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/c6%2F2b%2F62%2Fc62b62e6d36c4581927dc5bb52715256%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-10-09,1930-10-17,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/hughes-without-laughter/,Not without Laughter,,"Hughes, Langston",1930,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/1a%2F31%2F93%2F1a3193da415e4768a82db00a6730db5e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1930-10-09,1930-10-09,https://shakespeareandco.princeton.edu/members/rocatallada/,Carmen MuΓ±oz Rocatallada / Comtesse de Yebes,"Rocatallada, Carmen MuΓ±oz",,,,,,,,,,,56.00,FRF,https://shakespeareandco.princeton.edu/books/sackville-west-edwardians/,The Edwardians,,"Sackville-West, Vita",1930,,Lending Library Card,"Sylvia Beach, Comtesse de Yebes Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b5c191a8-d2ca-4263-8bec-bec4b3c542bb/manifest,https://iiif.princeton.edu/loris/figgy_prod/bf%2F1f%2Ff5%2Fbf1ff529b51f4c4d91111d8c99016204%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1930-10-09,1930-10-09,https://shakespeareandco.princeton.edu/members/rocatallada/,Carmen MuΓ±oz Rocatallada / Comtesse de Yebes,"Rocatallada, Carmen MuΓ±oz",,,,,,,,,,,56.00,FRF,https://shakespeareandco.princeton.edu/books/herbert-water-gipsies/,The Water Gipsies,,"Herbert, A. P.",1930,,Lending Library Card,"Sylvia Beach, Comtesse de Yebes Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b5c191a8-d2ca-4263-8bec-bec4b3c542bb/manifest,https://iiif.princeton.edu/loris/figgy_prod/bf%2F1f%2Ff5%2Fbf1ff529b51f4c4d91111d8c99016204%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1930-10-09,1930-10-09,https://shakespeareandco.princeton.edu/members/rocatallada/,Carmen MuΓ±oz Rocatallada / Comtesse de Yebes,"Rocatallada, Carmen MuΓ±oz",,,,,,,,,,,66.00,FRF,https://shakespeareandco.princeton.edu/books/yeats-brown-lives-bengal-lancer/,The Lives of a Bengal Lancer,,"Yeats-Brown, Francis",1930,,Lending Library Card,"Sylvia Beach, Comtesse de Yebes Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b5c191a8-d2ca-4263-8bec-bec4b3c542bb/manifest,https://iiif.princeton.edu/loris/figgy_prod/bf%2F1f%2Ff5%2Fbf1ff529b51f4c4d91111d8c99016204%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1930-10-09,1930-10-09,https://shakespeareandco.princeton.edu/members/wendel/,Hélène de Wendel / Comtesse de Noailles,"de Wendel, Hélène",,,,,,,,,,,84.00,FRF,https://shakespeareandco.princeton.edu/books/whitman-leaves-grass/,Leaves of Grass,,"Whitman, Walt",,Unspecified edition.,Lending Library Card,"Sylvia Beach, Madame Hélène Wendel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c70e230a-8313-4c53-9939-22beb5f809b6/manifest,https://iiif-cloud.princeton.edu/iiif/2/a6%2Ffc%2F58%2Fa6fc58fc7f8a431481a50269d0073534%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-10-10,1930-10-14,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/maugham-cakes-ale-skeleton/,"Cakes and Ale, or, the Skeleton in the Cupboard",,"Maugham, W. Somerset",1930,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/48%2Fde%2Ff2%2F48def2d871324a3fb61c8ae7b94f7b61%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-10-10,1930-10-31,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/beresford-seven-bobsworth/,"Seven, Bobsworth",,"Beresford, J. D.",1930,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/59%2F7a%2F97%2F597a9716cd97402b8867f6fb7e9c7692%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-10-10,1930-10-11,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/fletcher-great-brighton-mystery/,The Great Brighton Mystery,,"Fletcher, Joseph Smith",1925,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/29%2F38%2Fe3%2F2938e3f080244a3bbcb44376b685cbe0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-10-10,1930-10-31,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/sitwell-england-reclaimed/,England Reclaimed,,"Sitwell, Osbert",1927,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/59%2F7a%2F97%2F597a9716cd97402b8867f6fb7e9c7692%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-10-11,1930-10-19,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/lewis-dodsworth/,Dodsworth,,"Lewis, Sinclair",1929,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/29%2F38%2Fe3%2F2938e3f080244a3bbcb44376b685cbe0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-10-13,1930-10-20,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/chesterton-four-faultless-felons/,Four Faultless Felons,,"Chesterton, G. K.",1930,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Faf%2Fe8%2Fccafe843d8e34cf798333f34bb7fbe37%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-10-13,1930-10-13,https://shakespeareandco.princeton.edu/members/monnier-j/,J. Monnier,"Monnier, J.",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/sinclair-mountain-city/,Mountain City,,"Sinclair, Upton",1930,,Lending Library Card,"Sylvia Beach, J. Monnier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/df9a3d51-011b-4364-82ba-111bc447e7fe/manifest,https://iiif.princeton.edu/loris/figgy_prod/07%2F53%2Fe7%2F0753e7f832074e969277abf52028f871%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-10-13,1930-10-19,https://shakespeareandco.princeton.edu/members/monnier-j/,J. Monnier,"Monnier, J.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/austen-emma/,Emma,,"Austen, Jane",1815,,Lending Library Card,"Sylvia Beach, J. Monnier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/df9a3d51-011b-4364-82ba-111bc447e7fe/manifest,https://iiif.princeton.edu/loris/figgy_prod/07%2F53%2Fe7%2F0753e7f832074e969277abf52028f871%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-10-14,1930-10-18,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/descent-man/,Descent of Man,,,,"Unidentified. Either Charles Darwin's *The Descent of Man, and Selection in Relation to Sex* (1871) or Edith Wharton's *The Descent of Man and Other Stories* (1903).",Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/c6%2F2b%2F62%2Fc62b62e6d36c4581927dc5bb52715256%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-10-14,1930-10-21,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/deeping-short-stories-warwick/,The Short Stories of Warwick Deeping,,"Deeping, Warwick",1930,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/48%2Fde%2Ff2%2F48def2d871324a3fb61c8ae7b94f7b61%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-10-14,1930-10-18,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/richardson-honeycomb-pilgrimage-3/,Honeycomb (Pilgrimage 3),,"Richardson, Dorothy M.",1917,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/c6%2F2b%2F62%2Fc62b62e6d36c4581927dc5bb52715256%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-10-15,1930-10-30,https://shakespeareandco.princeton.edu/members/tony-mayer/,Thérèse Tony-Mayer,"Tony-Mayer, Thérèse",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/anderson-winesburg-ohio-group/,Winesburg Ohio: A Group of Tales of Ohio Small Town Life,,"Anderson, Sherwood",1919,,Lending Library Card,"Sylvia Beach, Thérèse Tony-Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/27246b4c-7d99-4dca-b874-ab90bd542cfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/91%2Ff4%2Fa2%2F91f4a2e69d604c368e409a42f7549f41%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-10-17,1930-10-28,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/sackville-west-edwardians/,The Edwardians,,"Sackville-West, Vita",1930,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/1a%2F31%2F93%2F1a3193da415e4768a82db00a6730db5e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-10-18,1930-11-29,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,42,,,https://shakespeareandco.princeton.edu/books/gilbert-james-joyces-ulysses/,James Joyce's Ulysses: A Study,,"Gilbert, Stuart",1930,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/da%2Fc1%2F0b%2Fdac10b6cc97448048e6edfea2ba2a328%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-10-18,1930-11-13,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,26,,,https://shakespeareandco.princeton.edu/books/james-maisie-knew/,What Maisie Knew,,"James, Henry",1897,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/c6%2F2b%2F62%2Fc62b62e6d36c4581927dc5bb52715256%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-10-18,1930-11-13,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,26,,,https://shakespeareandco.princeton.edu/books/james-golden-bowl/,The Golden Bowl,,"James, Henry",1904,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/c6%2F2b%2F62%2Fc62b62e6d36c4581927dc5bb52715256%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-10-18,1930-10-20,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/williamson-annals-crime-extraordinary/,Annals of Crime: Some Extraordinary Women,,"Williamson, W. H",1930,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/91%2Fea%2F83%2F91ea83a5aee54932b4032e4ba8d8d158%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-10-18,1930-11-29,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,42,,,https://shakespeareandco.princeton.edu/books/huxley-point-counter-point/,Point Counter Point,,"Huxley, Aldous",1928,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/da%2Fc1%2F0b%2Fdac10b6cc97448048e6edfea2ba2a328%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-10-19,1930-10-22,https://shakespeareandco.princeton.edu/members/monnier-j/,J. Monnier,"Monnier, J.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/sinclair-boston/,Boston,,"Sinclair, Upton",1928,,Lending Library Card,"Sylvia Beach, J. Monnier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/df9a3d51-011b-4364-82ba-111bc447e7fe/manifest,https://iiif.princeton.edu/loris/figgy_prod/07%2F53%2Fe7%2F0753e7f832074e969277abf52028f871%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-10-19,1930-10-22,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/richards-hasty-marriage/,The Hasty Marriage,,"Richards, Grant",1928,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/29%2F38%2Fe3%2F2938e3f080244a3bbcb44376b685cbe0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-10-20,1930-10-23,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/sitwell-dumb-animal-stories/,Dumb-Animal and Other Stories,,"Sitwell, Osbert",1930,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/91%2Fea%2F83%2F91ea83a5aee54932b4032e4ba8d8d158%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-10-20,,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/warre-cornish-jane-austen/,Jane Austen,,"Warre Cornish, Francis",1914,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/91%2Fea%2F83%2F91ea83a5aee54932b4032e4ba8d8d158%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-10-20,1930-10-20,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/wallace-white-face/,White Face,,"Wallace, Edgar",1930,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Faf%2Fe8%2Fccafe843d8e34cf798333f34bb7fbe37%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-10-20,1930-11-12,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/adams-rogues-fall/,Rogues Fall Out,,"Adams, Herbert",1928,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Faf%2Fe8%2Fccafe843d8e34cf798333f34bb7fbe37%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-10-21,1930-10-25,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/james-shatter-dream/,Shatter the Dream,,"James, Norah C.",1930,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/48%2Fde%2Ff2%2F48def2d871324a3fb61c8ae7b94f7b61%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-10-22,1930-11-03,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/williamson-annals-crime-extraordinary/,Annals of Crime: Some Extraordinary Women,,"Williamson, W. H",1930,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/29%2F38%2Fe3%2F2938e3f080244a3bbcb44376b685cbe0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-10-22,1930-10-28,https://shakespeareandco.princeton.edu/members/monnier-j/,J. Monnier,"Monnier, J.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/kennedy-constant-nymph/,The Constant Nymph,,"Kennedy, Margaret",1924,,Lending Library Card,"Sylvia Beach, J. Monnier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/df9a3d51-011b-4364-82ba-111bc447e7fe/manifest,https://iiif.princeton.edu/loris/figgy_prod/07%2F53%2Fe7%2F0753e7f832074e969277abf52028f871%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-10-23,1930-10-28,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/priestley-angel-pavement/,Angel Pavement,,"Priestley, J. B.",1930,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/91%2Fea%2F83%2F91ea83a5aee54932b4032e4ba8d8d158%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-10-23,1930-12-09,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,47,,,https://shakespeareandco.princeton.edu/books/undset-kristin-lavransdatter-bridal/,"Kristin Lavransdatter: The Bridal Wreath, The Mistress of Husaby, The Cross",,"Undset, Sigrid",1929,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/99%2F96%2Fc7%2F9996c76243504663af4276c991ff36f8%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1930-10-24,1930-11-27,https://shakespeareandco.princeton.edu/members/barbey/,Mme George Barbey,"Barbey, Mme George",,,"1 month, 3 days",34,,,1930-10-24,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1930-10-25,1930-10-28,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/powys-kindness-corner/,Kindness in a Corner,,"Powys, Theodore Francis",1930,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/c7%2F28%2F03%2Fc72803565c4747ee9d5ea39916575ec4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-10-25,1930-10-28,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/lehmann-note-music/,A Note in Music,,"Lehmann, Rosamond",1930,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/48%2Fde%2Ff2%2F48def2d871324a3fb61c8ae7b94f7b61%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-10-28,1930-11-05,https://shakespeareandco.princeton.edu/members/bernheim/,Mrs. Bernheim,"Bernheim, Mrs.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/wells-autocracy-mr-parham/,The Autocracy of Mr. Parham,,"Wells, H. G.",1930,,Lending Library Card,"Sylvia Beach, Mrs. Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2450196c-9993-4842-99e8-39417c3b5caf/manifest,https://iiif.princeton.edu/loris/figgy_prod/c7%2F28%2F03%2Fc72803565c4747ee9d5ea39916575ec4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-10-28,1930-11-08,https://shakespeareandco.princeton.edu/members/monnier-j/,J. Monnier,"Monnier, J.",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/kennedy-red-sky-morning/,Red Sky at Morning,,"Kennedy, Margaret",1927,,Lending Library Card,"Sylvia Beach, J. Monnier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/df9a3d51-011b-4364-82ba-111bc447e7fe/manifest,https://iiif.princeton.edu/loris/figgy_prod/07%2F53%2Fe7%2F0753e7f832074e969277abf52028f871%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-10-28,1930-11-10,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/lawrence-lady-chatterleys-lover/,Lady Chatterley's Lover,,"Lawrence, D. H.",1928,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/1a%2F31%2F93%2F1a3193da415e4768a82db00a6730db5e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-10-28,1930-11-03,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/borden-woman-white-eyes/,A Woman with White Eyes,,"Borden, Mary",1930,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/48%2Fde%2Ff2%2F48def2d871324a3fb61c8ae7b94f7b61%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-10-28,1930-11-03,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/bennett-imperial-palace/,Imperial Palace,,"Bennett, Arnold",1930,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/91%2Fea%2F83%2F91ea83a5aee54932b4032e4ba8d8d158%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-10-30,1930-11-14,https://shakespeareandco.princeton.edu/members/dyer-louise/,Louise Dyer / Mrs. James Dyer,"Dyer, Louise",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/sitwell-dumb-animal-stories/,Dumb-Animal and Other Stories,,"Sitwell, Osbert",1930,,Lending Library Card,"Sylvia Beach, Louise Dyer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/64796425-698e-4f26-8e62-dea45d1d502c/manifest,https://iiif.princeton.edu/loris/figgy_prod/a4%2F59%2F36%2Fa45936869ab74ab483df36a3f1e44bb6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-10-30,1930-11-05,https://shakespeareandco.princeton.edu/members/tony-mayer/,Thérèse Tony-Mayer,"Tony-Mayer, Thérèse",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/lewis-babbitt/,Babbitt,,"Lewis, Sinclair",1922,,Lending Library Card,"Sylvia Beach, Thérèse Tony-Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/27246b4c-7d99-4dca-b874-ab90bd542cfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/91%2Ff4%2Fa2%2F91f4a2e69d604c368e409a42f7549f41%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-10-31,1930-12-05,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,35,,,https://shakespeareandco.princeton.edu/books/tudor-drama/,Tudor Drama,,,,Unidentified. Tucker Brooke's *The Tudor Drama* (1911) or A. W. Reed's *Early Tudor Drama* (1926).,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/59%2F7a%2F97%2F597a9716cd97402b8867f6fb7e9c7692%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-10-31,1930-11-13,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/chesterton-four-faultless-felons/,Four Faultless Felons,,"Chesterton, G. K.",1930,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/c6%2F2b%2F62%2Fc62b62e6d36c4581927dc5bb52715256%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-10-31,1930-11-14,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/more-utopia/,Utopia,,"More, Thomas",1516,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/59%2F7a%2F97%2F597a9716cd97402b8867f6fb7e9c7692%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-10-31,1930-11-14,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/lawrence-pornography-obscenity/,Pornography and Obscenity,,"Lawrence, D. H.",1929,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/59%2F7a%2F97%2F597a9716cd97402b8867f6fb7e9c7692%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1930-11-01,1931-11-01,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",120.00,,1 year,365,2,,1930-12-05,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/7c%2F01%2F9e%2F7c019e31b6284228a3ebef306334ff95%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-11-03,1930-11-10,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/connington-nemesis-raynham-parva/,Nemesis at Raynham Parva,,"Connington, J. J.",1929,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/29%2F38%2Fe3%2F2938e3f080244a3bbcb44376b685cbe0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1930-11-03,1931-02-03,https://shakespeareandco.princeton.edu/members/martinuzzi/,Frank Martinuzzi,"Martinuzzi, Frank",100.00,50.00,3 months,92,1,,1930-11-03,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Frank Martinuzzi Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2753d1c5-6a3b-4bec-bdbb-6416ea729276/manifest,https://iiif.princeton.edu/loris/figgy_prod/ac%2Fb0%2F77%2Facb077ea0e5a4117afe7f45e82dc54c7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-11-03,1930-11-05,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/thurston-man-black-hat/,Man in a Black Hat,,"Thurston, Ernest Temple",1930,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/91%2Fea%2F83%2F91ea83a5aee54932b4032e4ba8d8d158%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-11-03,1930-12-02,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,29,,,https://shakespeareandco.princeton.edu/books/huxley-point-counter-point/,Point Counter Point,2 vols.,"Huxley, Aldous",1928,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/16%2F9e%2F3d%2F169e3de9faf046a989463efd25e3aef3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-11-03,1930-11-07,https://shakespeareandco.princeton.edu/members/martinuzzi/,Frank Martinuzzi,"Martinuzzi, Frank",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/milne-first-plays/,First Plays,,"Milne, A. A.",1919,,Lending Library Card,"Sylvia Beach, Frank Martinuzzi Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2753d1c5-6a3b-4bec-bdbb-6416ea729276/manifest,https://iiif.princeton.edu/loris/figgy_prod/ac%2Fb0%2F77%2Facb077ea0e5a4117afe7f45e82dc54c7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-11-03,1930-11-08,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/green-selbys/,The Selbys,,"Green, Anne",1930,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/48%2Fde%2Ff2%2F48def2d871324a3fb61c8ae7b94f7b61%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-11-05,1930-11-10,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/stern-mosaic/,Mosaic,,"Stern, G. B.",1930,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/91%2Fea%2F83%2F91ea83a5aee54932b4032e4ba8d8d158%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-11-05,1930-11-25,https://shakespeareandco.princeton.edu/members/tony-mayer/,Thérèse Tony-Mayer,"Tony-Mayer, Thérèse",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/kennedy-constant-nymph/,The Constant Nymph,,"Kennedy, Margaret",1924,,Lending Library Card,"Sylvia Beach, Thérèse Tony-Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/27246b4c-7d99-4dca-b874-ab90bd542cfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/91%2Ff4%2Fa2%2F91f4a2e69d604c368e409a42f7549f41%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-11-07,1930-11-19,https://shakespeareandco.princeton.edu/members/martinuzzi/,Frank Martinuzzi,"Martinuzzi, Frank",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/maugham-cakes-ale-skeleton/,"Cakes and Ale, or, the Skeleton in the Cupboard",,"Maugham, W. Somerset",1930,,Lending Library Card,"Sylvia Beach, Frank Martinuzzi Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2753d1c5-6a3b-4bec-bdbb-6416ea729276/manifest,https://iiif.princeton.edu/loris/figgy_prod/ac%2Fb0%2F77%2Facb077ea0e5a4117afe7f45e82dc54c7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-11-08,1930-11-15,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/austen-emma/,Emma,,"Austen, Jane",1815,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/90%2Fd9%2Fa8%2F90d9a8306f194f94a3476fc1821b94a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-11-08,1930-11-08,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/duncan-isadora-duncans-russian/,Isadora Duncan's Russian Days and Her Last Years in France,,"Duncan, Irma;Macdougall, Allan Ross",1929,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/90%2Fd9%2Fa8%2F90d9a8306f194f94a3476fc1821b94a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-11-08,1930-11-15,https://shakespeareandco.princeton.edu/members/monnier-j/,J. Monnier,"Monnier, J.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/lehmann-note-music/,A Note in Music,,"Lehmann, Rosamond",1930,,Lending Library Card,"Sylvia Beach, J. Monnier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/df9a3d51-011b-4364-82ba-111bc447e7fe/manifest,https://iiif.princeton.edu/loris/figgy_prod/07%2F53%2Fe7%2F0753e7f832074e969277abf52028f871%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-11-08,1930-11-14,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/macaulay-staying-relations/,Staying with Relations,,"Macaulay, Rose",1930,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/48%2Fde%2Ff2%2F48def2d871324a3fb61c8ae7b94f7b61%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-11-10,1930-11-12,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/kennedy-fool-family/,The Fool of the Family,,"Kennedy, Margaret",1930,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/91%2Fea%2F83%2F91ea83a5aee54932b4032e4ba8d8d158%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1930-11-10,,https://shakespeareandco.princeton.edu/members/boivin-v/,Mme V. Boivin,"Boivin, Mme V.",,,,,,,1930-11-10,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1930-11-12,1930-11-14,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/sackville-west-edwardians/,The Edwardians,,"Sackville-West, Vita",1930,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/91%2Fea%2F83%2F91ea83a5aee54932b4032e4ba8d8d158%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-11-12,1930-11-14,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/thurston-man-black-hat/,Man in a Black Hat,,"Thurston, Ernest Temple",1930,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/29%2F38%2Fe3%2F2938e3f080244a3bbcb44376b685cbe0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-11-12,1930-11-24,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/frankau-martin-make-believe/,Martin Make-Believe: A Romance,,"Frankau, Gilbert",1930,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Faf%2Fe8%2Fccafe843d8e34cf798333f34bb7fbe37%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-11-13,1930-11-25,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/kennedy-fool-family/,The Fool of the Family,,"Kennedy, Margaret",1930,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/c6%2F2b%2F62%2Fc62b62e6d36c4581927dc5bb52715256%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-11-14,1930-11-17,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/sedgwick-philippa/,Philippa,,"Sedgwick, Anne Douglas",1930,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/91%2Fea%2F83%2F91ea83a5aee54932b4032e4ba8d8d158%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-11-14,1930-11-19,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/woodroffe-garland-letters/,The Garland of Letters,,"Woodroffe, John George",1922,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/48%2Fde%2Ff2%2F48def2d871324a3fb61c8ae7b94f7b61%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-11-14,1930-12-05,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/chesterton-resurrection-rome/,The Resurrection of Rome,,"Chesterton, G. K.",1930,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/59%2F7a%2F97%2F597a9716cd97402b8867f6fb7e9c7692%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-11-14,1930-11-17,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/mcneile-tiny-carteret/,Tiny Carteret,,"McNeile, H. C.",1930,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/29%2F38%2Fe3%2F2938e3f080244a3bbcb44376b685cbe0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-11-15,1930-11-24,https://shakespeareandco.princeton.edu/members/monnier-j/,J. Monnier,"Monnier, J.",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/feuchtwanger-jew-suss/,Jew SΓΌss,,"Feuchtwanger, Lion",1926,,Lending Library Card,"Sylvia Beach, J. Monnier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/df9a3d51-011b-4364-82ba-111bc447e7fe/manifest,https://iiif.princeton.edu/loris/figgy_prod/07%2F53%2Fe7%2F0753e7f832074e969277abf52028f871%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-11-15,1930-12-13,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,28,,,https://shakespeareandco.princeton.edu/books/james-house-novel/,The Other House: A Novel,,"James, Henry",1896,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/90%2Fd9%2Fa8%2F90d9a8306f194f94a3476fc1821b94a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1930-11-17,1930-11-17,https://shakespeareandco.princeton.edu/members/rocatallada/,Carmen MuΓ±oz Rocatallada / Comtesse de Yebes,"Rocatallada, Carmen MuΓ±oz",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/joyce-anna-livia-plurabelle/,Anna Livia Plurabelle,,"Joyce, James",1930,"Likely the Faber & Faber edition of *Anna Livia Plurabelle: Fragment of Work in Progress* (1930). Jacques Mercanton, however, likely purchases the Crosby Gaige edition of [*Anna Livia Plurabelle*](http://www.riverrun.org.uk/jj/ALP.pdf) (1928).",Lending Library Card,"Sylvia Beach, Comtesse de Yebes Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b5c191a8-d2ca-4263-8bec-bec4b3c542bb/manifest,https://iiif.princeton.edu/loris/figgy_prod/bf%2F1f%2Ff5%2Fbf1ff529b51f4c4d91111d8c99016204%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-11-17,1930-11-18,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/chesterton-four-faultless-felons/,Four Faultless Felons,,"Chesterton, G. K.",1930,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/91%2Fea%2F83%2F91ea83a5aee54932b4032e4ba8d8d158%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-11-17,1930-11-19,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/antheil-death-dark/,Death in the Dark,,"Antheil, George",1930,"Written under the pseudonym, Stacey Bishop.",Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/29%2F38%2Fe3%2F2938e3f080244a3bbcb44376b685cbe0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1930-11-17,1930-11-17,https://shakespeareandco.princeton.edu/members/rocatallada/,Carmen MuΓ±oz Rocatallada / Comtesse de Yebes,"Rocatallada, Carmen MuΓ±oz",,,,,,,,,,,9.00,FRF,https://shakespeareandco.princeton.edu/books/joyce-anna-livia-plurabelle/,Anna Livia Plurabelle,,"Joyce, James",1930,"Likely the Faber & Faber edition of *Anna Livia Plurabelle: Fragment of Work in Progress* (1930). Jacques Mercanton, however, likely purchases the Crosby Gaige edition of [*Anna Livia Plurabelle*](http://www.riverrun.org.uk/jj/ALP.pdf) (1928).",Lending Library Card,"Sylvia Beach, Comtesse de Yebes Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b5c191a8-d2ca-4263-8bec-bec4b3c542bb/manifest,https://iiif.princeton.edu/loris/figgy_prod/bf%2F1f%2Ff5%2Fbf1ff529b51f4c4d91111d8c99016204%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1930-11-17,1930-11-17,https://shakespeareandco.princeton.edu/members/rocatallada/,Carmen MuΓ±oz Rocatallada / Comtesse de Yebes,"Rocatallada, Carmen MuΓ±oz",,,,,,,,,,,55.00,FRF,https://shakespeareandco.princeton.edu/books/sitwell-dumb-animal-stories/,Dumb-Animal and Other Stories,,"Sitwell, Osbert",1930,,Lending Library Card,"Sylvia Beach, Comtesse de Yebes Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b5c191a8-d2ca-4263-8bec-bec4b3c542bb/manifest,https://iiif.princeton.edu/loris/figgy_prod/bf%2F1f%2Ff5%2Fbf1ff529b51f4c4d91111d8c99016204%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1930-11-17,1930-11-17,https://shakespeareandco.princeton.edu/members/rocatallada/,Carmen MuΓ±oz Rocatallada / Comtesse de Yebes,"Rocatallada, Carmen MuΓ±oz",,,,,,,,,,,55.00,FRF,https://shakespeareandco.princeton.edu/books/lehmann-note-music/,A Note in Music,,"Lehmann, Rosamond",1930,,Lending Library Card,"Sylvia Beach, Comtesse de Yebes Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b5c191a8-d2ca-4263-8bec-bec4b3c542bb/manifest,https://iiif.princeton.edu/loris/figgy_prod/bf%2F1f%2Ff5%2Fbf1ff529b51f4c4d91111d8c99016204%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1930-11-17,1930-11-17,https://shakespeareandco.princeton.edu/members/rocatallada/,Carmen MuΓ±oz Rocatallada / Comtesse de Yebes,"Rocatallada, Carmen MuΓ±oz",,,,,,,,,,,35.00,FRF,https://shakespeareandco.princeton.edu/books/woolf-room-ones/,A Room of One's Own,,"Woolf, Virginia",1929,,Lending Library Card,"Sylvia Beach, Comtesse de Yebes Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b5c191a8-d2ca-4263-8bec-bec4b3c542bb/manifest,https://iiif.princeton.edu/loris/figgy_prod/bf%2F1f%2Ff5%2Fbf1ff529b51f4c4d91111d8c99016204%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1930-11-17,1930-11-17,https://shakespeareandco.princeton.edu/members/rocatallada/,Carmen MuΓ±oz Rocatallada / Comtesse de Yebes,"Rocatallada, Carmen MuΓ±oz",,,,,,,,,,,12.50,FRF,https://shakespeareandco.princeton.edu/books/huxley-brief-candles-stories/,Brief Candles: Stories,,"Huxley, Aldous",1930,,Lending Library Card,"Sylvia Beach, Comtesse de Yebes Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b5c191a8-d2ca-4263-8bec-bec4b3c542bb/manifest,https://iiif.princeton.edu/loris/figgy_prod/bf%2F1f%2Ff5%2Fbf1ff529b51f4c4d91111d8c99016204%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1930-11-17,1930-11-17,https://shakespeareandco.princeton.edu/members/rocatallada/,Carmen MuΓ±oz Rocatallada / Comtesse de Yebes,"Rocatallada, Carmen MuΓ±oz",,,,,,,,,,,25.00,FRF,https://shakespeareandco.princeton.edu/books/huxley-point-counter-point/,Point Counter Point,,"Huxley, Aldous",1928,,Lending Library Card,"Sylvia Beach, Comtesse de Yebes Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b5c191a8-d2ca-4263-8bec-bec4b3c542bb/manifest,https://iiif.princeton.edu/loris/figgy_prod/bf%2F1f%2Ff5%2Fbf1ff529b51f4c4d91111d8c99016204%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-11-18,1930-11-20,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/macaulay-staying-relations/,Staying with Relations,,"Macaulay, Rose",1930,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/91%2Fea%2F83%2F91ea83a5aee54932b4032e4ba8d8d158%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-11-18,1930-11-21,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/bennett-imperial-palace/,Imperial Palace,,"Bennett, Arnold",1930,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/1a%2F31%2F93%2F1a3193da415e4768a82db00a6730db5e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1930-11-18,,https://shakespeareandco.princeton.edu/members/bourret-mlle/,Mlle Bourret,"Bourret, Mlle",,,,,,,1930-11-18,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1930-11-19,1930-11-26,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/powys-wolf-solent/,Wolf Solent,,"Powys, John Cowper",1929,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/48%2Fde%2Ff2%2F48def2d871324a3fb61c8ae7b94f7b61%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-11-19,1930-12-08,https://shakespeareandco.princeton.edu/members/martinuzzi/,Frank Martinuzzi,"Martinuzzi, Frank",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/maugham-human-bondage/,Of Human Bondage,,"Maugham, W. Somerset",1915,,Lending Library Card,"Sylvia Beach, Frank Martinuzzi Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2753d1c5-6a3b-4bec-bdbb-6416ea729276/manifest,https://iiif.princeton.edu/loris/figgy_prod/ac%2Fb0%2F77%2Facb077ea0e5a4117afe7f45e82dc54c7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-11-19,1930-11-20,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/love/,Love,,,,"Unidentified. Gilbert Cannan's *Love* (1914), Elizabeth Von Arnim's *Love* (1925), or William Lyon Phelps's *Love* (1928), etc.",Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/29%2F38%2Fe3%2F2938e3f080244a3bbcb44376b685cbe0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-11-20,1930-11-26,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/dreiser-gallery-women/,A Gallery of Women,,"Dreiser, Theodore",1929,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/91%2Fea%2F83%2F91ea83a5aee54932b4032e4ba8d8d158%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1930-11-20,1930-11-20,https://shakespeareandco.princeton.edu/members/sage-robert/,Robert D. Sage,"Sage, Robert D.",,,,,,,,,,,12.50,FRF,https://shakespeareandco.princeton.edu/books/joyce-pomes-penyeach/,Pomes Penyeach,,"Joyce, James",1927,,Lending Library Card,"Sylvia Beach, Robert Sage Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/222c7bee-1104-420b-879a-fa13a26a189a/manifest,https://iiif-cloud.princeton.edu/iiif/2/94%2F81%2F18%2F94811808ddd7495bb9dcf53f02fe4204%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-11-20,1930-11-22,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/arnim-vera/,Vera,,"Arnim, Elizabeth von",1921,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/29%2F38%2Fe3%2F2938e3f080244a3bbcb44376b685cbe0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1930-11-20,1930-11-20,https://shakespeareandco.princeton.edu/members/sage-robert/,Robert D. Sage,"Sage, Robert D.",,,,,,,,,,,12.50,FRF,https://shakespeareandco.princeton.edu/books/joyce-portrait-artist-young/,A Portrait of the Artist as a Young Man,,"Joyce, James",1916,,Lending Library Card,"Sylvia Beach, Robert Sage Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/222c7bee-1104-420b-879a-fa13a26a189a/manifest,https://iiif-cloud.princeton.edu/iiif/2/94%2F81%2F18%2F94811808ddd7495bb9dcf53f02fe4204%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-11-21,1930-11-21,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/baring-robert-peckham/,Robert Peckham,,"Baring, Maurice",1930,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/1a%2F31%2F93%2F1a3193da415e4768a82db00a6730db5e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1930-11-21,1931-02-21,https://shakespeareandco.princeton.edu/members/calrois-mrs-m/,Mrs. M. Calrois,"Calrois, Mrs. M.",,,3 months,92,,,1930-11-21,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1930-11-22,1930-12-03,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/fletcher-mill-many-windows/,The Mill of Many Windows,,"Fletcher, Joseph Smith",1927,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/29%2F38%2Fe3%2F2938e3f080244a3bbcb44376b685cbe0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1930-11-22,1931-02-22,https://shakespeareandco.princeton.edu/members/howard-charles/,Charles Howard / Mr. Ch. Howard,"Howard, Charles",,,3 months,92,,,1930-11-22,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1930-11-24,1930-12-01,https://shakespeareandco.princeton.edu/members/monnier-j/,J. Monnier,"Monnier, J.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/herbert-water-gipsies/,The Water Gipsies,,"Herbert, A. P.",1930,,Lending Library Card,"Sylvia Beach, J. Monnier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/df9a3d51-011b-4364-82ba-111bc447e7fe/manifest,https://iiif.princeton.edu/loris/figgy_prod/07%2F53%2Fe7%2F0753e7f832074e969277abf52028f871%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-11-24,1930-11-27,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/thurston-man-black-hat/,Man in a Black Hat,,"Thurston, Ernest Temple",1930,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Faf%2Fe8%2Fccafe843d8e34cf798333f34bb7fbe37%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-11-25,1930-12-01,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/wells-autocracy-mr-parham/,The Autocracy of Mr. Parham,,"Wells, H. G.",1930,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/c6%2F2b%2F62%2Fc62b62e6d36c4581927dc5bb52715256%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-11-25,1930-11-30,https://shakespeareandco.princeton.edu/members/goyert/,Georg Goyert,"Goyert, Georg",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/damon-odyssey-dublin-2/,The Odyssey in Dublin,,"Damon, S. Foster",1929,An separate printing of Damon's article from [*Hound & Horn*](https://shakespeareandco.princeton.edu/books/kirstein-hound-horn/) 3.1 (1929).,Lending Library Card,"Sylvia Beach, Georg Goyert Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c5804bce-ee89-457d-a393-a80ee393240d/manifest,https://iiif.princeton.edu/loris/figgy_prod/be%2Fdc%2F50%2Fbedc506b18404e3eb61a727b7d311ad2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-11-25,1930-12-03,https://shakespeareandco.princeton.edu/members/tony-mayer/,Thérèse Tony-Mayer,"Tony-Mayer, Thérèse",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/joyce-exiles/,Exiles,,"Joyce, James",1918,,Lending Library Card,"Sylvia Beach, Thérèse Tony-Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/27246b4c-7d99-4dca-b874-ab90bd542cfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/91%2Ff4%2Fa2%2F91f4a2e69d604c368e409a42f7549f41%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-11-26,1930-12-05,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/undset-kristin-lavransdatter-bridal/,"Kristin Lavransdatter: The Bridal Wreath, The Mistress of Husaby, The Cross",2 vols.,"Undset, Sigrid",1929,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/48%2Fde%2Ff2%2F48def2d871324a3fb61c8ae7b94f7b61%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-11-26,1930-12-01,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/warre-cornish-jane-austen/,Jane Austen,,"Warre Cornish, Francis",1914,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/91%2Fea%2F83%2F91ea83a5aee54932b4032e4ba8d8d158%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-11-27,1930-12-13,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/thomson-seasons-summer/,The Seasons: Summer,,"Thomson, James",1817,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Faf%2Fe8%2Fccafe843d8e34cf798333f34bb7fbe37%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-11-28,1930-12-10,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/lawrence-lost-girl/,The Lost Girl,,"Lawrence, D. H.",1920,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/1a%2F31%2F93%2F1a3193da415e4768a82db00a6730db5e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-11-29,1931-01-02,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,34,,,https://shakespeareandco.princeton.edu/books/coyle-widows-house-novel/,The Widow's House: A Novel,,"Coyle, Kathleen",1924,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/da%2Fc1%2F0b%2Fdac10b6cc97448048e6edfea2ba2a328%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-11-29,1931-01-02,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,34,,,https://shakespeareandco.princeton.edu/books/kaye-smith-george-crown/,The George and the Crown,,"Kaye-Smith, Sheila",1925,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/da%2Fc1%2F0b%2Fdac10b6cc97448048e6edfea2ba2a328%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-12-01,1930-12-03,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/herbert-water-gipsies/,The Water Gipsies,,"Herbert, A. P.",1930,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/91%2Fea%2F83%2F91ea83a5aee54932b4032e4ba8d8d158%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-12-01,1930-12-04,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/walpole-prelude-adventure/,The Prelude to Adventure,,"Walpole, Hugh",1912,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/c6%2F2b%2F62%2Fc62b62e6d36c4581927dc5bb52715256%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-12-02,1930-12-09,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/baring-robert-peckham/,Robert Peckham,,"Baring, Maurice",1930,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/16%2F9e%2F3d%2F169e3de9faf046a989463efd25e3aef3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-12-03,1930-12-04,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/mcneile-tiny-carteret/,Tiny Carteret,,"McNeile, H. C.",1930,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/91%2Fea%2F83%2F91ea83a5aee54932b4032e4ba8d8d158%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-12-03,1930-12-20,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/priestley-angel-pavement/,Angel Pavement,,"Priestley, J. B.",1930,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/29%2F38%2Fe3%2F2938e3f080244a3bbcb44376b685cbe0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-12-03,1930-12-20,https://shakespeareandco.princeton.edu/members/tony-mayer/,Thérèse Tony-Mayer,"Tony-Mayer, Thérèse",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/selected-poems/,Selected Poems,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Thérèse Tony-Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/27246b4c-7d99-4dca-b874-ab90bd542cfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/91%2Ff4%2Fa2%2F91f4a2e69d604c368e409a42f7549f41%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-12-04,1930-12-16,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/wodehouse-piccadilly-jim/,Piccadilly Jim,,"Wodehouse, P. G.",1929,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/c6%2F2b%2F62%2Fc62b62e6d36c4581927dc5bb52715256%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-12-04,1930-12-16,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/green-selbys/,The Selbys,,"Green, Anne",1930,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/c6%2F2b%2F62%2Fc62b62e6d36c4581927dc5bb52715256%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-12-04,1930-12-06,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/mason-tiger/,No Other Tiger,,"Mason, A. E. W.",1927,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/91%2Fea%2F83%2F91ea83a5aee54932b4032e4ba8d8d158%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1930-12-05,1930-12-05,https://shakespeareandco.princeton.edu/members/duff-donald/,Donald Duff,"Duff, Donald",,,,,,,,,,,35.00,FRF,https://shakespeareandco.princeton.edu/books/milne-christopher-robin-story/,The Christopher Robin Story Book,,"Milne, A. A.",1929,,Lending Library Card,"Sylvia Beach, Donald Duff Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c9f19d83-d075-4536-b1fd-fe2a86bdf975/manifest,https://iiif.princeton.edu/loris/figgy_prod/fd%2F86%2Fc3%2Ffd86c35e550a4a85bb1918bd06261772%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-12-05,1930-12-13,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/wells-autocracy-mr-parham/,The Autocracy of Mr. Parham,,"Wells, H. G.",1930,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/7c%2F01%2F9e%2F7c019e31b6284228a3ebef306334ff95%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-12-05,1930-12-21,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/rubstein-great-english-plays/,Great English Plays,,,1928,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/7c%2F01%2F9e%2F7c019e31b6284228a3ebef306334ff95%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-12-05,1930-12-09,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/kennedy-fool-family/,The Fool of the Family,,"Kennedy, Margaret",1930,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/48%2Fde%2Ff2%2F48def2d871324a3fb61c8ae7b94f7b61%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1930-12-05,1930-12-05,https://shakespeareandco.princeton.edu/members/duff-donald/,Donald Duff,"Duff, Donald",,,,,,,,,,,108.00,FRF,https://shakespeareandco.princeton.edu/books/moore-principia-ethica/,Principia Ethica,,"Moore, George Edward",1903,,Lending Library Card,"Sylvia Beach, Donald Duff Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c9f19d83-d075-4536-b1fd-fe2a86bdf975/manifest,https://iiif.princeton.edu/loris/figgy_prod/fd%2F86%2Fc3%2Ffd86c35e550a4a85bb1918bd06261772%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-12-06,1931-01-10,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,35,,,https://shakespeareandco.princeton.edu/books/seabrook-magic-island/,The Magic Island,,"Seabrook, William",1929,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/90%2Fd9%2Fa8%2F90d9a8306f194f94a3476fc1821b94a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-12-06,1931-01-10,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,35,,,https://shakespeareandco.princeton.edu/books/james-princess-casamassima/,The Princess Casamassima,,"James, Henry",1886,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/90%2Fd9%2Fa8%2F90d9a8306f194f94a3476fc1821b94a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-12-06,1930-12-10,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/young-jim-redlake/,Jim Redlake,,"Young, Francis Brett",1930,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/91%2Fea%2F83%2F91ea83a5aee54932b4032e4ba8d8d158%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-12-08,1931-01-06,https://shakespeareandco.princeton.edu/members/kaopeitzer/,Kaopeitzer,Kaopeitzer,,,,,,,,,Returned,29,,,https://shakespeareandco.princeton.edu/books/sullivan-atoms-electrons/,Atoms and Electrons,,"Sullivan, J. W. N.",1924,,Lending Library Card,"Sylvia Beach, Kaopeitzer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6cdee384-4af7-472d-8431-b1020d699437/manifest,https://iiif.princeton.edu/loris/figgy_prod/54%2Fb1%2Fd7%2F54b1d717338d4e4ba3625628d71f6303%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1930-12-08,1931-01-08,https://shakespeareandco.princeton.edu/members/kaopeitzer/,Kaopeitzer,Kaopeitzer,32.00,50.00,1 month,31,1,,1930-12-08,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Kaopeitzer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6cdee384-4af7-472d-8431-b1020d699437/manifest,https://iiif.princeton.edu/loris/figgy_prod/54%2Fb1%2Fd7%2F54b1d717338d4e4ba3625628d71f6303%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-12-08,,https://shakespeareandco.princeton.edu/members/martinuzzi/,Frank Martinuzzi,"Martinuzzi, Frank",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/strachey-books-characters-french/,"Books and Characters, French and English",,"Strachey, Giles Lytton",1922,,Lending Library Card,"Sylvia Beach, Frank Martinuzzi Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2753d1c5-6a3b-4bec-bdbb-6416ea729276/manifest,https://iiif.princeton.edu/loris/figgy_prod/ac%2Fb0%2F77%2Facb077ea0e5a4117afe7f45e82dc54c7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-12-09,1930-12-19,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/van-dine-benson-murder-case/,The Benson Murder Case,,"Van Dine, S. S.",1926,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/1d%2F30%2F89%2F1d3089a9b018473cbf4498b364831b09%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-12-09,1930-12-17,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/huxley-will-essays/,Do What You Will: Essays,,"Huxley, Aldous",1929,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/16%2F9e%2F3d%2F169e3de9faf046a989463efd25e3aef3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-12-09,1930-12-13,https://shakespeareandco.princeton.edu/members/monnier-j/,J. Monnier,"Monnier, J.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/kennedy-fool-family/,The Fool of the Family,,"Kennedy, Margaret",1930,,Lending Library Card,"Sylvia Beach, J. Monnier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/df9a3d51-011b-4364-82ba-111bc447e7fe/manifest,https://iiif.princeton.edu/loris/figgy_prod/07%2F53%2Fe7%2F0753e7f832074e969277abf52028f871%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1930-12-09,1931-03-09,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",160.00,,3 months,90,3,,,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/1d%2F30%2F89%2F1d3089a9b018473cbf4498b364831b09%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-12-09,1930-12-16,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/peterkin-scarlet-sister-mary/,Scarlet Sister Mary,,"Peterkin, Julia Mood",1928,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/99%2F96%2Fc7%2F9996c76243504663af4276c991ff36f8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-12-09,1930-12-18,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/sitwell-dumb-animal-stories/,Dumb-Animal and Other Stories,,"Sitwell, Osbert",1930,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/48%2Fde%2Ff2%2F48def2d871324a3fb61c8ae7b94f7b61%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-12-09,1930-12-19,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/lehmann-note-music/,A Note in Music,,"Lehmann, Rosamond",1930,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/1d%2F30%2F89%2F1d3089a9b018473cbf4498b364831b09%2Fintermediate_file/full/full/0/default.jpg
+Generic,1930-12-10,,https://shakespeareandco.princeton.edu/members/rhein-verlag/,Rhein Verlag,Rhein Verlag,,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/joyce-ulysses/,Ulysses,1930 Eleventh printing,"Joyce, James",1922,,Lending Library Card,"Sylvia Beach, Rhein-Verlag Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/270705ef-082e-482d-8e0f-ca99c90da614/manifest,https://iiif.princeton.edu/loris/figgy_prod/8f%2Ff3%2F99%2F8ff399c85e3147e69e2b53fcf8bcd817%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-12-10,1930-12-18,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/borden-woman-white-eyes/,A Woman with White Eyes,,"Borden, Mary",1930,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/1a%2F31%2F93%2F1a3193da415e4768a82db00a6730db5e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-12-10,1930-12-13,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/hamsun-hunger/,Hunger,,"Hamsun, Knut",1899,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/91%2Fea%2F83%2F91ea83a5aee54932b4032e4ba8d8d158%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-12-12,1931-09,https://shakespeareandco.princeton.edu/members/savitzky/,Ludmila Savitzky / Mme Ludmila Bloch,"Savitzky, Ludmila",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/dos-passos-three-soldiers/,Three Soldiers,,"Dos Passos, John",1921,,Lending Library Card,"Sylvia Beach, Ludmila Savitski Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6a1e59dd-7799-42ba-b130-b9f6907e7f1c/manifest,https://iiif-cloud.princeton.edu/iiif/2/f6%2F61%2F37%2Ff661375607c64a059f484a7fb2218497%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-12-12,1930-12-15,https://shakespeareandco.princeton.edu/members/savitzky/,Ludmila Savitzky / Mme Ludmila Bloch,"Savitzky, Ludmila",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/dos-passos-42nd-parallel/,The 42nd Parallel,,"Dos Passos, John",1930,,Lending Library Card,"Sylvia Beach, Ludmila Savitski Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6a1e59dd-7799-42ba-b130-b9f6907e7f1c/manifest,https://iiif-cloud.princeton.edu/iiif/2/f6%2F61%2F37%2Ff661375607c64a059f484a7fb2218497%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1930-12-12,1930-12-12,https://shakespeareandco.princeton.edu/members/alvear/,Elvira de Alvear,"de Alvear, Elvira",,,,,,,,,,,9.00,FRF,https://shakespeareandco.princeton.edu/books/joyce-anna-livia-plurabelle/,Anna Livia Plurabelle,,"Joyce, James",1930,"Likely the Faber & Faber edition of *Anna Livia Plurabelle: Fragment of Work in Progress* (1930). Jacques Mercanton, however, likely purchases the Crosby Gaige edition of [*Anna Livia Plurabelle*](http://www.riverrun.org.uk/jj/ALP.pdf) (1928).",Lending Library Card,"Sylvia Beach, Elvira de Alvear Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/19d09c5e-a411-40f1-99df-f07f512e3901/manifest,https://iiif.princeton.edu/loris/figgy_prod/6d%2F78%2F83%2F6d78839ec502418796fdd18f13848bd6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1930-12-12,1931-06-12,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",180.00,,6 months,182,1,,1931-02-24,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Faf%2Fe8%2Fccafe843d8e34cf798333f34bb7fbe37%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-12-12,1930-12-22,https://shakespeareandco.princeton.edu/members/savitzky/,Ludmila Savitzky / Mme Ludmila Bloch,"Savitzky, Ludmila",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/brooks-american-caravan-yearbook/,The American Caravan: A Yearbook of American Literature,,,1927,,Lending Library Card,"Sylvia Beach, Ludmila Savitski Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6a1e59dd-7799-42ba-b130-b9f6907e7f1c/manifest,https://iiif-cloud.princeton.edu/iiif/2/f6%2F61%2F37%2Ff661375607c64a059f484a7fb2218497%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-12-12,1930-12-22,https://shakespeareandco.princeton.edu/members/savitzky/,Ludmila Savitzky / Mme Ludmila Bloch,"Savitzky, Ludmila",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/dos-passos-garbage-man/,The Garbage Man,,"Dos Passos, John",1926,,Lending Library Card,"Sylvia Beach, Ludmila Savitski Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6a1e59dd-7799-42ba-b130-b9f6907e7f1c/manifest,https://iiif-cloud.princeton.edu/iiif/2/f6%2F61%2F37%2Ff661375607c64a059f484a7fb2218497%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1930-12-13,1930-12-13,https://shakespeareandco.princeton.edu/members/robertson-william-cowper/,William Cowper Robertson / Rev. W. Cowper Robertson,"Robertson, William Cowper",,,,,,,,,,,17.50,FRF,https://shakespeareandco.princeton.edu/books/housman-last-poems/,Last Poems,,"Housman, A. E.",1922,,Lending Library Card,"Sylvia Beach, W. Cowper Robertson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/33769c35-cdbb-47ab-b0b9-ca17c85798d6/manifest,https://iiif.princeton.edu/loris/figgy_prod/e5%2F5f%2F34%2Fe55f347dfb534162a1de11248ea88470%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-12-13,1930-12-27,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/baring-robert-peckham/,Robert Peckham,,"Baring, Maurice",1930,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/7c%2F01%2F9e%2F7c019e31b6284228a3ebef306334ff95%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-12-13,1930-12-15,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/hamsun-chapter-last/,Chapter the Last,,"Hamsun, Knut",1930,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/91%2Fea%2F83%2F91ea83a5aee54932b4032e4ba8d8d158%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-12-13,1930-12-15,https://shakespeareandco.princeton.edu/members/monnier-j/,J. Monnier,"Monnier, J.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/carroll-alices-adventures-wonderland/,Alice's Adventures in Wonderland,,"Carroll, Lewis",1865,,Lending Library Card,"Sylvia Beach, J. Monnier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/df9a3d51-011b-4364-82ba-111bc447e7fe/manifest,https://iiif.princeton.edu/loris/figgy_prod/07%2F53%2Fe7%2F0753e7f832074e969277abf52028f871%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-12-13,1930-12-30,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/walpole-rogue-herries/,Rogue Herries,,"Walpole, Hugh",1930,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Faf%2Fe8%2Fccafe843d8e34cf798333f34bb7fbe37%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-12-15,1930-12-16,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/wharton-certain-people-short/,Certain People: Short Stories,,"Wharton, Edith",1930,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/91%2Fea%2F83%2F91ea83a5aee54932b4032e4ba8d8d158%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-12-15,1930-12-22,https://shakespeareandco.princeton.edu/members/monnier-j/,J. Monnier,"Monnier, J.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/webb-precious-bane-novel/,Precious Bane: A Novel,,"Webb, Mary",1924,,Lending Library Card,"Sylvia Beach, J. Monnier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/df9a3d51-011b-4364-82ba-111bc447e7fe/manifest,https://iiif.princeton.edu/loris/figgy_prod/07%2F53%2Fe7%2F0753e7f832074e969277abf52028f871%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-12-16,1930-12-23,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/walpole-silver-thorn-book/,The Silver Thorn: A Book of Stories,,"Walpole, Hugh",1928,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/c6%2F2b%2F62%2Fc62b62e6d36c4581927dc5bb52715256%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-12-16,1930-12-23,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/tagore-wreck/,The Wreck,,"Tagore, Rabindranath",1927,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/99%2F96%2Fc7%2F9996c76243504663af4276c991ff36f8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-12-16,1930-12-17,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/crofts-box-office-murders/,The Box Office Murders,,"Crofts, Freeman Wills",1929,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/91%2Fea%2F83%2F91ea83a5aee54932b4032e4ba8d8d158%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-12-16,1930-12-23,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/thurston-man-black-hat/,Man in a Black Hat,,"Thurston, Ernest Temple",1930,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/c6%2F2b%2F62%2Fc62b62e6d36c4581927dc5bb52715256%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-12-16,1930-12-23,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/richmond-times-literary-supplement/,The Times Literary Supplement,"no. 1503, Nov 20, 1930",,,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/c6%2F2b%2F62%2Fc62b62e6d36c4581927dc5bb52715256%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-12-17,1931-01-16,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,30,,,https://shakespeareandco.princeton.edu/books/keats-letters-john-keats/,Letters of John Keats,,"Keats, John",,"George Dillon borrowed volumes 1 and 2, and Stephen D. Tuttle borrowed volume 1 of *The Letters of John Keats,* edited by Maurice Buxton Forman (1931).",Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/16%2F9e%2F3d%2F169e3de9faf046a989463efd25e3aef3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-12-17,1930-12-20,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/fraser-rose-anstey/,Rose Anstey,,"Fraser, Ronald",1930,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/55%2F39%2Fd6%2F5539d629a20f465d893156b4d2c6d045%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-12-18,1930-12-23,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/wharton-certain-people-short/,Certain People: Short Stories,,"Wharton, Edith",1930,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/48%2Fde%2Ff2%2F48def2d871324a3fb61c8ae7b94f7b61%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-12-18,1931-01-03,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/van-dine-bishop-murder-case/,The Bishop Murder Case: A Philo Vance Story,,"Van Dine, S. S.",1929,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/1a%2F31%2F93%2F1a3193da415e4768a82db00a6730db5e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-12-19,1931-03-27,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,98,,,https://shakespeareandco.princeton.edu/books/arnold-happened-andals/,What Happened at Andals?,,"Arnold, John",1929,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/1d%2F30%2F89%2F1d3089a9b018473cbf4498b364831b09%2Fintermediate_file/full/full/0/default.jpg
+Crossed out,1930-12-19,,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/hopkins-poems-gerard-manley/,Poems of Gerard Manley Hopkins,,"Hopkins, Gerard Manley",1918,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/1d%2F30%2F89%2F1d3089a9b018473cbf4498b364831b09%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-12-20,1930-12-23,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/hackett-henry-eighth/,Henry the Eighth,,"Hackett, Francis",1929,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/55%2F39%2Fd6%2F5539d629a20f465d893156b4d2c6d045%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-12-20,1930-12-20,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/galsworthy-forsyte-change/,On Forsyte 'Change (The Forsyte Saga),,"Galsworthy, John",1930,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/29%2F38%2Fe3%2F2938e3f080244a3bbcb44376b685cbe0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1930-12-22,1931-12-22,https://shakespeareandco.princeton.edu/members/kennedy-robert/,Robert Kennedy,"Kennedy, Robert",240.00,,1 year,365,1,,1930-12-22,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Robert Kennedy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5819877c-8d7f-42cc-a86b-f8161bca822f/manifest,https://iiif.princeton.edu/loris/figgy_prod/c1%2F66%2Fae%2Fc166ae11260b41bb9c722f4364b8014b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-12-22,1930-12-29,https://shakespeareandco.princeton.edu/members/kennedy-robert/,Robert Kennedy,"Kennedy, Robert",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/lehmann-note-music/,A Note in Music,,"Lehmann, Rosamond",1930,,Lending Library Card,"Sylvia Beach, Robert Kennedy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5819877c-8d7f-42cc-a86b-f8161bca822f/manifest,https://iiif.princeton.edu/loris/figgy_prod/c1%2F66%2Fae%2Fc166ae11260b41bb9c722f4364b8014b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-12-22,1930-12-29,https://shakespeareandco.princeton.edu/members/monnier-j/,J. Monnier,"Monnier, J.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/shaw-apple-cart-political/,The Apple Cart: A Political Extravaganza,,"Shaw, George Bernard",1930,,Lending Library Card,"Sylvia Beach, J. Monnier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/df9a3d51-011b-4364-82ba-111bc447e7fe/manifest,https://iiif.princeton.edu/loris/figgy_prod/07%2F53%2Fe7%2F0753e7f832074e969277abf52028f871%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-12-23,1931-01-21,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,29,,,https://shakespeareandco.princeton.edu/books/hopkins-london-pilgrimages/,London Pilgrimages,,"Hopkins, R. Thurston",1928,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/99%2F96%2Fc7%2F9996c76243504663af4276c991ff36f8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-12-23,1931-01-10,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/sidgwick-antheas-guest/,Anthea's Guest,,"Sidgwick, Cecily",1911,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/c6%2F2b%2F62%2Fc62b62e6d36c4581927dc5bb52715256%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-12-23,1930-12-27,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/webb-precious-bane-novel/,Precious Bane: A Novel,,"Webb, Mary",1924,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/48%2Fde%2Ff2%2F48def2d871324a3fb61c8ae7b94f7b61%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-12-23,1930-12-26,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/schiff-true-story-three/,"A True Story in Three Parts and a Postscript, All of Them Facile Rubbish",,"Hudson, Stephen",1930,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/55%2F39%2Fd6%2F5539d629a20f465d893156b4d2c6d045%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-12-23,1931-01-10,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/macaulay-staying-relations/,Staying with Relations,,"Macaulay, Rose",1930,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/c6%2F2b%2F62%2Fc62b62e6d36c4581927dc5bb52715256%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-12-23,1930-12-23,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/lucas-wanderer-london/,A Wanderer in London,,"Lucas, E. V.",1906,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/99%2F96%2Fc7%2F9996c76243504663af4276c991ff36f8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-12-25,1930-12-26,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/delafield-diary-provincial-lady/,Diary of a Provincial Lady,,"Delafield, E. M.",1930,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/55%2F39%2Fd6%2F5539d629a20f465d893156b4d2c6d045%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-12-26,1930-12-29,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/david-neel-journey-lhasa/,My Journey to Lhasa,,"David-NΓ©el, Alexandra",1927,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/55%2F39%2Fd6%2F5539d629a20f465d893156b4d2c6d045%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-12-27,1931-01-23,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,27,,,https://shakespeareandco.princeton.edu/books/webb-precious-bane-novel/,Precious Bane: A Novel,,"Webb, Mary",1924,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/7c%2F01%2F9e%2F7c019e31b6284228a3ebef306334ff95%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-12-27,1931-03-27,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,90,,,https://shakespeareandco.princeton.edu/books/arnim-expiation/,Expiation,,"Arnim, Elizabeth von",1929,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/1d%2F30%2F89%2F1d3089a9b018473cbf4498b364831b09%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-12-27,1930-12-31,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/sackville-west-edwardians/,The Edwardians,,"Sackville-West, Vita",1930,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/48%2Fde%2Ff2%2F48def2d871324a3fb61c8ae7b94f7b61%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-12-27,1931-01-23,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,27,,,https://shakespeareandco.princeton.edu/books/ker-form-style-poetry/,Form and Style in Poetry: Lectures and Notes,,"Ker, W. P.",1928,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/7c%2F01%2F9e%2F7c019e31b6284228a3ebef306334ff95%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-12-27,1931-01-23,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,27,,,https://shakespeareandco.princeton.edu/books/read-phases-english-poetry/,Phases of English Poetry,,"Read, Herbert",1928,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/7c%2F01%2F9e%2F7c019e31b6284228a3ebef306334ff95%2Fintermediate_file/full/full/0/default.jpg
+Crossed out,1930-12-27,,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/coleman-shutter-snow/,The Shutter of Snow,,"Coleman, Emily Holmes",1930,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/1d%2F30%2F89%2F1d3089a9b018473cbf4498b364831b09%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-12-29,1931-01-03,https://shakespeareandco.princeton.edu/members/kennedy-robert/,Robert Kennedy,"Kennedy, Robert",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/sitwell-wooden-pegasus/,The Wooden Pegasus,,"Sitwell, Edith",1920,,Lending Library Card,"Sylvia Beach, Robert Kennedy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5819877c-8d7f-42cc-a86b-f8161bca822f/manifest,https://iiif.princeton.edu/loris/figgy_prod/c1%2F66%2Fae%2Fc166ae11260b41bb9c722f4364b8014b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-12-29,1930-12-31,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/sayers-lord-peter-views/,Lord Peter Views the Body,,"Sayers, Dorothy L.",1928,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/55%2F39%2Fd6%2F5539d629a20f465d893156b4d2c6d045%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1930-12-29,1931-01-03,https://shakespeareandco.princeton.edu/members/monnier-j/,J. Monnier,"Monnier, J.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/duncan-life/,My Life,,"Duncan, Isadora",1927,,Lending Library Card,"Sylvia Beach, J. Monnier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/df9a3d51-011b-4364-82ba-111bc447e7fe/manifest,https://iiif.princeton.edu/loris/figgy_prod/07%2F53%2Fe7%2F0753e7f832074e969277abf52028f871%2Fintermediate_file.jp2/full/full/0/default.jpg
+Crossed out,1930-12-30,,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/buchan-castle-gay/,Castle Gay,,"Buchan, John",1930,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Faf%2Fe8%2Fccafe843d8e34cf798333f34bb7fbe37%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-12-30,1931-02-24,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,56,,,https://shakespeareandco.princeton.edu/books/birmingham-majors-candlesticks/,The Major's Candlesticks,,"Birmingham, George A.",1929,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Faf%2Fe8%2Fccafe843d8e34cf798333f34bb7fbe37%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-12-30,1931-02-24,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,56,,,https://shakespeareandco.princeton.edu/books/sassoon-memoirs-infantry-officer/,Memoirs of an Infantry Officer,,"Sassoon, Siegfried",1930,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Faf%2Fe8%2Fccafe843d8e34cf798333f34bb7fbe37%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-12-30,1931-02-24,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,56,,,https://shakespeareandco.princeton.edu/books/buchan-castle-gay/,Castle Gay,,"Buchan, John",1930,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Faf%2Fe8%2Fccafe843d8e34cf798333f34bb7fbe37%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-12-31,1931-01-03,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/newton-tourist-spite/,A Tourist in Spite of Himself,,"Newton, A. Edward",1930,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/48%2Fde%2Ff2%2F48def2d871324a3fb61c8ae7b94f7b61%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1930-12-31,1931-01-05,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/thackeray-newcomes/,The Newcomes: Memoirs of a Most Respectable Family,,"Thackeray, William Makepeace",1855,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/55%2F39%2Fd6%2F5539d629a20f465d893156b4d2c6d045%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-01-02,1931-01-08,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/coyle-flock-birds/,A Flock of Birds,,"Coyle, Kathleen",1930,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/da%2Fc1%2F0b%2Fdac10b6cc97448048e6edfea2ba2a328%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1931-01-02,1931-06-30,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",144.00,,"5 months, 28 days",179,1,,1931-01-02,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/55%2F39%2Fd6%2F5539d629a20f465d893156b4d2c6d045%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-01-02,1931-02-19,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,48,,,https://shakespeareandco.princeton.edu/books/massingham-friend-shelley-memoir/,Friend of Shelley: A Memoir of Edward John Trelawny,,"Massingham, Harold John",1930,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/da%2Fc1%2F0b%2Fdac10b6cc97448048e6edfea2ba2a328%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1931-01-03,1931-01-03,https://shakespeareandco.princeton.edu/members/mciver/,McIver,McIver,,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1931-01-03,1931-01-14,https://shakespeareandco.princeton.edu/members/kennedy-robert/,Robert Kennedy,"Kennedy, Robert",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/russell-conquest-happiness/,The Conquest of Happiness,,"Russell, Bertrand",1930,,Lending Library Card,"Sylvia Beach, Robert Kennedy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5819877c-8d7f-42cc-a86b-f8161bca822f/manifest,https://iiif.princeton.edu/loris/figgy_prod/c1%2F66%2Fae%2Fc166ae11260b41bb9c722f4364b8014b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-01-03,1931-01-17,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/huxley-brief-candles-stories/,Brief Candles: Stories,,"Huxley, Aldous",1930,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/1a%2F31%2F93%2F1a3193da415e4768a82db00a6730db5e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-01-03,1931-01-17,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/sitwell-wooden-pegasus/,The Wooden Pegasus,,"Sitwell, Edith",1920,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/1a%2F31%2F93%2F1a3193da415e4768a82db00a6730db5e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-01-03,1931-01-08,https://shakespeareandco.princeton.edu/members/monnier-j/,J. Monnier,"Monnier, J.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/galsworthy-forsyte-change/,On Forsyte 'Change (The Forsyte Saga),,"Galsworthy, John",1930,,Lending Library Card,"Sylvia Beach, J. Monnier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/df9a3d51-011b-4364-82ba-111bc447e7fe/manifest,https://iiif.princeton.edu/loris/figgy_prod/07%2F53%2Fe7%2F0753e7f832074e969277abf52028f871%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-01-03,1931-01-12,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/lawrence-virgin-gipsy/,The Virgin and the Gipsy,,"Lawrence, D. H.",1930,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/48%2Fde%2Ff2%2F48def2d871324a3fb61c8ae7b94f7b61%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-01-05,1931-01-06,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/james-shatter-dream/,Shatter the Dream,,"James, Norah C.",1930,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/55%2F39%2Fd6%2F5539d629a20f465d893156b4d2c6d045%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-01-05,,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/knox-footsteps-lock/,The Footsteps at the Lock,,"Knox, Ronald Arbuthnott",1928,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/29%2F38%2Fe3%2F2938e3f080244a3bbcb44376b685cbe0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-01-06,1931-01-08,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/powys-white-paternoster-stories/,The White Paternoster and Other Stories,,"Powys, Theodore Francis",1930,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/55%2F39%2Fd6%2F5539d629a20f465d893156b4d2c6d045%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-01-06,1931-01-08,https://shakespeareandco.princeton.edu/members/kaopeitzer/,Kaopeitzer,Kaopeitzer,,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/einstein-sidelights-relativity/,Sidelights on Relativity,,"Einstein, Albert",1922,,Lending Library Card,"Sylvia Beach, Kaopeitzer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6cdee384-4af7-472d-8431-b1020d699437/manifest,https://iiif.princeton.edu/loris/figgy_prod/54%2Fb1%2Fd7%2F54b1d717338d4e4ba3625628d71f6303%2Fintermediate_file.jp2/full/full/0/default.jpg
+Crossed out,1931-01-07,,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/sitwell-collected-poems-edith/,The Collected Poems of Edith Sitwell,,"Sitwell, Edith",1930,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/1d%2F30%2F89%2F1d3089a9b018473cbf4498b364831b09%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-01-08,1931-01-12,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/huxley-point-counter-point/,Point Counter Point,,"Huxley, Aldous",1928,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/55%2F39%2Fd6%2F5539d629a20f465d893156b4d2c6d045%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-01-08,1931-01-24,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/gregory-irish-theatre-chapter/,Our Irish Theatre: A Chapter of Autobiography,,"Gregory, Lady",1913,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/da%2Fc1%2F0b%2Fdac10b6cc97448048e6edfea2ba2a328%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-01-08,1931-02-06,https://shakespeareandco.princeton.edu/members/kaopeitzer/,Kaopeitzer,Kaopeitzer,,,,,,,,,Returned,29,,,https://shakespeareandco.princeton.edu/books/bull-marvels-sound-light/,"Marvels of Sound, Light and Electricity: An Introduction to Some Physical Phenomena for Young Students",,"Bull, Percival G.",1926,,Lending Library Card,"Sylvia Beach, Kaopeitzer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6cdee384-4af7-472d-8431-b1020d699437/manifest,https://iiif.princeton.edu/loris/figgy_prod/54%2Fb1%2Fd7%2F54b1d717338d4e4ba3625628d71f6303%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1931-01-08,1931-02-08,https://shakespeareandco.princeton.edu/members/kaopeitzer/,Kaopeitzer,Kaopeitzer,32.00,,1 month,31,1,,1931-01-08,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Kaopeitzer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/6cdee384-4af7-472d-8431-b1020d699437/manifest,;https://iiif.princeton.edu/loris/figgy_prod/54%2Fb1%2Fd7%2F54b1d717338d4e4ba3625628d71f6303%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1931-01-08,1931-01-08,https://shakespeareandco.princeton.edu/members/duff-donald/,Donald Duff,"Duff, Donald",,,,,,,,,,,53.00,FRF,https://shakespeareandco.princeton.edu/books/cummings-enormous-room/,The Enormous Room,,"Cummings, E. E.",1922,,Lending Library Card,"Sylvia Beach, Donald Duff Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c9f19d83-d075-4536-b1fd-fe2a86bdf975/manifest,https://iiif.princeton.edu/loris/figgy_prod/fd%2F86%2Fc3%2Ffd86c35e550a4a85bb1918bd06261772%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,,1931-01-10,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/stephen-swift/,Swift,,"Stephen, Leslie",1882,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,,1931-01-10,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/smollett-adventures-peregrine-pickle/,The Adventures of Peregrine Pickle,Vol. 2,"Smollett, Tobias",1751,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1931-01-10,1931-07-04,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,175,,,https://shakespeareandco.princeton.edu/books/james-reverberator/,The Reverberator,,"James, Henry",1888,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/90%2Fd9%2Fa8%2F90d9a8306f194f94a3476fc1821b94a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-01-10,1931-03-07,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,56,,,https://shakespeareandco.princeton.edu/books/fielding-joseph-andrews/,Joseph Andrews,,"Fielding, Henry",1742,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/90%2Fd9%2Fa8%2F90d9a8306f194f94a3476fc1821b94a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-01-10,1931-07-04,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,175,,,https://shakespeareandco.princeton.edu/books/eliot-mill-floss/,The Mill on the Floss,,"Eliot, George",1860,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/90%2Fd9%2Fa8%2F90d9a8306f194f94a3476fc1821b94a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1931-01-10,1931-01-10,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,,,53.00,FRF,https://shakespeareandco.princeton.edu/books/eliot-middlemarch/,Middlemarch,,"Eliot, George",1871,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/80%2F34%2F32%2F8034320f8b194e2eb12e7611db38981b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,,1931-01-10,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/massingham-heritage-man/,The Heritage of Man,,"Massingham, Harold John",1929,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1931-01-10,1931-02-18,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,39,,,https://shakespeareandco.princeton.edu/books/powys-white-paternoster-stories/,The White Paternoster and Other Stories,,"Powys, Theodore Francis",1930,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/c6%2F2b%2F62%2Fc62b62e6d36c4581927dc5bb52715256%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1931-01-10,1931-04-10,https://shakespeareandco.princeton.edu/members/baker-2/,Mme Howard Baker,"Baker, Mme Howard",80.00,50.00,3 months,90,1,Student,1931-01-10,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1931-01-10,1931-04-10,https://shakespeareandco.princeton.edu/members/benton/,E. R. Benton,"Benton, E. R.",100.00,50.00,3 months,90,1,,1931-01-10,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1931-01-10,,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/james-washington-square/,Washington Square,,"James, Henry",1880,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/90%2Fd9%2Fa8%2F90d9a8306f194f94a3476fc1821b94a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-01-10,,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/gaskell-cranford/,Cranford,,"Gaskell, Elizabeth",1853,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/90%2Fd9%2Fa8%2F90d9a8306f194f94a3476fc1821b94a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1931-01-10,1931-01-10,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,,,75.00,FRF,https://shakespeareandco.princeton.edu/books/williamson-annals-crime-extraordinary/,Annals of Crime: Some Extraordinary Women,,"Williamson, W. H",1930,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/80%2F34%2F32%2F8034320f8b194e2eb12e7611db38981b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-01-10,,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/james-confidence/,Confidence,,"James, Henry",1880,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/90%2Fd9%2Fa8%2F90d9a8306f194f94a3476fc1821b94a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-01-12,1931-01-13,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/connington-mystery-lynden-sands/,Mystery at Lynden Sands,,"Connington, J. J.",1928,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/55%2F39%2Fd6%2F5539d629a20f465d893156b4d2c6d045%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-01-12,1931-01-19,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/priestley-angel-pavement/,Angel Pavement,,"Priestley, J. B.",1930,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/48%2Fde%2Ff2%2F48def2d871324a3fb61c8ae7b94f7b61%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-01-13,1931-01-15,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/tarkington-alice-adams/,Alice Adams,,"Tarkington, Booth",1921,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/55%2F39%2Fd6%2F5539d629a20f465d893156b4d2c6d045%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1931-01-13,1931-04-13,https://shakespeareandco.princeton.edu/members/bouniols/,Mme Gaston Bouniols,"Bouniols, Mme Gaston",100.00,50.00,3 months,90,1,,1931-01-13,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1931-01-14,1931-04-14,https://shakespeareandco.princeton.edu/members/libby-h-c/,H. C. Libby,"Libby, H. C.",100.00,50.00,3 months,90,1,,1931-01-14,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1931-01-14,1931-03-05,https://shakespeareandco.princeton.edu/members/kennedy-robert/,Robert Kennedy,"Kennedy, Robert",,,,,,,,,Returned,50,,,https://shakespeareandco.princeton.edu/books/sophocles-oedipus-etc/,"Oedipus, etc.",,Sophocles,,Unidentified.,Lending Library Card,"Sylvia Beach, Robert Kennedy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5819877c-8d7f-42cc-a86b-f8161bca822f/manifest,https://iiif.princeton.edu/loris/figgy_prod/c1%2F66%2Fae%2Fc166ae11260b41bb9c722f4364b8014b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-01-14,1931-03-05,https://shakespeareandco.princeton.edu/members/kennedy-robert/,Robert Kennedy,"Kennedy, Robert",,,,,,,,,Returned,50,,,https://shakespeareandco.princeton.edu/books/unclear-ides/,[unclear]ides,,,,Unidentified. Handwriting unclear. Likely Aeschylus's *Eumenides.*,Lending Library Card,"Sylvia Beach, Robert Kennedy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5819877c-8d7f-42cc-a86b-f8161bca822f/manifest,https://iiif.princeton.edu/loris/figgy_prod/c1%2F66%2Fae%2Fc166ae11260b41bb9c722f4364b8014b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-01-15,1931-01-19,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/tarkington-women/,Women,,"Tarkington, Booth",1925,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/55%2F39%2Fd6%2F5539d629a20f465d893156b4d2c6d045%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-01-16,1931-01-23,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/hughes-high-wind-jamaica/,A High Wind in Jamaica,,"Hughes, Richard",1929,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/16%2F9e%2F3d%2F169e3de9faf046a989463efd25e3aef3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-01-17,1931-01-21,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/christine/,Christine,,,,"Unidentified. Likely Julien Green's *Christine and Other Stories"" (1930).",Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/1a%2F31%2F93%2F1a3193da415e4768a82db00a6730db5e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-01-19,1931-01-21,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/zweig-claudia/,Claudia,,"Zweig, Arnold",1930,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/48%2Fde%2Ff2%2F48def2d871324a3fb61c8ae7b94f7b61%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-01-19,1931-01-21,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/powys-kindness-corner/,Kindness in a Corner,,"Powys, Theodore Francis",1930,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/55%2F39%2Fd6%2F5539d629a20f465d893156b4d2c6d045%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-01-21,1931-01-23,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/coyle-widows-house-novel/,The Widow's House: A Novel,,"Coyle, Kathleen",1924,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/55%2F39%2Fd6%2F5539d629a20f465d893156b4d2c6d045%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-01-21,1931-01-31,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/galsworthy-forsyte-change/,On Forsyte 'Change (The Forsyte Saga),,"Galsworthy, John",1930,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/1a%2F31%2F93%2F1a3193da415e4768a82db00a6730db5e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-01-21,1931-01-24,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/kipling-many-inventions/,Many Inventions,,"Kipling, Rudyard",1893,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/99%2F96%2Fc7%2F9996c76243504663af4276c991ff36f8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-01-21,1931-01-28,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/fraser-rose-anstey/,Rose Anstey,,"Fraser, Ronald",1930,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/48%2Fde%2Ff2%2F48def2d871324a3fb61c8ae7b94f7b61%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-01-23,1931-01-26,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/lehmann-note-music/,A Note in Music,,"Lehmann, Rosamond",1930,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/55%2F39%2Fd6%2F5539d629a20f465d893156b4d2c6d045%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-01-23,1931-02-14,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/read-phases-english-poetry/,Phases of English Poetry,,"Read, Herbert",1928,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/7c%2F01%2F9e%2F7c019e31b6284228a3ebef306334ff95%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1931-01-23,1931-02-23,https://shakespeareandco.princeton.edu/members/reynal-jeanne/,Jeanne Reynal,"Reynal, Jeanne",40.00,50.00,1 month,31,1,,1931-01-23,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Jeanne Reynal Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f8a26c6e-666c-4c58-803a-9c29156ee670/manifest,https://iiif.princeton.edu/loris/figgy_prod/cd%2F45%2F9b%2Fcd459b097ea54dcc86e08be7a68cf452%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-01-23,1931-01-26,https://shakespeareandco.princeton.edu/members/reynal-jeanne/,Jeanne Reynal,"Reynal, Jeanne",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/leroux-mystery-yellow-room/,The Mystery of the Yellow Room,,"Leroux, Gaston",1908,,Lending Library Card,"Sylvia Beach, Jeanne Reynal Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f8a26c6e-666c-4c58-803a-9c29156ee670/manifest,https://iiif.princeton.edu/loris/figgy_prod/cd%2F45%2F9b%2Fcd459b097ea54dcc86e08be7a68cf452%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-01-23,1931-01-26,https://shakespeareandco.princeton.edu/members/reynal-jeanne/,Jeanne Reynal,"Reynal, Jeanne",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/passion-crime-etc/,"Passion, Crime, etc.",,,,Unidentified.,Lending Library Card,"Sylvia Beach, Jeanne Reynal Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f8a26c6e-666c-4c58-803a-9c29156ee670/manifest,https://iiif.princeton.edu/loris/figgy_prod/cd%2F45%2F9b%2Fcd459b097ea54dcc86e08be7a68cf452%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-01-23,1931-01-30,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/hemingway-men-without-women/,Men without Women,,"Hemingway, Ernest",1927,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/16%2F9e%2F3d%2F169e3de9faf046a989463efd25e3aef3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-01-23,1931-02-14,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/joyce-ulysses/,Ulysses,1930 Eleventh printing,"Joyce, James",1922,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/7c%2F01%2F9e%2F7c019e31b6284228a3ebef306334ff95%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-01-23,1931-02-14,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/sitwell-pleasures-poetry-critical/,The Pleasures of Poetry: A Critical Anthology,,"Sitwell, Edith",1930,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/7c%2F01%2F9e%2F7c019e31b6284228a3ebef306334ff95%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-01-24,1931-01-28,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/trites-paterfamilias/,Paterfamilias,,"Trites, W. B.",1929,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/99%2F96%2Fc7%2F9996c76243504663af4276c991ff36f8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-01-24,1931-02-19,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,26,,,https://shakespeareandco.princeton.edu/books/shelley-shelleys-lost-letters/,Shelley's Lost Letters to Harriet,,"Shelley, Percy Bysshe",1930,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/da%2Fc1%2F0b%2Fdac10b6cc97448048e6edfea2ba2a328%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-01-26,1931-02-19,https://shakespeareandco.princeton.edu/members/reynal-jeanne/,Jeanne Reynal,"Reynal, Jeanne",,,,,,,,,Returned,24,,,https://shakespeareandco.princeton.edu/books/christie-murder-roger-ackroyd/,The Murder of Roger Ackroyd,,"Christie, Agatha",1926,,Lending Library Card,"Sylvia Beach, Jeanne Reynal Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f8a26c6e-666c-4c58-803a-9c29156ee670/manifest,https://iiif.princeton.edu/loris/figgy_prod/cd%2F45%2F9b%2Fcd459b097ea54dcc86e08be7a68cf452%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-01-26,1931-01-31,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/powys-wolf-solent/,Wolf Solent,,"Powys, John Cowper",1929,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/55%2F39%2Fd6%2F5539d629a20f465d893156b4d2c6d045%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-01-28,1931-08-29,https://shakespeareandco.princeton.edu/members/ottocar/,Mlle Ottocar,"Ottocar, Mlle",,,,,,,,,Returned,213,,,https://shakespeareandco.princeton.edu/books/wells-autocracy-mr-parham/,The Autocracy of Mr. Parham,,"Wells, H. G.",1930,,Lending Library Card,"Sylvia Beach, Ottocar Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/849bffbb-f40f-45fa-a6bd-906caa1b7015/manifest,https://iiif-cloud.princeton.edu/iiif/2/99%2F96%2Fc7%2F9996c76243504663af4276c991ff36f8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-01-28,1931-02-03,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/powys-defense-sensuality/,In Defense of Sensuality,,"Powys, John Cowper",1931,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/48%2Fde%2Ff2%2F48def2d871324a3fb61c8ae7b94f7b61%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-01-28,,https://shakespeareandco.princeton.edu/members/trevelyan-julian/,Julian Trevelyan,"Trevelyan, Julian",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/gilbert-james-joyces-ulysses/,James Joyce's Ulysses: A Study,,"Gilbert, Stuart",1930,,Lending Library Card,"Sylvia Beach, Julian Trevelyan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/029b1d10-e2db-4aa7-971e-4c15694d6785/manifest,https://iiif.princeton.edu/loris/figgy_prod/0d%2Fa3%2F7c%2F0da37c9a29f04e85b742cc58f8870ed2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-01-28,1931-02-07,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/graeme-passion-murder-mystery/,"Passion, Murder, and Mystery",,"Graeme, Bruce",1927,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/29%2F38%2Fe3%2F2938e3f080244a3bbcb44376b685cbe0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-01-30,1931-02-02,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/hemingway-sun-also-rises/,The Sun Also Rises,,"Hemingway, Ernest",1926,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/16%2F9e%2F3d%2F169e3de9faf046a989463efd25e3aef3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-01-31,1931-02-05,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/lawrence-ladybird/,The Ladybird,,"Lawrence, D. H.",1923,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/1a%2F31%2F93%2F1a3193da415e4768a82db00a6730db5e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1931-02-02,1931-02-02,https://shakespeareandco.princeton.edu/members/robertson-william-cowper/,William Cowper Robertson / Rev. W. Cowper Robertson,"Robertson, William Cowper",,,,,,,,,,,18.50,FRF,https://shakespeareandco.princeton.edu/books/kennedy-second-book-moses/,The Second Book of Moses Called Exodus,,,1901,From the Temple Bible series.,Lending Library Card,"Sylvia Beach, W. Cowper Robertson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/33769c35-cdbb-47ab-b0b9-ca17c85798d6/manifest,https://iiif.princeton.edu/loris/figgy_prod/e5%2F5f%2F34%2Fe55f347dfb534162a1de11248ea88470%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-02-02,1931-02-04,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/powys-innocent-birds/,Innocent Birds,,"Powys, Theodore Francis",1926,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/55%2F39%2Fd6%2F5539d629a20f465d893156b4d2c6d045%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-02-02,1931-02-26,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,24,,,https://shakespeareandco.princeton.edu/books/hemingway-farewell-arms/,A Farewell to Arms,,"Hemingway, Ernest",1929,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/fb%2F31%2F26%2Ffb312635b630443192db234a977d365b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-02-03,1931-02-13,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/delafield-diary-provincial-lady/,Diary of a Provincial Lady,,"Delafield, E. M.",1930,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/48%2Fde%2Ff2%2F48def2d871324a3fb61c8ae7b94f7b61%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-02-04,1931-02-05,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/lowndes-story-ivy/,The Story of Ivy,,"Lowndes, Marie Belloc",1927,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/55%2F39%2Fd6%2F5539d629a20f465d893156b4d2c6d045%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-02-05,1931-02-11,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/green-selbys/,The Selbys,,"Green, Anne",1930,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/1a%2F31%2F93%2F1a3193da415e4768a82db00a6730db5e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-02-05,1931-02-09,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/trollope-orley-farm/,Orley Farm,3 vols.,"Trollope, Anthony",1862,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/55%2F39%2Fd6%2F5539d629a20f465d893156b4d2c6d045%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-02-05,,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/waite-occult-sciences/,The Occult Sciences,,"Waite, A. E.",1891,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1931-02-06,1931-02-11,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/poe-poems-essays-edgar/,Poems and Essays of Edgar Allan Poe,,"Poe, Edgar Allan",1876,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/1a%2F31%2F93%2F1a3193da415e4768a82db00a6730db5e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-02-06,1931-02-07,https://shakespeareandco.princeton.edu/members/kaopeitzer/,Kaopeitzer,Kaopeitzer,,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/vasilev-space-time-motion/,"Space, Time, Motion: An Historical Introduction to the General Theory of Relativity",,"Vasilev, A. V.",1924,,Lending Library Card,"Sylvia Beach, Kaopeitzer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6cdee384-4af7-472d-8431-b1020d699437/manifest,https://iiif.princeton.edu/loris/figgy_prod/54%2Fb1%2Fd7%2F54b1d717338d4e4ba3625628d71f6303%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-02-07,1931-02-11,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/crofts-box-office-murders/,The Box Office Murders,,"Crofts, Freeman Wills",1929,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/29%2F38%2Fe3%2F2938e3f080244a3bbcb44376b685cbe0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-02-09,1931-02-13,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/wolfe-look-homeward-angel/,"Look Homeward, Angel",,"Wolfe, Thomas",1929,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/55%2F39%2Fd6%2F5539d629a20f465d893156b4d2c6d045%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-02-11,1931-02-14,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/fletcher-kang-vase/,The Kang-He Vase,,"Fletcher, Joseph Smith",1923,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/29%2F38%2Fe3%2F2938e3f080244a3bbcb44376b685cbe0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-02-11,1931-02-18,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/kennedy-fool-family/,The Fool of the Family,,"Kennedy, Margaret",1930,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/1a%2F31%2F93%2F1a3193da415e4768a82db00a6730db5e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1931-02-12,1931-02-12,https://shakespeareandco.princeton.edu/members/tanner-2/,Tanner,Tanner,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1931-02-13,1931-02-16,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/webb-house-dormer-street/,The House of Dormer Street,,"Webb, Mary",1928,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/55%2F39%2Fd6%2F5539d629a20f465d893156b4d2c6d045%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-02-13,1931-02-20,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/galsworthy-swan-song/,Swan Song (A Modern Comedy),,"Galsworthy, John",1928,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a3%2F9f%2F6f%2Fa39f6f344f7a49999497dfd5733514e8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-02-13,1931-02-16,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/maxwell-case-bevan-yorke/,The Case of Bevan Yorke,,"Maxwell, W. B.",1927,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/29%2F38%2Fe3%2F2938e3f080244a3bbcb44376b685cbe0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-02-14,1931-02-28,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/wordsworth/,Wordsworth,,,,Unidentified. By or about Wordsworth.,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/7c%2F01%2F9e%2F7c019e31b6284228a3ebef306334ff95%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-02-14,1931-02-28,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/maugham-cakes-ale-skeleton/,"Cakes and Ale, or, the Skeleton in the Cupboard",,"Maugham, W. Somerset",1930,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/7c%2F01%2F9e%2F7c019e31b6284228a3ebef306334ff95%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-02-16,1931-02-18,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/gibbs-winding-lane/,The Winding Lane,,"Gibbs, Philip",1931,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/55%2F39%2Fd6%2F5539d629a20f465d893156b4d2c6d045%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-02-16,1931-03-02,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/masterman-green-toad/,The Green Toad,,"Masterman, Walter Sydney",1930,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/29%2F38%2Fe3%2F2938e3f080244a3bbcb44376b685cbe0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-02-17,1931-05-15,https://shakespeareandco.princeton.edu/members/gilbert-stuart/,Stuart Gilbert,"Gilbert, Stuart",,,,,,,,,Returned,87,,,https://shakespeareandco.princeton.edu/books/macgreevy-eliot-study/,T. S. Eliot: A Study,,"MacGreevy, Thomas",1931,Stuart Gilbert's lending library card indicates that he borrowed James Joyce's copy of *T. S. Eliot: A Study.*,Lending Library Card,"Sylvia Beach, Stuart Gilbert Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/861dcb07-60d7-4a64-b1ba-6296bd9c66c3/manifest,https://iiif.princeton.edu/loris/figgy_prod/af%2Ff0%2Fc0%2Faff0c08e46c84bc68c186495fa2d3eba%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-02-18,1931-02-23,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/lawrence-virgin-gipsy/,The Virgin and the Gipsy,,"Lawrence, D. H.",1930,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/1a%2F31%2F93%2F1a3193da415e4768a82db00a6730db5e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-02-18,1931-02-21,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/smith-flamenco/,Flamenco,,"Smith, Eleanor",1931,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/55%2F39%2Fd6%2F5539d629a20f465d893156b4d2c6d045%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-02-18,1931-02-21,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/donovan-black-soil/,Black Soil,,"Donovan, Josephine",1930,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/c6%2F2b%2F62%2Fc62b62e6d36c4581927dc5bb52715256%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-02-19,1931-02-21,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/aldington-death-hero/,Death of a Hero,,"Aldington, Richard",1929,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/da%2Fc1%2F0b%2Fdac10b6cc97448048e6edfea2ba2a328%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-02-20,1931-02-27,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/fisher-deepening-stream/,The Deepening Stream,,"Fisher, Dorothy Canfield",1930,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a3%2F9f%2F6f%2Fa39f6f344f7a49999497dfd5733514e8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-02-21,1931-03-16,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/delafield-turn-back-leaves/,Turn Back the Leaves,,"Delafield, E. M.",1930,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/c6%2F2b%2F62%2Fc62b62e6d36c4581927dc5bb52715256%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-02-21,1931-03-16,https://shakespeareandco.princeton.edu/members/fournier-jeanne/,Jeanne Fournier,"Fournier, Jeanne",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/thompson-chariot-wheels/,Chariot Wheels,,"Thompson, Sylvia",1929,,Lending Library Card,"Sylvia Beach, Jeanne Fournier Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/76a8beff-09ef-4139-8328-60b70affd14a/manifest,https://iiif-cloud.princeton.edu/iiif/2/c6%2F2b%2F62%2Fc62b62e6d36c4581927dc5bb52715256%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-02-21,1931-02-23,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/powys-mockery-gap/,Mockery Gap,,"Powys, Theodore Francis",1925,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/55%2F39%2Fd6%2F5539d629a20f465d893156b4d2c6d045%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-02-23,1931-02-25,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/benson-tobit-transplanted/,Tobit Transplanted,,"Benson, Stella",1931,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/55%2F39%2Fd6%2F5539d629a20f465d893156b4d2c6d045%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1931-02-23,1931-03-23,https://shakespeareandco.princeton.edu/members/reynal-jeanne/,Jeanne Reynal,"Reynal, Jeanne",40.00,,1 month,28,1,,1931-02-28,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Jeanne Reynal Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f8a26c6e-666c-4c58-803a-9c29156ee670/manifest,https://iiif.princeton.edu/loris/figgy_prod/cd%2F45%2F9b%2Fcd459b097ea54dcc86e08be7a68cf452%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-02-23,1931-03-03,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/lehmann-note-music/,A Note in Music,,"Lehmann, Rosamond",1930,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/1a%2F31%2F93%2F1a3193da415e4768a82db00a6730db5e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-02-24,1931-02-28,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/evans-nothing-pay/,Nothing to Pay,,"Evans, Caradoc",1930,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Faf%2Fe8%2Fccafe843d8e34cf798333f34bb7fbe37%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-02-24,1931-04-08,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,43,,,https://shakespeareandco.princeton.edu/books/milne-red-house-mystery/,The Red House Mystery,,"Milne, A. A.",1922,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/29%2F38%2Fe3%2F2938e3f080244a3bbcb44376b685cbe0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-02-24,1931-03-09,https://shakespeareandco.princeton.edu/members/trevelyan-julian/,Julian Trevelyan,"Trevelyan, Julian",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/joyce-exiles/,Exiles,,"Joyce, James",1918,,Lending Library Card,"Sylvia Beach, Julian Trevelyan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/029b1d10-e2db-4aa7-971e-4c15694d6785/manifest,https://iiif.princeton.edu/loris/figgy_prod/0d%2Fa3%2F7c%2F0da37c9a29f04e85b742cc58f8870ed2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1931-02-25,1931-02-25,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,,,30.00,FRF,https://shakespeareandco.princeton.edu/books/spanish-french-dictionary/,Spanish-French Dictionary,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/d8%2Fc9%2Fbe%2Fd8c9be9b191446febaa81863939e16e9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1931-02-25,1931-02-25,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,,,28.00,FRF,https://shakespeareandco.princeton.edu/books/fernando-cortes/,Fernando CortΓ©s,2 vols.,,,Unidentified. Likely Francis Augustus MacNutt's 2 volume *Fernando Cortes: His Five Letters of Relation to the Emperor Charles V* (1908).,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/d8%2Fc9%2Fbe%2Fd8c9be9b191446febaa81863939e16e9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1931-02-25,1931-02-25,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,,,45.00,FRF,https://shakespeareandco.princeton.edu/books/larousse-pequen-o-larousse/,PequeΓ±o Larousse Ilustrado,,,,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/d8%2Fc9%2Fbe%2Fd8c9be9b191446febaa81863939e16e9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-02-25,1931-02-27,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/webb-seven-secret-love/,Seven for a Secret: A Love Story,,"Webb, Mary",1922,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/55%2F39%2Fd6%2F5539d629a20f465d893156b4d2c6d045%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-02-26,1931-03-02,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/erskine-experiment-sincerity/,An Experiment in Sincerity,,"Erskine, John",1930,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/fb%2F31%2F26%2Ffb312635b630443192db234a977d365b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1931-02-27,1931-03-27,https://shakespeareandco.princeton.edu/members/pringle-lady/,Lady Pringle,"Pringle, Lady",40.00,,1 month,28,1,,1931-02-27,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Susan Pringle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/356654fe-699f-4ae0-b9b7-51769e5a346b/manifest,https://iiif.princeton.edu/loris/figgy_prod/36%2Fa6%2Ff8%2F36a6f815391842cdab6d2728952857bb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Crossed out,1931-02-27,,https://shakespeareandco.princeton.edu/members/pringle-lady/,Lady Pringle,"Pringle, Lady",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/beck-duel-queens-romance/,"The Duel of the Queens: A Romance of Mary, Queen of Scotland",,"Beck, L. Adams",1930,,Lending Library Card,"Sylvia Beach, Susan Pringle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/356654fe-699f-4ae0-b9b7-51769e5a346b/manifest,https://iiif.princeton.edu/loris/figgy_prod/36%2Fa6%2Ff8%2F36a6f815391842cdab6d2728952857bb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-02-27,1931-02-28,https://shakespeareandco.princeton.edu/members/pringle-lady/,Lady Pringle,"Pringle, Lady",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/kennedy-fool-family/,The Fool of the Family,,"Kennedy, Margaret",1930,,Lending Library Card,"Sylvia Beach, Susan Pringle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/356654fe-699f-4ae0-b9b7-51769e5a346b/manifest,https://iiif.princeton.edu/loris/figgy_prod/36%2Fa6%2Ff8%2F36a6f815391842cdab6d2728952857bb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-02-27,1931-03-14,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/dreiser-book/,Book about Myself,,"Dreiser, Theodore",1922,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a3%2F9f%2F6f%2Fa39f6f344f7a49999497dfd5733514e8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-02-27,1931-03-26,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,27,,,https://shakespeareandco.princeton.edu/books/breasted-ancient-times-history/,Ancient Times: A History of the Early World,,"Breasted, James Henry",1916,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a3%2F9f%2F6f%2Fa39f6f344f7a49999497dfd5733514e8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-02-27,1931-02-28,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/connington-case-nine-solutions/,The Case with Nine Solutions,,"Connington, J. J.",1928,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/55%2F39%2Fd6%2F5539d629a20f465d893156b4d2c6d045%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-02-28,1931-03-03,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/bronte-wuthering-heights/,Wuthering Heights,,"BrontΓ«, Emily",1847,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/55%2F39%2Fd6%2F5539d629a20f465d893156b4d2c6d045%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-02-28,1931-03-14,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/peck-shelley-life-work/,Shelley: His Life and Work,Vol. 1,"Peck, Walter Edwin",1927,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/7c%2F01%2F9e%2F7c019e31b6284228a3ebef306334ff95%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-02-28,1931-03-21,https://shakespeareandco.princeton.edu/members/reynal-jeanne/,Jeanne Reynal,"Reynal, Jeanne",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/swift-choice-works-dean/,The Choice Works of Dean Swift in Prose and Verse,,"Swift, Jonathan",1876,,Lending Library Card,"Sylvia Beach, Jeanne Reynal Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f8a26c6e-666c-4c58-803a-9c29156ee670/manifest,https://iiif.princeton.edu/loris/figgy_prod/cd%2F45%2F9b%2Fcd459b097ea54dcc86e08be7a68cf452%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-02-28,1931-03-11,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/galsworthy-forsyte-saga/,The Forsyte Saga,,"Galsworthy, John",1922,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Faf%2Fe8%2Fccafe843d8e34cf798333f34bb7fbe37%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-02-28,1931-03-02,https://shakespeareandco.princeton.edu/members/pringle-lady/,Lady Pringle,"Pringle, Lady",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/webb-precious-bane-novel/,Precious Bane: A Novel,,"Webb, Mary",1924,,Lending Library Card,"Sylvia Beach, Susan Pringle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/356654fe-699f-4ae0-b9b7-51769e5a346b/manifest,https://iiif.princeton.edu/loris/figgy_prod/36%2Fa6%2Ff8%2F36a6f815391842cdab6d2728952857bb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-03-02,1931-03-05,https://shakespeareandco.princeton.edu/members/pringle-lady/,Lady Pringle,"Pringle, Lady",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/russell-conquest-happiness/,The Conquest of Happiness,,"Russell, Bertrand",1930,,Lending Library Card,"Sylvia Beach, Susan Pringle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/356654fe-699f-4ae0-b9b7-51769e5a346b/manifest,https://iiif.princeton.edu/loris/figgy_prod/36%2Fa6%2Ff8%2F36a6f815391842cdab6d2728952857bb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-03-02,1931-03-04,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/bibesco-portrait-caroline/,Portrait of Caroline,,"Bibesco, Elizabeth",1931,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/5d%2F3d%2Fbd%2F5d3dbd4aa05d43c9b8f5371e13032ae6%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-03-02,1931-03-20,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/lawrence-aarons-rod/,Aaron's Rod,,"Lawrence, D. H.",1922,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/fb%2F31%2F26%2Ffb312635b630443192db234a977d365b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-03-02,1931-03-14,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/maugham-cakes-ale-skeleton/,"Cakes and Ale, or, the Skeleton in the Cupboard",,"Maugham, W. Somerset",1930,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/1a%2F31%2F93%2F1a3193da415e4768a82db00a6730db5e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-03-04,1931-03-06,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/powys-black-bryony/,Black Bryony,,"Powys, Theodore Francis",1923,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/5d%2F3d%2Fbd%2F5d3dbd4aa05d43c9b8f5371e13032ae6%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-03-05,1931-03-18,https://shakespeareandco.princeton.edu/members/kennedy-robert/,Robert Kennedy,"Kennedy, Robert",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/sitwell-pleasures-poetry-critical/,The Pleasures of Poetry: A Critical Anthology,,"Sitwell, Edith",1930,,Lending Library Card,"Sylvia Beach, Robert Kennedy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5819877c-8d7f-42cc-a86b-f8161bca822f/manifest,https://iiif.princeton.edu/loris/figgy_prod/c1%2F66%2Fae%2Fc166ae11260b41bb9c722f4364b8014b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1931-03-05,1932-03-05,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",240.00,,1 year,366,1,,1931-03-05,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/26%2F73%2Fc4%2F2673c41d1a72495c8231da059cc85000%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-03-05,1931-03-20,https://shakespeareandco.princeton.edu/members/pringle-lady/,Lady Pringle,"Pringle, Lady",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/wolfe-look-homeward-angel/,"Look Homeward, Angel",,"Wolfe, Thomas",1929,,Lending Library Card,"Sylvia Beach, Susan Pringle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/356654fe-699f-4ae0-b9b7-51769e5a346b/manifest,https://iiif.princeton.edu/loris/figgy_prod/36%2Fa6%2Ff8%2F36a6f815391842cdab6d2728952857bb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-03-06,1931-03-07,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/eliot-sacred-wood-essays/,The Sacred Wood: Essays on Poetry and Criticism,,"Eliot, T. S.",1920,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/5d%2F3d%2Fbd%2F5d3dbd4aa05d43c9b8f5371e13032ae6%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-03-07,1931-03-09,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/powys-defense-sensuality/,In Defense of Sensuality,,"Powys, John Cowper",1931,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/5d%2F3d%2Fbd%2F5d3dbd4aa05d43c9b8f5371e13032ae6%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-03-08,1931-05-28,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Returned,81,,,https://shakespeareandco.princeton.edu/books/lawrence-lady-chatterleys-lover/,Lady Chatterley's Lover,,"Lawrence, D. H.",1928,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1931-03-09,1931-03-16,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/mann-magic-mountain/,The Magic Mountain,,"Mann, Thomas",1927,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/5d%2F3d%2Fbd%2F5d3dbd4aa05d43c9b8f5371e13032ae6%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-03-10,,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/huxley-brave-new-world/,Brave New World,,"Huxley, Aldous",1932,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1931-03-11,1931-03-13,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/rohmer-sleeps/,She Who Sleeps,,"Rohmer, Sax",1928,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Faf%2Fe8%2Fccafe843d8e34cf798333f34bb7fbe37%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-03-13,1931-05-15,https://shakespeareandco.princeton.edu/members/gilbert-stuart/,Stuart Gilbert,"Gilbert, Stuart",,,,,,,,,Returned,63,,,https://shakespeareandco.princeton.edu/books/browning-poetical-works-elizabeth/,Elizabeth Barrett Browning's Poetical Works,,"Browning, Elizabeth Barrett",,,Lending Library Card,"Sylvia Beach, Stuart Gilbert Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/861dcb07-60d7-4a64-b1ba-6296bd9c66c3/manifest,https://iiif.princeton.edu/loris/figgy_prod/af%2Ff0%2Fc0%2Faff0c08e46c84bc68c186495fa2d3eba%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-03-13,1931-05-15,https://shakespeareandco.princeton.edu/members/gilbert-stuart/,Stuart Gilbert,"Gilbert, Stuart",,,,,,,,,Returned,63,,,https://shakespeareandco.princeton.edu/books/dowden-life-robert-browning/,The Life of Robert Browning,,"Dowden, Edward",1915,,Lending Library Card,"Sylvia Beach, Stuart Gilbert Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/861dcb07-60d7-4a64-b1ba-6296bd9c66c3/manifest,https://iiif.princeton.edu/loris/figgy_prod/af%2Ff0%2Fc0%2Faff0c08e46c84bc68c186495fa2d3eba%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-03-13,1931-03-17,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/thurston-man-black-hat/,Man in a Black Hat,,"Thurston, Ernest Temple",1930,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Faf%2Fe8%2Fccafe843d8e34cf798333f34bb7fbe37%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-03-14,1931-03-21,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/macgreevy-eliot-study/,T. S. Eliot: A Study,,"MacGreevy, Thomas",1931,Stuart Gilbert's lending library card indicates that he borrowed James Joyce's copy of *T. S. Eliot: A Study.*,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/7c%2F01%2F9e%2F7c019e31b6284228a3ebef306334ff95%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-03-14,1931-03-18,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/munthe-story-san-michele/,The Story of San Michele,,"Munthe, Axel",1930,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a3%2F9f%2F6f%2Fa39f6f344f7a49999497dfd5733514e8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-03-14,,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/green-reader-married/,Reader I Married Him,,"Green, Anne",1931,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/5d%2F3d%2Fbd%2F5d3dbd4aa05d43c9b8f5371e13032ae6%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-03-14,1931-03-21,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/ellis-soul-spain/,The Soul of Spain,,"Ellis, Havelock",1908,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/7c%2F01%2F9e%2F7c019e31b6284228a3ebef306334ff95%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-03-14,1931-03-30,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/bennett-ghost/,The Ghost: A Modern Fantasy,,"Bennett, Arnold",1907,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/1a%2F31%2F93%2F1a3193da415e4768a82db00a6730db5e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-03-16,1931-03-18,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/lynd-pleasures-ignorance/,The Pleasures of Ignorance,,"Lynd, Robert Wilson",1921,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/5d%2F3d%2Fbd%2F5d3dbd4aa05d43c9b8f5371e13032ae6%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-03-17,1931-03-20,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/sitwell-dumb-animal-stories/,Dumb-Animal and Other Stories,,"Sitwell, Osbert",1930,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Faf%2Fe8%2Fccafe843d8e34cf798333f34bb7fbe37%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-03-18,1931-03-21,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/barton-sober-truth-collection/,"Sober Truth: A Collection of Nineteenth-Century Episodes, Fantastic, Grotesque and Mysterious",,,1930,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a3%2F9f%2F6f%2Fa39f6f344f7a49999497dfd5733514e8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-03-18,1931-03-26,https://shakespeareandco.princeton.edu/members/kennedy-robert/,Robert Kennedy,"Kennedy, Robert",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/galsworthy-forsyte-change/,On Forsyte 'Change (The Forsyte Saga),,"Galsworthy, John",1930,,Lending Library Card,"Sylvia Beach, Robert Kennedy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5819877c-8d7f-42cc-a86b-f8161bca822f/manifest,https://iiif.princeton.edu/loris/figgy_prod/c1%2F66%2Fae%2Fc166ae11260b41bb9c722f4364b8014b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-03-18,1931-03-21,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/linklater-juan-america/,Juan in America,,"Linklater, Eric",1931,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/5d%2F3d%2Fbd%2F5d3dbd4aa05d43c9b8f5371e13032ae6%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-03-19,1931-04-30,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,42,,,https://shakespeareandco.princeton.edu/books/dos-passos-42nd-parallel/,The 42nd Parallel,,"Dos Passos, John",1930,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/da%2Fc1%2F0b%2Fdac10b6cc97448048e6edfea2ba2a328%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-03-20,1931-04-09,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/lawrence-virgin-gipsy/,The Virgin and the Gipsy,,"Lawrence, D. H.",1930,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/fb%2F31%2F26%2Ffb312635b630443192db234a977d365b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-03-20,1931-03-25,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/maugham-cakes-ale-skeleton/,"Cakes and Ale, or, the Skeleton in the Cupboard",,"Maugham, W. Somerset",1930,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Faf%2Fe8%2Fccafe843d8e34cf798333f34bb7fbe37%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-03-21,1931-05-23,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,63,,,https://shakespeareandco.princeton.edu/books/lawrence-kangaroo/,Kangaroo,,"Lawrence, D. H.",1923,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/da%2Fc1%2F0b%2Fdac10b6cc97448048e6edfea2ba2a328%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-03-21,1931-03-28,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/delafield-diary-provincial-lady/,Diary of a Provincial Lady,,"Delafield, E. M.",1930,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/7c%2F01%2F9e%2F7c019e31b6284228a3ebef306334ff95%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-03-21,1931-03-28,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/maugham-gentleman-parlour/,The Gentleman in the Parlour,,"Maugham, W. Somerset",1930,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/7c%2F01%2F9e%2F7c019e31b6284228a3ebef306334ff95%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-03-21,1931-03-23,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/baring-tinkers-leave/,Tinker's Leave,,"Baring, Maurice",1927,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/5d%2F3d%2Fbd%2F5d3dbd4aa05d43c9b8f5371e13032ae6%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-03-21,1931-03-26,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/sedgwick-philippa/,Philippa,,"Sedgwick, Anne Douglas",1930,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a3%2F9f%2F6f%2Fa39f6f344f7a49999497dfd5733514e8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-03-23,1931-03-25,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/doyle-last-adventures-sherlock/,The Last Adventures of Sherlock Holmes,,"Doyle, Arthur Conan",1897,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/5d%2F3d%2Fbd%2F5d3dbd4aa05d43c9b8f5371e13032ae6%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-03-25,1931-03-27,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/arnim-father/,Father,,"Arnim, Elizabeth von",1931,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/5d%2F3d%2Fbd%2F5d3dbd4aa05d43c9b8f5371e13032ae6%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-03-25,1931-03-31,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/deeping-short-stories-warwick/,The Short Stories of Warwick Deeping,,"Deeping, Warwick",1930,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Faf%2Fe8%2Fccafe843d8e34cf798333f34bb7fbe37%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-03-26,1931-04-03,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/obrien-best-short-stories/,The Best Short Stories,,,,Unidentified edition. Year unknown.,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a3%2F9f%2F6f%2Fa39f6f344f7a49999497dfd5733514e8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-03-26,1931-04-08,https://shakespeareandco.princeton.edu/members/kennedy-robert/,Robert Kennedy,"Kennedy, Robert",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/hecht-jew-love/,A Jew in Love,,"Hecht, Ben",1931,,Lending Library Card,"Sylvia Beach, Robert Kennedy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5819877c-8d7f-42cc-a86b-f8161bca822f/manifest,https://iiif.princeton.edu/loris/figgy_prod/c1%2F66%2Fae%2Fc166ae11260b41bb9c722f4364b8014b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-03-27,1931-04-01,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/wodehouse-piccadilly-jim/,Piccadilly Jim,,"Wodehouse, P. G.",1929,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/5d%2F3d%2Fbd%2F5d3dbd4aa05d43c9b8f5371e13032ae6%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1931-03-27,1931-03-27,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,,,56.00,FRF,https://shakespeareandco.princeton.edu/books/arlen-men-dislike-women/,Men Dislike Women: A Romance,,"Arlen, Michael",1931,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/80%2F34%2F32%2F8034320f8b194e2eb12e7611db38981b%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1931-03-27,1931-03-27,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,,,13.50,FRF,https://shakespeareandco.princeton.edu/books/breton-nadja/,Nadja,,"Breton, AndrΓ©",1928,,Lending Library Card;Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest;https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/80%2F34%2F32%2F8034320f8b194e2eb12e7611db38981b%2Fintermediate_file/full/full/0/default.jpg;https://iiif-cloud.princeton.edu/iiif/2/3c%2Ff5%2F0f%2F3cf50f0fb03f4592a2f24c3a92a9f492%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-03-27,1934-12-17,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,1361,,,https://shakespeareandco.princeton.edu/books/cruttwell-madame-maintenon/,Madame de Maintenon,,"Cruttwell, Maud",1930,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/4f%2F67%2Fff%2F4f67ff97047c4f95aa6383f85315dbcb%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-03-28,1931-04-11,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/eliot-poems/,Poems,,"Eliot, T. S.",,"Unidentified edition or editions. Monique de Vigan borrowed Eliot's *Poems, 1909 β 1925* (1925).",Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/7c%2F01%2F9e%2F7c019e31b6284228a3ebef306334ff95%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-03-28,1931-04-11,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/oneill-strange-interlude/,Strange Interlude,,"O'Neill, Eugene",1928,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/7c%2F01%2F9e%2F7c019e31b6284228a3ebef306334ff95%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-03-31,1931-04-01,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/winwar-golden-round/,The Golden Round,,"Winwar, Frances",1928,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Faf%2Fe8%2Fccafe843d8e34cf798333f34bb7fbe37%2Fintermediate_file.jp2/full/full/0/default.jpg
+Generic,1931-03-31,,https://shakespeareandco.princeton.edu/members/ogden/,C. K. Ogden,"Ogden, C. K.",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/joyce-james-joyce-reading/,"James Joyce Reading ""Anna Livia Plurabelle""",,"Joyce, James",1929,[Listen](https://archive.org/details/JamesJoyceReadsannaLiviaPlurabelleFromFinnegansWake1929).,Lending Library Card,"Sylvia Beach, CK Ogden Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/38645ba9-dfc2-4361-be02-87c24810801b/manifest,https://iiif.princeton.edu/loris/figgy_prod/7f%2F25%2Fda%2F7f25da43753e409e94aacb48285d255f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Generic,1931-03-31,,https://shakespeareandco.princeton.edu/members/ogden/,C. K. Ogden,"Ogden, C. K.",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/joyce-james-joyce-reading/,"James Joyce Reading ""Anna Livia Plurabelle""",,"Joyce, James",1929,[Listen](https://archive.org/details/JamesJoyceReadsannaLiviaPlurabelleFromFinnegansWake1929).,Lending Library Card,"Sylvia Beach, CK Ogden Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/38645ba9-dfc2-4361-be02-87c24810801b/manifest,https://iiif.princeton.edu/loris/figgy_prod/7f%2F25%2Fda%2F7f25da43753e409e94aacb48285d255f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-04-01,1931-04-09,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/beck-laughing-queen/,The Laughing Queen,,"Beck, L. Adams",1929,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2F95%2F88%2Fcc95882431b347b790c3aab7dcb6eeb9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-04-01,1931-04-04,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/eliot-scenes-clerical-life/,Scenes of Clerical Life,,"Eliot, George",1857,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/5d%2F3d%2Fbd%2F5d3dbd4aa05d43c9b8f5371e13032ae6%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1931-04-02,1931-04-02,https://shakespeareandco.princeton.edu/members/duff-donald/,Donald Duff,"Duff, Donald",,,,,,,,,,,73.50,FRF,https://shakespeareandco.princeton.edu/books/kant-lectures-ethics/,Lectures on Ethics,,"Kant, Immanuel",1930,,Lending Library Card,"Sylvia Beach, Donald Duff Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c9f19d83-d075-4536-b1fd-fe2a86bdf975/manifest,https://iiif.princeton.edu/loris/figgy_prod/fd%2F86%2Fc3%2Ffd86c35e550a4a85bb1918bd06261772%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-04-03,1931-04-13,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/bennett-imperial-palace/,Imperial Palace,,"Bennett, Arnold",1930,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a3%2F9f%2F6f%2Fa39f6f344f7a49999497dfd5733514e8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-04-04,1931-04-07,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/waugh-georgian-stories-1926/,"Georgian Stories, 1926",,,1927,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/5d%2F3d%2Fbd%2F5d3dbd4aa05d43c9b8f5371e13032ae6%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1931-04-06,1932-04-06,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",240.00,,1 year,366,1,,,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/0f%2Fd5%2Fe8%2F0fd5e8ecc00f4c159cbabdbe207808d7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-04-07,1931-04-09,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/kennedy-ladies-lyndon/,The Ladies of Lyndon,,"Kennedy, Margaret",1923,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/5d%2F3d%2Fbd%2F5d3dbd4aa05d43c9b8f5371e13032ae6%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-04-08,1931-04-15,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/lowndes-lonely-house/,The Lonely House,,"Lowndes, Marie Belloc",1920,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/29%2F38%2Fe3%2F2938e3f080244a3bbcb44376b685cbe0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-04-08,1931-05-09,https://shakespeareandco.princeton.edu/members/kennedy-robert/,Robert Kennedy,"Kennedy, Robert",,,,,,,,,Returned,31,,,https://shakespeareandco.princeton.edu/books/anderson-architecture-ancient-greece/,"The Architecture of Ancient Greece: An Account of Its Historic Development, Being the First Part of the Architecture of Greece and Rome",,"Anderson, William J.;Spiers, Richard PhenΓ©;William Bell Dinsmoor",1927,,Lending Library Card,"Sylvia Beach, Robert Kennedy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5819877c-8d7f-42cc-a86b-f8161bca822f/manifest,https://iiif.princeton.edu/loris/figgy_prod/c1%2F66%2Fae%2Fc166ae11260b41bb9c722f4364b8014b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-04-09,1931-04-13,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/waugh-georgian-stories-1927/,"Georgian Stories, 1927",,,1928,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/5d%2F3d%2Fbd%2F5d3dbd4aa05d43c9b8f5371e13032ae6%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-04-09,1931-04-16,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/wolfe-look-homeward-angel/,"Look Homeward, Angel",,"Wolfe, Thomas",1929,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2F95%2F88%2Fcc95882431b347b790c3aab7dcb6eeb9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-04-09,1931-04-10,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/galsworthy-forsyte-change/,On Forsyte 'Change (The Forsyte Saga),,"Galsworthy, John",1930,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/fb%2F31%2F26%2Ffb312635b630443192db234a977d365b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-04-10,1931-04-13,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/lehmann-note-music/,A Note in Music,,"Lehmann, Rosamond",1930,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/fb%2F31%2F26%2Ffb312635b630443192db234a977d365b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-04-11,1931-04-25,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/nicoll-history-restoration-drama/,"A History of Restoration Drama, 1600 β 1700",,"Nicoll, Allardyce",1923,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/7c%2F01%2F9e%2F7c019e31b6284228a3ebef306334ff95%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-04-11,1931-04-21,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/christie-mystery-blue-train/,The Mystery of the Blue Train,,"Christie, Agatha",1928,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/26%2F73%2Fc4%2F2673c41d1a72495c8231da059cc85000%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-04-11,1931-04-25,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/forster-aspects-novel/,Aspects of the Novel,,"Forster, E. M.",1927,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/7c%2F01%2F9e%2F7c019e31b6284228a3ebef306334ff95%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-04-13,1931-04-18,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/fisher-deepening-stream/,The Deepening Stream,,"Fisher, Dorothy Canfield",1930,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/5d%2F3d%2Fbd%2F5d3dbd4aa05d43c9b8f5371e13032ae6%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-04-13,1931-05-27,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,44,,,https://shakespeareandco.princeton.edu/books/bennett-buried-alive/,Buried Alive,,"Bennett, Arnold",1908,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a3%2F9f%2F6f%2Fa39f6f344f7a49999497dfd5733514e8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-04-13,1931-04-20,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/wharton-certain-people-short/,Certain People: Short Stories,,"Wharton, Edith",1930,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/fb%2F31%2F26%2Ffb312635b630443192db234a977d365b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-04-13,1931-05-27,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,44,,,https://shakespeareandco.princeton.edu/books/hardy-group-noble-dames/,A Group of Noble Dames,,"Hardy, Thomas",1891,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a3%2F9f%2F6f%2Fa39f6f344f7a49999497dfd5733514e8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-04-13,1931-05-27,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,44,,,https://shakespeareandco.princeton.edu/books/hays-love-letters-mary/,The Love Letters of Mary Hays,,"Hays, Mary",1925,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a3%2F9f%2F6f%2Fa39f6f344f7a49999497dfd5733514e8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-04-13,1931-05-27,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,44,,,https://shakespeareandco.princeton.edu/books/woolf-orlando-biography/,Orlando: A Biography,,"Woolf, Virginia",1928,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a3%2F9f%2F6f%2Fa39f6f344f7a49999497dfd5733514e8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-04-14,1931-05-02,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/christie-mysterious-affair-styles/,The Mysterious Affair at Styles,,"Christie, Agatha",1916,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/29%2F38%2Fe3%2F2938e3f080244a3bbcb44376b685cbe0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-04-16,1931-04-20,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/hughes-without-laughter/,Not without Laughter,,"Hughes, Langston",1930,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2F95%2F88%2Fcc95882431b347b790c3aab7dcb6eeb9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-04-17,1931-07-15,https://shakespeareandco.princeton.edu/members/trevelyan-julian/,Julian Trevelyan,"Trevelyan, Julian",,,,,,,,,Returned,89,,,https://shakespeareandco.princeton.edu/books/gilbert-james-joyces-ulysses/,James Joyce's Ulysses: A Study,,"Gilbert, Stuart",1930,,Lending Library Card,"Sylvia Beach, Julian Trevelyan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/029b1d10-e2db-4aa7-971e-4c15694d6785/manifest,https://iiif.princeton.edu/loris/figgy_prod/0d%2Fa3%2F7c%2F0da37c9a29f04e85b742cc58f8870ed2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-04-18,1931-04-21,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/george-gifts-sheba/,Gifts of Sheba,,"George, Walter Lionel",1926,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/5d%2F3d%2Fbd%2F5d3dbd4aa05d43c9b8f5371e13032ae6%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-04-20,1931-05-15,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,25,,,https://shakespeareandco.princeton.edu/books/lindsay-redheap/,Redheap,,"Lindsay, Norman",1930,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2F95%2F88%2Fcc95882431b347b790c3aab7dcb6eeb9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-04-20,1931-04-27,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/lawrence-plumed-serpent/,The Plumed Serpent,,"Lawrence, D. H.",1926,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/fb%2F31%2F26%2Ffb312635b630443192db234a977d365b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-04-21,1931-04-28,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/trollope-kept-dark/,Kept in the Dark,,"Trollope, Anthony",1882,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/5d%2F3d%2Fbd%2F5d3dbd4aa05d43c9b8f5371e13032ae6%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-04-21,1931-05-19,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,28,,,https://shakespeareandco.princeton.edu/books/sitwell-dumb-animal-stories/,Dumb-Animal and Other Stories,,"Sitwell, Osbert",1930,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/26%2F73%2Fc4%2F2673c41d1a72495c8231da059cc85000%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-04-21,1931-12-21,https://shakespeareandco.princeton.edu/members/boyd-james/,James Boyd,"Boyd, James",,,,,,,,,Returned,244,,,https://shakespeareandco.princeton.edu/books/beerbohm-even-now/,And Even Now,,"Beerbohm, Max",1920,,Lending Library Card,"Sylvia Beach, James Boyd Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/937ad2c0-875b-4ba4-8ce9-a41c906534a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/55%2F35%2F68%2F553568378e4249dbb6a8ec75b777560e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1931-04-21,,https://shakespeareandco.princeton.edu/members/boyd-james/,James Boyd,"Boyd, James",,,,,,,1931-04-21,,,,,FRF,,,,,,,Lending Library Card;Address Book,"Sylvia Beach, James Boyd Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/937ad2c0-875b-4ba4-8ce9-a41c906534a9/manifest;,https://iiif.princeton.edu/loris/figgy_prod/55%2F35%2F68%2F553568378e4249dbb6a8ec75b777560e%2Fintermediate_file.jp2/full/full/0/default.jpg;
+Borrow,1931-04-23,1931-04-29,https://shakespeareandco.princeton.edu/members/lucas-b/,Mrs. B. Lucas,"Lucas, Mrs. B.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/gosse-father-study-two/,Father and Son: A Study of Two Temperaments,,"Gosse, Edmund",1907,,Lending Library Card,"Sylvia Beach, Mrs. B. Lucas Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e61ca1b8-bbed-413b-bde5-081f73aaa03a/manifest,https://iiif.princeton.edu/loris/figgy_prod/c3%2F1b%2F48%2Fc31b48341b3248228f513673463259b2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1931-04-23,1931-05-07,https://shakespeareandco.princeton.edu/members/lucas-b/,Mrs. B. Lucas,"Lucas, Mrs. B.",80.00,100.00,2 weeks,14,2,,1931-04-23,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Mrs. B. Lucas Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e61ca1b8-bbed-413b-bde5-081f73aaa03a/manifest,https://iiif.princeton.edu/loris/figgy_prod/c3%2F1b%2F48%2Fc31b48341b3248228f513673463259b2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-04-23,1931-04-29,https://shakespeareandco.princeton.edu/members/lucas-b/,Mrs. B. Lucas,"Lucas, Mrs. B.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/cecil-stricken-deer-life/,"The Stricken Deer: Or, the Life of William Cowper",,"Cecil, David",1929,,Lending Library Card,"Sylvia Beach, Mrs. B. Lucas Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e61ca1b8-bbed-413b-bde5-081f73aaa03a/manifest,https://iiif.princeton.edu/loris/figgy_prod/c3%2F1b%2F48%2Fc31b48341b3248228f513673463259b2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1931-04-24,1931-06-24,https://shakespeareandco.princeton.edu/members/balfour-mr/,Mr. Balfour,"Balfour, Mr.",,,2 months,61,,,1931-04-24,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1931-04-25,1931-05-04,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/froude-bunyan/,Bunyan,,"Froude, James Anthony",1880,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/7c%2F01%2F9e%2F7c019e31b6284228a3ebef306334ff95%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-04-25,1931-05-04,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/ward-cambridge-history-english/,The Cambridge History of English Literature,"Vol. 7, 1911 Cavalier and Puritan",,,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/7c%2F01%2F9e%2F7c019e31b6284228a3ebef306334ff95%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-04-27,1931-04-28,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/bibesco-portrait-caroline/,Portrait of Caroline,,"Bibesco, Elizabeth",1931,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/fb%2F31%2F26%2Ffb312635b630443192db234a977d365b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-04-28,1931-05-01,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/lawrence-st-mawr/,St. Mawr,,"Lawrence, D. H.",1925,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/fb%2F31%2F26%2Ffb312635b630443192db234a977d365b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1931-04-28,1931-05-28,https://shakespeareandco.princeton.edu/members/roberts-3/,Miss Roberts,"Roberts, Miss",40.00,50.00,1 month,30,1,,1931-04-28,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Miss Roberts Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/32c61fdc-4e25-49b1-8291-e748dc1b7767/manifest,https://iiif.princeton.edu/loris/figgy_prod/dd%2Fd2%2Ffb%2Fddd2fb9cfe2e4116b27fed67f034af4f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-04-28,1931-04-28,https://shakespeareandco.princeton.edu/members/roberts-3/,Miss Roberts,"Roberts, Miss",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/hall-well-loneliness/,The Well of Loneliness,,"Hall, Radclyffe",1926,,Lending Library Card,"Sylvia Beach, Miss Roberts Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/32c61fdc-4e25-49b1-8291-e748dc1b7767/manifest,https://iiif.princeton.edu/loris/figgy_prod/dd%2Fd2%2Ffb%2Fddd2fb9cfe2e4116b27fed67f034af4f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-04-28,1931-04-29,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/connington-nemesis-raynham-parva/,Nemesis at Raynham Parva,,"Connington, J. J.",1929,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/5d%2F3d%2Fbd%2F5d3dbd4aa05d43c9b8f5371e13032ae6%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-04-29,1931-05-04,https://shakespeareandco.princeton.edu/members/lucas-b/,Mrs. B. Lucas,"Lucas, Mrs. B.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/wharton-certain-people-short/,Certain People: Short Stories,,"Wharton, Edith",1930,,Lending Library Card,"Sylvia Beach, Mrs. B. Lucas Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e61ca1b8-bbed-413b-bde5-081f73aaa03a/manifest,https://iiif.princeton.edu/loris/figgy_prod/c3%2F1b%2F48%2Fc31b48341b3248228f513673463259b2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-04-29,1931-05-01,https://shakespeareandco.princeton.edu/members/roberts-3/,Miss Roberts,"Roberts, Miss",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/gibbs-winding-lane/,The Winding Lane,,"Gibbs, Philip",1931,,Lending Library Card,"Sylvia Beach, Miss Roberts Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/32c61fdc-4e25-49b1-8291-e748dc1b7767/manifest,https://iiif.princeton.edu/loris/figgy_prod/dd%2Fd2%2Ffb%2Fddd2fb9cfe2e4116b27fed67f034af4f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-04-29,1931-05-04,https://shakespeareandco.princeton.edu/members/lucas-b/,Mrs. B. Lucas,"Lucas, Mrs. B.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/maugham-gentleman-parlour/,The Gentleman in the Parlour,,"Maugham, W. Somerset",1930,,Lending Library Card,"Sylvia Beach, Mrs. B. Lucas Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e61ca1b8-bbed-413b-bde5-081f73aaa03a/manifest,https://iiif.princeton.edu/loris/figgy_prod/c3%2F1b%2F48%2Fc31b48341b3248228f513673463259b2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-04-29,1931-05-01,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/mottram-castle-island/,Castle Island,,"Mottram, R. H.",1931,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/5d%2F3d%2Fbd%2F5d3dbd4aa05d43c9b8f5371e13032ae6%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-05-01,1931-05-06,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/west-h-lawrence/,D. H. Lawrence,,"West, Rebecca",1930,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/fb%2F31%2F26%2Ffb312635b630443192db234a977d365b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-05-01,1931-05-04,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/potter-h-lawrence-first/,D. H. Lawrence: A First Study,,"Potter, Stephen",1930,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/fb%2F31%2F26%2Ffb312635b630443192db234a977d365b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-05-01,1931-05-04,https://shakespeareandco.princeton.edu/members/roberts-3/,Miss Roberts,"Roberts, Miss",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/richardson-pointed-roofs/,Pointed Roofs (Pilgrimage 1),,"Richardson, Dorothy M.",1915,,Lending Library Card,"Sylvia Beach, Miss Roberts Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/32c61fdc-4e25-49b1-8291-e748dc1b7767/manifest,https://iiif.princeton.edu/loris/figgy_prod/dd%2Fd2%2Ffb%2Fddd2fb9cfe2e4116b27fed67f034af4f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-05-01,1931-05-04,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/kaye-smith-susan-spray/,Susan Spray,,"Kaye-Smith, Sheila",1931,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/5d%2F3d%2Fbd%2F5d3dbd4aa05d43c9b8f5371e13032ae6%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-05-02,1931-05-11,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/hart-double-image/,The Double Image,,"Hart, I. R. G.",1928,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/29%2F38%2Fe3%2F2938e3f080244a3bbcb44376b685cbe0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-05-03,1931-05-23,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/shaw-apple-cart-political/,The Apple Cart: A Political Extravaganza,,"Shaw, George Bernard",1930,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/da%2Fc1%2F0b%2Fdac10b6cc97448048e6edfea2ba2a328%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-05-04,1931-05-06,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/chesterton-man-thursday/,The Man Who Was Thursday,,"Chesterton, G. K.",1908,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/5d%2F3d%2Fbd%2F5d3dbd4aa05d43c9b8f5371e13032ae6%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-05-04,1931-05-19,https://shakespeareandco.princeton.edu/members/lucas-b/,Mrs. B. Lucas,"Lucas, Mrs. B.",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/huddleston-europe-zigzags/,Europe in Zigzags,,"Huddleston, Sisley",1929,,Lending Library Card,"Sylvia Beach, Mrs. B. Lucas Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e61ca1b8-bbed-413b-bde5-081f73aaa03a/manifest,https://iiif.princeton.edu/loris/figgy_prod/c3%2F1b%2F48%2Fc31b48341b3248228f513673463259b2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-05-04,1931-05-19,https://shakespeareandco.princeton.edu/members/lucas-b/,Mrs. B. Lucas,"Lucas, Mrs. B.",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/bordeux-eleonora-duse-story/,Eleonora Duse: The Story of Her Life,,"Bordeux, Jeanne",1924,,Lending Library Card,"Sylvia Beach, Mrs. B. Lucas Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e61ca1b8-bbed-413b-bde5-081f73aaa03a/manifest,https://iiif.princeton.edu/loris/figgy_prod/c3%2F1b%2F48%2Fc31b48341b3248228f513673463259b2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-05-04,1931-05-06,https://shakespeareandco.princeton.edu/members/roberts-3/,Miss Roberts,"Roberts, Miss",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/rittenhouse-second-book-modern/,The Second Book of Modern Verse,,,1919,,Lending Library Card,"Sylvia Beach, Miss Roberts Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/32c61fdc-4e25-49b1-8291-e748dc1b7767/manifest,https://iiif.princeton.edu/loris/figgy_prod/dd%2Fd2%2Ffb%2Fddd2fb9cfe2e4116b27fed67f034af4f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-05-04,1931-05-06,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/murry-things-come-essays/,Things to Come: Essays,,"Murry, John Middleton",1928,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/fb%2F31%2F26%2Ffb312635b630443192db234a977d365b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-05-04,1931-05-21,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/nicoll-readings-british-drama/,Readings from British Drama: Extracts from British and Irish Plays,,"Nicoll, Allardyce",1929,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/7c%2F01%2F9e%2F7c019e31b6284228a3ebef306334ff95%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-05-04,1931-05-16,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/ward-cambridge-history-english/,The Cambridge History of English Literature,"Vol. 8, 1912 The Age of Dryden",,,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/7c%2F01%2F9e%2F7c019e31b6284228a3ebef306334ff95%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-05-06,1931-05-07,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/priestley-old-dark-house/,The Old Dark House,,"Priestley, J. B.",1928,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/5d%2F3d%2Fbd%2F5d3dbd4aa05d43c9b8f5371e13032ae6%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-05-06,1931-05-07,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/eliot-sacred-wood-essays/,The Sacred Wood: Essays on Poetry and Criticism,,"Eliot, T. S.",1920,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/fb%2F31%2F26%2Ffb312635b630443192db234a977d365b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-05-06,1931-05-11,https://shakespeareandco.princeton.edu/members/roberts-3/,Miss Roberts,"Roberts, Miss",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/stern-mosaic/,Mosaic,,"Stern, G. B.",1930,,Lending Library Card,"Sylvia Beach, Miss Roberts Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/32c61fdc-4e25-49b1-8291-e748dc1b7767/manifest,https://iiif.princeton.edu/loris/figgy_prod/dd%2Fd2%2Ffb%2Fddd2fb9cfe2e4116b27fed67f034af4f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-05-07,1931-05-29,https://shakespeareandco.princeton.edu/members/reynal-jeanne/,Jeanne Reynal,"Reynal, Jeanne",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/lawrence-women-love/,Women in Love,,"Lawrence, D. H.",1920,,Lending Library Card,"Sylvia Beach, Jeanne Reynal Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f8a26c6e-666c-4c58-803a-9c29156ee670/manifest,https://iiif.princeton.edu/loris/figgy_prod/cd%2F45%2F9b%2Fcd459b097ea54dcc86e08be7a68cf452%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1931-05-07,1931-06-07,https://shakespeareandco.princeton.edu/members/reynal-jeanne/,Jeanne Reynal,"Reynal, Jeanne",,,1 month,31,1,Student,1931-05-07,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Jeanne Reynal Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f8a26c6e-666c-4c58-803a-9c29156ee670/manifest,https://iiif.princeton.edu/loris/figgy_prod/cd%2F45%2F9b%2Fcd459b097ea54dcc86e08be7a68cf452%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-05-07,1931-05-11,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/eliot-lancelot-andrewes-essays/,For Lancelot Andrewes: Essays on Style and Order,,"Eliot, T. S.",1928,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/fb%2F31%2F26%2Ffb312635b630443192db234a977d365b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-05-07,1931-05-11,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/ertz-galaxy/,The Galaxy,,"Ertz, Susan",1929,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/5d%2F3d%2Fbd%2F5d3dbd4aa05d43c9b8f5371e13032ae6%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-05-08,1931-05-11,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/fletcher-murder-wrides-park/,The Murder at Wrides Park,,"Fletcher, Joseph Smith",1931,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/29%2F38%2Fe3%2F2938e3f080244a3bbcb44376b685cbe0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-05-09,1931-05-28,https://shakespeareandco.princeton.edu/members/kennedy-robert/,Robert Kennedy,"Kennedy, Robert",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/fisher-deepening-stream/,The Deepening Stream,,"Fisher, Dorothy Canfield",1930,,Lending Library Card,"Sylvia Beach, Robert Kennedy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5819877c-8d7f-42cc-a86b-f8161bca822f/manifest,https://iiif.princeton.edu/loris/figgy_prod/c1%2F66%2Fae%2Fc166ae11260b41bb9c722f4364b8014b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-05-11,1931-05-21,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/fletcher-lost-mr-linthwaite/,The Lost Mr. Linthwaite,,"Fletcher, Joseph Smith",1920,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/29%2F38%2Fe3%2F2938e3f080244a3bbcb44376b685cbe0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-05-11,1931-05-18,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/wheel-fire/,The Wheel of Fire,,,,Unidentified. Likely G. Wilson Knight's *The Wheel of Fire: Essays in Interpretation of Shakespeare's Sombre Tragedies* (1930).,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/5d%2F3d%2Fbd%2F5d3dbd4aa05d43c9b8f5371e13032ae6%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-05-11,1931-05-15,https://shakespeareandco.princeton.edu/members/roberts-3/,Miss Roberts,"Roberts, Miss",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/borden-woman-white-eyes/,A Woman with White Eyes,,"Borden, Mary",1930,,Lending Library Card,"Sylvia Beach, Miss Roberts Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/32c61fdc-4e25-49b1-8291-e748dc1b7767/manifest,https://iiif.princeton.edu/loris/figgy_prod/dd%2Fd2%2Ffb%2Fddd2fb9cfe2e4116b27fed67f034af4f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-05-11,1931-05-16,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/lawrence-assorted-articles/,Assorted Articles,,"Lawrence, D. H.",1930,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/fb%2F31%2F26%2Ffb312635b630443192db234a977d365b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-05-15,1931-05-18,https://shakespeareandco.princeton.edu/members/roberts-3/,Miss Roberts,"Roberts, Miss",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/tree-poems/,Poems,,"Tree, Iris",1920,,Lending Library Card,"Sylvia Beach, Miss Roberts Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/32c61fdc-4e25-49b1-8291-e748dc1b7767/manifest,https://iiif.princeton.edu/loris/figgy_prod/dd%2Fd2%2Ffb%2Fddd2fb9cfe2e4116b27fed67f034af4f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-05-15,1931-05-20,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/mayo-mother-india/,Mother India,,"Mayo, Katherine",1927,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2F95%2F88%2Fcc95882431b347b790c3aab7dcb6eeb9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-05-16,1931-06-04,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/lawrence-women-love/,Women in Love,,"Lawrence, D. H.",1920,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/fb%2F31%2F26%2Ffb312635b630443192db234a977d365b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-05-16,1931-05-21,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/18th-century-drama/,Eighteenth-Century Drama,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/7c%2F01%2F9e%2F7c019e31b6284228a3ebef306334ff95%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-05-18,1931-05-22,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/aldington-colonels-daughter/,The Colonel's Daughter,,"Aldington, Richard",1931,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/5d%2F3d%2Fbd%2F5d3dbd4aa05d43c9b8f5371e13032ae6%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-05-19,1931-06-22,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,34,,,https://shakespeareandco.princeton.edu/books/miscellany/,Miscellany,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/fb%2F31%2F26%2Ffb312635b630443192db234a977d365b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-05-19,1931-05-29,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/baum-grand-hotel/,Grand Hotel,,"Baum, Vicki",1931,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/26%2F73%2Fc4%2F2673c41d1a72495c8231da059cc85000%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-05-20,1931-06-01,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/mottram-spanish-farm-trilogy/,"The Spanish Farm Trilogy, 1914 β 1918",,"Mottram, R. H.",1927,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2F95%2F88%2Fcc95882431b347b790c3aab7dcb6eeb9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-05-21,1931-05-23,https://shakespeareandco.princeton.edu/members/roberts-3/,Miss Roberts,"Roberts, Miss",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/aldington-roads-glory/,Roads to Glory,,"Aldington, Richard",1930,,Lending Library Card,"Sylvia Beach, Miss Roberts Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/32c61fdc-4e25-49b1-8291-e748dc1b7767/manifest,https://iiif.princeton.edu/loris/figgy_prod/dd%2Fd2%2Ffb%2Fddd2fb9cfe2e4116b27fed67f034af4f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-05-21,1931-05-27,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/maugham-cakes-ale-skeleton/,"Cakes and Ale, or, the Skeleton in the Cupboard",,"Maugham, W. Somerset",1930,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/29%2F38%2Fe3%2F2938e3f080244a3bbcb44376b685cbe0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-05-22,1931-05-27,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/lawrence-virgin-gipsy/,The Virgin and the Gipsy,,"Lawrence, D. H.",1930,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/5d%2F3d%2Fbd%2F5d3dbd4aa05d43c9b8f5371e13032ae6%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-05-22,1931-05-27,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/ertz-now-east-now/,"Now East, Now West",,"Ertz, Susan",1927,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/5d%2F3d%2Fbd%2F5d3dbd4aa05d43c9b8f5371e13032ae6%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-05-23,1931-05-26,https://shakespeareandco.princeton.edu/members/roberts-3/,Miss Roberts,"Roberts, Miss",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/huxley-barren-leaves/,Those Barren Leaves,,"Huxley, Aldous",1925,,Lending Library Card,"Sylvia Beach, Miss Roberts Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/32c61fdc-4e25-49b1-8291-e748dc1b7767/manifest,https://iiif.princeton.edu/loris/figgy_prod/dd%2Fd2%2Ffb%2Fddd2fb9cfe2e4116b27fed67f034af4f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-05-23,1931-06-18,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,26,,,https://shakespeareandco.princeton.edu/books/lawrence-plumed-serpent/,The Plumed Serpent,,"Lawrence, D. H.",1926,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/da%2Fc1%2F0b%2Fdac10b6cc97448048e6edfea2ba2a328%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-05-23,1931-06-18,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,26,,,https://shakespeareandco.princeton.edu/books/aldington-colonels-daughter/,The Colonel's Daughter,,"Aldington, Richard",1931,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/da%2Fc1%2F0b%2Fdac10b6cc97448048e6edfea2ba2a328%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-05-25,1931-06-06,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/williams-craft-literature/,The Craft of Literature,,"Williams, W. E.",1925,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/7c%2F01%2F9e%2F7c019e31b6284228a3ebef306334ff95%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-05-25,1931-06-06,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/jameson-georgian-novel-mr/,The Georgian Novel and Mr. Robinson,,"Jameson, Storm",1929,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/7c%2F01%2F9e%2F7c019e31b6284228a3ebef306334ff95%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-05-26,1931-05-28,https://shakespeareandco.princeton.edu/members/roberts-3/,Miss Roberts,"Roberts, Miss",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/seeger-poems/,Poems,,"Seeger, Alan",,,Lending Library Card,"Sylvia Beach, Miss Roberts Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/32c61fdc-4e25-49b1-8291-e748dc1b7767/manifest,https://iiif.princeton.edu/loris/figgy_prod/dd%2Fd2%2Ffb%2Fddd2fb9cfe2e4116b27fed67f034af4f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-05-27,1931-06-02,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/davies-life-known-voices/,Life as We Have Known It: The Voices of Working-Class Women,,,1931,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a3%2F9f%2F6f%2Fa39f6f344f7a49999497dfd5733514e8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-05-27,1931-05-30,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/arlen-men-dislike-women/,Men Dislike Women: A Romance,,"Arlen, Michael",1931,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/5d%2F3d%2Fbd%2F5d3dbd4aa05d43c9b8f5371e13032ae6%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-05-27,1931-06-02,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/seabrook-jungle-ways/,Jungle Ways,,"Seabrook, William",1931,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a3%2F9f%2F6f%2Fa39f6f344f7a49999497dfd5733514e8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-05-28,1931-10-09,https://shakespeareandco.princeton.edu/members/kennedy-robert/,Robert Kennedy,"Kennedy, Robert",,,,,,,,,Returned,134,,,https://shakespeareandco.princeton.edu/books/wassermann-maurizius-case/,The Maurizius Case,,"Wassermann, Jakob",1930,,Lending Library Card,"Sylvia Beach, Robert Kennedy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5819877c-8d7f-42cc-a86b-f8161bca822f/manifest,https://iiif.princeton.edu/loris/figgy_prod/c1%2F66%2Fae%2Fc166ae11260b41bb9c722f4364b8014b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1931-05-28,1931-05-28,https://shakespeareandco.princeton.edu/members/alvear/,Elvira de Alvear,"de Alvear, Elvira",,,,,,,,,,,1000.00,FRF,https://shakespeareandco.princeton.edu/books/one-set-works/,[One Set Works of Henry James],,"James, Henry",,,Lending Library Card,"Sylvia Beach, Elvira de Alvear Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/19d09c5e-a411-40f1-99df-f07f512e3901/manifest,https://iiif.princeton.edu/loris/figgy_prod/6d%2F78%2F83%2F6d78839ec502418796fdd18f13848bd6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1931-05-28,1931-05-28,https://shakespeareandco.princeton.edu/members/alvear/,Elvira de Alvear,"de Alvear, Elvira",,,,,,,,,,,800.00,FRF,https://shakespeareandco.princeton.edu/books/one-set-muses/,[One Set Muses Library],,,,,Lending Library Card,"Sylvia Beach, Elvira de Alvear Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/19d09c5e-a411-40f1-99df-f07f512e3901/manifest,https://iiif.princeton.edu/loris/figgy_prod/6d%2F78%2F83%2F6d78839ec502418796fdd18f13848bd6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1931-05-28,1931-05-28,https://shakespeareandco.princeton.edu/members/alvear/,Elvira de Alvear,"de Alvear, Elvira",,,,,,,,,,,30.00,FRF,https://shakespeareandco.princeton.edu/books/h-lawrence/,D. H. Lawrence,,,,Unidentified. By or about Lawrence. Elvira de Alvear likely purchases multiple copies of Lawrence's [*Lady Chatterley's Lover*](https://shakespeareandco.princeton.edu/books/lawrence-lady-chatterleys-lover/) (1928).,Lending Library Card,"Sylvia Beach, Elvira de Alvear Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/19d09c5e-a411-40f1-99df-f07f512e3901/manifest,https://iiif.princeton.edu/loris/figgy_prod/6d%2F78%2F83%2F6d78839ec502418796fdd18f13848bd6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1931-05-28,1931-05-28,https://shakespeareandco.princeton.edu/members/alvear/,Elvira de Alvear,"de Alvear, Elvira",,,,,,,,,,,30.00,FRF,https://shakespeareandco.princeton.edu/books/h-lawrence/,D. H. Lawrence,,,,Unidentified. By or about Lawrence. Elvira de Alvear likely purchases multiple copies of Lawrence's [*Lady Chatterley's Lover*](https://shakespeareandco.princeton.edu/books/lawrence-lady-chatterleys-lover/) (1928).,Lending Library Card,"Sylvia Beach, Elvira de Alvear Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/19d09c5e-a411-40f1-99df-f07f512e3901/manifest,https://iiif.princeton.edu/loris/figgy_prod/6d%2F78%2F83%2F6d78839ec502418796fdd18f13848bd6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1931-05-28,1931-05-28,https://shakespeareandco.princeton.edu/members/alvear/,Elvira de Alvear,"de Alvear, Elvira",,,,,,,,,,,9.00,FRF,https://shakespeareandco.princeton.edu/books/lawrence-pornography-obscenity/,Pornography and Obscenity,,"Lawrence, D. H.",1929,,Lending Library Card,"Sylvia Beach, Elvira de Alvear Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/19d09c5e-a411-40f1-99df-f07f512e3901/manifest,https://iiif.princeton.edu/loris/figgy_prod/6d%2F78%2F83%2F6d78839ec502418796fdd18f13848bd6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1931-05-28,1931-05-28,https://shakespeareandco.princeton.edu/members/alvear/,Elvira de Alvear,"de Alvear, Elvira",,,,,,,,,,,850.00,FRF,https://shakespeareandco.princeton.edu/books/ellis-one-set-mermaid/,[One Set Mermaid Series],,,,Elvira de Alvear purchased one set of [Mermaid Series](https://seriesofseries.owu.edu/mermaid-series/) books.,Lending Library Card,"Sylvia Beach, Elvira de Alvear Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/19d09c5e-a411-40f1-99df-f07f512e3901/manifest,https://iiif.princeton.edu/loris/figgy_prod/6d%2F78%2F83%2F6d78839ec502418796fdd18f13848bd6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1931-05-28,1931-05-28,https://shakespeareandco.princeton.edu/members/alvear/,Elvira de Alvear,"de Alvear, Elvira",,,,,,,,,,,80.00,FRF,https://shakespeareandco.princeton.edu/books/dreiser-color-great-city/,The Color of a Great City,,"Dreiser, Theodore",1923,,Lending Library Card,"Sylvia Beach, Elvira de Alvear Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/19d09c5e-a411-40f1-99df-f07f512e3901/manifest,https://iiif.princeton.edu/loris/figgy_prod/6d%2F78%2F83%2F6d78839ec502418796fdd18f13848bd6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1931-05-28,1931-05-28,https://shakespeareandco.princeton.edu/members/alvear/,Elvira de Alvear,"de Alvear, Elvira",,,,,,,,,,,30.00,FRF,https://shakespeareandco.princeton.edu/books/h-lawrence/,D. H. Lawrence,,,,Unidentified. By or about Lawrence. Elvira de Alvear likely purchases multiple copies of Lawrence's [*Lady Chatterley's Lover*](https://shakespeareandco.princeton.edu/books/lawrence-lady-chatterleys-lover/) (1928).,Lending Library Card,"Sylvia Beach, Elvira de Alvear Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/19d09c5e-a411-40f1-99df-f07f512e3901/manifest,https://iiif.princeton.edu/loris/figgy_prod/6d%2F78%2F83%2F6d78839ec502418796fdd18f13848bd6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1931-05-28,1931-05-28,https://shakespeareandco.princeton.edu/members/alvear/,Elvira de Alvear,"de Alvear, Elvira",,,,,,,,,,,30.00,FRF,https://shakespeareandco.princeton.edu/books/h-lawrence/,D. H. Lawrence,,,,Unidentified. By or about Lawrence. Elvira de Alvear likely purchases multiple copies of Lawrence's [*Lady Chatterley's Lover*](https://shakespeareandco.princeton.edu/books/lawrence-lady-chatterleys-lover/) (1928).,Lending Library Card,"Sylvia Beach, Elvira de Alvear Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/19d09c5e-a411-40f1-99df-f07f512e3901/manifest,https://iiif.princeton.edu/loris/figgy_prod/6d%2F78%2F83%2F6d78839ec502418796fdd18f13848bd6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1931-05-28,1931-05-28,https://shakespeareandco.princeton.edu/members/alvear/,Elvira de Alvear,"de Alvear, Elvira",,,,,,,,,,,30.00,FRF,https://shakespeareandco.princeton.edu/books/h-lawrence/,D. H. Lawrence,,,,Unidentified. By or about Lawrence. Elvira de Alvear likely purchases multiple copies of Lawrence's [*Lady Chatterley's Lover*](https://shakespeareandco.princeton.edu/books/lawrence-lady-chatterleys-lover/) (1928).,Lending Library Card,"Sylvia Beach, Elvira de Alvear Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/19d09c5e-a411-40f1-99df-f07f512e3901/manifest,https://iiif.princeton.edu/loris/figgy_prod/6d%2F78%2F83%2F6d78839ec502418796fdd18f13848bd6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1931-05-28,1931-05-28,https://shakespeareandco.princeton.edu/members/alvear/,Elvira de Alvear,"de Alvear, Elvira",,,,,,,,,,,30.00,FRF,https://shakespeareandco.princeton.edu/books/h-lawrence/,D. H. Lawrence,,,,Unidentified. By or about Lawrence. Elvira de Alvear likely purchases multiple copies of Lawrence's [*Lady Chatterley's Lover*](https://shakespeareandco.princeton.edu/books/lawrence-lady-chatterleys-lover/) (1928).,Lending Library Card,"Sylvia Beach, Elvira de Alvear Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/19d09c5e-a411-40f1-99df-f07f512e3901/manifest,https://iiif.princeton.edu/loris/figgy_prod/6d%2F78%2F83%2F6d78839ec502418796fdd18f13848bd6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1931-05-28,1931-05-28,https://shakespeareandco.princeton.edu/members/alvear/,Elvira de Alvear,"de Alvear, Elvira",,,,,,,,,,,30.00,FRF,https://shakespeareandco.princeton.edu/books/h-lawrence/,D. H. Lawrence,,,,Unidentified. By or about Lawrence. Elvira de Alvear likely purchases multiple copies of Lawrence's [*Lady Chatterley's Lover*](https://shakespeareandco.princeton.edu/books/lawrence-lady-chatterleys-lover/) (1928).,Lending Library Card,"Sylvia Beach, Elvira de Alvear Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/19d09c5e-a411-40f1-99df-f07f512e3901/manifest,https://iiif.princeton.edu/loris/figgy_prod/6d%2F78%2F83%2F6d78839ec502418796fdd18f13848bd6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1931-05-28,1931-05-28,https://shakespeareandco.princeton.edu/members/alvear/,Elvira de Alvear,"de Alvear, Elvira",,,,,,,,,,,30.00,FRF,https://shakespeareandco.princeton.edu/books/h-lawrence/,D. H. Lawrence,,,,Unidentified. By or about Lawrence. Elvira de Alvear likely purchases multiple copies of Lawrence's [*Lady Chatterley's Lover*](https://shakespeareandco.princeton.edu/books/lawrence-lady-chatterleys-lover/) (1928).,Lending Library Card,"Sylvia Beach, Elvira de Alvear Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/19d09c5e-a411-40f1-99df-f07f512e3901/manifest,https://iiif.princeton.edu/loris/figgy_prod/6d%2F78%2F83%2F6d78839ec502418796fdd18f13848bd6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1931-05-28,1931-05-28,https://shakespeareandco.princeton.edu/members/alvear/,Elvira de Alvear,"de Alvear, Elvira",,,,,,,,,,,30.00,FRF,https://shakespeareandco.princeton.edu/books/h-lawrence/,D. H. Lawrence,,,,Unidentified. By or about Lawrence. Elvira de Alvear likely purchases multiple copies of Lawrence's [*Lady Chatterley's Lover*](https://shakespeareandco.princeton.edu/books/lawrence-lady-chatterleys-lover/) (1928).,Lending Library Card,"Sylvia Beach, Elvira de Alvear Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/19d09c5e-a411-40f1-99df-f07f512e3901/manifest,https://iiif.princeton.edu/loris/figgy_prod/6d%2F78%2F83%2F6d78839ec502418796fdd18f13848bd6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1931-05-28,1931-05-28,https://shakespeareandco.princeton.edu/members/alvear/,Elvira de Alvear,"de Alvear, Elvira",,,,,,,,,,,30.00,FRF,https://shakespeareandco.princeton.edu/books/h-lawrence/,D. H. Lawrence,,,,Unidentified. By or about Lawrence. Elvira de Alvear likely purchases multiple copies of Lawrence's [*Lady Chatterley's Lover*](https://shakespeareandco.princeton.edu/books/lawrence-lady-chatterleys-lover/) (1928).,Lending Library Card,"Sylvia Beach, Elvira de Alvear Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/19d09c5e-a411-40f1-99df-f07f512e3901/manifest,https://iiif.princeton.edu/loris/figgy_prod/6d%2F78%2F83%2F6d78839ec502418796fdd18f13848bd6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1931-05-28,1931-05-28,https://shakespeareandco.princeton.edu/members/alvear/,Elvira de Alvear,"de Alvear, Elvira",,,,,,,,,,,30.00,FRF,https://shakespeareandco.princeton.edu/books/h-lawrence/,D. H. Lawrence,,,,Unidentified. By or about Lawrence. Elvira de Alvear likely purchases multiple copies of Lawrence's [*Lady Chatterley's Lover*](https://shakespeareandco.princeton.edu/books/lawrence-lady-chatterleys-lover/) (1928).,Lending Library Card,"Sylvia Beach, Elvira de Alvear Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/19d09c5e-a411-40f1-99df-f07f512e3901/manifest,https://iiif.princeton.edu/loris/figgy_prod/6d%2F78%2F83%2F6d78839ec502418796fdd18f13848bd6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1931-05-28,1931-05-28,https://shakespeareandco.princeton.edu/members/alvear/,Elvira de Alvear,"de Alvear, Elvira",,,,,,,,,,,30.00,FRF,https://shakespeareandco.princeton.edu/books/h-lawrence/,D. H. Lawrence,,,,Unidentified. By or about Lawrence. Elvira de Alvear likely purchases multiple copies of Lawrence's [*Lady Chatterley's Lover*](https://shakespeareandco.princeton.edu/books/lawrence-lady-chatterleys-lover/) (1928).,Lending Library Card,"Sylvia Beach, Elvira de Alvear Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/19d09c5e-a411-40f1-99df-f07f512e3901/manifest,https://iiif.princeton.edu/loris/figgy_prod/6d%2F78%2F83%2F6d78839ec502418796fdd18f13848bd6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-05-28,1931-06-01,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/lehmann-note-music/,A Note in Music,,"Lehmann, Rosamond",1930,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/29%2F38%2Fe3%2F2938e3f080244a3bbcb44376b685cbe0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1931-05-28,1931-05-28,https://shakespeareandco.princeton.edu/members/alvear/,Elvira de Alvear,"de Alvear, Elvira",,,,,,,,,,,80.00,FRF,https://shakespeareandco.princeton.edu/books/dreiser-american-tragedy/,An American Tragedy,,"Dreiser, Theodore",1925,,Lending Library Card,"Sylvia Beach, Elvira de Alvear Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/19d09c5e-a411-40f1-99df-f07f512e3901/manifest,https://iiif.princeton.edu/loris/figgy_prod/6d%2F78%2F83%2F6d78839ec502418796fdd18f13848bd6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1931-05-29,1931-05-29,https://shakespeareandco.princeton.edu/members/roditi-georges/,Georges Roditi,"Roditi, Georges",,,,,,,,,,,6.00,FRF,https://shakespeareandco.princeton.edu/books/unidentified-benn-s-library/,[unidentified Bennβs Library],,,,Unidentified. From Benn's Sixpenny Library series or Benn's Essex Library series.,Lending Library Card,"Sylvia Beach, Georges Roditi Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/40f31028-742e-4808-bd49-8ba2c8a43e89/manifest,https://iiif.princeton.edu/loris/figgy_prod/9e%2F1c%2F7f%2F9e1c7fbd264b44a49385b479c38bbf44%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1931-05-29,1931-05-29,https://shakespeareandco.princeton.edu/members/roditi-georges/,Georges Roditi,"Roditi, Georges",,,,,,,,,,,6.00,FRF,https://shakespeareandco.princeton.edu/books/unidentified-benn-s-library/,[unidentified Bennβs Library],,,,Unidentified. From Benn's Sixpenny Library series or Benn's Essex Library series.,Lending Library Card,"Sylvia Beach, Georges Roditi Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/40f31028-742e-4808-bd49-8ba2c8a43e89/manifest,https://iiif.princeton.edu/loris/figgy_prod/9e%2F1c%2F7f%2F9e1c7fbd264b44a49385b479c38bbf44%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1931-05-29,1931-05-29,https://shakespeareandco.princeton.edu/members/roditi-georges/,Georges Roditi,"Roditi, Georges",,,,,,,,,,,6.00,FRF,https://shakespeareandco.princeton.edu/books/unidentified-benn-s-library/,[unidentified Bennβs Library],,,,Unidentified. From Benn's Sixpenny Library series or Benn's Essex Library series.,Lending Library Card,"Sylvia Beach, Georges Roditi Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/40f31028-742e-4808-bd49-8ba2c8a43e89/manifest,https://iiif.princeton.edu/loris/figgy_prod/9e%2F1c%2F7f%2F9e1c7fbd264b44a49385b479c38bbf44%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1931-05-29,1931-05-29,https://shakespeareandco.princeton.edu/members/roditi-georges/,Georges Roditi,"Roditi, Georges",,,,,,,,,,,6.00,FRF,https://shakespeareandco.princeton.edu/books/unidentified-benn-s-library/,[unidentified Bennβs Library],,,,Unidentified. From Benn's Sixpenny Library series or Benn's Essex Library series.,Lending Library Card,"Sylvia Beach, Georges Roditi Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/40f31028-742e-4808-bd49-8ba2c8a43e89/manifest,https://iiif.princeton.edu/loris/figgy_prod/9e%2F1c%2F7f%2F9e1c7fbd264b44a49385b479c38bbf44%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1931-05-29,1931-05-29,https://shakespeareandco.princeton.edu/members/roditi-georges/,Georges Roditi,"Roditi, Georges",,,,,,,,,,,6.00,FRF,https://shakespeareandco.princeton.edu/books/unidentified-benn-s-library/,[unidentified Bennβs Library],,,,Unidentified. From Benn's Sixpenny Library series or Benn's Essex Library series.,Lending Library Card,"Sylvia Beach, Georges Roditi Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/40f31028-742e-4808-bd49-8ba2c8a43e89/manifest,https://iiif.princeton.edu/loris/figgy_prod/9e%2F1c%2F7f%2F9e1c7fbd264b44a49385b479c38bbf44%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1931-05-29,1931-05-29,https://shakespeareandco.princeton.edu/members/roditi-georges/,Georges Roditi,"Roditi, Georges",,,,,,,,,,,15.00,FRF,https://shakespeareandco.princeton.edu/books/jones-selected-speeches-british/,"Selected Speeches on British Foreign Policy, 1738 β 1914",,,1914,,Lending Library Card,"Sylvia Beach, Georges Roditi Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/40f31028-742e-4808-bd49-8ba2c8a43e89/manifest,https://iiif.princeton.edu/loris/figgy_prod/9e%2F1c%2F7f%2F9e1c7fbd264b44a49385b479c38bbf44%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1931-05-29,1931-05-29,https://shakespeareandco.princeton.edu/members/roditi-georges/,Georges Roditi,"Roditi, Georges",,,,,,,,,,,25.00,FRF,https://shakespeareandco.princeton.edu/books/wells-new-machiavelli/,The New Machiavelli,,"Wells, H. G.",1910,,Lending Library Card,"Sylvia Beach, Georges Roditi Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/40f31028-742e-4808-bd49-8ba2c8a43e89/manifest,https://iiif.princeton.edu/loris/figgy_prod/9e%2F1c%2F7f%2F9e1c7fbd264b44a49385b479c38bbf44%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-05-29,1931-06-10,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/mason-tiger/,No Other Tiger,,"Mason, A. E. W.",1927,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/26%2F73%2Fc4%2F2673c41d1a72495c8231da059cc85000%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1931-05-29,1931-05-29,https://shakespeareandco.princeton.edu/members/roditi-georges/,Georges Roditi,"Roditi, Georges",,,,,,,,,,,6.00,FRF,https://shakespeareandco.princeton.edu/books/unidentified-benn-s-library/,[unidentified Bennβs Library],,,,Unidentified. From Benn's Sixpenny Library series or Benn's Essex Library series.,Lending Library Card,"Sylvia Beach, Georges Roditi Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/40f31028-742e-4808-bd49-8ba2c8a43e89/manifest,https://iiif.princeton.edu/loris/figgy_prod/9e%2F1c%2F7f%2F9e1c7fbd264b44a49385b479c38bbf44%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-05-30,1931-06-03,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/pasley-al-capone-biography/,Al Capone: Biography of a Self-Made Man,,"Pasley, Fred D.",1930,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/5d%2F3d%2Fbd%2F5d3dbd4aa05d43c9b8f5371e13032ae6%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1931-05-31,1932-05-31,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",240.00,,1 year,366,1,,1931-06-02,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a3%2F9f%2F6f%2Fa39f6f344f7a49999497dfd5733514e8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-06-01,1931-06-12,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/adams-rogues-fall/,Rogues Fall Out,,"Adams, Herbert",1928,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/29%2F38%2Fe3%2F2938e3f080244a3bbcb44376b685cbe0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-06-01,1931-06-04,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/ellis-sexual-inversion-studies/,Sexual Inversion (Studies in the Psychology of Sex 2),,"Ellis, Havelock",1900,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2F95%2F88%2Fcc95882431b347b790c3aab7dcb6eeb9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-06-02,1931-06-07,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/delafield-challenge-clarissa/,Challenge to Clarissa,,"Delafield, E. M.",1931,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a3%2F9f%2F6f%2Fa39f6f344f7a49999497dfd5733514e8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-06-03,1931-06-06,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/galsworthy-villa-rubein/,Villa Rubein,,"Galsworthy, John",1908,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/7e%2F7f%2F7d%2F7e7f7d1b9e2240a888669a61feab6532%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1931-06-03,,https://shakespeareandco.princeton.edu/members/baudoin-denis/,Denis Baudoin,"Baudoin, Denis",,,,,,Day By Day,1931-06-03,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1931-06-04,1931-06-13,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/lawrence-lady-chatterleys-lover/,Lady Chatterley's Lover,,"Lawrence, D. H.",1928,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/fb%2F31%2F26%2Ffb312635b630443192db234a977d365b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-06-04,1931-06-10,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/seabrook-jungle-ways/,Jungle Ways,,"Seabrook, William",1931,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2F95%2F88%2Fcc95882431b347b790c3aab7dcb6eeb9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1931-06-06,1931-09-06,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",100.00,,3 months,92,1,,1931-06-06,,,,,FRF,,,,,,,Lending Library Card;Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest;https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/47%2F61%2F50%2F47615017561a45f1aaac5e8056ac5997%2Fintermediate_file/full/full/0/default.jpg;https://iiif-cloud.princeton.edu/iiif/2/23%2F81%2F52%2F23815233f1ba41e8a9f199618f087006%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-06-06,1931-06-08,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/fletcher-murder-wrides-park/,The Murder at Wrides Park,,"Fletcher, Joseph Smith",1931,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/7e%2F7f%2F7d%2F7e7f7d1b9e2240a888669a61feab6532%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-06-06,1931-06-20,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/shaw-apple-cart-political/,The Apple Cart: A Political Extravaganza,,"Shaw, George Bernard",1930,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/b4%2Fa0%2F50%2Fb4a05048ffef47afa61a806652e662da%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-06-06,1931-06-20,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/sitwell-dumb-animal-stories/,Dumb-Animal and Other Stories,,"Sitwell, Osbert",1930,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/b4%2Fa0%2F50%2Fb4a05048ffef47afa61a806652e662da%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-06-06,,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/pasley-al-capone-biography/,Al Capone: Biography of a Self-Made Man,,"Pasley, Fred D.",1930,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/47%2F61%2F50%2F47615017561a45f1aaac5e8056ac5997%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-06-07,1931-06-12,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/baum-grand-hotel/,Grand Hotel,,"Baum, Vicki",1931,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a3%2F9f%2F6f%2Fa39f6f344f7a49999497dfd5733514e8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-06-08,1931-06-15,https://shakespeareandco.princeton.edu/members/reynal-jeanne/,Jeanne Reynal,"Reynal, Jeanne",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/strachey-portraits-miniature-essays/,Portraits in Miniature and Other Essays,,"Strachey, Giles Lytton",1931,,Lending Library Card,"Sylvia Beach, Jeanne Reynal Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f8a26c6e-666c-4c58-803a-9c29156ee670/manifest,https://iiif.princeton.edu/loris/figgy_prod/cd%2F45%2F9b%2Fcd459b097ea54dcc86e08be7a68cf452%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-06-10,1931-06-23,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/forel-sexual-question-scientific/,"The Sexual Question: A Scientific, Psychological, Hygienic, and Sociological Study",,"Forel, Auguste",1908,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2F95%2F88%2Fcc95882431b347b790c3aab7dcb6eeb9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-06-10,1931-06-22,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/arlen-men-dislike-women/,Men Dislike Women: A Romance,,"Arlen, Michael",1931,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/26%2F73%2Fc4%2F2673c41d1a72495c8231da059cc85000%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-06-12,1931-06-16,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/kaye-smith-susan-spray/,Susan Spray,,"Kaye-Smith, Sheila",1931,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a3%2F9f%2F6f%2Fa39f6f344f7a49999497dfd5733514e8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-06-12,1931-07-04,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/james-daisy-miller/,Daisy Miller,,"James, Henry",1879,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/90%2Fd9%2Fa8%2F90d9a8306f194f94a3476fc1821b94a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-06-12,1931-06-24,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/kennedy-fool-family/,The Fool of the Family,,"Kennedy, Margaret",1930,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/29%2F38%2Fe3%2F2938e3f080244a3bbcb44376b685cbe0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1931-06-12,1931-09-12,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",144.00,,3 months,92,1,Professor / Teacher,1931-06-23,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2F95%2F88%2Fcc95882431b347b790c3aab7dcb6eeb9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-06-13,1931-06-19,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/tully-shadows-men/,Shadows of Men,,"Tully, Jim",1930,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/23%2F81%2F52%2F23815233f1ba41e8a9f199618f087006%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-06-13,1931-06-29,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/white-peacock/,The White Peacock,,"Lawrence, D. H.",1911,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/fb%2F31%2F26%2Ffb312635b630443192db234a977d365b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-06-16,1931-07-20,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,34,,,https://shakespeareandco.princeton.edu/books/lenotre-tribunal-terror-paris/,The Tribunal of Terror: Paris in 1793 β 5,,"Lenotre, G.",1909,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/0c%2F23%2F2c%2F0c232c4c11da4ecea57504bef367892a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-06-16,1931-06-19,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/heyward-mambas-daughters/,Mamba's Daughters,,"Heyward, DuBose",1928,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a3%2F9f%2F6f%2Fa39f6f344f7a49999497dfd5733514e8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-06-16,1931-07-20,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,34,,,https://shakespeareandco.princeton.edu/books/gosselin-gascon-royalist-revolutionary/,"A Gascon Royalist in Revolutionary Paris: The Baron de Batz, 1792 β 1795",,"Lenotre, G.",1910,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/0c%2F23%2F2c%2F0c232c4c11da4ecea57504bef367892a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-06-16,1931-07-20,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,34,,,https://shakespeareandco.princeton.edu/books/french-revolution/,The French Revolution,,,,Unidentified. CΓ©cile de Montricher likely borrowed volumes 1 and 2 of Thomas Carlyle's *French Revolution* (1837).,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/0c%2F23%2F2c%2F0c232c4c11da4ecea57504bef367892a%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1931-06-16,1931-09-16,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",80.00,,3 months,92,2,,1931-06-16,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/0c%2F23%2F2c%2F0c232c4c11da4ecea57504bef367892a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-06-17,1931-07-10,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/maugham-cakes-ale-skeleton/,"Cakes and Ale, or, the Skeleton in the Cupboard",,"Maugham, W. Somerset",1930,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/23%2F81%2F52%2F23815233f1ba41e8a9f199618f087006%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-06-18,1931-10-05,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,109,,,https://shakespeareandco.princeton.edu/books/lawrence-england-england-stories/,"England, My England and Other Stories",,"Lawrence, D. H.",1922,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/da%2Fc1%2F0b%2Fdac10b6cc97448048e6edfea2ba2a328%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-06-18,1931-10-05,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,109,,,https://shakespeareandco.princeton.edu/books/lawrence-women-love/,Women in Love,,"Lawrence, D. H.",1920,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/da%2Fc1%2F0b%2Fdac10b6cc97448048e6edfea2ba2a328%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-06-19,1931-06-25,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/strachey-portraits-miniature-essays/,Portraits in Miniature and Other Essays,,"Strachey, Giles Lytton",1931,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a3%2F9f%2F6f%2Fa39f6f344f7a49999497dfd5733514e8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-06-19,1931-07-02,https://shakespeareandco.princeton.edu/members/gilbert-stuart/,Stuart Gilbert,"Gilbert, Stuart",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/wilenski-modern-movement-art/,The Modern Movement in Art,,"Wilenski, R. H.",1927,,Lending Library Card,"Sylvia Beach, Stuart Gilbert Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/861dcb07-60d7-4a64-b1ba-6296bd9c66c3/manifest,https://iiif.princeton.edu/loris/figgy_prod/af%2Ff0%2Fc0%2Faff0c08e46c84bc68c186495fa2d3eba%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-06-19,1931-07-02,https://shakespeareandco.princeton.edu/members/gilbert-stuart/,Stuart Gilbert,"Gilbert, Stuart",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/bell-landmarks-nineteenth-century/,Landmarks in Nineteenth-Century Painting,,"Bell, Clive",1927,,Lending Library Card,"Sylvia Beach, Stuart Gilbert Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/861dcb07-60d7-4a64-b1ba-6296bd9c66c3/manifest,https://iiif.princeton.edu/loris/figgy_prod/af%2Ff0%2Fc0%2Faff0c08e46c84bc68c186495fa2d3eba%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-06-19,1931-06-25,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/aldington-colonels-daughter/,The Colonel's Daughter,,"Aldington, Richard",1931,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a3%2F9f%2F6f%2Fa39f6f344f7a49999497dfd5733514e8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-06-20,1931-07-04,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/ocasey-silver-tassie-tragi/,The Silver Tassie: A Tragi-Comedy in Four Acts,,"O'Casey, Sean",1928,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/b4%2Fa0%2F50%2Fb4a05048ffef47afa61a806652e662da%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-06-20,1931-06-29,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/oflaherty-two-years/,Two Years,,"O'Flaherty, Liam",1930,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/23%2F81%2F52%2F23815233f1ba41e8a9f199618f087006%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-06-20,1931-07-04,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/ocasey-plough-stars/,The Plough and the Stars,,"O'Casey, Sean",1926,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/b4%2Fa0%2F50%2Fb4a05048ffef47afa61a806652e662da%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-06-22,1931-06-29,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/loos-gentlemen-marry-brunettes/,But Gentlemen Marry Brunettes,,"Loos, Anita",1927,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/fb%2F31%2F26%2Ffb312635b630443192db234a977d365b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-06-22,1931-07-09,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/maugham-gentleman-parlour/,The Gentleman in the Parlour,,"Maugham, W. Somerset",1930,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/26%2F73%2Fc4%2F2673c41d1a72495c8231da059cc85000%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-06-23,1931-06-25,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/freud-totem-taboo/,Totem and Taboo,,"Freud, Sigmund",1919,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2F95%2F88%2Fcc95882431b347b790c3aab7dcb6eeb9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-06-25,1931-07-03,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/arlen-men-dislike-women/,Men Dislike Women: A Romance,,"Arlen, Michael",1931,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a3%2F9f%2F6f%2Fa39f6f344f7a49999497dfd5733514e8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-06-25,1931-07-09,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/gollomb-scotland-yard/,Scotland Yard,,"Gollomb, Joseph",1927,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2F95%2F88%2Fcc95882431b347b790c3aab7dcb6eeb9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-06-27,1931-07-06,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/kitchin-death-aunt/,Death of My Aunt,,"Kitchin, C. H. B.",1929,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/0f%2Fd5%2Fe8%2F0fd5e8ecc00f4c159cbabdbe207808d7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-06-29,1931-07-17,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/lawrence-virgin-gipsy/,The Virgin and the Gipsy,,"Lawrence, D. H.",1930,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/23%2F81%2F52%2F23815233f1ba41e8a9f199618f087006%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-06-29,1931-07-01,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/murry-woman-story-h/,Son of Woman: The Story of D. H. Lawrence,,"Murry, John Middleton",1931,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/fb%2F31%2F26%2Ffb312635b630443192db234a977d365b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-07-01,1931-07-27,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,26,,,https://shakespeareandco.princeton.edu/books/swinnerton-sketch-sinner/,Sketch of a Sinner,,"Swinnerton, Frank",1929,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/fb%2F31%2F26%2Ffb312635b630443192db234a977d365b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-07-03,1931-07-08,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/mottram-castle-island/,Castle Island,,"Mottram, R. H.",1931,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a3%2F9f%2F6f%2Fa39f6f344f7a49999497dfd5733514e8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-07-04,1931-08-10,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,37,,,https://shakespeareandco.princeton.edu/books/sandburg-selected-poems-carl/,Selected Poems of Carl Sandburg,,"Sandburg, Carl",1926,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/b4%2Fa0%2F50%2Fb4a05048ffef47afa61a806652e662da%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-07-04,1931-08-10,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,37,,,https://shakespeareandco.princeton.edu/books/davies-life-known-voices/,Life as We Have Known It: The Voices of Working-Class Women,,,1931,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/b4%2Fa0%2F50%2Fb4a05048ffef47afa61a806652e662da%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-07-04,1931-07-18,https://shakespeareandco.princeton.edu/members/imbs-bravig/,Bravig Imbs,"Imbs, Bravig",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/bronte-wuthering-heights/,Wuthering Heights,,"BrontΓ«, Emily",1847,,Lending Library Card,"Sylvia Beach, Bravig Imbs Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c2cbfe8e-5e71-465c-9f6e-ca60fd759d8b/manifest,https://iiif.princeton.edu/loris/figgy_prod/31%2F77%2F07%2F317707435ce54215aac8314b177bf6f9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-07-04,1931-07-20,https://shakespeareandco.princeton.edu/members/gilbert-stuart/,Stuart Gilbert,"Gilbert, Stuart",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/sitwell-southern-baroque-art/,"Southern Baroque Art: A Study of Painting, Architecture and Music in Italy and Spain of the 17th and 18th Centuries.",,"Sitwell, Sacheverell",1924,,Lending Library Card,"Sylvia Beach, Stuart Gilbert Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/861dcb07-60d7-4a64-b1ba-6296bd9c66c3/manifest,https://iiif.princeton.edu/loris/figgy_prod/af%2Ff0%2Fc0%2Faff0c08e46c84bc68c186495fa2d3eba%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-07-04,1931-07-30,https://shakespeareandco.princeton.edu/members/gilbert-stuart/,Stuart Gilbert,"Gilbert, Stuart",,,,,,,,,Returned,26,,,https://shakespeareandco.princeton.edu/books/santayana-reason-society/,Reason in Society (The Life of Reason),,"Santayana, George",1905,,Lending Library Card,"Sylvia Beach, Stuart Gilbert Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/861dcb07-60d7-4a64-b1ba-6296bd9c66c3/manifest,https://iiif.princeton.edu/loris/figgy_prod/af%2Ff0%2Fc0%2Faff0c08e46c84bc68c186495fa2d3eba%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1931-07-04,1931-10-04,https://shakespeareandco.princeton.edu/members/gilbert-stuart/,Stuart Gilbert,"Gilbert, Stuart",100.00,,3 months,92,1,,1931-07-04,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Stuart Gilbert Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/861dcb07-60d7-4a64-b1ba-6296bd9c66c3/manifest,https://iiif.princeton.edu/loris/figgy_prod/af%2Ff0%2Fc0%2Faff0c08e46c84bc68c186495fa2d3eba%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-07-06,1931-07-15,https://shakespeareandco.princeton.edu/members/joyce-giorgio/,Giorgio Joyce,"Joyce, Giorgio",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/baum-grand-hotel/,Grand Hotel,,"Baum, Vicki",1931,,Lending Library Card,"Giorgio Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1931-07-06,1931-07-11,https://shakespeareandco.princeton.edu/members/joyce-giorgio/,Giorgio Joyce,"Joyce, Giorgio",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/smith-flamenco/,Flamenco,,"Smith, Eleanor",1931,,Lending Library Card,"Giorgio Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1931-07-06,1931-07-11,https://shakespeareandco.princeton.edu/members/joyce-giorgio/,Giorgio Joyce,"Joyce, Giorgio",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/hergesheimer-party-dress/,The Party Dress,,"Hergesheimer, Joseph",1930,,Lending Library Card,"Giorgio Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1931-07-06,1931-07-09,https://shakespeareandco.princeton.edu/members/joyce-giorgio/,Giorgio Joyce,"Joyce, Giorgio",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/gorman-james-joyce-first/,"James Joyce, His First Forty Years",,"Gorman, Herbert Sherman",1924,,Lending Library Card,"Giorgio Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1931-07-06,1931-07-11,https://shakespeareandco.princeton.edu/members/joyce-giorgio/,Giorgio Joyce,"Joyce, Giorgio",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/delafield-challenge-clarissa/,Challenge to Clarissa,,"Delafield, E. M.",1931,,Lending Library Card,"Giorgio Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1931-07-06,1931-07-11,https://shakespeareandco.princeton.edu/members/joyce-giorgio/,Giorgio Joyce,"Joyce, Giorgio",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/fletcher-mill-many-windows/,The Mill of Many Windows,,"Fletcher, Joseph Smith",1927,,Lending Library Card,"Giorgio Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1931-07-08,1931-07-15,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/bibesco-portrait-caroline/,Portrait of Caroline,,"Bibesco, Elizabeth",1931,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a3%2F9f%2F6f%2Fa39f6f344f7a49999497dfd5733514e8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-07-08,1931-07-15,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/benson-tobit-transplanted/,Tobit Transplanted,,"Benson, Stella",1931,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a3%2F9f%2F6f%2Fa39f6f344f7a49999497dfd5733514e8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-07-08,1931-07-20,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/lowndes-chink-armour/,The Chink in the Armour,,"Lowndes, Marie Belloc",1912,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/0f%2Fd5%2Fe8%2F0fd5e8ecc00f4c159cbabdbe207808d7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-07-09,1931-07-16,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/james-house-novel/,The Other House: A Novel,,"James, Henry",1896,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/26%2F73%2Fc4%2F2673c41d1a72495c8231da059cc85000%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-07-09,1931-07-15,https://shakespeareandco.princeton.edu/members/joyce-giorgio/,Giorgio Joyce,"Joyce, Giorgio",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/kaye-smith-susan-spray/,Susan Spray,,"Kaye-Smith, Sheila",1931,,Lending Library Card,"Giorgio Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1931-07-09,1931-07-15,https://shakespeareandco.princeton.edu/members/joyce-giorgio/,Giorgio Joyce,"Joyce, Giorgio",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/borden-woman-white-eyes/,A Woman with White Eyes,,"Borden, Mary",1930,,Lending Library Card,"Giorgio Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1931-07-09,1931-07-27,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/smith-flamenco/,Flamenco,,"Smith, Eleanor",1931,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2F95%2F88%2Fcc95882431b347b790c3aab7dcb6eeb9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-07-09,1931-07-15,https://shakespeareandco.princeton.edu/members/joyce-giorgio/,Giorgio Joyce,"Joyce, Giorgio",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/delafield-diary-provincial-lady/,Diary of a Provincial Lady,,"Delafield, E. M.",1930,,Lending Library Card,"Giorgio Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1931-07-11,1931-07-20,https://shakespeareandco.princeton.edu/members/joyce-giorgio/,Giorgio Joyce,"Joyce, Giorgio",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/lawrence-virgin-gipsy/,The Virgin and the Gipsy,,"Lawrence, D. H.",1930,,Lending Library Card,"Giorgio Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1931-07-11,1931-07-15,https://shakespeareandco.princeton.edu/members/joyce-giorgio/,Giorgio Joyce,"Joyce, Giorgio",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/delafield-turn-back-leaves/,Turn Back the Leaves,,"Delafield, E. M.",1930,,Lending Library Card,"Giorgio Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1931-07-11,1931-07-15,https://shakespeareandco.princeton.edu/members/joyce-giorgio/,Giorgio Joyce,"Joyce, Giorgio",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/arlen-men-dislike-women/,Men Dislike Women: A Romance,,"Arlen, Michael",1931,,Lending Library Card,"Giorgio Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1931-07-11,1931-07-15,https://shakespeareandco.princeton.edu/members/joyce-giorgio/,Giorgio Joyce,"Joyce, Giorgio",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/herbert-water-gipsies/,The Water Gipsies,,"Herbert, A. P.",1930,,Lending Library Card,"Giorgio Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1931-07-15,1931-07-20,https://shakespeareandco.princeton.edu/members/joyce-giorgio/,Giorgio Joyce,"Joyce, Giorgio",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/deeping-short-stories-warwick/,The Short Stories of Warwick Deeping,,"Deeping, Warwick",1930,,Lending Library Card,"Giorgio Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1931-07-15,1931-08-03,https://shakespeareandco.princeton.edu/members/joyce-giorgio/,Giorgio Joyce,"Joyce, Giorgio",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/bennett-imperial-palace/,Imperial Palace,,"Bennett, Arnold",1930,,Lending Library Card,"Giorgio Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1931-07-15,1931-07-20,https://shakespeareandco.princeton.edu/members/joyce-giorgio/,Giorgio Joyce,"Joyce, Giorgio",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/fisher-deepening-stream/,The Deepening Stream,,"Fisher, Dorothy Canfield",1930,,Lending Library Card,"Giorgio Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1931-07-15,1931-07-20,https://shakespeareandco.princeton.edu/members/joyce-giorgio/,Giorgio Joyce,"Joyce, Giorgio",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/bandit/,Bandit,,,,"Unidentified. August Blanche's *The Bandit* (1872), Edgar Rice Burroughs's *The Bandit of Hell's Bend* (1925), Leslie Charteris's *The Bandit* (1929), or Panait Istrati's *The Bandits* (1929).",Lending Library Card,"Giorgio Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1931-07-15,1931-07-20,https://shakespeareandco.princeton.edu/members/joyce-giorgio/,Giorgio Joyce,"Joyce, Giorgio",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/beck-laughing-queen/,The Laughing Queen,,"Beck, L. Adams",1929,,Lending Library Card,"Giorgio Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1931-07-15,1931-08-03,https://shakespeareandco.princeton.edu/members/joyce-giorgio/,Giorgio Joyce,"Joyce, Giorgio",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/munthe-story-san-michele/,The Story of San Michele,,"Munthe, Axel",1930,,Lending Library Card,"Giorgio Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1931-07-15,1931-07-22,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/green-reader-married/,Reader I Married Him,,"Green, Anne",1931,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a3%2F9f%2F6f%2Fa39f6f344f7a49999497dfd5733514e8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-07-15,1931-08-26,https://shakespeareandco.princeton.edu/members/gilbert-stuart/,Stuart Gilbert,"Gilbert, Stuart",,,,,,,,,Returned,42,,,https://shakespeareandco.princeton.edu/books/keyserling-book-marriage-new/,The Book of Marriage: A New Interpretation by Twenty-Four Leaders of Contemporary Thought,,,1926,,Lending Library Card,"Sylvia Beach, Stuart Gilbert Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/861dcb07-60d7-4a64-b1ba-6296bd9c66c3/manifest,https://iiif.princeton.edu/loris/figgy_prod/af%2Ff0%2Fc0%2Faff0c08e46c84bc68c186495fa2d3eba%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-07-15,1931-07-20,https://shakespeareandco.princeton.edu/members/joyce-giorgio/,Giorgio Joyce,"Joyce, Giorgio",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/arnim-father/,Father,,"Arnim, Elizabeth von",1931,,Lending Library Card,"Giorgio Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1931-07-16,,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/sedgwick-philippa/,Philippa,,"Sedgwick, Anne Douglas",1930,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/26%2F73%2Fc4%2F2673c41d1a72495c8231da059cc85000%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1931-07-16,,https://shakespeareandco.princeton.edu/members/campbell-phyllis/,Phyllis Campbell,"Campbell, Phyllis",,,,,,Day By Day,1931-07-16,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1931-07-17,1931-11-16,https://shakespeareandco.princeton.edu/members/prevost-marcelle-auclair/,Marcelle Auclair / Mme Jean PrΓ©vost,"Auclair, Marcelle",,,,,,,,,Returned,122,,,https://shakespeareandco.princeton.edu/books/woolf-room-ones/,A Room of One's Own,,"Woolf, Virginia",1929,,Lending Library Card,"Sylvia Beach, Mme Prevost Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2df3e3f7-6a0f-4492-bb9f-f71a8839bcb9/manifest,https://iiif.princeton.edu/loris/figgy_prod/be%2F43%2Fb3%2Fbe43b3d597994002bc12c92659b35f5c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1931-07-17,1931-07-17,https://shakespeareandco.princeton.edu/members/wendel/,Hélène de Wendel / Comtesse de Noailles,"de Wendel, Hélène",,,,,,,,,,,65.00,FRF,https://shakespeareandco.princeton.edu/books/lawrence-lady-chatterleys-lover/,Lady Chatterley's Lover,,"Lawrence, D. H.",1928,,Lending Library Card,"Sylvia Beach, Madame Hélène Wendel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c70e230a-8313-4c53-9939-22beb5f809b6/manifest,https://iiif-cloud.princeton.edu/iiif/2/a6%2Ffc%2F58%2Fa6fc58fc7f8a431481a50269d0073534%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-07-20,1931-08-22,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,33,,,https://shakespeareandco.princeton.edu/books/barbey-daurevilly-diaboliques/,The Diaboliques,,"Barbey d'Aurevilly, Jules",1925,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/83%2F1d%2F4c%2F831d4c435a8f4d28af3b71a87164db40%2Fintermediate_file/full/full/0/default.jpg
+Generic,1931-07-20,,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/masterman-2-lo/,2 Lo,,"Masterman, Walter Sydney",1928,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/0f%2Fd5%2Fe8%2F0fd5e8ecc00f4c159cbabdbe207808d7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1931-07-20,1931-07-27,https://shakespeareandco.princeton.edu/members/proix/,Troise Proix,"Proix, Troise",8.00,,1 week,7,1,,1931-07-20,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Troise Proix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b7152822-4421-406d-9472-740daf9b84e0/manifest,https://iiif.princeton.edu/loris/figgy_prod/af%2F20%2F20%2Faf20206201de4a379058409f7cd82775%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-07-20,1931-08-03,https://shakespeareandco.princeton.edu/members/joyce-giorgio/,Giorgio Joyce,"Joyce, Giorgio",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/melville-white-jacket/,White-Jacket,,"Melville, Herman",1850,,Lending Library Card,"Giorgio Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1931-07-20,1931-08-03,https://shakespeareandco.princeton.edu/members/joyce-giorgio/,Giorgio Joyce,"Joyce, Giorgio",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/donovan-black-soil/,Black Soil,,"Donovan, Josephine",1930,,Lending Library Card,"Giorgio Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1931-07-20,1931-08-03,https://shakespeareandco.princeton.edu/members/joyce-giorgio/,Giorgio Joyce,"Joyce, Giorgio",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/linklater-juan-america/,Juan in America,,"Linklater, Eric",1931,,Lending Library Card,"Giorgio Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1931-07-20,1931-08-03,https://shakespeareandco.princeton.edu/members/joyce-giorgio/,Giorgio Joyce,"Joyce, Giorgio",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/wolfe-look-homeward-angel/,"Look Homeward, Angel",,"Wolfe, Thomas",1929,,Lending Library Card,"Giorgio Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1931-07-20,1931-08-03,https://shakespeareandco.princeton.edu/members/joyce-giorgio/,Giorgio Joyce,"Joyce, Giorgio",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/kennedy-fool-family/,The Fool of the Family,,"Kennedy, Margaret",1930,,Lending Library Card,"Giorgio Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1931-07-20,1931-08-22,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,33,,,https://shakespeareandco.princeton.edu/books/huddleston-paris/,In and About Paris,,"Huddleston, Sisley",1927,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/83%2F1d%2F4c%2F831d4c435a8f4d28af3b71a87164db40%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-07-20,1931-08-22,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,33,,,https://shakespeareandco.princeton.edu/books/steuart-romance-paris-streets/,The Romance of the Paris Streets,,"Steuart, Mary D.",1923,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/83%2F1d%2F4c%2F831d4c435a8f4d28af3b71a87164db40%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-07-20,1931-07-25,https://shakespeareandco.princeton.edu/members/proix/,Troise Proix,"Proix, Troise",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/webb-seven-secret-love/,Seven for a Secret: A Love Story,,"Webb, Mary",1922,,Lending Library Card,"Sylvia Beach, Troise Proix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b7152822-4421-406d-9472-740daf9b84e0/manifest,https://iiif.princeton.edu/loris/figgy_prod/af%2F20%2F20%2Faf20206201de4a379058409f7cd82775%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-07-22,1931-07-30,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/williamson-dandelion-days/,Dandelion Days,,"Williamson, Henry",1922,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a3%2F9f%2F6f%2Fa39f6f344f7a49999497dfd5733514e8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-07-22,1931-07-30,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/wilson-axels-castle-study/,Axel's Castle: A Study in the Imaginative Literature of 1870 β 1930,,"Wilson, Edmund",1931,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a3%2F9f%2F6f%2Fa39f6f344f7a49999497dfd5733514e8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1931-07-24,1931-07-24,https://shakespeareandco.princeton.edu/members/wendel/,Hélène de Wendel / Comtesse de Noailles,"de Wendel, Hélène",,,,,,,,,,,32.50,FRF,https://shakespeareandco.princeton.edu/books/lawrence-plumed-serpent/,The Plumed Serpent,,"Lawrence, D. H.",1926,,Lending Library Card,"Sylvia Beach, Madame Hélène Wendel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c70e230a-8313-4c53-9939-22beb5f809b6/manifest,https://iiif-cloud.princeton.edu/iiif/2/a6%2Ffc%2F58%2Fa6fc58fc7f8a431481a50269d0073534%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-07-27,1931-08-06,https://shakespeareandco.princeton.edu/members/montricher-cecile-de/,CΓ©cile de Montricher,"de Montricher, CΓ©cile",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/lawrence-psychoanalysis-unconscious/,Psychoanalysis and the Unconscious,,"Lawrence, D. H.",1921,,Lending Library Card,"Sylvia Beach, Cecile de Montricher Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05a20bee-01f1-4cd8-a29e-60bbe1750bfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/fb%2F31%2F26%2Ffb312635b630443192db234a977d365b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-07-27,1931-08-12,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/powys-defense-sensuality/,In Defense of Sensuality,,"Powys, John Cowper",1931,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2F95%2F88%2Fcc95882431b347b790c3aab7dcb6eeb9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-07-30,1931-08-03,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/warre-cornish-jane-austen/,Jane Austen,,"Warre Cornish, Francis",1914,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/a3%2F9f%2F6f%2Fa39f6f344f7a49999497dfd5733514e8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-07-31,1931-08-06,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/christine/,Christine,,,,"Unidentified. Likely Julien Green's *Christine and Other Stories"" (1930).",Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/a6%2Ff2%2Fae%2Fa6f2aea6064a408483604e0d5e53da8a%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1931-07-31,1931-10-31,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",200.00,100.00,3 months,92,3,,1931-07-31,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/a6%2Ff2%2Fae%2Fa6f2aea6064a408483604e0d5e53da8a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-07-31,1931-08-06,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/green-reader-married/,Reader I Married Him,,"Green, Anne",1931,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/a6%2Ff2%2Fae%2Fa6f2aea6064a408483604e0d5e53da8a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-08-03,1931-08-20,https://shakespeareandco.princeton.edu/members/joyce-giorgio/,Giorgio Joyce,"Joyce, Giorgio",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/oflaherty-two-years/,Two Years,,"O'Flaherty, Liam",1930,,Lending Library Card,"Giorgio Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1931-08-03,1931-08-07,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/tennyson-s-poetical/,Tennysonβs Poetical Works,,"Tennyson, Alfred",,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/26%2F73%2Fc4%2F2673c41d1a72495c8231da059cc85000%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-08-03,1931-08-07,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/browning-poetical-works-elizabeth/,Elizabeth Barrett Browning's Poetical Works,,"Browning, Elizabeth Barrett",,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/26%2F73%2Fc4%2F2673c41d1a72495c8231da059cc85000%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-08-03,1931-08-11,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/dane-broome-stages/,Broome Stages,,"Dane, Clemence",1931,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/fd%2F7b%2F12%2Ffd7b1244659049e989da4cabf155ee96%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-08-03,1931-08-06,https://shakespeareandco.princeton.edu/members/joyce-giorgio/,Giorgio Joyce,"Joyce, Giorgio",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/bennett-buried-alive/,Buried Alive,,"Bennett, Arnold",1908,,Lending Library Card,"Giorgio Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1931-08-03,1931-09-11,https://shakespeareandco.princeton.edu/members/joyce-giorgio/,Giorgio Joyce,"Joyce, Giorgio",,,,,,,,,Returned,39,,,https://shakespeareandco.princeton.edu/books/svevo-confessions-zeno/,Confessions of Zeno,,"Svevo, Italo",1930,,Lending Library Card,"Giorgio Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1931-08-03,1931-08-11,https://shakespeareandco.princeton.edu/members/joyce-giorgio/,Giorgio Joyce,"Joyce, Giorgio",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/oflaherty-mr-gilhooley/,Mr. Gilhooley,,"O'Flaherty, Liam",1926,,Lending Library Card,"Giorgio Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1931-08-03,1931-08-20,https://shakespeareandco.princeton.edu/members/joyce-giorgio/,Giorgio Joyce,"Joyce, Giorgio",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/oflaherty-assassin/,The Assassin,,"O'Flaherty, Liam",1928,,Lending Library Card,"Giorgio Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1931-08-03,1931-08-20,https://shakespeareandco.princeton.edu/members/joyce-giorgio/,Giorgio Joyce,"Joyce, Giorgio",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/oflaherty-thy-neighbours-wife/,Thy Neighbour's Wife,,"O'Flaherty, Liam",1923,,Lending Library Card,"Giorgio Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1931-08-03,1931-08-06,https://shakespeareandco.princeton.edu/members/joyce-giorgio/,Giorgio Joyce,"Joyce, Giorgio",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/oflaherty-spring-sowing/,Spring Sowing,,"O'Flaherty, Liam",1924,,Lending Library Card,"Giorgio Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1931-08-03,1931-08-20,https://shakespeareandco.princeton.edu/members/joyce-giorgio/,Giorgio Joyce,"Joyce, Giorgio",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/baring-end-beginning/,In My End Is My Beginning,,"Baring, Maurice",1931,,Lending Library Card,"Giorgio Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Purchase,1931-08-04,1931-08-04,https://shakespeareandco.princeton.edu/members/robertson-william-cowper/,William Cowper Robertson / Rev. W. Cowper Robertson,"Robertson, William Cowper",,,,,,,,,,,25.00,FRF,https://shakespeareandco.princeton.edu/books/christina-rossetti/,Christina Rossetti,,,,Unidentified. By or about Christina Rossetti.,Lending Library Card,"Sylvia Beach, W. Cowper Robertson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/33769c35-cdbb-47ab-b0b9-ca17c85798d6/manifest,https://iiif.princeton.edu/loris/figgy_prod/e5%2F5f%2F34%2Fe55f347dfb534162a1de11248ea88470%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-08-05,1931-11-18,https://shakespeareandco.princeton.edu/members/gilbert-stuart/,Stuart Gilbert,"Gilbert, Stuart",,,,,,,,,Returned,105,,,https://shakespeareandco.princeton.edu/books/pavlov-conditioned-reflexes-investigation/,Conditioned Reflexes: An Investigation of the Physiological Activity of the Cerebral Cortex,,"Pavlov, Ivan",1927,,Lending Library Card,"Sylvia Beach, Stuart Gilbert Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/861dcb07-60d7-4a64-b1ba-6296bd9c66c3/manifest,https://iiif.princeton.edu/loris/figgy_prod/af%2Ff0%2Fc0%2Faff0c08e46c84bc68c186495fa2d3eba%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-08-05,1931-08-11,https://shakespeareandco.princeton.edu/members/flandrau/,Grace Flandrau,"Flandrau, Grace",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/murry-woman-story-h/,Son of Woman: The Story of D. H. Lawrence,,"Murry, John Middleton",1931,,Lending Library Card,"Sylvia Beach, Grace Flandrau Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd8ed502-3668-40b1-86dc-bdd21047c7e5/manifest,https://iiif.princeton.edu/loris/figgy_prod/58%2Fcb%2F6c%2F58cb6c81124a4584a59cbfed76c365df%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1931-08-05,1931-09-05,https://shakespeareandco.princeton.edu/members/flandrau/,Grace Flandrau,"Flandrau, Grace",40.00,50.00,1 month,31,1,,1931-08-05,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Grace Flandrau Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd8ed502-3668-40b1-86dc-bdd21047c7e5/manifest,https://iiif.princeton.edu/loris/figgy_prod/58%2Fcb%2F6c%2F58cb6c81124a4584a59cbfed76c365df%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-08-06,1931-08-26,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/andreyev-came-pass-king/,And It Came to Pass That the King Was Dead,,"Andreyev, Leonid",1921,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/a6%2Ff2%2Fae%2Fa6f2aea6064a408483604e0d5e53da8a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-08-06,1931-08-26,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/andreyev-stars-drama-four/,To the Stars: A Drama in Four Acts,,"Andreyev, Leonid",1907,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/a6%2Ff2%2Fae%2Fa6f2aea6064a408483604e0d5e53da8a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-08-06,1931-08-26,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/andreyev-excellency-governor/,His Excellency The Governor,,"Andreyev, Leonid",1921,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/a6%2Ff2%2Fae%2Fa6f2aea6064a408483604e0d5e53da8a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-08-06,1931-08-26,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/gide-dostoevsky/,Dostoevsky,,"Gide, AndrΓ©",1925,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/a6%2Ff2%2Fae%2Fa6f2aea6064a408483604e0d5e53da8a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-08-07,1931-08-22,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/lenotre-guillotine-servants/,The Guillotine and Its Servants,,"Lenotre, G.",1929,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/83%2F1d%2F4c%2F831d4c435a8f4d28af3b71a87164db40%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-08-11,1931-08-14,https://shakespeareandco.princeton.edu/members/flandrau/,Grace Flandrau,"Flandrau, Grace",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/brooks-american-caravan-yearbook/,The American Caravan: A Yearbook of American Literature,,,1927,,Lending Library Card,"Sylvia Beach, Grace Flandrau Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd8ed502-3668-40b1-86dc-bdd21047c7e5/manifest,https://iiif.princeton.edu/loris/figgy_prod/58%2Fcb%2F6c%2F58cb6c81124a4584a59cbfed76c365df%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-08-11,1931-08-19,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/murry-woman-story-h/,Son of Woman: The Story of D. H. Lawrence,,"Murry, John Middleton",1931,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/fd%2F7b%2F12%2Ffd7b1244659049e989da4cabf155ee96%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-08-12,1931-08-17,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/fletcher-murder-wrides-park/,The Murder at Wrides Park,,"Fletcher, Joseph Smith",1931,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2F95%2F88%2Fcc95882431b347b790c3aab7dcb6eeb9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-08-14,1931-08-20,https://shakespeareandco.princeton.edu/members/flandrau/,Grace Flandrau,"Flandrau, Grace",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/kreymborg-second-american-caravan/,The Second American Caravan: A Yearbook of American Literature,,,1928,,Lending Library Card,"Sylvia Beach, Grace Flandrau Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd8ed502-3668-40b1-86dc-bdd21047c7e5/manifest,https://iiif.princeton.edu/loris/figgy_prod/58%2Fcb%2F6c%2F58cb6c81124a4584a59cbfed76c365df%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-08-17,1931-08-22,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/dreiser-dawn-history/,Dawn: A History of Myself,,"Dreiser, Theodore",1931,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2F95%2F88%2Fcc95882431b347b790c3aab7dcb6eeb9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-08-19,1931-08-21,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/ward-compelled-hero/,The Compelled Hero,,"Ward, Richard Heron",1931,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/fd%2F7b%2F12%2Ffd7b1244659049e989da4cabf155ee96%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-08-20,1931-09-11,https://shakespeareandco.princeton.edu/members/joyce-giorgio/,Giorgio Joyce,"Joyce, Giorgio",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/tomlinson-sea-jungle/,The Sea and the Jungle,,"Tomlinson, H. M.",1912,,Lending Library Card,"Giorgio Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1931-08-20,1931-10-08,https://shakespeareandco.princeton.edu/members/lamy-marthe/,Marthe Lamy,"Lamy, Marthe",,,,,,,,,Returned,49,,,https://shakespeareandco.princeton.edu/books/hall-well-loneliness/,The Well of Loneliness,,"Hall, Radclyffe",1926,,Lending Library Card,"Sylvia Beach, Marthe Lamy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c715a1d2-668f-44c0-b48d-5f245d0752ba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5b%2F5b%2F88%2F5b5b8821d798454b850e5467fe85b88b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-08-20,1931-08-24,https://shakespeareandco.princeton.edu/members/flandrau/,Grace Flandrau,"Flandrau, Grace",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/kreymborg-new-american-caravan/,The New American Caravan: A Yearbook of American Literature,,,1929,,Lending Library Card,"Sylvia Beach, Grace Flandrau Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd8ed502-3668-40b1-86dc-bdd21047c7e5/manifest,https://iiif.princeton.edu/loris/figgy_prod/58%2Fcb%2F6c%2F58cb6c81124a4584a59cbfed76c365df%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-08-20,1931-09-11,https://shakespeareandco.princeton.edu/members/joyce-giorgio/,Giorgio Joyce,"Joyce, Giorgio",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/fletcher-murder-wrides-park/,The Murder at Wrides Park,,"Fletcher, Joseph Smith",1931,,Lending Library Card,"Giorgio Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1931-08-20,1931-09-11,https://shakespeareandco.princeton.edu/members/joyce-giorgio/,Giorgio Joyce,"Joyce, Giorgio",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/green-reader-married/,Reader I Married Him,,"Green, Anne",1931,,Lending Library Card,"Giorgio Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1931-08-20,1931-09-11,https://shakespeareandco.princeton.edu/members/joyce-giorgio/,Giorgio Joyce,"Joyce, Giorgio",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/hughes-without-laughter/,Not without Laughter,,"Hughes, Langston",1930,,Lending Library Card,"Giorgio Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1931-08-20,1931-09-11,https://shakespeareandco.princeton.edu/members/joyce-giorgio/,Giorgio Joyce,"Joyce, Giorgio",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/chesterton-four-faultless-felons/,Four Faultless Felons,,"Chesterton, G. K.",1930,,Lending Library Card,"Giorgio Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1931-08-20,1931-09-11,https://shakespeareandco.princeton.edu/members/joyce-giorgio/,Giorgio Joyce,"Joyce, Giorgio",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/erskine-cinderellas-daughter-sequels/,Cinderella's Daughter and Other Sequels and Consequences,,"Erskine, John",1930,,Lending Library Card,"Giorgio Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1931-08-20,1931-09-11,https://shakespeareandco.princeton.edu/members/joyce-giorgio/,Giorgio Joyce,"Joyce, Giorgio",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/van-dine-scarab-murder-case/,The Scarab Murder Case: A Philo Vance Story,,"Van Dine, S. S.",1929,,Lending Library Card,"Giorgio Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1931-08-20,1931-09-11,https://shakespeareandco.princeton.edu/members/joyce-giorgio/,Giorgio Joyce,"Joyce, Giorgio",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/sackville-west-simpson-life/,Simpson: A Life,,"Sackville-West, Edward Charles",1931,,Lending Library Card,"Giorgio Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1931-08-20,1931-09-11,https://shakespeareandco.princeton.edu/members/joyce-giorgio/,Giorgio Joyce,"Joyce, Giorgio",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/wharton-glimpses-moon/,The Glimpses of the Moon,,"Wharton, Edith",1922,,Lending Library Card,"Giorgio Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1931-08-21,1931-08-26,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/nichols-home-series-bouquets/,Are They the Same at Home? Being a Series of Bouquets Diffidently Distributed,,"Nichols, Beverley",1927,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/fd%2F7b%2F12%2Ffd7b1244659049e989da4cabf155ee96%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-08-22,1931-09-08,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/dorliac-moon-mistress/,The Moon Mistress,,"d'Orliac, Jehanne",1931,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/83%2F1d%2F4c%2F831d4c435a8f4d28af3b71a87164db40%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-08-22,1931-09-02,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/frazier-golden-bough-study/,The Golden Bough: A Study in Comparative Religion,,"Frazer, James George",1890,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2F95%2F88%2Fcc95882431b347b790c3aab7dcb6eeb9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1931-08-24,1931-10-22,https://shakespeareandco.princeton.edu/members/allan-b/,B. Allan,"Allan, B.",,,"1 month, 28 days",59,,,1931-08-24,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1931-08-24,1931-08-31,https://shakespeareandco.princeton.edu/members/flandrau/,Grace Flandrau,"Flandrau, Grace",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/dane-broome-stages/,Broome Stages,,"Dane, Clemence",1931,,Lending Library Card,"Sylvia Beach, Grace Flandrau Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd8ed502-3668-40b1-86dc-bdd21047c7e5/manifest,https://iiif.princeton.edu/loris/figgy_prod/58%2Fcb%2F6c%2F58cb6c81124a4584a59cbfed76c365df%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-08-26,1931-09-08,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/herbert-water-gipsies/,The Water Gipsies,,"Herbert, A. P.",1930,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/a6%2Ff2%2Fae%2Fa6f2aea6064a408483604e0d5e53da8a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-08-26,1931-09-01,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/faulkner-sanctuary/,Sanctuary,,"Faulkner, William",1931,"Caresse Crosby sold a copy of the Black Sun Press edition of *Sanctuary* to Shakespeare and Company on Feb. 17, 1932.",Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/fd%2F7b%2F12%2Ffd7b1244659049e989da4cabf155ee96%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-08-26,1931-08-29,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/merezhkovsky-forerunner-romance-leonardo/,The Romance of Leonardo da Vinci: The Forerunner,,"Merezhkovsky, Dmitry",1908,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/a6%2Ff2%2Fae%2Fa6f2aea6064a408483604e0d5e53da8a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-08-27,1931-09-02,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/merezhkovsky-death-gods/,The Death of the Gods,,"Merezhkovsky, Dmitry",1929,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/a6%2Ff2%2Fae%2Fa6f2aea6064a408483604e0d5e53da8a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-08-28,1931-11-18,https://shakespeareandco.princeton.edu/members/gilbert-stuart/,Stuart Gilbert,"Gilbert, Stuart",,,,,,,,,Returned,82,,,https://shakespeareandco.princeton.edu/books/watson-ways-behaviourism/,Ways of Behaviourism,,"Watson, John Broadus",1928,,Lending Library Card,"Sylvia Beach, Stuart Gilbert Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/861dcb07-60d7-4a64-b1ba-6296bd9c66c3/manifest,https://iiif.princeton.edu/loris/figgy_prod/92%2F57%2Fa9%2F9257a999692e4cd684db826e9af46739%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1931-08-29,1931-08-29,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/douglas-europe-footnotes-east/,How about Europe? Some Footnotes on East and West,,"Douglas, Norman",1930,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/a6%2Ff2%2Fae%2Fa6f2aea6064a408483604e0d5e53da8a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-08-29,,https://shakespeareandco.princeton.edu/members/jordan-howard/,Howard Jordan,"Jordan, Howard",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/nietzsche-thus-spake-zarathustra/,Thus Spake Zarathustra: A Book for All and None,,"Nietzsche, Friedrich",1883,,Lending Library Card,"Sylvia Beach, Howard Jordan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/144dd617-dcfd-44c1-954a-7866c01a2fc5/manifest,https://iiif.princeton.edu/loris/figgy_prod/01%2F22%2Fb8%2F0122b8aaa983464baf58d6865a21a1fe%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1931-08-29,1931-09-29,https://shakespeareandco.princeton.edu/members/jordan-howard/,Howard Jordan,"Jordan, Howard",25.00,,1 month,31,,,1931-08-29,,,,,FRF,,,,,,,Lending Library Card;Address Book,"Sylvia Beach, Howard Jordan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/144dd617-dcfd-44c1-954a-7866c01a2fc5/manifest;,https://iiif.princeton.edu/loris/figgy_prod/01%2F22%2Fb8%2F0122b8aaa983464baf58d6865a21a1fe%2Fintermediate_file.jp2/full/full/0/default.jpg;
+Reimbursement,1931-08-31,1931-08-31,https://shakespeareandco.princeton.edu/members/arnaud/,Mr. Arnaud,"Arnaud, Mr.",,,,,,,,,,,,,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1931-08-31,1931-09-01,https://shakespeareandco.princeton.edu/members/flandrau/,Grace Flandrau,"Flandrau, Grace",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/nietzsche-selected-letters-friedrich/,Selected Letters of Friedrich Nietzsche,,"Nietzsche, Friedrich",1921,,Lending Library Card,"Sylvia Beach, Grace Flandrau Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd8ed502-3668-40b1-86dc-bdd21047c7e5/manifest,https://iiif.princeton.edu/loris/figgy_prod/58%2Fcb%2F6c%2F58cb6c81124a4584a59cbfed76c365df%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-09-01,1931-10-09,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,38,,,https://shakespeareandco.princeton.edu/books/lawrence-women-love/,Women in Love,,"Lawrence, D. H.",1920,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/fd%2F7b%2F12%2Ffd7b1244659049e989da4cabf155ee96%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-09-01,1931-09-04,https://shakespeareandco.princeton.edu/members/flandrau/,Grace Flandrau,"Flandrau, Grace",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/tully-shadows-men/,Shadows of Men,,"Tully, Jim",1930,,Lending Library Card,"Sylvia Beach, Grace Flandrau Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd8ed502-3668-40b1-86dc-bdd21047c7e5/manifest,https://iiif.princeton.edu/loris/figgy_prod/58%2Fcb%2F6c%2F58cb6c81124a4584a59cbfed76c365df%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-09-01,1931-10-09,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,38,,,https://shakespeareandco.princeton.edu/books/kaye-smith-spell-land-story/,Spell Land: The Story of a Sussex Farm,,"Kaye-Smith, Sheila",1926,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/fd%2F7b%2F12%2Ffd7b1244659049e989da4cabf155ee96%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-09-01,1931-10-09,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,38,,,https://shakespeareandco.princeton.edu/books/lawrence-ladybird/,The Ladybird,,"Lawrence, D. H.",1923,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/fd%2F7b%2F12%2Ffd7b1244659049e989da4cabf155ee96%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-09-01,1931-10-09,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,38,,,https://shakespeareandco.princeton.edu/books/lewis-arrowsmith/,Arrowsmith,,"Lewis, Sinclair",1925,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/fd%2F7b%2F12%2Ffd7b1244659049e989da4cabf155ee96%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-09-02,1931-09-04,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/maugham-trembling-leaf-little/,The Trembling of a Leaf: Little Stories of the South Sea Islands,,"Maugham, W. Somerset",1921,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2F95%2F88%2Fcc95882431b347b790c3aab7dcb6eeb9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-09-02,,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/melville-great-french-short/,Great French Short Stories,,,1928,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/a6%2Ff2%2Fae%2Fa6f2aea6064a408483604e0d5e53da8a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-09-02,1931-09-08,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/morand-open-night/,Open All Night,,"Morand, Paul",1923,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/a6%2Ff2%2Fae%2Fa6f2aea6064a408483604e0d5e53da8a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-09-04,1931-09-07,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/ellis-analysis-sexual-impulse/,Analysis of the Sexual Impulse; Love and Pain; The Sexual Impulse in Women (Studies in the Psychology of Sex 3),,"Ellis, Havelock",1903,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2F95%2F88%2Fcc95882431b347b790c3aab7dcb6eeb9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Generic,1931-09-07,,https://shakespeareandco.princeton.edu/members/eisenberg/,K. Eisenberg,"Eisenberg, K.",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/mann-magic-mountain/,The Magic Mountain,Vol. 1,"Mann, Thomas",1927,,Lending Library Card,"Sylvia Beach, K. Eisenberg Lending Library Card, Box 44, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d3dc2b46-192b-4efc-9972-7ac13edadabf/manifest,https://iiif-cloud.princeton.edu/iiif/2/34%2Fe9%2F3c%2F34e93c7049174bbda3305c403afdc32a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-09-07,1931-09-23,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/lawrence-virgin-gipsy/,The Virgin and the Gipsy,,"Lawrence, D. H.",1930,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/f9%2F4e%2F9d%2Ff94e9dd1070a40a5a7815815410dd2e0%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-09-07,1931-09-23,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/johns-pagany-native-quarterly/,Pagany: A Native Quarterly,,,,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/f9%2F4e%2F9d%2Ff94e9dd1070a40a5a7815815410dd2e0%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1931-09-07,,https://shakespeareandco.princeton.edu/members/eisenberg/,K. Eisenberg,"Eisenberg, K.",,50.00,,,,,,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, K. Eisenberg Lending Library Card, Box 44, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d3dc2b46-192b-4efc-9972-7ac13edadabf/manifest,https://iiif-cloud.princeton.edu/iiif/2/34%2Fe9%2F3c%2F34e93c7049174bbda3305c403afdc32a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-09-07,1931-09-09,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/ellis-eonism-supplementary-studies/,Eonism and Other Supplementary Studies (Studies in the Psychology of Sex 7),,"Ellis, Havelock",1928,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2F95%2F88%2Fcc95882431b347b790c3aab7dcb6eeb9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-09-08,1931-09-16,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/gogol-overcoat-stories/,The Overcoat and Other Stories,,"Gogol, Nikolai",1923,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/a6%2Ff2%2Fae%2Fa6f2aea6064a408483604e0d5e53da8a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-09-08,1931-09-21,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/sudermann-wife-steffen-tromholt/,The Wife of Steffen Tromholt,Vol. 1,"Sudermann, Hermann",1929,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/a6%2Ff2%2Fae%2Fa6f2aea6064a408483604e0d5e53da8a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-09-08,1931-09-16,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/dickens-great-expectations/,Great Expectations,,"Dickens, Charles",1861,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/83%2F1d%2F4c%2F831d4c435a8f4d28af3b71a87164db40%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-09-09,1931-09-15,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/ellis-sexual-selection-man/,Sexual Selection in Man (Studies in the Psychology of Sex 4),,"Ellis, Havelock",1905,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2F95%2F88%2Fcc95882431b347b790c3aab7dcb6eeb9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-09-11,1931-09-23,https://shakespeareandco.princeton.edu/members/joyce-giorgio/,Giorgio Joyce,"Joyce, Giorgio",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/rohmer-daughter-fu-manchu/,The Daughter of Fu Manchu,,"Rohmer, Sax",1931,,Lending Library Card,"Giorgio Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1931-09-11,1931-09-23,https://shakespeareandco.princeton.edu/members/joyce-giorgio/,Giorgio Joyce,"Joyce, Giorgio",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/maxwell-green-altar/,To What Green Altar?,,"Maxwell, W. B.",1930,,Lending Library Card,"Giorgio Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1931-09-11,1931-09-23,https://shakespeareandco.princeton.edu/members/joyce-giorgio/,Giorgio Joyce,"Joyce, Giorgio",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/road/,Road,,,,"Unidentified. Jack London's [*The Road*](https://shakespeareandco.princeton.edu/books/london-road/) (1907); AndrΓ© Chamson's *[The Road](https://shakespeareandco.princeton.edu/books/chamson-road/),* translated by Van Wyck Brooks (1929); Warwick Deeping's [*The Road*](https://shakespeareandco.princeton.edu/books/deeping-road/) (1931); Nathan Asch's [*The Road: In Search of America*](https://shakespeareandco.princeton.edu/books/asch-road-search-america/) (1937), etc.",Lending Library Card,"Giorgio Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1931-09-11,1931-09-23,https://shakespeareandco.princeton.edu/members/joyce-giorgio/,Giorgio Joyce,"Joyce, Giorgio",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/beck-irish-beauties/,The Irish Beauties,,"Beck, L. Adams",1931,,Lending Library Card,"Giorgio Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1931-09-11,1931-09-18,https://shakespeareandco.princeton.edu/members/joyce-giorgio/,Giorgio Joyce,"Joyce, Giorgio",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/bandit/,Bandit,,,,"Unidentified. August Blanche's *The Bandit* (1872), Edgar Rice Burroughs's *The Bandit of Hell's Bend* (1925), Leslie Charteris's *The Bandit* (1929), or Panait Istrati's *The Bandits* (1929).",Lending Library Card,"Giorgio Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Renewal,1931-09-12,1931-12-12,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",65.00,,3 months,91,1,,1931-09-29,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2F95%2F88%2Fcc95882431b347b790c3aab7dcb6eeb9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-09-15,1931-09-29,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/paul-amazon/,The Amazon,,"Paul, Elliot",1930,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2F95%2F88%2Fcc95882431b347b790c3aab7dcb6eeb9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-09-16,1931-09-19,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/crichton-lure-old-paris/,The Lure of Old Paris,,"Crichton, Charles H.",1922,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/83%2F1d%2F4c%2F831d4c435a8f4d28af3b71a87164db40%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1931-09-16,1931-11-30,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",75.00,,"2 months, 14 days",75,,,1931-09-22,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/23%2F81%2F52%2F23815233f1ba41e8a9f199618f087006%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1931-09-16,1931-10-16,https://shakespeareandco.princeton.edu/members/faulkner-norma/,Norma Faulkner,"Faulkner, Norma",25.00,50.00,1 month,30,1,,1931-09-16,,,,,FRF,,,,,,,Lending Library Card,"Norma Faulkner's lending library cards are part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Renewal,1931-09-16,1932-07-25,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",80.00,,"10 months, 9 days",313,,,1932-01-06,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/83%2F1d%2F4c%2F831d4c435a8f4d28af3b71a87164db40%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-09-16,1931-09-21,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/sudermann-wife-steffen-tromholt/,The Wife of Steffen Tromholt,Vol. 2,"Sudermann, Hermann",1929,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/a6%2Ff2%2Fae%2Fa6f2aea6064a408483604e0d5e53da8a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-09-16,1931-09-29,https://shakespeareandco.princeton.edu/members/faulkner-norma/,Norma Faulkner,"Faulkner, Norma",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/royde-smith-double-heart-study/,The Double Heart: A Study of Julie de Lespinasse,,"Royde-Smith, Naomi Gwladys",1931,,Lending Library Card,"Norma Faulkner's lending library cards are part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Borrow,1931-09-16,1931-09-19,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/gide-lafcadios-adventures/,Lafcadio's Adventures,,"Gide, AndrΓ©",1925,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/83%2F1d%2F4c%2F831d4c435a8f4d28af3b71a87164db40%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-09-18,1931-09-19,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/gide-strait-gate/,Strait Is the Gate,,"Gide, AndrΓ©",1924,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/83%2F1d%2F4c%2F831d4c435a8f4d28af3b71a87164db40%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-09-18,1931-09-24,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/gosselin-gascon-royalist-revolutionary/,"A Gascon Royalist in Revolutionary Paris: The Baron de Batz, 1792 β 1795",,"Lenotre, G.",1910,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/83%2F1d%2F4c%2F831d4c435a8f4d28af3b71a87164db40%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-09-18,1931-09-19,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/thackeray-vanity-fair/,Vanity Fair,,"Thackeray, William Makepeace",1847,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/83%2F1d%2F4c%2F831d4c435a8f4d28af3b71a87164db40%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-09-18,1931-09-22,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/sarah-bernhardt/,Sarah Bernhardt,,,,"Unidentified. A. Gallus's *Sarah Bernhardt* (1901) or George Arthur's *Sarah Bernhardt* (1923), etc.",Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/23%2F81%2F52%2F23815233f1ba41e8a9f199618f087006%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-09-19,1931-10-23,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,34,,,https://shakespeareandco.princeton.edu/books/brousson-anatole-france/,Anatole France Himself,,"Brousson, Jean-Jacques",1925,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/83%2F1d%2F4c%2F831d4c435a8f4d28af3b71a87164db40%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-09-19,1931-09-24,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/gide-counterfeiters/,The Counterfeiters,,"Gide, AndrΓ©",1927,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/83%2F1d%2F4c%2F831d4c435a8f4d28af3b71a87164db40%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-09-21,1931-09-30,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/wilde-picture-dorian-grey/,The Picture of Dorian Grey,,"Wilde, Oscar",1890,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/a6%2Ff2%2Fae%2Fa6f2aea6064a408483604e0d5e53da8a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-09-21,1931-09-30,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/alcott-work-story-experience/,Work: A Story of Experience,,"Alcott, Louisa May",1873,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/a6%2Ff2%2Fae%2Fa6f2aea6064a408483604e0d5e53da8a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-09-22,1931-09-26,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/seabrook-jungle-ways/,Jungle Ways,,"Seabrook, William",1931,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/23%2F81%2F52%2F23815233f1ba41e8a9f199618f087006%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-09-24,1931-10-12,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/flaubert-sentimental-education/,Sentimental Education,,"Flaubert, Gustave",1869,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/83%2F1d%2F4c%2F831d4c435a8f4d28af3b71a87164db40%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-09-24,1931-10-12,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/bourget-story-andre-cornelis/,The Story of AndrΓ© CornΓ©lis,,"Bourget, Paul",1909,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/83%2F1d%2F4c%2F831d4c435a8f4d28af3b71a87164db40%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-09-24,1931-10-21,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,27,,,https://shakespeareandco.princeton.edu/books/daudet-passion-south/,A Passion of the South,,"Daudet, Alphonse",1910,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/83%2F1d%2F4c%2F831d4c435a8f4d28af3b71a87164db40%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-09-26,1931-10-01,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/sitwell-bombardment/,Before the Bombardment,,"Sitwell, Osbert",1926,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/23%2F81%2F52%2F23815233f1ba41e8a9f199618f087006%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1931-09-28,1931-09-28,https://shakespeareandco.princeton.edu/members/robertson-william-cowper/,William Cowper Robertson / Rev. W. Cowper Robertson,"Robertson, William Cowper",,,,,,,,,,,20.00,FRF,https://shakespeareandco.princeton.edu/books/johnston-witch/,The Witch,,"Johnston, Mary",1914,,Lending Library Card,"Sylvia Beach, W. Cowper Robertson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/33769c35-cdbb-47ab-b0b9-ca17c85798d6/manifest,https://iiif.princeton.edu/loris/figgy_prod/e5%2F5f%2F34%2Fe55f347dfb534162a1de11248ea88470%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1931-09-28,1931-11-17,https://shakespeareandco.princeton.edu/members/becker-mrs-paul/,Mrs. Paul Becker,"Becker, Mrs. Paul",,,"1 month, 20 days",50,,,1931-09-28,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1931-09-29,1931-10-01,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/huddleston-back-montparnasse-glimpses/,Back to Montparnasse: Glimpses of Broadway in Bohemia,,"Huddleston, Sisley",1931,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1931-09-29,1931-10-01,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/fletcher-murder-four-degrees/,Murder in Four Degrees,,"Fletcher, Joseph Smith",1931,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2F95%2F88%2Fcc95882431b347b790c3aab7dcb6eeb9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-09-29,1931-10-14,https://shakespeareandco.princeton.edu/members/faulkner-norma/,Norma Faulkner,"Faulkner, Norma",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/kang-grass-roof/,The Grass Roof,,"Kang, Younghill",1931,,Lending Library Card,"Norma Faulkner's lending library cards are part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Borrow,1931-09-30,1931-10-26,https://shakespeareandco.princeton.edu/members/porel/,Jacques Porel,"Porel, Jacques",,,,,,,,,Returned,26,,,https://shakespeareandco.princeton.edu/books/hemingway-torrents-spring/,The Torrents of Spring,,"Hemingway, Ernest",1926,,Lending Library Card,"Sylvia Beach, Jacques Porel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0f3056e7-a6fb-4650-8f99-ba0c9ac5d665/manifest,https://iiif.princeton.edu/loris/figgy_prod/8a%2F31%2Ff1%2F8a31f1de94ec4fd897495e465e504782%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1931-09-30,1931-12-30,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",157.50,,3 months,91,,,1931-09-30,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,;https://iiif-cloud.princeton.edu/iiif/2/da%2Fc1%2F0b%2Fdac10b6cc97448048e6edfea2ba2a328%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-09-30,,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/wilson-axels-castle-study/,Axel's Castle: A Study in the Imaginative Literature of 1870 β 1930,,"Wilson, Edmund",1931,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1931-09-30,1931-10-15,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/romains-death-nobody/,The Death of a Nobody,,"Romains, Jules",1914,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/a6%2Ff2%2Fae%2Fa6f2aea6064a408483604e0d5e53da8a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-09-30,1931-10-15,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/lawrence-sons-lovers/,Sons and Lovers,,"Lawrence, D. H.",1913,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/a6%2Ff2%2Fae%2Fa6f2aea6064a408483604e0d5e53da8a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-10-01,1931-10-13,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/seabrook-magic-island/,The Magic Island,,"Seabrook, William",1929,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/23%2F81%2F52%2F23815233f1ba41e8a9f199618f087006%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-10-01,1931-10-02,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/undergrowth/,Undergrowth,,,,Unidentified. George Bragdon's *Undergrowth* (1895) or F. and E. Young's *Undergrowth* (1920).,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2F95%2F88%2Fcc95882431b347b790c3aab7dcb6eeb9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-10-02,1931-10-05,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/masterman-green-toad/,The Green Toad,,"Masterman, Walter Sydney",1930,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2F95%2F88%2Fcc95882431b347b790c3aab7dcb6eeb9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-10-02,1931-10-05,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/rohmer-daughter-fu-manchu/,The Daughter of Fu Manchu,,"Rohmer, Sax",1931,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2F95%2F88%2Fcc95882431b347b790c3aab7dcb6eeb9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-10-05,1931-10-08,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/maugham-first-person-singular/,First Person Singular,,"Maugham, W. Somerset",1931,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2F95%2F88%2Fcc95882431b347b790c3aab7dcb6eeb9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1931-10-06,1931-10-06,https://shakespeareandco.princeton.edu/members/rocatallada/,Carmen MuΓ±oz Rocatallada / Comtesse de Yebes,"Rocatallada, Carmen MuΓ±oz",,,,,,,,,,,90.50,FRF,https://shakespeareandco.princeton.edu/books/mansfield-letters-katherine-mansfield/,The Letters of Katherine Mansfield,,"Mansfield, Katherine",1928,,Lending Library Card,"Sylvia Beach, Comtesse de Yebes Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b5c191a8-d2ca-4263-8bec-bec4b3c542bb/manifest,https://iiif.princeton.edu/loris/figgy_prod/bf%2F1f%2Ff5%2Fbf1ff529b51f4c4d91111d8c99016204%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1931-10-06,1931-10-06,https://shakespeareandco.princeton.edu/members/rocatallada/,Carmen MuΓ±oz Rocatallada / Comtesse de Yebes,"Rocatallada, Carmen MuΓ±oz",,,,,,,,,,,30.00,FRF,https://shakespeareandco.princeton.edu/books/davies-life-known-voices/,Life as We Have Known It: The Voices of Working-Class Women,,,1931,,Lending Library Card,"Sylvia Beach, Comtesse de Yebes Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b5c191a8-d2ca-4263-8bec-bec4b3c542bb/manifest,https://iiif.princeton.edu/loris/figgy_prod/bf%2F1f%2Ff5%2Fbf1ff529b51f4c4d91111d8c99016204%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1931-10-06,1931-10-06,https://shakespeareandco.princeton.edu/members/rocatallada/,Carmen MuΓ±oz Rocatallada / Comtesse de Yebes,"Rocatallada, Carmen MuΓ±oz",,,,,,,,,,,70.00,FRF,https://shakespeareandco.princeton.edu/books/wilson-axels-castle-study/,Axel's Castle: A Study in the Imaginative Literature of 1870 β 1930,,"Wilson, Edmund",1931,,Lending Library Card,"Sylvia Beach, Comtesse de Yebes Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b5c191a8-d2ca-4263-8bec-bec4b3c542bb/manifest,https://iiif.princeton.edu/loris/figgy_prod/bf%2F1f%2Ff5%2Fbf1ff529b51f4c4d91111d8c99016204%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1931-10-06,1931-10-06,https://shakespeareandco.princeton.edu/members/rocatallada/,Carmen MuΓ±oz Rocatallada / Comtesse de Yebes,"Rocatallada, Carmen MuΓ±oz",,,,,,,,,,,36.00,FRF,https://shakespeareandco.princeton.edu/books/mansfield-poems/,Poems,,"Mansfield, Katherine",1923,,Lending Library Card,"Sylvia Beach, Comtesse de Yebes Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b5c191a8-d2ca-4263-8bec-bec4b3c542bb/manifest,https://iiif.princeton.edu/loris/figgy_prod/bf%2F1f%2Ff5%2Fbf1ff529b51f4c4d91111d8c99016204%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1931-10-06,1931-10-06,https://shakespeareandco.princeton.edu/members/rocatallada/,Carmen MuΓ±oz Rocatallada / Comtesse de Yebes,"Rocatallada, Carmen MuΓ±oz",,,,,,,,,,,48.00,FRF,https://shakespeareandco.princeton.edu/books/mansfield-journal-katherine-mansfield/,The Journal of Katherine Mansfield,,"Mansfield, Katherine",1927,,Lending Library Card,"Sylvia Beach, Comtesse de Yebes Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b5c191a8-d2ca-4263-8bec-bec4b3c542bb/manifest,https://iiif.princeton.edu/loris/figgy_prod/bf%2F1f%2Ff5%2Fbf1ff529b51f4c4d91111d8c99016204%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-10-07,1931-10-21,https://shakespeareandco.princeton.edu/members/weiss-colette/,Colette Weiss,"Weiss, Colette",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/davis-opening-door-novel/,The Opening of a Door: A Novel,,"Davis, George",1931,,Lending Library Card,"Sylvia Beach, Mme Collette Weiss Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a67263e9-aea1-4914-a98b-c9086ec72353/manifest,https://iiif.princeton.edu/loris/figgy_prod/ac%2Fdf%2Fbe%2Facdfbe2fe2604170a4a1a9a8c63ef0b5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-10-07,1931-10-21,https://shakespeareandco.princeton.edu/members/weiss-colette/,Colette Weiss,"Weiss, Colette",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/sackville-west-passion-spent/,All Passion Spent,,"Sackville-West, Vita",1931,,Lending Library Card,"Sylvia Beach, Mme Collette Weiss Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a67263e9-aea1-4914-a98b-c9086ec72353/manifest,https://iiif.princeton.edu/loris/figgy_prod/ac%2Fdf%2Fbe%2Facdfbe2fe2604170a4a1a9a8c63ef0b5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1931-10-07,1931-11-07,https://shakespeareandco.princeton.edu/members/weiss-colette/,Colette Weiss,"Weiss, Colette",40.00,,1 month,31,2,,1931-10-07,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Mme Collette Weiss Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a67263e9-aea1-4914-a98b-c9086ec72353/manifest,https://iiif.princeton.edu/loris/figgy_prod/ac%2Fdf%2Fbe%2Facdfbe2fe2604170a4a1a9a8c63ef0b5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Crossed out,1931-10-07,,https://shakespeareandco.princeton.edu/members/weiss-colette/,Colette Weiss,"Weiss, Colette",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/huxley-brief-candles-stories/,Brief Candles: Stories,,"Huxley, Aldous",1930,,Lending Library Card,"Sylvia Beach, Mme Collette Weiss Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a67263e9-aea1-4914-a98b-c9086ec72353/manifest,https://iiif.princeton.edu/loris/figgy_prod/ac%2Fdf%2Fbe%2Facdfbe2fe2604170a4a1a9a8c63ef0b5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1931-10-08,,https://shakespeareandco.princeton.edu/members/dorothy-apthorp/,Dorothy Apthorp,"Apthorp, Dorothy",,,,,,,1931-10-08,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Purchase,1931-10-08,1931-10-08,https://shakespeareandco.princeton.edu/members/wendel/,Hélène de Wendel / Comtesse de Noailles,"de Wendel, Hélène",,,,,,,,,,,36.85,FRF,https://shakespeareandco.princeton.edu/books/baker-shakespeare-glossary/,A Shakespeare Glossary,,"Onions, C. T.",1911,,Lending Library Card,"Sylvia Beach, Madame Hélène Wendel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c70e230a-8313-4c53-9939-22beb5f809b6/manifest,https://iiif-cloud.princeton.edu/iiif/2/a6%2Ffc%2F58%2Fa6fc58fc7f8a431481a50269d0073534%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-10-08,1931-10-09,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/crofts-box-office-murders/,The Box Office Murders,,"Crofts, Freeman Wills",1929,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2F95%2F88%2Fcc95882431b347b790c3aab7dcb6eeb9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-10-09,1931-10-15,https://shakespeareandco.princeton.edu/members/kennedy-robert/,Robert Kennedy,"Kennedy, Robert",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/woolf-waves/,The Waves,,"Woolf, Virginia",1931,,Lending Library Card,"Sylvia Beach, Robert Kennedy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5819877c-8d7f-42cc-a86b-f8161bca822f/manifest,https://iiif.princeton.edu/loris/figgy_prod/c1%2F66%2Fae%2Fc166ae11260b41bb9c722f4364b8014b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-10-09,1931-10-22,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/beck-irish-beauties/,The Irish Beauties,,"Beck, L. Adams",1931,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/fd%2F7b%2F12%2Ffd7b1244659049e989da4cabf155ee96%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-10-09,1931-10-10,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/ward-compelled-hero/,The Compelled Hero,,"Ward, Richard Heron",1931,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2F95%2F88%2Fcc95882431b347b790c3aab7dcb6eeb9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-10-10,1931-10-15,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/merrick-chair-boulevard/,A Chair on the Boulevard,,"Merrick, Leonard",1917,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/5f%2F47%2F3a%2F5f473ac7bddd46a6b4314e22a3b90042%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-10-10,1931-10-15,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/ferber-cimarron/,Cimarron,,"Ferber, Edna",1929,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2F95%2F88%2Fcc95882431b347b790c3aab7dcb6eeb9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-10-12,1931-10-21,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/paris/,Paris,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/83%2F1d%2F4c%2F831d4c435a8f4d28af3b71a87164db40%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-10-13,1931-10-20,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/huneker-painted-veils/,Painted Veils,,"Huneker, James",1920,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/23%2F81%2F52%2F23815233f1ba41e8a9f199618f087006%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-10-13,1931-10-19,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/kennedy-return-dare/,Return I Dare Not,,"Kennedy, Margaret",1931,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/26%2F73%2Fc4%2F2673c41d1a72495c8231da059cc85000%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-10-14,1931-11-19,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,36,,,https://shakespeareandco.princeton.edu/books/a-e-collected-poems/,Collected Poems,,Γ,1920,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/da%2Fc1%2F0b%2Fdac10b6cc97448048e6edfea2ba2a328%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-10-14,1931-10-21,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/osullivan-dublin-magazine/,Dublin Magazine,"Vol. 5, no. 4, Oct β Dec 1931",,,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/da%2Fc1%2F0b%2Fdac10b6cc97448048e6edfea2ba2a328%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-10-14,1931-11-19,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,36,,,https://shakespeareandco.princeton.edu/books/a-e-national-thoughts-irish/,The National Being: Some Thoughts on an Irish Polity,,Γ,1916,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/da%2Fc1%2F0b%2Fdac10b6cc97448048e6edfea2ba2a328%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-10-14,1931-11-19,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,36,,,https://shakespeareandco.princeton.edu/books/a-e-interpreters-2/,The Interpreters,,Γ,1922,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/da%2Fc1%2F0b%2Fdac10b6cc97448048e6edfea2ba2a328%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-10-14,1931-10-19,https://shakespeareandco.princeton.edu/members/faulkner-norma/,Norma Faulkner,"Faulkner, Norma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/huxley-music-night-stories/,Music at Night and Other Essays,,"Huxley, Aldous",1931,,Lending Library Card,"Norma Faulkner's lending library cards are part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Borrow,1931-10-14,1931-11-19,https://shakespeareandco.princeton.edu/members/rivoallan-anatole/,Anatole Rivoallan,"Rivoallan, Anatole",,,,,,,,,Returned,36,,,https://shakespeareandco.princeton.edu/books/a-e-candle-vision/,The Candle of Vision,,Γ,1918,,Lending Library Card,"Sylvia Beach, Rivoallan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98d0fed1-3f2d-44c3-959b-d817790c1a00/manifest,https://iiif-cloud.princeton.edu/iiif/2/da%2Fc1%2F0b%2Fdac10b6cc97448048e6edfea2ba2a328%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-10-15,1931-10-16,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/van-dine-scarab-murder-case/,The Scarab Murder Case: A Philo Vance Story,,"Van Dine, S. S.",1929,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/5f%2F47%2F3a%2F5f473ac7bddd46a6b4314e22a3b90042%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-10-15,1931-10-20,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/lawrence-virgin-gipsy/,The Virgin and the Gipsy,,"Lawrence, D. H.",1930,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/a6%2Ff2%2Fae%2Fa6f2aea6064a408483604e0d5e53da8a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-10-15,1931-10-20,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/dos-passos-one-mans-initiation/,One Man's Initiation β 1917,,"Dos Passos, John",1917,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/a6%2Ff2%2Fae%2Fa6f2aea6064a408483604e0d5e53da8a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-10-16,1931-10-23,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/mitchison-corn-king-spring/,The Corn King and the Spring Queen,,"Mitchison, Naomi",1931,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/5f%2F47%2F3a%2F5f473ac7bddd46a6b4314e22a3b90042%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1931-10-16,1931-11-16,https://shakespeareandco.princeton.edu/members/faulkner-norma/,Norma Faulkner,"Faulkner, Norma",25.00,,1 month,31,1,,1931-11-05,,,,,FRF,,,,,,,Lending Library Card,"Norma Faulkner's lending library cards are part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Borrow,1931-10-19,1931-11-16,https://shakespeareandco.princeton.edu/members/kennedy-robert/,Robert Kennedy,"Kennedy, Robert",,,,,,,,,Returned,28,,,https://shakespeareandco.princeton.edu/books/barton-sober-truth-collection/,"Sober Truth: A Collection of Nineteenth-Century Episodes, Fantastic, Grotesque and Mysterious",,,1930,,Lending Library Card,"Sylvia Beach, Robert Kennedy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5819877c-8d7f-42cc-a86b-f8161bca822f/manifest,https://iiif.princeton.edu/loris/figgy_prod/c1%2F66%2Fae%2Fc166ae11260b41bb9c722f4364b8014b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-10-19,1931-11-05,https://shakespeareandco.princeton.edu/members/faulkner-norma/,Norma Faulkner,"Faulkner, Norma",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/dreiser-dawn-history/,Dawn: A History of Myself,,"Dreiser, Theodore",1931,,Lending Library Card,"Norma Faulkner's lending library cards are part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Borrow,1931-10-20,1931-11-05,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/douglas-south-wind/,South Wind,,"Douglas, Norman",1917,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/a6%2Ff2%2Fae%2Fa6f2aea6064a408483604e0d5e53da8a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-10-20,1931-11-05,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/french-revolution/,The French Revolution,,,,Unidentified. CΓ©cile de Montricher likely borrowed volumes 1 and 2 of Thomas Carlyle's *French Revolution* (1837).,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/a6%2Ff2%2Fae%2Fa6f2aea6064a408483604e0d5e53da8a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-10-21,1932-01-06,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,77,,,https://shakespeareandco.princeton.edu/books/maupassant-tales-maupassant/,Tales from Maupassant,,"Maupassant, Guy de",1926,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/83%2F1d%2F4c%2F831d4c435a8f4d28af3b71a87164db40%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-10-21,1931-10-26,https://shakespeareandco.princeton.edu/members/weiss-colette/,Colette Weiss,"Weiss, Colette",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/vail-murder-murder/,Murder! Murder!,,"Vail, Laurence",1931,,Lending Library Card,"Sylvia Beach, Mme Collette Weiss Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a67263e9-aea1-4914-a98b-c9086ec72353/manifest,https://iiif.princeton.edu/loris/figgy_prod/ac%2Fdf%2Fbe%2Facdfbe2fe2604170a4a1a9a8c63ef0b5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-10-21,1931-10-29,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/oflaherty-went-russia/,I Went to Russia,,"O'Flaherty, Liam",1931,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/23%2F81%2F52%2F23815233f1ba41e8a9f199618f087006%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-10-21,1931-10-30,https://shakespeareandco.princeton.edu/members/weiss-colette/,Colette Weiss,"Weiss, Colette",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/garnett-grasshoppers-come/,The Grasshoppers Come,,"Garnett, David",1931,,Lending Library Card,"Sylvia Beach, Mme Collette Weiss Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a67263e9-aea1-4914-a98b-c9086ec72353/manifest,https://iiif.princeton.edu/loris/figgy_prod/ac%2Fdf%2Fbe%2Facdfbe2fe2604170a4a1a9a8c63ef0b5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-10-22,1931-11-03,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/sackville-west-passion-spent/,All Passion Spent,,"Sackville-West, Vita",1931,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/fd%2F7b%2F12%2Ffd7b1244659049e989da4cabf155ee96%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-10-22,1931-10-30,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/woolf-waves/,The Waves,,"Woolf, Virginia",1931,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/26%2F73%2Fc4%2F2673c41d1a72495c8231da059cc85000%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-10-23,1932-07-27,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,278,,,https://shakespeareandco.princeton.edu/books/gautier-mademoiselle-maupin/,Mademoiselle de Maupin,,"Gautier, TheΜophile",1899,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/83%2F1d%2F4c%2F831d4c435a8f4d28af3b71a87164db40%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-10-23,1932-07-25,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,276,,,https://shakespeareandco.princeton.edu/books/feuchtwanger-ugly-duchess/,The Ugly Duchess,,"Feuchtwanger, Lion",1927,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/83%2F1d%2F4c%2F831d4c435a8f4d28af3b71a87164db40%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-10-23,1931-10-28,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/mottram-headless-hound/,The Headless Hound,,"Mottram, R. H.",1931,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/5f%2F47%2F3a%2F5f473ac7bddd46a6b4314e22a3b90042%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-10-23,1932-01-06,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,75,,,https://shakespeareandco.princeton.edu/books/romains-death-nobody/,The Death of a Nobody,,"Romains, Jules",1914,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/83%2F1d%2F4c%2F831d4c435a8f4d28af3b71a87164db40%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-10-23,1931-12-28,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,66,,,https://shakespeareandco.princeton.edu/books/sherard-life-work-evil/,"The Life, Work, and Evil Fate of Guy de Maupassant",,"Sherard, Robert Harborough",1926,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/83%2F1d%2F4c%2F831d4c435a8f4d28af3b71a87164db40%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-10-23,1932-07-27,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,278,,,https://shakespeareandco.princeton.edu/books/maupassant-mademoiselle-fifi/,Mademoiselle Fifi,,"Maupassant, Guy de",1882,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/83%2F1d%2F4c%2F831d4c435a8f4d28af3b71a87164db40%2Fintermediate_file/full/full/0/default.jpg
+Generic,1931-10-26,,https://shakespeareandco.princeton.edu/members/ogden/,C. K. Ogden,"Ogden, C. K.",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/ogden-psyche/,Psyche,"no. 45, Jul 1931",,,,Lending Library Card,"Sylvia Beach, CK Ogden Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/38645ba9-dfc2-4361-be02-87c24810801b/manifest,https://iiif.princeton.edu/loris/figgy_prod/18%2F4a%2F9f%2F184a9f4e703247dd93583fcc058b1fd4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-10-26,1931-12-18,https://shakespeareandco.princeton.edu/members/weiss-colette/,Colette Weiss,"Weiss, Colette",,,,,,,,,Returned,53,,,https://shakespeareandco.princeton.edu/books/powys-white-paternoster-stories/,The White Paternoster and Other Stories,,"Powys, Theodore Francis",1930,,Lending Library Card,"Sylvia Beach, Mme Collette Weiss Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a67263e9-aea1-4914-a98b-c9086ec72353/manifest,https://iiif.princeton.edu/loris/figgy_prod/ac%2Fdf%2Fbe%2Facdfbe2fe2604170a4a1a9a8c63ef0b5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-10-26,1935-12,https://shakespeareandco.princeton.edu/members/weiss-colette/,Colette Weiss,"Weiss, Colette",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/pain-exit-eliza/,Exit Eliza,,"Pain, Barry",1912,,Lending Library Card,"Sylvia Beach, Mme Collette Weiss Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a67263e9-aea1-4914-a98b-c9086ec72353/manifest,https://iiif.princeton.edu/loris/figgy_prod/ac%2Fdf%2Fbe%2Facdfbe2fe2604170a4a1a9a8c63ef0b5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Generic,1931-10-26,,https://shakespeareandco.princeton.edu/members/ogden/,C. K. Ogden,"Ogden, C. K.",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/ogden-brighter-basic-examples/,Brighter Basic: Examples of Basic English for Young Persons of Taste and Feeling,,"Ogden, C. K.",1931,,Lending Library Card,"Sylvia Beach, CK Ogden Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/38645ba9-dfc2-4361-be02-87c24810801b/manifest,https://iiif.princeton.edu/loris/figgy_prod/18%2F4a%2F9f%2F184a9f4e703247dd93583fcc058b1fd4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Generic,1931-10-26,,https://shakespeareandco.princeton.edu/members/ogden/,C. K. Ogden,"Ogden, C. K.",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/ogden-basic-english-applied/,Basic English Applied (Science),,"Ogden, C. K.",1931,Published in the Psyche Miniatures series.,Lending Library Card,"Sylvia Beach, CK Ogden Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/38645ba9-dfc2-4361-be02-87c24810801b/manifest,https://iiif.princeton.edu/loris/figgy_prod/18%2F4a%2F9f%2F184a9f4e703247dd93583fcc058b1fd4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-10-26,1931-12-18,https://shakespeareandco.princeton.edu/members/weiss-colette/,Colette Weiss,"Weiss, Colette",,,,,,,,,Returned,53,,,https://shakespeareandco.princeton.edu/books/powys-black-bryony/,Black Bryony,,"Powys, Theodore Francis",1923,,Lending Library Card,"Sylvia Beach, Mme Collette Weiss Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a67263e9-aea1-4914-a98b-c9086ec72353/manifest,https://iiif.princeton.edu/loris/figgy_prod/ac%2Fdf%2Fbe%2Facdfbe2fe2604170a4a1a9a8c63ef0b5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-10-26,1931-11-21,https://shakespeareandco.princeton.edu/members/joyce-giorgio/,Giorgio Joyce,"Joyce, Giorgio",,,,,,,,,Returned,26,,,https://shakespeareandco.princeton.edu/books/fletcher-murder-four-degrees/,Murder in Four Degrees,,"Fletcher, Joseph Smith",1931,,Lending Library Card,"Giorgio Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Generic,1931-10-26,,https://shakespeareandco.princeton.edu/members/ogden/,C. K. Ogden,"Ogden, C. K.",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/ogden-psyche/,Psyche,"no. 45, Jul 1931",,,,Lending Library Card,"Sylvia Beach, CK Ogden Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/38645ba9-dfc2-4361-be02-87c24810801b/manifest,https://iiif.princeton.edu/loris/figgy_prod/18%2F4a%2F9f%2F184a9f4e703247dd93583fcc058b1fd4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-10-26,1931-11-21,https://shakespeareandco.princeton.edu/members/joyce-giorgio/,Giorgio Joyce,"Joyce, Giorgio",,,,,,,,,Returned,26,,,https://shakespeareandco.princeton.edu/books/mackail-square-circle/,The Square Circle,,"Mackail, Denis",1930,,Lending Library Card,"Giorgio Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1931-10-28,1931-11-16,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/mason-tiger/,No Other Tiger,,"Mason, A. E. W.",1927,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/5f%2F47%2F3a%2F5f473ac7bddd46a6b4314e22a3b90042%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1931-10-29,1931-11-29,https://shakespeareandco.princeton.edu/members/savy/,Alice Savy,"Savy, Alice",,50.00,1 month,31,1,,1931-10-29,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Alice Savy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6bff5a62-eced-4f79-a6f3-649cab124b38/manifest,https://iiif.princeton.edu/loris/figgy_prod/92%2Fc2%2F3c%2F92c23cb3aa714f66ad09000a2ccb689f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1931-10-29,1931-10-29,https://shakespeareandco.princeton.edu/members/garano-gonzalez/,Mariella Garano Gonzalez,"Garano Gonzalez, Mariella",,,,,,,,,,,70.00,FRF,https://shakespeareandco.princeton.edu/books/hemingway-farewell-arms/,A Farewell to Arms,,"Hemingway, Ernest",1929,,Lending Library Card,"Sylvia Beach, Mariella Garano Gonzalez Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6667fe2a-89d2-4fea-8749-776d927f8a8c/manifest,https://iiif.princeton.edu/loris/figgy_prod/9d%2Faa%2Fc9%2F9daac92fe9a544a1be0a7f457ce7fd00%2Fintermediate_file.jp2/full/full/0/default.jpg
+Periodical Subscription,1931-10-29,1931-10-29,https://shakespeareandco.princeton.edu/members/garano-gonzalez/,Mariella Garano Gonzalez,"Garano Gonzalez, Mariella",,,,,,,,,,,180.00,FRF,https://shakespeareandco.princeton.edu/books/criterion/,The Criterion,,,,"Renamed *The New Criterion* from January 1926 to January 1927, and *The Monthly Criterion* from May 1927 to March 1928.",Lending Library Card,"Sylvia Beach, Mariella Garano Gonzalez Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6667fe2a-89d2-4fea-8749-776d927f8a8c/manifest,https://iiif.princeton.edu/loris/figgy_prod/9d%2Faa%2Fc9%2F9daac92fe9a544a1be0a7f457ce7fd00%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1931-10-29,1931-10-29,https://shakespeareandco.princeton.edu/members/garano-gonzalez/,Mariella Garano Gonzalez,"Garano Gonzalez, Mariella",,,,,,,,,,,70.00,FRF,https://shakespeareandco.princeton.edu/books/davis-opening-door-novel/,The Opening of a Door: A Novel,,"Davis, George",1931,,Lending Library Card,"Sylvia Beach, Mariella Garano Gonzalez Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6667fe2a-89d2-4fea-8749-776d927f8a8c/manifest,https://iiif.princeton.edu/loris/figgy_prod/9d%2Faa%2Fc9%2F9daac92fe9a544a1be0a7f457ce7fd00%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-10-29,1931-11-04,https://shakespeareandco.princeton.edu/members/savy/,Alice Savy,"Savy, Alice",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/murry-pencillings-little-essays/,Pencillings: Little Essays on Literature,,"Murry, John Middleton",1923,,Lending Library Card,"Sylvia Beach, Alice Savy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6bff5a62-eced-4f79-a6f3-649cab124b38/manifest,https://iiif.princeton.edu/loris/figgy_prod/92%2Fc2%2F3c%2F92c23cb3aa714f66ad09000a2ccb689f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1931-10-29,1931-10-29,https://shakespeareandco.princeton.edu/members/garano-gonzalez/,Mariella Garano Gonzalez,"Garano Gonzalez, Mariella",,,,,,,,,,,70.00,FRF,https://shakespeareandco.princeton.edu/books/faulkner-sanctuary/,Sanctuary,,"Faulkner, William",1931,"Caresse Crosby sold a copy of the Black Sun Press edition of *Sanctuary* to Shakespeare and Company on Feb. 17, 1932.",Lending Library Card,"Sylvia Beach, Mariella Garano Gonzalez Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6667fe2a-89d2-4fea-8749-776d927f8a8c/manifest,https://iiif.princeton.edu/loris/figgy_prod/9d%2Faa%2Fc9%2F9daac92fe9a544a1be0a7f457ce7fd00%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1931-10-29,1931-10-29,https://shakespeareandco.princeton.edu/members/garano-gonzalez/,Mariella Garano Gonzalez,"Garano Gonzalez, Mariella",,,,,,,,,,,53.00,FRF,https://shakespeareandco.princeton.edu/books/criterion/,The Criterion,"Vol. 11, no. 42, Oct 1931",,,"Renamed *The New Criterion* from January 1926 to January 1927, and *The Monthly Criterion* from May 1927 to March 1928.",Lending Library Card,"Sylvia Beach, Mariella Garano Gonzalez Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6667fe2a-89d2-4fea-8749-776d927f8a8c/manifest,https://iiif.princeton.edu/loris/figgy_prod/9d%2Faa%2Fc9%2F9daac92fe9a544a1be0a7f457ce7fd00%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1931-10-29,1931-10-29,https://shakespeareandco.princeton.edu/members/garano-gonzalez/,Mariella Garano Gonzalez,"Garano Gonzalez, Mariella",,,,,,,,,,,12.50,FRF,https://shakespeareandco.princeton.edu/books/woolf-mrs-dalloway/,Mrs. Dalloway,,"Woolf, Virginia",1925,,Lending Library Card,"Sylvia Beach, Mariella Garano Gonzalez Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6667fe2a-89d2-4fea-8749-776d927f8a8c/manifest,https://iiif.princeton.edu/loris/figgy_prod/9d%2Faa%2Fc9%2F9daac92fe9a544a1be0a7f457ce7fd00%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1931-10-29,1931-10-29,https://shakespeareandco.princeton.edu/members/garano-gonzalez/,Mariella Garano Gonzalez,"Garano Gonzalez, Mariella",,,,,,,,,,,8.00,FRF,https://shakespeareandco.princeton.edu/books/lawrence-pornography-obscenity/,Pornography and Obscenity,,"Lawrence, D. H.",1929,,Lending Library Card,"Sylvia Beach, Mariella Garano Gonzalez Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6667fe2a-89d2-4fea-8749-776d927f8a8c/manifest,https://iiif.princeton.edu/loris/figgy_prod/9d%2Faa%2Fc9%2F9daac92fe9a544a1be0a7f457ce7fd00%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1931-10-29,1931-10-29,https://shakespeareandco.princeton.edu/members/garano-gonzalez/,Mariella Garano Gonzalez,"Garano Gonzalez, Mariella",,,,,,,,,,,24.50,FRF,https://shakespeareandco.princeton.edu/books/mansfield-garden-party-stories/,The Garden Party and Other Stories,,"Mansfield, Katherine",1922,,Lending Library Card,"Sylvia Beach, Mariella Garano Gonzalez Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6667fe2a-89d2-4fea-8749-776d927f8a8c/manifest,https://iiif.princeton.edu/loris/figgy_prod/9d%2Faa%2Fc9%2F9daac92fe9a544a1be0a7f457ce7fd00%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1931-10-29,1931-10-29,https://shakespeareandco.princeton.edu/members/garano-gonzalez/,Mariella Garano Gonzalez,"Garano Gonzalez, Mariella",,,,,,,,,,,50.00,FRF,https://shakespeareandco.princeton.edu/books/huxley-proper-studies/,Proper Studies: The Proper Study of Mankind Is Man,,"Huxley, Aldous",1927,,Lending Library Card,"Sylvia Beach, Mariella Garano Gonzalez Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6667fe2a-89d2-4fea-8749-776d927f8a8c/manifest,https://iiif.princeton.edu/loris/figgy_prod/9d%2Faa%2Fc9%2F9daac92fe9a544a1be0a7f457ce7fd00%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-10-30,1931-11-04,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/huxley-music-night-stories/,Music at Night and Other Essays,,"Huxley, Aldous",1931,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/52%2F2d%2Fa8%2F522da875457e4f16b24299fceb079f2d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-10-30,,https://shakespeareandco.princeton.edu/members/weiss-colette/,Colette Weiss,"Weiss, Colette",,,,,,,,,Bought,,,,https://shakespeareandco.princeton.edu/books/lewisohn-case-mr-crump/,The Case of Mr. Crump,,"Lewisohn, Ludwig",1926,,Lending Library Card,"Sylvia Beach, Mme Collette Weiss Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a67263e9-aea1-4914-a98b-c9086ec72353/manifest,https://iiif.princeton.edu/loris/figgy_prod/ac%2Fdf%2Fbe%2Facdfbe2fe2604170a4a1a9a8c63ef0b5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-10-30,1931-11-09,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/sedgwick-dark-hester/,Dark Hester,,"Sedgwick, Anne Douglas",1929,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/26%2F73%2Fc4%2F2673c41d1a72495c8231da059cc85000%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1931-10-30,1931-11-30,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,1 month,31,1,,1931-10-30,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/52%2F2d%2Fa8%2F522da875457e4f16b24299fceb079f2d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-10-30,1931-11-07,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/faulkner-sanctuary/,Sanctuary,,"Faulkner, William",1931,"Caresse Crosby sold a copy of the Black Sun Press edition of *Sanctuary* to Shakespeare and Company on Feb. 17, 1932.",Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/23%2F81%2F52%2F23815233f1ba41e8a9f199618f087006%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-10-31,1932-01-06,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,67,,,https://shakespeareandco.princeton.edu/books/chamson-road/,The Road,,"Chamson, AndrΓ©",1929,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/83%2F1d%2F4c%2F831d4c435a8f4d28af3b71a87164db40%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-10-31,1932-01-06,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,67,,,https://shakespeareandco.princeton.edu/books/kivi-seven-brothers/,Seven Brothers,,"Kivi, Aleksis",1929,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/83%2F1d%2F4c%2F831d4c435a8f4d28af3b71a87164db40%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-10-31,1932-07-25,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,268,,,https://shakespeareandco.princeton.edu/books/cocteau-thomas-impostor/,Thomas the Impostor,,"Cocteau, Jean",1925,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/83%2F1d%2F4c%2F831d4c435a8f4d28af3b71a87164db40%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1931-11-01,1932-03-01,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,4 months,121,2,,1931-12-12,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/b4%2Fa0%2F50%2Fb4a05048ffef47afa61a806652e662da%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-11-03,1931-11-06,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/woolf-waves/,The Waves,,"Woolf, Virginia",1931,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/fd%2F7b%2F12%2Ffd7b1244659049e989da4cabf155ee96%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-11-04,1931-11-16,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/russell-scientific-outlook/,The Scientific Outlook,,"Russell, Bertrand",1931,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/52%2F2d%2Fa8%2F522da875457e4f16b24299fceb079f2d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-11-04,1931-11-12,https://shakespeareandco.princeton.edu/members/savy/,Alice Savy,"Savy, Alice",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/mansfield-garden-party-stories/,The Garden Party and Other Stories,,"Mansfield, Katherine",1922,,Lending Library Card,"Sylvia Beach, Alice Savy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6bff5a62-eced-4f79-a6f3-649cab124b38/manifest,https://iiif.princeton.edu/loris/figgy_prod/92%2Fc2%2F3c%2F92c23cb3aa714f66ad09000a2ccb689f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-11-05,1931-11-27,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/wharton-certain-people-short/,Certain People: Short Stories,,"Wharton, Edith",1930,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2Fe8%2Ffe%2F21e8fe9e0f30440d9c250f4758733d8a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-11-05,1931-11-27,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/stephens-charwomans-daughter/,The Charwoman's Daughter,,"Stephens, James",1912,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2Fe8%2Ffe%2F21e8fe9e0f30440d9c250f4758733d8a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-11-05,1931-11-12,https://shakespeareandco.princeton.edu/members/faulkner-norma/,Norma Faulkner,"Faulkner, Norma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/linklater-juan-america/,Juan in America,,"Linklater, Eric",1931,,Lending Library Card,"Norma Faulkner's lending library cards are part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Borrow,1931-11-06,1931-11-13,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/stern-shortest-night/,The Shortest Night,,"Stern, G. B.",1931,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/fd%2F7b%2F12%2Ffd7b1244659049e989da4cabf155ee96%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1931-11-07,1931-12-07,https://shakespeareandco.princeton.edu/members/weiss-colette/,Colette Weiss,"Weiss, Colette",40.00,,1 month,30,2,,1931-10-07,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Mme Collette Weiss Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a67263e9-aea1-4914-a98b-c9086ec72353/manifest,https://iiif.princeton.edu/loris/figgy_prod/ac%2Fdf%2Fbe%2Facdfbe2fe2604170a4a1a9a8c63ef0b5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-11-07,1931-11-23,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/woolf-waves/,The Waves,,"Woolf, Virginia",1931,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/49%2Fae%2F06%2F49ae0634356146b98863a2af48ccd198%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-11-09,1931-11-16,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/seabrook-jungle-ways/,Jungle Ways,,"Seabrook, William",1931,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/26%2F73%2Fc4%2F2673c41d1a72495c8231da059cc85000%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-11-12,1931-11-16,https://shakespeareandco.princeton.edu/members/faulkner-norma/,Norma Faulkner,"Faulkner, Norma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/hanley-boy/,Boy,,"Hanley, James",1931,,Lending Library Card,"Norma Faulkner's lending library cards are part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Borrow,1931-11-12,1931-11-27,https://shakespeareandco.princeton.edu/members/savy/,Alice Savy,"Savy, Alice",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/lawrence-sons-lovers/,Sons and Lovers,,"Lawrence, D. H.",1913,,Lending Library Card,"Sylvia Beach, Alice Savy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6bff5a62-eced-4f79-a6f3-649cab124b38/manifest,https://iiif.princeton.edu/loris/figgy_prod/92%2Fc2%2F3c%2F92c23cb3aa714f66ad09000a2ccb689f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1931-11-13,1932-02-13,https://shakespeareandco.princeton.edu/members/tritton/,A. Tritton,"Tritton, A.",65.00,50.00,3 months,92,1,,1931-11-13,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Miss A. Tritton Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0eb2f199-cd31-4332-a691-e6e0194cf4a6/manifest,https://iiif.princeton.edu/loris/figgy_prod/8d%2Fbe%2Fb2%2F8dbeb2e592b74163bf5398912ddeb3bc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1931-11-13,1931-11-13,https://shakespeareandco.princeton.edu/members/robertson-william-cowper/,William Cowper Robertson / Rev. W. Cowper Robertson,"Robertson, William Cowper",,,,,,,,,,,15.00,FRF,https://shakespeareandco.princeton.edu/books/gissing-veranilda/,Veranilda,,"Gissing, George Robert",1904,,Lending Library Card,"Sylvia Beach, W. Cowper Robertson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/33769c35-cdbb-47ab-b0b9-ca17c85798d6/manifest,https://iiif.princeton.edu/loris/figgy_prod/e5%2F5f%2F34%2Fe55f347dfb534162a1de11248ea88470%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-11-13,1931-11-17,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/davis-opening-door-novel/,The Opening of a Door: A Novel,,"Davis, George",1931,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/fd%2F7b%2F12%2Ffd7b1244659049e989da4cabf155ee96%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-11-13,1931-11-19,https://shakespeareandco.princeton.edu/members/tritton/,A. Tritton,"Tritton, A.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/huxley-music-night-stories/,Music at Night and Other Essays,,"Huxley, Aldous",1931,,Lending Library Card,"Sylvia Beach, Miss A. Tritton Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0eb2f199-cd31-4332-a691-e6e0194cf4a6/manifest,https://iiif.princeton.edu/loris/figgy_prod/8d%2Fbe%2Fb2%2F8dbeb2e592b74163bf5398912ddeb3bc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1931-11-13,1931-11-13,https://shakespeareandco.princeton.edu/members/robertson-william-cowper/,William Cowper Robertson / Rev. W. Cowper Robertson,"Robertson, William Cowper",,,,,,,,,,,15.00,FRF,https://shakespeareandco.princeton.edu/books/crabbe-poems-george-crabbe/,The Poems of George Crabbe: A Selection,,"Crabbe, George",1899,,Lending Library Card,"Sylvia Beach, W. Cowper Robertson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/33769c35-cdbb-47ab-b0b9-ca17c85798d6/manifest,https://iiif.princeton.edu/loris/figgy_prod/e2%2F5b%2F81%2Fe25b8195e28345a79276895fb81ade3e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1931-11-13,1931-11-13,https://shakespeareandco.princeton.edu/members/robertson-william-cowper/,William Cowper Robertson / Rev. W. Cowper Robertson,"Robertson, William Cowper",,,,,,,,,,,36.00,FRF,https://shakespeareandco.princeton.edu/books/eliot-lancelot-andrewes-essays/,For Lancelot Andrewes: Essays on Style and Order,,"Eliot, T. S.",1928,,Lending Library Card,"Sylvia Beach, W. Cowper Robertson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/33769c35-cdbb-47ab-b0b9-ca17c85798d6/manifest,https://iiif.princeton.edu/loris/figgy_prod/e2%2F5b%2F81%2Fe25b8195e28345a79276895fb81ade3e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Generic,1931-11-14,,https://shakespeareandco.princeton.edu/members/mcalmon-robert/,Robert McAlmon,"McAlmon, Robert",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/macleod-morada/,The Morada,"Vol. 2, no. 5, Winter 1931",,,,Lending Library Card,"Sylvia Beach, Robert McAlmon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/889ff3f8-b62c-42f6-8e88-1dd95434b2f5/manifest,https://iiif-cloud.princeton.edu/iiif/2/4c%2F23%2Fc4%2F4c23c4b542454bcabb9f9bd4d1dab15d%2Fintermediate_file/full/full/0/default.jpg
+Generic,1931-11-14,,https://shakespeareandco.princeton.edu/members/mcalmon-robert/,Robert McAlmon,"McAlmon, Robert",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/prins-front/,Front,"no. 2, 1931",,,,Lending Library Card,"Sylvia Beach, Robert McAlmon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/889ff3f8-b62c-42f6-8e88-1dd95434b2f5/manifest,https://iiif-cloud.princeton.edu/iiif/2/4c%2F23%2Fc4%2F4c23c4b542454bcabb9f9bd4d1dab15d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-11-16,1931-11-25,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/lewis-time-western-man/,Time and Western Man,,"Lewis, Wyndham",1927,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/52%2F2d%2Fa8%2F522da875457e4f16b24299fceb079f2d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-11-16,1931-11-21,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/wallace-gunner/,The Gunner,,"Wallace, Edgar",1928,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/5f%2F47%2F3a%2F5f473ac7bddd46a6b4314e22a3b90042%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-11-16,1931-11-26,https://shakespeareandco.princeton.edu/members/kennedy-robert/,Robert Kennedy,"Kennedy, Robert",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/faulkner-sanctuary/,Sanctuary,,"Faulkner, William",1931,"Caresse Crosby sold a copy of the Black Sun Press edition of *Sanctuary* to Shakespeare and Company on Feb. 17, 1932.",Lending Library Card,"Sylvia Beach, Robert Kennedy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5819877c-8d7f-42cc-a86b-f8161bca822f/manifest,https://iiif.princeton.edu/loris/figgy_prod/c1%2F66%2Fae%2Fc166ae11260b41bb9c722f4364b8014b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1931-11-16,1931-12-16,https://shakespeareandco.princeton.edu/members/bradley-jane/,Jane Bradley,"Bradley, Jane",,,1 month,30,,,1931-11-16,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1931-11-16,1932-02-06,https://shakespeareandco.princeton.edu/members/ernst-abel/,Ernst Otto Abel,"Abel, Ernst Otto",,,"2 months, 21 days",82,,,1931-11-16,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1931-11-16,1932-02-16,https://shakespeareandco.princeton.edu/members/faulkner-norma/,Norma Faulkner,"Faulkner, Norma",65.00,,3 months,92,1,,1931-11-17,,,,,FRF,,,,,,,Lending Library Card,"Norma Faulkner's lending library cards are part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Borrow,1931-11-16,1931-11-17,https://shakespeareandco.princeton.edu/members/faulkner-norma/,Norma Faulkner,"Faulkner, Norma",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/galsworthy-maid-waiting/,Maid in Waiting (End of Chapter),,"Galsworthy, John",1931,,Lending Library Card,"Norma Faulkner's lending library cards are part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Borrow,1931-11-16,1931-11-23,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/maugham-first-person-singular/,First Person Singular,,"Maugham, W. Somerset",1931,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/26%2F73%2Fc4%2F2673c41d1a72495c8231da059cc85000%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-11-17,1931-11-20,https://shakespeareandco.princeton.edu/members/faulkner-norma/,Norma Faulkner,"Faulkner, Norma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/bennett-imperial-palace/,Imperial Palace,,"Bennett, Arnold",1930,,Lending Library Card,"Norma Faulkner's lending library cards are part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Borrow,1931-11-17,1931-11-24,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/millin-sons-mrs-aab/,The Sons of Mrs. Aab,,"Millin, Sarah Gertrude",1931,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/fd%2F7b%2F12%2Ffd7b1244659049e989da4cabf155ee96%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-11-19,1931-11-23,https://shakespeareandco.princeton.edu/members/tritton/,A. Tritton,"Tritton, A.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/gandhi-mahatma-gandhi-story/,Mahatma Gandhi: His Own Story,,"GΓ‘ndhi, MahΓ‘tma",1931,,Lending Library Card,"Sylvia Beach, Miss A. Tritton Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0eb2f199-cd31-4332-a691-e6e0194cf4a6/manifest,https://iiif.princeton.edu/loris/figgy_prod/8d%2Fbe%2Fb2%2F8dbeb2e592b74163bf5398912ddeb3bc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-11-19,1931-11-25,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/olivier-dwarfs-blood/,Dwarf's Blood,,"Olivier, Edith",1931,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/5f%2F47%2F3a%2F5f473ac7bddd46a6b4314e22a3b90042%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-11-20,1931-11-23,https://shakespeareandco.princeton.edu/members/faulkner-norma/,Norma Faulkner,"Faulkner, Norma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/ellis-task-social-hygiene/,The Task of Social Hygiene,,"Ellis, Havelock",1912,,Lending Library Card,"Norma Faulkner's lending library cards are part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Borrow,1931-11-21,1931-11-25,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/summers-history-witchcraft-demonology/,A History of Witchcraft and Demonology,,"Summers, Montague",1926,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/5f%2F47%2F3a%2F5f473ac7bddd46a6b4314e22a3b90042%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-11-23,1931-11-30,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/lawrence-escaped-cock/,The Escaped Cock / The Man Who Died,,"Lawrence, D. H.",1929,The Caresse Crosby activities are for the Black Sun Press edition of *The Escaped Cock.*,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/26%2F73%2Fc4%2F2673c41d1a72495c8231da059cc85000%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-11-23,1931-12-04,https://shakespeareandco.princeton.edu/members/lacroix-e/,E. Lacroix / Mme Pierre Lacroix,"Lacroix, E.",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/sitwell-far-home-stories/,"Far from My Home: Stories, Long and Short",,"Sitwell, Sacheverell",1931,,Lending Library Card,"Sylvia Beach, E. Lacroix Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a3126271-bd77-4c33-96de-87cd20c4216a/manifest,https://iiif-cloud.princeton.edu/iiif/2/49%2Fae%2F06%2F49ae0634356146b98863a2af48ccd198%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-11-23,1931-11-24,https://shakespeareandco.princeton.edu/members/tritton/,A. Tritton,"Tritton, A.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/collins-doctor-looks-life/,The Doctor Looks at Life and Death,,"Collins, Joseph",1931,,Lending Library Card,"Sylvia Beach, Miss A. Tritton Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0eb2f199-cd31-4332-a691-e6e0194cf4a6/manifest,https://iiif.princeton.edu/loris/figgy_prod/8d%2Fbe%2Fb2%2F8dbeb2e592b74163bf5398912ddeb3bc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-11-23,1931-11-24,https://shakespeareandco.princeton.edu/members/faulkner-norma/,Norma Faulkner,"Faulkner, Norma",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/bennett-arnold-bennett/,My Arnold Bennett,,"Bennett, Marguerite",1931,,Lending Library Card,"Norma Faulkner's lending library cards are part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Borrow,1931-11-24,1931-11-27,https://shakespeareandco.princeton.edu/members/faulkner-norma/,Norma Faulkner,"Faulkner, Norma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/mackenzie-street/,Our Street,,"Mackenzie, Compton",1931,,Lending Library Card,"Norma Faulkner's lending library cards are part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Borrow,1931-11-24,1931-11-27,https://shakespeareandco.princeton.edu/members/tritton/,A. Tritton,"Tritton, A.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/dane-bill-divorcement/,A Bill of Divorcement,,"Dane, Clemence",1921,,Lending Library Card,"Sylvia Beach, Miss A. Tritton Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0eb2f199-cd31-4332-a691-e6e0194cf4a6/manifest,https://iiif.princeton.edu/loris/figgy_prod/8d%2Fbe%2Fb2%2F8dbeb2e592b74163bf5398912ddeb3bc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-11-24,1931-11-26,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/bennett-arnold-bennett/,My Arnold Bennett,,"Bennett, Marguerite",1931,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/fd%2F7b%2F12%2Ffd7b1244659049e989da4cabf155ee96%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-11-25,1931-12-11,https://shakespeareandco.princeton.edu/members/joyce-giorgio/,Giorgio Joyce,"Joyce, Giorgio",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/sayers-great-short-stories/,"Great Short Stories of Detection, Mystery and Horror",,,1928,,Lending Library Card,"Giorgio Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1931-11-25,1931-12-11,https://shakespeareandco.princeton.edu/members/joyce-giorgio/,Giorgio Joyce,"Joyce, Giorgio",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/trites-miramar/,Miramar,,"Trites, W. B.",1931,,Lending Library Card,"Giorgio Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1931-11-25,1931-12-11,https://shakespeareandco.princeton.edu/members/joyce-giorgio/,Giorgio Joyce,"Joyce, Giorgio",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/wallace-white-face/,White Face,,"Wallace, Edgar",1930,,Lending Library Card,"Giorgio Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1931-11-25,1931-12-22,https://shakespeareandco.princeton.edu/members/crosby-caresse/,Caresse Crosby,"Crosby, Caresse",,,,,,,,,Returned,27,,,https://shakespeareandco.princeton.edu/books/stephens-etched-moonlight/,Etched in Moonlight,,"Stephens, James",1928,,Lending Library Card,"Sylvia Beach, Caresse Crosby Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d66901cf-3231-4dd3-bb55-d9f5ac9b3a07/manifest,https://iiif-cloud.princeton.edu/iiif/2/a3%2F95%2F1e%2Fa3951e2aae4d4045a6c9827211e0a5e7%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-11-25,1931-12-11,https://shakespeareandco.princeton.edu/members/joyce-giorgio/,Giorgio Joyce,"Joyce, Giorgio",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/van-dine-canary-murder-case/,The Canary Murder Case,,"Van Dine, S. S.",1927,,Lending Library Card,"Giorgio Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1931-11-25,1931-12-11,https://shakespeareandco.princeton.edu/members/joyce-giorgio/,Giorgio Joyce,"Joyce, Giorgio",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/trask-dead-men-tell/,Dead Men Do Tell,,"Trask, Keith",1931,,Lending Library Card,"Giorgio Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1931-11-25,1931-11-28,https://shakespeareandco.princeton.edu/members/michaelides-l/,Mme L. Michaelides,"Michaelides, Mme L.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/faulkner-sound-fury/,The Sound and the Fury,,"Faulkner, William",1929,,Lending Library Card,"Sylvia Beach, Madame L. Michaelides Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/12de5eb4-662e-4b27-853b-9f9b82431393/manifest,https://iiif.princeton.edu/loris/figgy_prod/52%2F2d%2Fa8%2F522da875457e4f16b24299fceb079f2d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-11-25,1931-11-30,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/asquith-black-cap-new/,The Black Cap: New Stories of Murder and Mystery,,,1927,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/5f%2F47%2F3a%2F5f473ac7bddd46a6b4314e22a3b90042%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1931-11-25,,https://shakespeareandco.princeton.edu/members/crosby-caresse/,Caresse Crosby,"Crosby, Caresse",,,,,,,1931-11-25,,,,,FRF,,,,,,,Lending Library Card;Address Book,"Sylvia Beach, Caresse Crosby Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d66901cf-3231-4dd3-bb55-d9f5ac9b3a07/manifest;,
+Borrow,1931-11-26,1931-12-04,https://shakespeareandco.princeton.edu/members/kennedy-robert/,Robert Kennedy,"Kennedy, Robert",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/huxley-point-counter-point/,Point Counter Point,2 vols.,"Huxley, Aldous",1928,,Lending Library Card,"Sylvia Beach, Robert Kennedy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5819877c-8d7f-42cc-a86b-f8161bca822f/manifest,https://iiif.princeton.edu/loris/figgy_prod/c1%2F66%2Fae%2Fc166ae11260b41bb9c722f4364b8014b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-11-27,1931-12-04,https://shakespeareandco.princeton.edu/members/faulkner-norma/,Norma Faulkner,"Faulkner, Norma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/undset-wild-orchid/,The Wild Orchid,,"Undset, Sigrid",1931,,Lending Library Card,"Norma Faulkner's lending library cards are part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Borrow,1931-11-27,1931-12-12,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/plays-near-far/,Plays of Near and Far,,"Dunsany, Lord",1923,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2Fe8%2Ffe%2F21e8fe9e0f30440d9c250f4758733d8a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-11-27,1931-12-04,https://shakespeareandco.princeton.edu/members/tritton/,A. Tritton,"Tritton, A.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/huxley-africa-view/,Africa View,,"Huxley, Julian",1931,,Lending Library Card,"Sylvia Beach, Miss A. Tritton Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0eb2f199-cd31-4332-a691-e6e0194cf4a6/manifest,https://iiif.princeton.edu/loris/figgy_prod/8d%2Fbe%2Fb2%2F8dbeb2e592b74163bf5398912ddeb3bc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-11-27,1931-12-12,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/clouston-lunatic-large-novel/,The Lunatic at Large: A Novel,,"Clouston, J. Storer",1899,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2Fe8%2Ffe%2F21e8fe9e0f30440d9c250f4758733d8a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-11-27,1931-12-12,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/cummings-enormous-room/,The Enormous Room,,"Cummings, E. E.",1922,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2Fe8%2Ffe%2F21e8fe9e0f30440d9c250f4758733d8a%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1931-11-30,1931-12-10,https://shakespeareandco.princeton.edu/members/bridgman-marian/,Marian Bridgman,"Bridgman, Marian",,,10 days,10,,,1931-11-30,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1931-11-30,1931-12-12,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/hichens-first-lady-brendon/,The First Lady Brendon,,"Hichens, Robert Smythe",1931,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/26%2F73%2Fc4%2F2673c41d1a72495c8231da059cc85000%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-11-30,1931-12-01,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/collins-doctor-looks-life/,The Doctor Looks at Life and Death,,"Collins, Joseph",1931,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/5f%2F47%2F3a%2F5f473ac7bddd46a6b4314e22a3b90042%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-12-01,1931-12-10,https://shakespeareandco.princeton.edu/members/kennedy-robert/,Robert Kennedy,"Kennedy, Robert",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/oneill-strange-interlude/,Strange Interlude,,"O'Neill, Eugene",1928,,Lending Library Card,"Sylvia Beach, Robert Kennedy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5819877c-8d7f-42cc-a86b-f8161bca822f/manifest,https://iiif.princeton.edu/loris/figgy_prod/c1%2F66%2Fae%2Fc166ae11260b41bb9c722f4364b8014b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1931-12-01,1932-01-01,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",25.00,,1 month,31,1,,1931-12-01,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/7e%2F7f%2F7d%2F7e7f7d1b9e2240a888669a61feab6532%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-12-01,1931-12-08,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/mackenzie-street/,Our Street,,"Mackenzie, Compton",1931,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/fd%2F7b%2F12%2Ffd7b1244659049e989da4cabf155ee96%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-12-01,1931-12-03,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/fletcher-green-rope/,The Green Rope,,"Fletcher, Joseph Smith",1927,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/5f%2F47%2F3a%2F5f473ac7bddd46a6b4314e22a3b90042%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-12-01,1931-12-03,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/powys-unclay/,Unclay,,"Powys, Theodore Francis",1931,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/7e%2F7f%2F7d%2F7e7f7d1b9e2240a888669a61feab6532%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-12-03,1931-12-09,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/faulkner-sound-fury/,The Sound and the Fury,,"Faulkner, William",1929,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/5f%2F47%2F3a%2F5f473ac7bddd46a6b4314e22a3b90042%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-12-03,1931-12-04,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/de-la-mare-edge-short-stories/,On the Edge: Short Stories,,"De la Mare, Walter",1930,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/7e%2F7f%2F7d%2F7e7f7d1b9e2240a888669a61feab6532%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-12-04,1931-12-07,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/hoult-apartments-let/,Apartments to Let,,"Hoult, Norah",1931,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/7e%2F7f%2F7d%2F7e7f7d1b9e2240a888669a61feab6532%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-12-04,1931-12-21,https://shakespeareandco.princeton.edu/members/faulkner-norma/,Norma Faulkner,"Faulkner, Norma",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/harris-bernard-shaw/,Bernard Shaw: An Unauthorized Biography Based on Firsthand Information,,"Harris, Frank",1931,,Lending Library Card,"Norma Faulkner's lending library cards are part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Borrow,1931-12-04,1931-12-14,https://shakespeareandco.princeton.edu/members/tritton/,A. Tritton,"Tritton, A.",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/mitchison-corn-king-spring/,The Corn King and the Spring Queen,,"Mitchison, Naomi",1931,,Lending Library Card,"Sylvia Beach, Miss A. Tritton Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0eb2f199-cd31-4332-a691-e6e0194cf4a6/manifest,https://iiif.princeton.edu/loris/figgy_prod/8d%2Fbe%2Fb2%2F8dbeb2e592b74163bf5398912ddeb3bc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-12-06,1932-01-18,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,43,,,https://shakespeareandco.princeton.edu/books/kreymborg-second-american-caravan/,The Second American Caravan: A Yearbook of American Literature,,,1928,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2Fe8%2Ffe%2F21e8fe9e0f30440d9c250f4758733d8a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-12-07,1931-12-09,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/van-dine-scarab-murder-case/,The Scarab Murder Case: A Philo Vance Story,,"Van Dine, S. S.",1929,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/7e%2F7f%2F7d%2F7e7f7d1b9e2240a888669a61feab6532%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-12-08,1931-12-11,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/kennedy-return-dare/,Return I Dare Not,,"Kennedy, Margaret",1931,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/fd%2F7b%2F12%2Ffd7b1244659049e989da4cabf155ee96%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1931-12-08,1932-03-08,https://shakespeareandco.princeton.edu/members/sperry/,Mrs. Sperry,"Sperry, Mrs.",65.00,50.00,3 months,91,1,,1931-12-08,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Mrs Sperry Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b214a6c1-6d56-48f7-a451-c5fa3f845e0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/6c%2F8b%2F25%2F6c8b2557d24945b4ba2faea1d2e0117c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-12-08,1931-12-09,https://shakespeareandco.princeton.edu/members/sperry/,Mrs. Sperry,"Sperry, Mrs.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/hemingway-men-without-women/,Men without Women,,"Hemingway, Ernest",1927,,Lending Library Card,"Sylvia Beach, Mrs Sperry Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b214a6c1-6d56-48f7-a451-c5fa3f845e0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/6c%2F8b%2F25%2F6c8b2557d24945b4ba2faea1d2e0117c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-12-09,1931-12-11,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/faulkner-13/,These 13,,"Faulkner, William",1931,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/5f%2F47%2F3a%2F5f473ac7bddd46a6b4314e22a3b90042%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-12-09,1931-12-10,https://shakespeareandco.princeton.edu/members/sperry/,Mrs. Sperry,"Sperry, Mrs.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/erskine-experiment-sincerity/,An Experiment in Sincerity,,"Erskine, John",1930,,Lending Library Card,"Sylvia Beach, Mrs Sperry Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b214a6c1-6d56-48f7-a451-c5fa3f845e0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/6c%2F8b%2F25%2F6c8b2557d24945b4ba2faea1d2e0117c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-12-09,1931-12-11,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/mackenzie-street/,Our Street,,"Mackenzie, Compton",1931,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/7e%2F7f%2F7d%2F7e7f7d1b9e2240a888669a61feab6532%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-12-10,1931-12-11,https://shakespeareandco.princeton.edu/members/sperry/,Mrs. Sperry,"Sperry, Mrs.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/huxley-antic-hay/,Antic Hay,,"Huxley, Aldous",1923,,Lending Library Card,"Sylvia Beach, Mrs Sperry Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b214a6c1-6d56-48f7-a451-c5fa3f845e0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/6c%2F8b%2F25%2F6c8b2557d24945b4ba2faea1d2e0117c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-12-11,1931-12-12,https://shakespeareandco.princeton.edu/members/sperry/,Mrs. Sperry,"Sperry, Mrs.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/mackenzie-rich-relatives/,Rich Relatives,,"Mackenzie, Compton",1921,,Lending Library Card,"Sylvia Beach, Mrs Sperry Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b214a6c1-6d56-48f7-a451-c5fa3f845e0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/6c%2F8b%2F25%2F6c8b2557d24945b4ba2faea1d2e0117c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-12-11,1931-12-14,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/kennedy-return-dare/,Return I Dare Not,,"Kennedy, Margaret",1931,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/7e%2F7f%2F7d%2F7e7f7d1b9e2240a888669a61feab6532%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-12-11,1931-12-21,https://shakespeareandco.princeton.edu/members/kennedy-robert/,Robert Kennedy,"Kennedy, Robert",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/faulkner-13/,These 13,,"Faulkner, William",1931,,Lending Library Card,"Sylvia Beach, Robert Kennedy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5819877c-8d7f-42cc-a86b-f8161bca822f/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F74%2Ffe%2Fb474fec7d360422b8c92db20f203ede2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-12-11,1931-12-21,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/crowley-diary-drug-fiend/,The Diary of a Drug Fiend,,"Crowley, Aleister",1922,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/5f%2F47%2F3a%2F5f473ac7bddd46a6b4314e22a3b90042%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-12-11,1931-12-18,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/hoult-apartments-let/,Apartments to Let,,"Hoult, Norah",1931,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/fd%2F7b%2F12%2Ffd7b1244659049e989da4cabf155ee96%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-12-12,1931-12-22,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/douglas-alone/,Alone,,"Douglas, Norman",1921,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2Fe8%2Ffe%2F21e8fe9e0f30440d9c250f4758733d8a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-12-12,1931-12-24,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/dreiser-hey-rub-dub/,Hey Rub-a-Dub-Dub: A Book of the Mystery and Wonder and Terror of Life,,"Dreiser, Theodore",1920,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/b4%2Fa0%2F50%2Fb4a05048ffef47afa61a806652e662da%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1931-12-12,1932-03-12,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",200.00,,3 months,91,3,,1931-12-12,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2Fe8%2Ffe%2F21e8fe9e0f30440d9c250f4758733d8a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-12-12,1931-12-18,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/trask-dead-men-tell/,Dead Men Do Tell,,"Trask, Keith",1931,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/26%2F73%2Fc4%2F2673c41d1a72495c8231da059cc85000%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-12-12,1931-12-22,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/dreiser-gallery-women/,A Gallery of Women,,"Dreiser, Theodore",1929,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2Fe8%2Ffe%2F21e8fe9e0f30440d9c250f4758733d8a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-12-12,1931-12-16,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/clouston-count-bunker/,Count Bunker,,"Clouston, J. Storer",1906,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2Fe8%2Ffe%2F21e8fe9e0f30440d9c250f4758733d8a%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1931-12-12,1932-03-12,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,3 months,91,1,,1932-03-08,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/5f%2F47%2F3a%2F5f473ac7bddd46a6b4314e22a3b90042%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-12-12,1931-12-24,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/galsworthy-maid-waiting/,Maid in Waiting (End of Chapter),,"Galsworthy, John",1931,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/b4%2Fa0%2F50%2Fb4a05048ffef47afa61a806652e662da%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-12-12,1931-12-17,https://shakespeareandco.princeton.edu/members/sperry/,Mrs. Sperry,"Sperry, Mrs.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/fisher-deepening-stream/,The Deepening Stream,,"Fisher, Dorothy Canfield",1930,,Lending Library Card,"Sylvia Beach, Mrs Sperry Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b214a6c1-6d56-48f7-a451-c5fa3f845e0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/6c%2F8b%2F25%2F6c8b2557d24945b4ba2faea1d2e0117c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-12-14,1931-12-17,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/richardson-dawns-left-hand/,Dawn's Left Hand (Pilgrimage 10),,"Richardson, Dorothy M.",1931,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/7e%2F7f%2F7d%2F7e7f7d1b9e2240a888669a61feab6532%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-12-14,1931-12-18,https://shakespeareandco.princeton.edu/members/tritton/,A. Tritton,"Tritton, A.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/sandro-botticelli/,Sandro Botticelli,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Miss A. Tritton Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0eb2f199-cd31-4332-a691-e6e0194cf4a6/manifest,https://iiif.princeton.edu/loris/figgy_prod/8d%2Fbe%2Fb2%2F8dbeb2e592b74163bf5398912ddeb3bc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-12-16,1931-12-22,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/faulkner-sanctuary/,Sanctuary,,"Faulkner, William",1931,"Caresse Crosby sold a copy of the Black Sun Press edition of *Sanctuary* to Shakespeare and Company on Feb. 17, 1932.",Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2Fe8%2Ffe%2F21e8fe9e0f30440d9c250f4758733d8a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-12-16,1932-01-18,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,33,,,https://shakespeareandco.princeton.edu/books/paul-gaugin/,Paul Gauguin,,,,"Unidentified. John Gould Fletcher's *Paul Gauguin: His Life and Art* (1921), Robert Rey's *Gauguin* (1924), or Beril Becker's *Paul Gauguin: The Calm Madman* (1931), etc.",Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2Fe8%2Ffe%2F21e8fe9e0f30440d9c250f4758733d8a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-12-16,1932-01-18,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,33,,,https://shakespeareandco.princeton.edu/books/stephens-irish-fairy-tales/,Irish Fairy Tales,,"Stephens, James",1920,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2Fe8%2Ffe%2F21e8fe9e0f30440d9c250f4758733d8a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-12-17,1931-12-21,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/richardson-tunnel-pilgrimage-4/,The Tunnel (Pilgrimage 4),,"Richardson, Dorothy M.",1919,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/7e%2F7f%2F7d%2F7e7f7d1b9e2240a888669a61feab6532%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-12-17,1931-12-18,https://shakespeareandco.princeton.edu/members/sperry/,Mrs. Sperry,"Sperry, Mrs.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/mackenzie-three-couriers/,The Three Couriers,,"Mackenzie, Compton",1929,,Lending Library Card,"Sylvia Beach, Mrs Sperry Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b214a6c1-6d56-48f7-a451-c5fa3f845e0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/6c%2F8b%2F25%2F6c8b2557d24945b4ba2faea1d2e0117c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-12-17,1932-07-25,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,221,,,https://shakespeareandco.princeton.edu/books/burns-works-robert-burns/,The Works of Robert Burns,,"Burns, Robert",1871,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/83%2F1d%2F4c%2F831d4c435a8f4d28af3b71a87164db40%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-12-17,1932-07-25,https://shakespeareandco.princeton.edu/members/le-gallienne-richard/,Richard Le Gallienne,"Le Gallienne, Richard",,,,,,,,,Returned,221,,,https://shakespeareandco.princeton.edu/books/burns-letters-robert-burns/,The Letters of Robert Burns,,"Burns, Robert",1887,,Lending Library Card,"Sylvia Beach, Richard le Gallienne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e9d37b1a-ff58-45ea-8044-c9bd380eec57/manifest,https://iiif-cloud.princeton.edu/iiif/2/83%2F1d%2F4c%2F831d4c435a8f4d28af3b71a87164db40%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-12-18,1931-12-23,https://shakespeareandco.princeton.edu/members/tritton/,A. Tritton,"Tritton, A.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/ertz-julian-probert/,Julian Probert,,"Ertz, Susan",1931,,Lending Library Card,"Sylvia Beach, Miss A. Tritton Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0eb2f199-cd31-4332-a691-e6e0194cf4a6/manifest,https://iiif.princeton.edu/loris/figgy_prod/8d%2Fbe%2Fb2%2F8dbeb2e592b74163bf5398912ddeb3bc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-12-18,1931-12-24,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/lewisohn-case-mr-crump/,The Case of Mr. Crump,,"Lewisohn, Ludwig",1926,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/fd%2F7b%2F12%2Ffd7b1244659049e989da4cabf155ee96%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-12-18,1932-01-05,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/richardson-dawns-left-hand/,Dawn's Left Hand (Pilgrimage 10),,"Richardson, Dorothy M.",1931,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/26%2F73%2Fc4%2F2673c41d1a72495c8231da059cc85000%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-12-18,1931-12-19,https://shakespeareandco.princeton.edu/members/sperry/,Mrs. Sperry,"Sperry, Mrs.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/mackenzie-heavenly-ladder/,The Heavenly Ladder,,"Mackenzie, Compton",1924,,Lending Library Card,"Sylvia Beach, Mrs Sperry Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b214a6c1-6d56-48f7-a451-c5fa3f845e0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/6c%2F8b%2F25%2F6c8b2557d24945b4ba2faea1d2e0117c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-12-19,1931-12-21,https://shakespeareandco.princeton.edu/members/sperry/,Mrs. Sperry,"Sperry, Mrs.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/mackenzie-fairy-gold/,Fairy Gold,,"Mackenzie, Compton",1926,,Lending Library Card,"Sylvia Beach, Mrs Sperry Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b214a6c1-6d56-48f7-a451-c5fa3f845e0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/6c%2F8b%2F25%2F6c8b2557d24945b4ba2faea1d2e0117c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-12-21,1931-12-23,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/richardson-interim-pilgrimage-5/,Interim (Pilgrimage 5),,"Richardson, Dorothy M.",1920,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/7e%2F7f%2F7d%2F7e7f7d1b9e2240a888669a61feab6532%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-12-21,1932-01-05,https://shakespeareandco.princeton.edu/members/faulkner-norma/,Norma Faulkner,"Faulkner, Norma",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/lewis-apes-god/,The Apes of God,,"Lewis, Wyndham",1930,,Lending Library Card,"Norma Faulkner's lending library cards are part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Borrow,1931-12-21,1932-01-04,https://shakespeareandco.princeton.edu/members/kennedy-robert/,Robert Kennedy,"Kennedy, Robert",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/brinton-golden-age-medici/,"Golden Age of the Medici (Cosimo, Piero, Lorenzo de' Medici) 1434 β 1494",,"Brinton, Selwyn",1925,,Lending Library Card,"Sylvia Beach, Robert Kennedy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5819877c-8d7f-42cc-a86b-f8161bca822f/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F74%2Ffe%2Fb474fec7d360422b8c92db20f203ede2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-12-21,1931-12-22,https://shakespeareandco.princeton.edu/members/sperry/,Mrs. Sperry,"Sperry, Mrs.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/mackenzie-coral-sequel-carnival/,"Coral: A Sequel to ""Carnival""",,"Mackenzie, Compton",1925,,Lending Library Card,"Sylvia Beach, Mrs Sperry Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b214a6c1-6d56-48f7-a451-c5fa3f845e0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/6c%2F8b%2F25%2F6c8b2557d24945b4ba2faea1d2e0117c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-12-21,1931-12-30,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/fletcher-murder-four-degrees/,Murder in Four Degrees,,"Fletcher, Joseph Smith",1931,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/0f%2Fd5%2Fe8%2F0fd5e8ecc00f4c159cbabdbe207808d7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-12-21,1931-12-23,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/trask-dead-men-tell/,Dead Men Do Tell,,"Trask, Keith",1931,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/5f%2F47%2F3a%2F5f473ac7bddd46a6b4314e22a3b90042%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-12-22,1931-12-23,https://shakespeareandco.princeton.edu/members/eggimann/,Adele Bouvier Eggimann,"Eggimann, Adele Bouvier",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/lofting-doctor-dolittles-circus/,Doctor Dolittle's Circus,,"Lofting, Hugh",1924,,Lending Library Card,"Sylvia Beach, Adele Eggimann Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/19d48c30-d879-45f6-aabc-6cbd3ebf0cd2/manifest,https://iiif.princeton.edu/loris/figgy_prod/7f%2F0f%2F7d%2F7f0f7ddc0af44cd582c6f534564392b7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1931-12-22,,https://shakespeareandco.princeton.edu/members/eggimann/,Adele Bouvier Eggimann,"Eggimann, Adele Bouvier",1.00,,,,1,,1931-12-22,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Adele Eggimann Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/19d48c30-d879-45f6-aabc-6cbd3ebf0cd2/manifest,https://iiif.princeton.edu/loris/figgy_prod/7f%2F0f%2F7d%2F7f0f7ddc0af44cd582c6f534564392b7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1931-12-22,1932-03-22,https://shakespeareandco.princeton.edu/members/kennedy-robert/,Robert Kennedy,"Kennedy, Robert",,,3 months,91,1,,1932-01-14,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Robert Kennedy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5819877c-8d7f-42cc-a86b-f8161bca822f/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F74%2Ffe%2Fb474fec7d360422b8c92db20f203ede2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-12-22,1931-12-24,https://shakespeareandco.princeton.edu/members/sperry/,Mrs. Sperry,"Sperry, Mrs.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/mackenzie-vanity-girl/,The Vanity Girl,,"Mackenzie, Compton",1920,,Lending Library Card,"Sylvia Beach, Mrs Sperry Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b214a6c1-6d56-48f7-a451-c5fa3f845e0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/6c%2F8b%2F25%2F6c8b2557d24945b4ba2faea1d2e0117c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-12-23,1931-12-28,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/richardson-deadlock-pilgrimage-6/,Deadlock (Pilgrimage 6),,"Richardson, Dorothy M.",1921,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/7e%2F7f%2F7d%2F7e7f7d1b9e2240a888669a61feab6532%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-12-23,1932-01-07,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/maugham-casuarina-tree/,The Casuarina Tree: Six Stories,,"Maugham, W. Somerset",1926,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/5f%2F47%2F3a%2F5f473ac7bddd46a6b4314e22a3b90042%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-12-23,1931-12-31,https://shakespeareandco.princeton.edu/members/tritton/,A. Tritton,"Tritton, A.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/john-wesley/,John Wesley,,,,Unidentified. By or about John Wesley.,Lending Library Card,"Sylvia Beach, Miss A. Tritton Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0eb2f199-cd31-4332-a691-e6e0194cf4a6/manifest,https://iiif.princeton.edu/loris/figgy_prod/8d%2Fbe%2Fb2%2F8dbeb2e592b74163bf5398912ddeb3bc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-12-24,1931-12-28,https://shakespeareandco.princeton.edu/members/sperry/,Mrs. Sperry,"Sperry, Mrs.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/mackenzie-early-life-adventures/,The Early Life and Adventures of Sylvia Scarlett,,"Mackenzie, Compton",1918,,Lending Library Card,"Sylvia Beach, Mrs Sperry Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b214a6c1-6d56-48f7-a451-c5fa3f845e0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/6c%2F8b%2F25%2F6c8b2557d24945b4ba2faea1d2e0117c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-12-24,1931-12-31,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/cather-shadows-rock/,Shadows on the Rock,,"Cather, Willa",1931,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/fd%2F7b%2F12%2Ffd7b1244659049e989da4cabf155ee96%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1931-12-24,1931-12-24,https://shakespeareandco.princeton.edu/members/duff-donald/,Donald Duff,"Duff, Donald",,,,,,,,,,,21.00,FRF,https://shakespeareandco.princeton.edu/books/joyce-chamber-music/,Chamber Music,,"Joyce, James",1907,,Lending Library Card,"Sylvia Beach, Donald Duff Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c9f19d83-d075-4536-b1fd-fe2a86bdf975/manifest,https://iiif.princeton.edu/loris/figgy_prod/fd%2F86%2Fc3%2Ffd86c35e550a4a85bb1918bd06261772%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-12-24,1931-12-28,https://shakespeareandco.princeton.edu/members/sperry/,Mrs. Sperry,"Sperry, Mrs.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/mackenzie-poor-relations/,Poor Relations,,"Mackenzie, Compton",1919,,Lending Library Card,"Sylvia Beach, Mrs Sperry Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b214a6c1-6d56-48f7-a451-c5fa3f845e0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/6c%2F8b%2F25%2F6c8b2557d24945b4ba2faea1d2e0117c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-12-24,1931-12-28,https://shakespeareandco.princeton.edu/members/sperry/,Mrs. Sperry,"Sperry, Mrs.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/mackenzie-sylvia-michael/,Sylvia & Michael,,"Mackenzie, Compton",1919,,Lending Library Card,"Sylvia Beach, Mrs Sperry Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b214a6c1-6d56-48f7-a451-c5fa3f845e0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/6c%2F8b%2F25%2F6c8b2557d24945b4ba2faea1d2e0117c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Crossed out,1931-12-28,,https://shakespeareandco.princeton.edu/members/sperry/,Mrs. Sperry,"Sperry, Mrs.",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/mackenzie-sinister-street/,Sinister Street,2 vols.,"Mackenzie, Compton",1914,,Lending Library Card,"Sylvia Beach, Mrs Sperry Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b214a6c1-6d56-48f7-a451-c5fa3f845e0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/6c%2F8b%2F25%2F6c8b2557d24945b4ba2faea1d2e0117c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-12-28,1931-12-29,https://shakespeareandco.princeton.edu/members/sperry/,Mrs. Sperry,"Sperry, Mrs.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/macleod-dominion-dreams/,The Dominion of Dreams,,"Macleod, Fiona",1899,,Lending Library Card,"Sylvia Beach, Mrs Sperry Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b214a6c1-6d56-48f7-a451-c5fa3f845e0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/6c%2F8b%2F25%2F6c8b2557d24945b4ba2faea1d2e0117c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-12-28,1931-12-31,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/richardson-revolving-lights-pilgrimage/,Revolving Lights (Pilgrimage 7),,"Richardson, Dorothy M.",1923,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/7e%2F7f%2F7d%2F7e7f7d1b9e2240a888669a61feab6532%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-12-29,1931-12-30,https://shakespeareandco.princeton.edu/members/sperry/,Mrs. Sperry,"Sperry, Mrs.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/mansfield-something-childish-stories/,Something Childish and Other Stories,,"Mansfield, Katherine",1924,,Lending Library Card,"Sylvia Beach, Mrs Sperry Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b214a6c1-6d56-48f7-a451-c5fa3f845e0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/6c%2F8b%2F25%2F6c8b2557d24945b4ba2faea1d2e0117c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-12-30,1931-12-31,https://shakespeareandco.princeton.edu/members/sperry/,Mrs. Sperry,"Sperry, Mrs.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/mackenzie-vestal-fire/,Vestal Fire,,"Mackenzie, Compton",1927,,Lending Library Card,"Sylvia Beach, Mrs Sperry Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b214a6c1-6d56-48f7-a451-c5fa3f845e0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/6c%2F8b%2F25%2F6c8b2557d24945b4ba2faea1d2e0117c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-12-30,1932-01-06,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/trask-dead-men-tell/,Dead Men Do Tell,,"Trask, Keith",1931,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/0f%2Fd5%2Fe8%2F0fd5e8ecc00f4c159cbabdbe207808d7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-12-31,1932-01-06,https://shakespeareandco.princeton.edu/members/tritton/,A. Tritton,"Tritton, A.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/georgian-poetry/,Georgian Poetry,,,,Unidentified. Likely an anthology of Georgian poetry.,Lending Library Card,"Sylvia Beach, Miss A. Tritton Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0eb2f199-cd31-4332-a691-e6e0194cf4a6/manifest,https://iiif.princeton.edu/loris/figgy_prod/8d%2Fbe%2Fb2%2F8dbeb2e592b74163bf5398912ddeb3bc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-12-31,1932-01-05,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/richardson-oberland-pilgrimage-9/,Oberland (Pilgrimage 9),,"Richardson, Dorothy M.",1927,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/7e%2F7f%2F7d%2F7e7f7d1b9e2240a888669a61feab6532%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-12-31,1932-01-05,https://shakespeareandco.princeton.edu/members/sperry/,Mrs. Sperry,"Sperry, Mrs.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/boyle-plagued-nightingale/,Plagued by the Nightingale,,"Boyle, Kay",1931,,Lending Library Card,"Sylvia Beach, Mrs Sperry Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b214a6c1-6d56-48f7-a451-c5fa3f845e0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/6c%2F8b%2F25%2F6c8b2557d24945b4ba2faea1d2e0117c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-12-31,1932-01-05,https://shakespeareandco.princeton.edu/members/sperry/,Mrs. Sperry,"Sperry, Mrs.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/faulkner-sanctuary/,Sanctuary,,"Faulkner, William",1931,"Caresse Crosby sold a copy of the Black Sun Press edition of *Sanctuary* to Shakespeare and Company on Feb. 17, 1932.",Lending Library Card,"Sylvia Beach, Mrs Sperry Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b214a6c1-6d56-48f7-a451-c5fa3f845e0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/6c%2F8b%2F25%2F6c8b2557d24945b4ba2faea1d2e0117c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-12-31,1932-01-05,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/woolf-waves/,The Waves,,"Woolf, Virginia",1931,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/7e%2F7f%2F7d%2F7e7f7d1b9e2240a888669a61feab6532%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1931-12-31,1932-01-06,https://shakespeareandco.princeton.edu/members/tritton/,A. Tritton,"Tritton, A.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/murry-woman-story-h/,Son of Woman: The Story of D. H. Lawrence,,"Murry, John Middleton",1931,,Lending Library Card,"Sylvia Beach, Miss A. Tritton Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0eb2f199-cd31-4332-a691-e6e0194cf4a6/manifest,https://iiif.princeton.edu/loris/figgy_prod/8d%2Fbe%2Fb2%2F8dbeb2e592b74163bf5398912ddeb3bc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-12-31,1932-01-07,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/ertz-julian-probert/,Julian Probert,,"Ertz, Susan",1931,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/fd%2F7b%2F12%2Ffd7b1244659049e989da4cabf155ee96%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1931-12-31,1932-01-07,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/tomlinson-soundings/,Out of Soundings,,"Tomlinson, H. M.",1931,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/fd%2F7b%2F12%2Ffd7b1244659049e989da4cabf155ee96%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1932-01-01,1933-01-01,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",157.50,,1 year,366,1,,1931-12-31,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/7e%2F7f%2F7d%2F7e7f7d1b9e2240a888669a61feab6532%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-01-03,1932-01-14,https://shakespeareandco.princeton.edu/members/porter-katherine-anne/,Katherine Anne Porter / Mrs. Katherine Anne Pressly,"Porter, Katherine Anne",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/mary-wollstonecraft/,Mary Wollstonecraft,,,,Unidentified. By or about Wollstonecraft.,Lending Library Card,"Sylvia Beach, Katherine Anne Porter Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e929ad7e-7cda-422b-9107-310e3c4feb78/manifest,https://iiif.princeton.edu/loris/figgy_prod/ea%2F15%2F1d%2Fea151daa9ec144258470f0d3e74f7ba9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-01-03,1932-01-04,https://shakespeareandco.princeton.edu/members/porter-katherine-anne/,Katherine Anne Porter / Mrs. Katherine Anne Pressly,"Porter, Katherine Anne",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/mrs-piozzi-dr/,Mrs. Piozzi and Dr. Johnson,,,,"Unidentified. Hester Lynch Piozzi's *Dr. Johnson's Mrs. Thrale* (1910); *Johnson, Boswell and Mrs. Piozzi: A Suppressed Passage Restored* (1929); or Hester Lynch Piozzi's [*Anecdotes of Samuel Johnson*](https://shakespeareandco.princeton.edu/books/piozzi-anecdotes-samuel-johnson/) (1925), etc.",Lending Library Card,"Sylvia Beach, Katherine Anne Porter Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e929ad7e-7cda-422b-9107-310e3c4feb78/manifest,https://iiif.princeton.edu/loris/figgy_prod/ea%2F15%2F1d%2Fea151daa9ec144258470f0d3e74f7ba9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-01-04,1932-01-06,https://shakespeareandco.princeton.edu/members/kennedy-robert/,Robert Kennedy,"Kennedy, Robert",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/ibsen-wild-duck/,The Wild Duck,,"Ibsen, Henrik",1884,,Lending Library Card,"Sylvia Beach, Robert Kennedy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5819877c-8d7f-42cc-a86b-f8161bca822f/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F74%2Ffe%2Fb474fec7d360422b8c92db20f203ede2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-01-04,1932-01-05,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/vail-murder-murder/,Murder! Murder!,,"Vail, Laurence",1931,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/5f%2F47%2F3a%2F5f473ac7bddd46a6b4314e22a3b90042%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-01-05,1932-01-12,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/undset-wild-orchid/,The Wild Orchid,,"Undset, Sigrid",1931,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/7e%2F7f%2F7d%2F7e7f7d1b9e2240a888669a61feab6532%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-01-05,1932-01-12,https://shakespeareandco.princeton.edu/members/faulkner-norma/,Norma Faulkner,"Faulkner, Norma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/richardson-pointed-roofs/,Pointed Roofs (Pilgrimage 1),,"Richardson, Dorothy M.",1915,,Lending Library Card,"Norma Faulkner's lending library cards are part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Borrow,1932-01-05,1932-01-11,https://shakespeareandco.princeton.edu/members/faulkner-norma/,Norma Faulkner,"Faulkner, Norma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/buck-good-earth/,The Good Earth,,"Buck, Pearl S.",1931,,Lending Library Card,"Norma Faulkner's lending library cards are part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Borrow,1932-01-05,1932-01-12,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/sudermann-wife-steffen-tromholt/,The Wife of Steffen Tromholt,2 vols.,"Sudermann, Hermann",1929,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/26%2F73%2Fc4%2F2673c41d1a72495c8231da059cc85000%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-01-05,1932-01-11,https://shakespeareandco.princeton.edu/members/lewisohn/,Ludwig Lewisohn,"Lewisohn, Ludwig",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/oneill-mourning-becomes-electra/,Mourning Becomes Electra,,"O'Neill, Eugene",1931,,Lending Library Card,"Sylvia Beach, Ludwig Lewissohn Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9bb3014d-15ec-4b5e-a769-d235d4c4bdec/manifest,https://iiif.princeton.edu/loris/figgy_prod/0a%2F03%2F6e%2F0a036ed5c4da46649885133603d42880%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-01-05,1932-01-07,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/lewis-apes-god/,The Apes of God,,"Lewis, Wyndham",1930,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/5f%2F47%2F3a%2F5f473ac7bddd46a6b4314e22a3b90042%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1932-01-05,1932-02-04,https://shakespeareandco.princeton.edu/members/boyle-f-j/,F. J. Boyle,"Boyle, F. J.",,,30 days,30,,,1932-01-05,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1932-01-05,1932-01-08,https://shakespeareandco.princeton.edu/members/sperry/,Mrs. Sperry,"Sperry, Mrs.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/mackenzie-youths-encounter/,Youth's Encounter,,"Mackenzie, Compton",1913,,Lending Library Card,"Sylvia Beach, Mrs Sperry Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b214a6c1-6d56-48f7-a451-c5fa3f845e0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/6c%2F8b%2F25%2F6c8b2557d24945b4ba2faea1d2e0117c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1932-01-05,1932-01-11,https://shakespeareandco.princeton.edu/members/lewisohn/,Ludwig Lewisohn,"Lewisohn, Ludwig",5.00,,6 days,6,,,1932-01-05,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Ludwig Lewissohn Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9bb3014d-15ec-4b5e-a769-d235d4c4bdec/manifest,https://iiif.princeton.edu/loris/figgy_prod/0a%2F03%2F6e%2F0a036ed5c4da46649885133603d42880%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-01-06,1932-01-14,https://shakespeareandco.princeton.edu/members/kennedy-robert/,Robert Kennedy,"Kennedy, Robert",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/schnitzler-anatol/,Anatol and Other Plays,,"Schnitzler, Arthur",,,Lending Library Card,"Sylvia Beach, Robert Kennedy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5819877c-8d7f-42cc-a86b-f8161bca822f/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F74%2Ffe%2Fb474fec7d360422b8c92db20f203ede2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-01-06,,https://shakespeareandco.princeton.edu/members/kennedy-robert/,Robert Kennedy,"Kennedy, Robert",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/strindberg-plays-august-strindberg-third/,Plays by August Strindberg: Third Series,,"Strindberg, August",1921,,Lending Library Card,"Sylvia Beach, Robert Kennedy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5819877c-8d7f-42cc-a86b-f8161bca822f/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F74%2Ffe%2Fb474fec7d360422b8c92db20f203ede2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-01-06,1932-01-11,https://shakespeareandco.princeton.edu/members/tritton/,A. Tritton,"Tritton, A.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/levin-yehuda/,Yehuda,,"Levin, Meyer",1931,,Lending Library Card,"Sylvia Beach, Miss A. Tritton Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0eb2f199-cd31-4332-a691-e6e0194cf4a6/manifest,https://iiif.princeton.edu/loris/figgy_prod/8d%2Fbe%2Fb2%2F8dbeb2e592b74163bf5398912ddeb3bc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-01-07,1932-01-14,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/faulkner-sound-fury/,The Sound and the Fury,,"Faulkner, William",1929,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/fd%2F7b%2F12%2Ffd7b1244659049e989da4cabf155ee96%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-01-07,1932-01-13,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/young-jim-redlake/,Jim Redlake,,"Young, Francis Brett",1930,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/5f%2F47%2F3a%2F5f473ac7bddd46a6b4314e22a3b90042%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-01-08,,https://shakespeareandco.princeton.edu/members/sperry/,Mrs. Sperry,"Sperry, Mrs.",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/machen-house-souls/,The House of Souls,,"Machen, Arthur",1906,,Lending Library Card,"Sylvia Beach, Mrs Sperry Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b214a6c1-6d56-48f7-a451-c5fa3f845e0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/6c%2F8b%2F25%2F6c8b2557d24945b4ba2faea1d2e0117c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-01-09,1932-01-23,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/sitwell-dumb-animal-stories/,Dumb-Animal and Other Stories,,"Sitwell, Osbert",1930,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/b4%2Fa0%2F50%2Fb4a05048ffef47afa61a806652e662da%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-01-09,1932-01-23,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/sassoon-poems/,Poems,,"Sassoon, Siegfried",1925,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/b4%2Fa0%2F50%2Fb4a05048ffef47afa61a806652e662da%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-01-11,1932-01-12,https://shakespeareandco.princeton.edu/members/faulkner-norma/,Norma Faulkner,"Faulkner, Norma",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/craig-ellen-terry-secret/,Ellen Terry and Her Secret Self,,"Craig, Edward Gordon",1931,,Lending Library Card,"Norma Faulkner's lending library cards are part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Borrow,1932-01-11,1932-01-27,https://shakespeareandco.princeton.edu/members/tritton/,A. Tritton,"Tritton, A.",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/hardy-woodlanders/,The Woodlanders,,"Hardy, Thomas",1887,,Lending Library Card,"Sylvia Beach, Miss A. Tritton Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0eb2f199-cd31-4332-a691-e6e0194cf4a6/manifest,https://iiif.princeton.edu/loris/figgy_prod/8d%2Fbe%2Fb2%2F8dbeb2e592b74163bf5398912ddeb3bc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-01-12,1932-01-22,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/galsworthy-maid-waiting/,Maid in Waiting (End of Chapter),,"Galsworthy, John",1931,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/26%2F73%2Fc4%2F2673c41d1a72495c8231da059cc85000%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1932-01-12,1932-05-04,https://shakespeareandco.princeton.edu/members/barbey-valerie/,ValΓ©rie Barbey,"Barbey, ValΓ©rie",,,"3 months, 22 days",113,,,1932-01-12,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1932-01-12,1932-01-13,https://shakespeareandco.princeton.edu/members/faulkner-norma/,Norma Faulkner,"Faulkner, Norma",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/richardson-backwater-pilgrimage-2/,Backwater (Pilgrimage 2),,"Richardson, Dorothy M.",1916,,Lending Library Card,"Norma Faulkner's lending library cards are part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Borrow,1932-01-12,1932-01-14,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/hanley-men-darkness-five/,Men in Darkness: Five Stories,,"Hanley, James",1931,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/7e%2F7f%2F7d%2F7e7f7d1b9e2240a888669a61feab6532%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-01-13,1932-01-15,https://shakespeareandco.princeton.edu/members/puy-fontaine/,Comte de Puy Fontaine,"de Puy Fontaine, Comte",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/oneill-emperor-jones/,The Emperor Jones,,"O'Neill, Eugene",1921,,Lending Library Card,"Sylvia Beach, Alfred Puy Fontaine Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/01f73c7c-08c2-4a5a-9ff6-7948c4365616/manifest,https://iiif.princeton.edu/loris/figgy_prod/ec%2Fa3%2F60%2Feca36085131c432d82465d49790ff249%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1932-01-13,,https://shakespeareandco.princeton.edu/members/puy-fontaine/,Comte de Puy Fontaine,"de Puy Fontaine, Comte",,50.00,,,1,Day By Day,1932-01-13,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Alfred Puy Fontaine Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/01f73c7c-08c2-4a5a-9ff6-7948c4365616/manifest,https://iiif.princeton.edu/loris/figgy_prod/ec%2Fa3%2F60%2Feca36085131c432d82465d49790ff249%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-01-13,1932-02-02,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/sayers-great-short-stories/,"Great Short Stories of Detection, Mystery and Horror",,,1928,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/5f%2F47%2F3a%2F5f473ac7bddd46a6b4314e22a3b90042%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-01-13,1932-01-15,https://shakespeareandco.princeton.edu/members/faulkner-norma/,Norma Faulkner,"Faulkner, Norma",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/richardson-honeycomb-pilgrimage-3/,Honeycomb (Pilgrimage 3),,"Richardson, Dorothy M.",1917,,Lending Library Card,"Norma Faulkner's lending library cards are part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Borrow,1932-01-14,1932-02-18,https://shakespeareandco.princeton.edu/members/kennedy-robert/,Robert Kennedy,"Kennedy, Robert",,,,,,,,,Returned,35,,,https://shakespeareandco.princeton.edu/books/prose-dramas/,Prose Dramas,,,,"Unidentified. Likely a volume of Henrik Ibsen's *Prose Dramas,* edited by William Archer (1901β1902).",Lending Library Card,"Sylvia Beach, Robert Kennedy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5819877c-8d7f-42cc-a86b-f8161bca822f/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F74%2Ffe%2Fb474fec7d360422b8c92db20f203ede2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-01-14,1932-01-16,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/lehmann-note-music/,A Note in Music,,"Lehmann, Rosamond",1930,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/7e%2F7f%2F7d%2F7e7f7d1b9e2240a888669a61feab6532%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-01-14,1932-01-19,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/dell-love-without-money/,Love without Money,,"Dell, Floyd",1931,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/fd%2F7b%2F12%2Ffd7b1244659049e989da4cabf155ee96%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-01-14,1932-01-16,https://shakespeareandco.princeton.edu/members/kennedy-robert/,Robert Kennedy,"Kennedy, Robert",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/oneill-mourning-becomes-electra/,Mourning Becomes Electra,,"O'Neill, Eugene",1931,,Lending Library Card,"Sylvia Beach, Robert Kennedy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5819877c-8d7f-42cc-a86b-f8161bca822f/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F74%2Ffe%2Fb474fec7d360422b8c92db20f203ede2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-01-15,1932-01-19,https://shakespeareandco.princeton.edu/members/faulkner-norma/,Norma Faulkner,"Faulkner, Norma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/ellen-terry/,Ellen Terry,,,,Unidentified. By or about Ellen Terry.,Lending Library Card,"Norma Faulkner's lending library cards are part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Borrow,1932-01-15,1932-01-21,https://shakespeareandco.princeton.edu/members/puy-fontaine/,Comte de Puy Fontaine,"de Puy Fontaine, Comte",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/oneill-hairy-ape/,The Hairy Ape,,"O'Neill, Eugene",1923,,Lending Library Card,"Sylvia Beach, Alfred Puy Fontaine Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/01f73c7c-08c2-4a5a-9ff6-7948c4365616/manifest,https://iiif.princeton.edu/loris/figgy_prod/ec%2Fa3%2F60%2Feca36085131c432d82465d49790ff249%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-01-16,1932-01-19,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/ertz-julian-probert/,Julian Probert,,"Ertz, Susan",1931,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/7e%2F7f%2F7d%2F7e7f7d1b9e2240a888669a61feab6532%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-01-18,1932-01-23,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/van-dine-scarab-murder-case/,The Scarab Murder Case: A Philo Vance Story,,"Van Dine, S. S.",1929,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/0f%2Fd5%2Fe8%2F0fd5e8ecc00f4c159cbabdbe207808d7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-01-19,1932-01-25,https://shakespeareandco.princeton.edu/members/faulkner-norma/,Norma Faulkner,"Faulkner, Norma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/ertz-julian-probert/,Julian Probert,,"Ertz, Susan",1931,,Lending Library Card,"Norma Faulkner's lending library cards are part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Borrow,1932-01-19,1932-01-21,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/maugham-first-person-singular/,First Person Singular,,"Maugham, W. Somerset",1931,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/7e%2F7f%2F7d%2F7e7f7d1b9e2240a888669a61feab6532%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-01-19,1932-01-25,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/ford-return-yesterday/,To Return to Yesterday: Reminiscences 1894 βΒ 1914,,"Ford, Ford Madox",1931,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/fd%2F7b%2F12%2Ffd7b1244659049e989da4cabf155ee96%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-01-21,1932-01-28,https://shakespeareandco.princeton.edu/members/puy-fontaine/,Comte de Puy Fontaine,"de Puy Fontaine, Comte",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/oneill-mourning-becomes-electra/,Mourning Becomes Electra,,"O'Neill, Eugene",1931,,Lending Library Card,"Sylvia Beach, Alfred Puy Fontaine Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/01f73c7c-08c2-4a5a-9ff6-7948c4365616/manifest,https://iiif.princeton.edu/loris/figgy_prod/ec%2Fa3%2F60%2Feca36085131c432d82465d49790ff249%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-01-21,1932-01-25,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/lewis-apes-god/,The Apes of God,,"Lewis, Wyndham",1930,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/7e%2F7f%2F7d%2F7e7f7d1b9e2240a888669a61feab6532%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-01-22,1932-02-03,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/kaye-smith-susan-spray/,Susan Spray,,"Kaye-Smith, Sheila",1931,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/26%2F73%2Fc4%2F2673c41d1a72495c8231da059cc85000%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-01-23,1932-02-02,https://shakespeareandco.princeton.edu/members/faulkner-norma/,Norma Faulkner,"Faulkner, Norma",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/epstein-sculptor-speaks/,Sculptor Speaks,,"Epstein, Jacob;Haskell, Arnold L.",1932,,Lending Library Card,"Norma Faulkner's lending library cards are part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Borrow,1932-01-23,1932-02-24,https://shakespeareandco.princeton.edu/members/kennedy-robert/,Robert Kennedy,"Kennedy, Robert",,,,,,,,,Returned,32,,,https://shakespeareandco.princeton.edu/books/zweig-amok-story/,Amok: A Story,,"Zweig, Stefan",1931,,Lending Library Card,"Sylvia Beach, Robert Kennedy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5819877c-8d7f-42cc-a86b-f8161bca822f/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F74%2Ffe%2Fb474fec7d360422b8c92db20f203ede2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-01-23,1932-02-06,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/aldington-colonels-daughter/,The Colonel's Daughter,,"Aldington, Richard",1931,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/b4%2Fa0%2F50%2Fb4a05048ffef47afa61a806652e662da%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-01-23,1932-02-29,https://shakespeareandco.princeton.edu/members/kennedy-robert/,Robert Kennedy,"Kennedy, Robert",,,,,,,,,Returned,37,,,https://shakespeareandco.princeton.edu/books/maugham-penelope-comedy-three/,Penelope: A Comedy in Three Acts,,"Maugham, W. Somerset",1909,,Lending Library Card,"Sylvia Beach, Robert Kennedy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5819877c-8d7f-42cc-a86b-f8161bca822f/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F74%2Ffe%2Fb474fec7d360422b8c92db20f203ede2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1932-01-23,,https://shakespeareandco.princeton.edu/members/burton-pixie/,Pixie Burton,"Burton, Pixie",,,,,,,1932-01-23,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1932-01-23,1932-02-06,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/richardson-dawns-left-hand/,Dawn's Left Hand (Pilgrimage 10),,"Richardson, Dorothy M.",1931,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/b4%2Fa0%2F50%2Fb4a05048ffef47afa61a806652e662da%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-01-23,1932-01-27,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/rinehart-two-flights/,Two Flights Up,,"Rinehart, Mary Roberts",1928,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/0f%2Fd5%2Fe8%2F0fd5e8ecc00f4c159cbabdbe207808d7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-01-23,1932-01-27,https://shakespeareandco.princeton.edu/members/faulkner-norma/,Norma Faulkner,"Faulkner, Norma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/strachey-portraits-miniature-essays/,Portraits in Miniature and Other Essays,,"Strachey, Giles Lytton",1931,,Lending Library Card,"Norma Faulkner's lending library cards are part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Borrow,1932-01-23,1932-02-29,https://shakespeareandco.princeton.edu/members/kennedy-robert/,Robert Kennedy,"Kennedy, Robert",,,,,,,,,Returned,37,,,https://shakespeareandco.princeton.edu/books/moore-aphrodite-aulis/,Aphrodite in Aulis,,"Moore, George",1930,,Lending Library Card,"Sylvia Beach, Robert Kennedy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5819877c-8d7f-42cc-a86b-f8161bca822f/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F74%2Ffe%2Fb474fec7d360422b8c92db20f203ede2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-01-25,1932-02-02,https://shakespeareandco.princeton.edu/members/sperry/,Mrs. Sperry,"Sperry, Mrs.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/machen-shining-pyramid/,The Shining Pyramid,,"Machen, Arthur",1925,,Lending Library Card,"Sylvia Beach, Mrs Sperry Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b214a6c1-6d56-48f7-a451-c5fa3f845e0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/6c%2F8b%2F25%2F6c8b2557d24945b4ba2faea1d2e0117c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-01-25,1932-02-01,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/ferber-american-beauty/,American Beauty,,"Ferber, Edna",1931,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/fd%2F7b%2F12%2Ffd7b1244659049e989da4cabf155ee96%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-01-25,1932-01-26,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/crofts-sea-mystery-inspector/,The Sea Mystery: An Inspector French Case,,"Crofts, Freeman Wills",1928,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/7e%2F7f%2F7d%2F7e7f7d1b9e2240a888669a61feab6532%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-01-26,1932-01-27,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/faulkner-sanctuary/,Sanctuary,,"Faulkner, William",1931,"Caresse Crosby sold a copy of the Black Sun Press edition of *Sanctuary* to Shakespeare and Company on Feb. 17, 1932.",Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/3f%2F8d%2F5a%2F3f8d5aab23654f30ab6a9a0f7d22e8df%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1932-01-26,1932-07-26,https://shakespeareandco.princeton.edu/members/child-bertha-cushing/,Bertha Cushing Child,"Child, Bertha Cushing",100.00,50.00,6 months,182,1,,1932-01-26,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Bertha Cushing Child Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9be92353-f80b-4fc7-a95a-09f7ef28b99a/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2Fd2%2F95%2Ff2d29586227842e69386891c7d596430%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-01-26,1932-03-26,https://shakespeareandco.princeton.edu/members/pfeiffer-virginia/,Virginia Pfeiffer,"Pfeiffer, Virginia",,,,,,,,,Returned,60,,,https://shakespeareandco.princeton.edu/books/collins-woman-white/,The Woman in White,,"Collins, Wilkie",1860,,Lending Library Card,"Sylvia Beach, Virginia Pfeiffer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5f9e74fc-c06a-4c36-a2d1-878b8fce2cd2/manifest,https://iiif.princeton.edu/loris/figgy_prod/ac%2F78%2Ff5%2Fac78f5786e5d44e0abf8a8aa506e58c4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-01-26,1932-02-09,https://shakespeareandco.princeton.edu/members/child-bertha-cushing/,Bertha Cushing Child,"Child, Bertha Cushing",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/valery-introduction-method-leonardo/,Introduction to the Method of Leonardo da Vinci,,"ValΓ©ry, Paul",1929,,Lending Library Card,"Sylvia Beach, Bertha Cushing Child Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9be92353-f80b-4fc7-a95a-09f7ef28b99a/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2Fd2%2F95%2Ff2d29586227842e69386891c7d596430%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-01-27,1932-02-06,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/arnim-expiation/,Expiation,,"Arnim, Elizabeth von",1929,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/0f%2Fd5%2Fe8%2F0fd5e8ecc00f4c159cbabdbe207808d7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-01-27,1932-02-03,https://shakespeareandco.princeton.edu/members/tritton/,A. Tritton,"Tritton, A.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/bennett-arnold-bennett/,My Arnold Bennett,,"Bennett, Marguerite",1931,,Lending Library Card,"Sylvia Beach, Miss A. Tritton Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0eb2f199-cd31-4332-a691-e6e0194cf4a6/manifest,https://iiif.princeton.edu/loris/figgy_prod/8d%2Fbe%2Fb2%2F8dbeb2e592b74163bf5398912ddeb3bc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-01-27,1932-01-30,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/terry-ellen-terry-bernard/,Ellen Terry and Bernard Shaw: A Correspondence,,"Terry, Ellen;Shaw, George Bernard",1931,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/3f%2F8d%2F5a%2F3f8d5aab23654f30ab6a9a0f7d22e8df%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-01-29,1932-02-01,https://shakespeareandco.princeton.edu/members/goldman-emma/,Emma Goldman / Mrs. Colton,"Goldman, Emma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/oneill-mourning-becomes-electra/,Mourning Becomes Electra,,"O'Neill, Eugene",1931,,Lending Library Card,"Sylvia Beach, Emma Goldman Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/108d6e9a-cefb-443e-a2f6-9a0525e7ae02/manifest,https://iiif.princeton.edu/loris/figgy_prod/86%2Fa9%2F95%2F86a99531575f438db82da83f4278a6c3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-01-30,1932-02-01,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/sitwell-far-home-stories/,"Far from My Home: Stories, Long and Short",,"Sitwell, Sacheverell",1931,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/3f%2F8d%2F5a%2F3f8d5aab23654f30ab6a9a0f7d22e8df%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-01-30,1932-03-15,https://shakespeareandco.princeton.edu/members/child-bertha-cushing/,Bertha Cushing Child,"Child, Bertha Cushing",,,,,,,,,Returned,45,,,https://shakespeareandco.princeton.edu/books/kang-grass-roof/,The Grass Roof,,"Kang, Younghill",1931,,Lending Library Card,"Sylvia Beach, Bertha Cushing Child Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9be92353-f80b-4fc7-a95a-09f7ef28b99a/manifest,https://iiif.princeton.edu/loris/figgy_prod/08%2F3e%2Fa5%2F083ea52fccd645f2827614478b065591%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-02-01,1932-02-08,https://shakespeareandco.princeton.edu/members/goldman-emma/,Emma Goldman / Mrs. Colton,"Goldman, Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/oneill-strange-interlude/,Strange Interlude,,"O'Neill, Eugene",1928,,Lending Library Card,"Sylvia Beach, Emma Goldman Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/108d6e9a-cefb-443e-a2f6-9a0525e7ae02/manifest,https://iiif.princeton.edu/loris/figgy_prod/86%2Fa9%2F95%2F86a99531575f438db82da83f4278a6c3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Crossed out,1932-02-01,,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/sitwell-far-home-stories/,"Far from My Home: Stories, Long and Short",,"Sitwell, Sacheverell",1931,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/fd%2F7b%2F12%2Ffd7b1244659049e989da4cabf155ee96%2Fintermediate_file.jp2/full/full/0/default.jpg
+Crossed out,1932-02-01,,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/sitwell-bombardment/,Before the Bombardment,,"Sitwell, Osbert",1926,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/3f%2F8d%2F5a%2F3f8d5aab23654f30ab6a9a0f7d22e8df%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-02-01,1932-02-05,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/doblin-berlin-alexanderplatz/,Berlin Alexanderplatz,,"DoΜblin, Alfred",1931,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/d0%2F00%2Fb5%2Fd000b513645a404f8eeb10783bfb9e0a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-02-01,1932-02-08,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/lewis-apes-god/,The Apes of God,,"Lewis, Wyndham",1930,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/fd%2F7b%2F12%2Ffd7b1244659049e989da4cabf155ee96%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-02-02,1932-02-09,https://shakespeareandco.princeton.edu/members/faulkner-norma/,Norma Faulkner,"Faulkner, Norma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/cather-shadows-rock/,Shadows on the Rock,,"Cather, Willa",1931,,Lending Library Card,"Norma Faulkner's lending library cards are part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Borrow,1932-02-02,1932-02-09,https://shakespeareandco.princeton.edu/members/sperry/,Mrs. Sperry,"Sperry, Mrs.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/maugham-painted-veil/,The Painted Veil,,"Maugham, W. Somerset",1925,,Lending Library Card,"Sylvia Beach, Mrs Sperry Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b214a6c1-6d56-48f7-a451-c5fa3f845e0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/77%2F93%2Fe5%2F7793e5a2db2141fb837b383ddf7ce6e4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-02-02,1932-02-04,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/de-la-mare-edge-short-stories/,On the Edge: Short Stories,,"De la Mare, Walter",1930,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/5f%2F47%2F3a%2F5f473ac7bddd46a6b4314e22a3b90042%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-02-03,1932-02-05,https://shakespeareandco.princeton.edu/members/tritton/,A. Tritton,"Tritton, A.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/epstein-sculptor-speaks/,Sculptor Speaks,,"Epstein, Jacob;Haskell, Arnold L.",1932,,Lending Library Card,"Sylvia Beach, Miss A. Tritton Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0eb2f199-cd31-4332-a691-e6e0194cf4a6/manifest,https://iiif.princeton.edu/loris/figgy_prod/8d%2Fbe%2Fb2%2F8dbeb2e592b74163bf5398912ddeb3bc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-02-03,1932-02-06,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/fletcher-murder-wrides-park/,The Murder at Wrides Park,,"Fletcher, Joseph Smith",1931,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/26%2F73%2Fc4%2F2673c41d1a72495c8231da059cc85000%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-02-04,1932-03-10,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,35,,,https://shakespeareandco.princeton.edu/books/mitchison-bough-breaks-stories/,When the Bough Breaks and Other Stories,,"Mitchison, Naomi",1924,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/5f%2F47%2F3a%2F5f473ac7bddd46a6b4314e22a3b90042%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-02-05,1932-02-08,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/sitwell-bombardment/,Before the Bombardment,,"Sitwell, Osbert",1926,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/3f%2F8d%2F5a%2F3f8d5aab23654f30ab6a9a0f7d22e8df%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-02-05,1932-02-11,https://shakespeareandco.princeton.edu/members/tritton/,A. Tritton,"Tritton, A.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/walpole-judith-paris/,Judith Paris,,"Walpole, Hugh",1931,,Lending Library Card,"Sylvia Beach, Miss A. Tritton Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0eb2f199-cd31-4332-a691-e6e0194cf4a6/manifest,https://iiif.princeton.edu/loris/figgy_prod/8d%2Fbe%2Fb2%2F8dbeb2e592b74163bf5398912ddeb3bc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-02-06,1932-03-11,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,34,,,https://shakespeareandco.princeton.edu/books/mayo-mother-india/,Mother India,,"Mayo, Katherine",1927,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/26%2F73%2Fc4%2F2673c41d1a72495c8231da059cc85000%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-02-06,1932-02-13,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/williams-dreadful-night/,The Dreadful Night,,"Williams, Ben Ames",1928,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/0f%2Fd5%2Fe8%2F0fd5e8ecc00f4c159cbabdbe207808d7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-02-06,1932-02-08,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/harris-bernard-shaw/,Bernard Shaw: An Unauthorized Biography Based on Firsthand Information,,"Harris, Frank",1931,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/13%2F1a%2Fd2%2F131ad26459c84358afe3d141aaa828d1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-02-06,1932-02-09,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/richardson-dawns-left-hand/,Dawn's Left Hand (Pilgrimage 10),,"Richardson, Dorothy M.",1931,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/13%2F1a%2Fd2%2F131ad26459c84358afe3d141aaa828d1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-02-06,1932-02-20,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/powys-unclay/,Unclay,,"Powys, Theodore Francis",1931,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/b4%2Fa0%2F50%2Fb4a05048ffef47afa61a806652e662da%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1932-02-06,1932-02-20,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",25.00,,2 weeks,14,2,,1932-02-06,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/13%2F1a%2Fd2%2F131ad26459c84358afe3d141aaa828d1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-02-06,1932-02-08,https://shakespeareandco.princeton.edu/members/ramniklalk/,Trivedi Ramniklalk,"Ramniklalk, Trivedi",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/shaw-apple-cart-political/,The Apple Cart: A Political Extravaganza,,"Shaw, George Bernard",1930,,Lending Library Card,"Sylvia Beach, Trivedi Ramniklalk Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dab154c2-28ac-4232-b8c5-4d0c7de0e691/manifest,https://iiif.princeton.edu/loris/figgy_prod/30%2F4b%2Ff8%2F304bf876684d4301b4f258022adb2188%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1932-02-06,1932-03-06,https://shakespeareandco.princeton.edu/members/ramniklalk/,Trivedi Ramniklalk,"Ramniklalk, Trivedi",22.50,25.00,1 month,29,1,,1932-02-06,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Trivedi Ramniklalk Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dab154c2-28ac-4232-b8c5-4d0c7de0e691/manifest,https://iiif.princeton.edu/loris/figgy_prod/30%2F4b%2Ff8%2F304bf876684d4301b4f258022adb2188%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-02-06,1932-02-20,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/dreiser-american-tragedy/,An American Tragedy,,"Dreiser, Theodore",1925,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/b4%2Fa0%2F50%2Fb4a05048ffef47afa61a806652e662da%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-02-08,1932-02-11,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/nichols-evensong/,Evensong,,"Nichols, Beverley",1932,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/3f%2F8d%2F5a%2F3f8d5aab23654f30ab6a9a0f7d22e8df%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1932-02-08,1932-02-08,https://shakespeareandco.princeton.edu/members/porter-katherine-anne/,Katherine Anne Porter / Mrs. Katherine Anne Pressly,"Porter, Katherine Anne",,,,,,,,,,,18.00,FRF,https://shakespeareandco.princeton.edu/books/mansfield-garden-party-stories/,The Garden Party and Other Stories,,"Mansfield, Katherine",1922,,Lending Library Card,"Sylvia Beach, Katherine Anne Porter Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e929ad7e-7cda-422b-9107-310e3c4feb78/manifest,https://iiif.princeton.edu/loris/figgy_prod/ea%2F15%2F1d%2Fea151daa9ec144258470f0d3e74f7ba9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-02-08,1932-02-10,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/levin-yehuda/,Yehuda,,"Levin, Meyer",1931,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/fd%2F7b%2F12%2Ffd7b1244659049e989da4cabf155ee96%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-02-08,1932-02-10,https://shakespeareandco.princeton.edu/members/ramniklalk/,Trivedi Ramniklalk,"Ramniklalk, Trivedi",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/mayo-slaves-gods/,Slaves of the Gods,,"Mayo, Katherine",1929,,Lending Library Card,"Sylvia Beach, Trivedi Ramniklalk Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dab154c2-28ac-4232-b8c5-4d0c7de0e691/manifest,https://iiif.princeton.edu/loris/figgy_prod/30%2F4b%2Ff8%2F304bf876684d4301b4f258022adb2188%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-02-09,1932-09-23,https://shakespeareandco.princeton.edu/members/faulkner-norma/,Norma Faulkner,"Faulkner, Norma",,,,,,,,,Returned,227,,,https://shakespeareandco.princeton.edu/books/lewis-apes-god/,The Apes of God,,"Lewis, Wyndham",1930,,Lending Library Card,"Norma Faulkner's lending library cards are part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Borrow,1932-02-09,1932-02-13,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/woolf-room-ones/,A Room of One's Own,,"Woolf, Virginia",1929,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/13%2F1a%2Fd2%2F131ad26459c84358afe3d141aaa828d1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-02-09,1932-02-12,https://shakespeareandco.princeton.edu/members/sperry/,Mrs. Sperry,"Sperry, Mrs.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/ertz-now-east-now/,"Now East, Now West",,"Ertz, Susan",1927,,Lending Library Card,"Sylvia Beach, Mrs Sperry Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b214a6c1-6d56-48f7-a451-c5fa3f845e0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/77%2F93%2Fe5%2F7793e5a2db2141fb837b383ddf7ce6e4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-02-09,1932-02-13,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/lawrence-lady-chatterleys-lover/,Lady Chatterley's Lover,,"Lawrence, D. H.",1928,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/13%2F1a%2Fd2%2F131ad26459c84358afe3d141aaa828d1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-02-09,1932-02-18,https://shakespeareandco.princeton.edu/members/child-bertha-cushing/,Bertha Cushing Child,"Child, Bertha Cushing",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/belloc-richelieu-study/,Richelieu: A Study,,"Belloc, Hilaire",1929,,Lending Library Card,"Sylvia Beach, Bertha Cushing Child Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9be92353-f80b-4fc7-a95a-09f7ef28b99a/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2Fd2%2F95%2Ff2d29586227842e69386891c7d596430%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-02-10,1932-02-15,https://shakespeareandco.princeton.edu/members/ramniklalk/,Trivedi Ramniklalk,"Ramniklalk, Trivedi",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/marlowe-works-christopher-marlowe/,Works of Marlowe,,"Marlowe, Christopher",,,Lending Library Card,"Sylvia Beach, Trivedi Ramniklalk Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dab154c2-28ac-4232-b8c5-4d0c7de0e691/manifest,https://iiif.princeton.edu/loris/figgy_prod/30%2F4b%2Ff8%2F304bf876684d4301b4f258022adb2188%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-02-10,1932-02-12,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/huxley-two-three-graces/,Two or Three Graces and Other Stories,,"Huxley, Aldous",1926,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/fd%2F7b%2F12%2Ffd7b1244659049e989da4cabf155ee96%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-02-11,1932-02-18,https://shakespeareandco.princeton.edu/members/tritton/,A. Tritton,"Tritton, A.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/ferber-american-beauty/,American Beauty,,"Ferber, Edna",1931,,Lending Library Card,"Sylvia Beach, Miss A. Tritton Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0eb2f199-cd31-4332-a691-e6e0194cf4a6/manifest,https://iiif.princeton.edu/loris/figgy_prod/8d%2Fbe%2Fb2%2F8dbeb2e592b74163bf5398912ddeb3bc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-02-11,1932-02-13,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/powys-ducdame/,Ducdame,,"Powys, John Cowper",1925,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/3f%2F8d%2F5a%2F3f8d5aab23654f30ab6a9a0f7d22e8df%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-02-12,1932-02-15,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/undset-wild-orchid/,The Wild Orchid,,"Undset, Sigrid",1931,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/fd%2F7b%2F12%2Ffd7b1244659049e989da4cabf155ee96%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-02-12,1932-02-16,https://shakespeareandco.princeton.edu/members/sperry/,Mrs. Sperry,"Sperry, Mrs.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/green-reader-married/,Reader I Married Him,,"Green, Anne",1931,,Lending Library Card,"Sylvia Beach, Mrs Sperry Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b214a6c1-6d56-48f7-a451-c5fa3f845e0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/77%2F93%2Fe5%2F7793e5a2db2141fb837b383ddf7ce6e4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-02-13,1932-02-18,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/woolf-waves/,The Waves,,"Woolf, Virginia",1931,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/13%2F1a%2Fd2%2F131ad26459c84358afe3d141aaa828d1%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1932-02-13,1932-03-13,https://shakespeareandco.princeton.edu/members/tritton/,A. Tritton,"Tritton, A.",25.00,,1 month,29,1,,1932-02-18,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Miss A. Tritton Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0eb2f199-cd31-4332-a691-e6e0194cf4a6/manifest,https://iiif.princeton.edu/loris/figgy_prod/8d%2Fbe%2Fb2%2F8dbeb2e592b74163bf5398912ddeb3bc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-02-13,1932-02-17,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/frankau-christopher-strong-romance/,Christopher Strong: A Romance,,"Frankau, Gilbert",1931,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/3f%2F8d%2F5a%2F3f8d5aab23654f30ab6a9a0f7d22e8df%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-02-13,1932-02-18,https://shakespeareandco.princeton.edu/members/rolland-madeleine/,Madeleine Rolland,"Rolland, Madeleine",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/davis-opening-door-novel/,The Opening of a Door: A Novel,,"Davis, George",1931,,Lending Library Card,"Sylvia Beach, Madeleine Rolland Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/72c53ae5-cee2-4494-ad6b-7ceb2673ba31/manifest,https://iiif-cloud.princeton.edu/iiif/2/13%2F1a%2Fd2%2F131ad26459c84358afe3d141aaa828d1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-02-15,1932-02-29,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/hanley-men-darkness-five/,Men in Darkness: Five Stories,,"Hanley, James",1931,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2Fe8%2Ffe%2F21e8fe9e0f30440d9c250f4758733d8a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-02-15,1932-02-20,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/sitwell-far-home-stories/,"Far from My Home: Stories, Long and Short",,"Sitwell, Sacheverell",1931,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/fd%2F7b%2F12%2Ffd7b1244659049e989da4cabf155ee96%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-02-15,1932-02-22,https://shakespeareandco.princeton.edu/members/ramniklalk/,Trivedi Ramniklalk,"Ramniklalk, Trivedi",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/galsworthy-swan-song/,Swan Song (A Modern Comedy),,"Galsworthy, John",1928,,Lending Library Card,"Sylvia Beach, Trivedi Ramniklalk Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dab154c2-28ac-4232-b8c5-4d0c7de0e691/manifest,https://iiif.princeton.edu/loris/figgy_prod/30%2F4b%2Ff8%2F304bf876684d4301b4f258022adb2188%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-02-15,1932-02-29,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/kelly-basquerie/,Basquerie,,"Kelly, Eleanor Mercein",1928,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2Fe8%2Ffe%2F21e8fe9e0f30440d9c250f4758733d8a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-02-15,1932-02-19,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/le-queux-double-shadow/,The Double Shadow,,"Le Queux, William",1915,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/0f%2Fd5%2Fe8%2F0fd5e8ecc00f4c159cbabdbe207808d7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-02-15,1932-02-29,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/faulkner-lay-dying/,As I Lay Dying,,"Faulkner, William",1930,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2Fe8%2Ffe%2F21e8fe9e0f30440d9c250f4758733d8a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-02-16,1932-02-20,https://shakespeareandco.princeton.edu/members/sperry/,Mrs. Sperry,"Sperry, Mrs.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/oneill-hairy-ape/,The Hairy Ape,,"O'Neill, Eugene",1923,,Lending Library Card,"Sylvia Beach, Mrs Sperry Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b214a6c1-6d56-48f7-a451-c5fa3f845e0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/77%2F93%2Fe5%2F7793e5a2db2141fb837b383ddf7ce6e4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1932-02-16,1932-05-16,https://shakespeareandco.princeton.edu/members/faulkner-norma/,Norma Faulkner,"Faulkner, Norma",65.00,,3 months,90,1,,1932-02-23,,,,,FRF,,,,,,,Lending Library Card,"Norma Faulkner's lending library cards are part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Borrow,1932-02-17,1932-02-22,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/golding-magnolia-street/,Magnolia Street,,"Golding, Louis",1932,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/3f%2F8d%2F5a%2F3f8d5aab23654f30ab6a9a0f7d22e8df%2Fintermediate_file/full/full/0/default.jpg
+Generic,1932-02-17,,https://shakespeareandco.princeton.edu/members/crosby-caresse/,Caresse Crosby,"Crosby, Caresse",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/faulkner-sanctuary/,Sanctuary,,"Faulkner, William",1931,"Caresse Crosby sold a copy of the Black Sun Press edition of *Sanctuary* to Shakespeare and Company on Feb. 17, 1932.",Lending Library Card,"Sylvia Beach, Caresse Crosby Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d66901cf-3231-4dd3-bb55-d9f5ac9b3a07/manifest,https://iiif-cloud.princeton.edu/iiif/2/55%2Fdf%2F0f%2F55df0f56af144f18a8fda53b034bf4f8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-02-18,1932-03-04,https://shakespeareandco.princeton.edu/members/tritton/,A. Tritton,"Tritton, A.",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/mann-magic-mountain/,The Magic Mountain,,"Mann, Thomas",1927,,Lending Library Card,"Sylvia Beach, Miss A. Tritton Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0eb2f199-cd31-4332-a691-e6e0194cf4a6/manifest,https://iiif.princeton.edu/loris/figgy_prod/8d%2Fbe%2Fb2%2F8dbeb2e592b74163bf5398912ddeb3bc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-02-18,1932-02-26,https://shakespeareandco.princeton.edu/members/child-bertha-cushing/,Bertha Cushing Child,"Child, Bertha Cushing",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/cather-shadows-rock/,Shadows on the Rock,,"Cather, Willa",1931,,Lending Library Card,"Sylvia Beach, Bertha Cushing Child Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9be92353-f80b-4fc7-a95a-09f7ef28b99a/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2Fd2%2F95%2Ff2d29586227842e69386891c7d596430%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-02-19,1932-03-05,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/mansfield-garden-party-stories/,The Garden Party and Other Stories,,"Mansfield, Katherine",1922,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/0f%2Fd5%2Fe8%2F0fd5e8ecc00f4c159cbabdbe207808d7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-02-20,1932-02-22,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/mitchison-corn-king-spring/,The Corn King and the Spring Queen,,"Mitchison, Naomi",1931,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/8a%2Fed%2Fe5%2F8aede54be5604567b84a579bfcd20ff8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-02-20,1932-02-25,https://shakespeareandco.princeton.edu/members/sperry/,Mrs. Sperry,"Sperry, Mrs.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/mirrlees-lud-mist/,Lud-in-the-Mist,,"Mirrlees, Hope",1927,,Lending Library Card,"Sylvia Beach, Mrs Sperry Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b214a6c1-6d56-48f7-a451-c5fa3f845e0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/77%2F93%2Fe5%2F7793e5a2db2141fb837b383ddf7ce6e4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-02-20,1932-03-05,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/dreiser-book/,Book about Myself,,"Dreiser, Theodore",1922,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/b4%2Fa0%2F50%2Fb4a05048ffef47afa61a806652e662da%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-02-20,1932-03-05,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/woolf-waves/,The Waves,,"Woolf, Virginia",1931,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/b4%2Fa0%2F50%2Fb4a05048ffef47afa61a806652e662da%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-02-22,1932-02-26,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/cronin-hatters-castle/,Hatter's Castle,,"Cronin, A. J.",1932,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/8a%2Fed%2Fe5%2F8aede54be5604567b84a579bfcd20ff8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-02-22,1932-02-27,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/taylor-mediaeval-mind-history/,The Mediaeval Mind: A History of the Development of Thought and Emotion in the Middle Ages,Vol. 1,"Taylor, Henry Osborn",1911,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/3f%2F8d%2F5a%2F3f8d5aab23654f30ab6a9a0f7d22e8df%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-02-22,1932-02-26,https://shakespeareandco.princeton.edu/members/ramniklalk/,Trivedi Ramniklalk,"Ramniklalk, Trivedi",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/shaw-three-plays-puritans/,Three Plays for Puritans,,"Shaw, George Bernard",1901,,Lending Library Card,"Sylvia Beach, Trivedi Ramniklalk Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dab154c2-28ac-4232-b8c5-4d0c7de0e691/manifest,https://iiif.princeton.edu/loris/figgy_prod/30%2F4b%2Ff8%2F304bf876684d4301b4f258022adb2188%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-02-23,1932-03-07,https://shakespeareandco.princeton.edu/members/joyce-giorgio/,Giorgio Joyce,"Joyce, Giorgio",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/maugham-first-person-singular/,First Person Singular,,"Maugham, W. Somerset",1931,,Lending Library Card,"Giorgio Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1932-02-23,1932-03-01,https://shakespeareandco.princeton.edu/members/joyce-giorgio/,Giorgio Joyce,"Joyce, Giorgio",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/morley-swiss-family-manhattan/,Swiss Family Manhattan,,"Morley, Christopher",1932,,Lending Library Card,"Giorgio Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1932-02-23,1932-03-07,https://shakespeareandco.princeton.edu/members/joyce-giorgio/,Giorgio Joyce,"Joyce, Giorgio",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/ferber-american-beauty/,American Beauty,,"Ferber, Edna",1931,,Lending Library Card,"Giorgio Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1932-02-23,1932-03-01,https://shakespeareandco.princeton.edu/members/joyce-giorgio/,Giorgio Joyce,"Joyce, Giorgio",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/borden-sarah-gay/,Sarah Gay,,"Borden, Mary",1931,,Lending Library Card,"Giorgio Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1932-02-23,1932-03-01,https://shakespeareandco.princeton.edu/members/joyce-giorgio/,Giorgio Joyce,"Joyce, Giorgio",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/nichols-evensong/,Evensong,,"Nichols, Beverley",1932,,Lending Library Card,"Giorgio Joyce's lending library cards are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1932-02-23,1932-02-29,https://shakespeareandco.princeton.edu/members/faulkner-norma/,Norma Faulkner,"Faulkner, Norma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/gramont-years-plenty/,Years of Plenty,,"Gramont, Γlisabeth de",1931,,Lending Library Card,"Norma Faulkner's lending library cards are part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Borrow,1932-02-25,1932-03-01,https://shakespeareandco.princeton.edu/members/sperry/,Mrs. Sperry,"Sperry, Mrs.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/maugham-cakes-ale-skeleton/,"Cakes and Ale, or, the Skeleton in the Cupboard",,"Maugham, W. Somerset",1930,,Lending Library Card,"Sylvia Beach, Mrs Sperry Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b214a6c1-6d56-48f7-a451-c5fa3f845e0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/77%2F93%2Fe5%2F7793e5a2db2141fb837b383ddf7ce6e4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-02-26,1932-03-14,https://shakespeareandco.princeton.edu/members/child-bertha-cushing/,Bertha Cushing Child,"Child, Bertha Cushing",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/faulkner-sanctuary/,Sanctuary,,"Faulkner, William",1931,"Caresse Crosby sold a copy of the Black Sun Press edition of *Sanctuary* to Shakespeare and Company on Feb. 17, 1932.",Lending Library Card,"Sylvia Beach, Bertha Cushing Child Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9be92353-f80b-4fc7-a95a-09f7ef28b99a/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2Fd2%2F95%2Ff2d29586227842e69386891c7d596430%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-02-26,1932-02-29,https://shakespeareandco.princeton.edu/members/ramniklalk/,Trivedi Ramniklalk,"Ramniklalk, Trivedi",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/sinclair-moneychangers/,The Moneychangers,,"Sinclair, Upton",1908,,Lending Library Card,"Sylvia Beach, Trivedi Ramniklalk Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dab154c2-28ac-4232-b8c5-4d0c7de0e691/manifest,https://iiif.princeton.edu/loris/figgy_prod/30%2F4b%2Ff8%2F304bf876684d4301b4f258022adb2188%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-02-26,1932-03-02,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/sitwell-white-thorn/,White Thorn,,"Sitwell, Constance",1932,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/8a%2Fed%2Fe5%2F8aede54be5604567b84a579bfcd20ff8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-02-26,1932-03-14,https://shakespeareandco.princeton.edu/members/child-bertha-cushing/,Bertha Cushing Child,"Child, Bertha Cushing",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/malory-morte-darthur/,Le Morte d'Arthur,,"Malory, Thomas",1485,,Lending Library Card,"Sylvia Beach, Bertha Cushing Child Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9be92353-f80b-4fc7-a95a-09f7ef28b99a/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2Fd2%2F95%2Ff2d29586227842e69386891c7d596430%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-02-27,1932-03-14,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/deeping-short-stories-warwick/,The Short Stories of Warwick Deeping,,"Deeping, Warwick",1930,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2Fe8%2Ffe%2F21e8fe9e0f30440d9c250f4758733d8a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-02-27,1932-03-14,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/powys-defense-sensuality/,In Defense of Sensuality,,"Powys, John Cowper",1931,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2Fe8%2Ffe%2F21e8fe9e0f30440d9c250f4758733d8a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-02-27,1932-03-14,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/somervile-experiences-irish-r/,Further Experiences of an Irish R. M.,,"Somerville, E. Ε.;Ross, Martin",1908,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2Fe8%2Ffe%2F21e8fe9e0f30440d9c250f4758733d8a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-02-27,1932-03-12,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/taylor-mediaeval-mind-history/,The Mediaeval Mind: A History of the Development of Thought and Emotion in the Middle Ages,Vol. 2,"Taylor, Henry Osborn",1911,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/3f%2F8d%2F5a%2F3f8d5aab23654f30ab6a9a0f7d22e8df%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-02-29,1932-03-17,https://shakespeareandco.princeton.edu/members/kennedy-robert/,Robert Kennedy,"Kennedy, Robert",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/pater-greek-studies-series/,Greek Studies: A Series of Essays,,"Pater, Walter",1895,,Lending Library Card,"Sylvia Beach, Robert Kennedy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5819877c-8d7f-42cc-a86b-f8161bca822f/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F74%2Ffe%2Fb474fec7d360422b8c92db20f203ede2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-02-29,1932-03-01,https://shakespeareandco.princeton.edu/members/faulkner-norma/,Norma Faulkner,"Faulkner, Norma",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/richardson-dawns-left-hand/,Dawn's Left Hand (Pilgrimage 10),,"Richardson, Dorothy M.",1931,,Lending Library Card,"Norma Faulkner's lending library cards are part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Borrow,1932-03-01,1932-03-05,https://shakespeareandco.princeton.edu/members/sperry/,Mrs. Sperry,"Sperry, Mrs.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/maugham-trembling-leaf-little/,The Trembling of a Leaf: Little Stories of the South Sea Islands,,"Maugham, W. Somerset",1921,,Lending Library Card,"Sylvia Beach, Mrs Sperry Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b214a6c1-6d56-48f7-a451-c5fa3f845e0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/77%2F93%2Fe5%2F7793e5a2db2141fb837b383ddf7ce6e4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1932-03-01,1933-03-01,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",240.00,,1 year,365,2,,1932-03-19,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/b4%2Fa0%2F50%2Fb4a05048ffef47afa61a806652e662da%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-03-01,1932-03-12,https://shakespeareandco.princeton.edu/members/faulkner-norma/,Norma Faulkner,"Faulkner, Norma",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/wells-work-wealth-happiness/,"The Work, Wealth and Happiness of Mankind",,"Wells, H. G.",1931,,Lending Library Card,"Norma Faulkner's lending library cards are part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Reimbursement,1932-03-01,1932-03-01,https://shakespeareandco.princeton.edu/members/dorothy-apthorp/,Dorothy Apthorp,"Apthorp, Dorothy",,,,,,,,,,,,,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1932-03-01,1932-03-17,https://shakespeareandco.princeton.edu/members/kennedy-robert/,Robert Kennedy,"Kennedy, Robert",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/lempriere-classical-dictionary-containing/,Classical Dictionary: Containing a Full Account of all the Proper Names Mentioned in Ancient Authors,,"Lemprière, John",1788,,Lending Library Card,"Sylvia Beach, Robert Kennedy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5819877c-8d7f-42cc-a86b-f8161bca822f/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F74%2Ffe%2Fb474fec7d360422b8c92db20f203ede2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-03-02,1932-03-17,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/mackail-square-circle/,The Square Circle,,"Mackail, Denis",1930,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/8a%2Fed%2Fe5%2F8aede54be5604567b84a579bfcd20ff8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-03-03,1932-03-08,https://shakespeareandco.princeton.edu/members/porter-katherine-anne/,Katherine Anne Porter / Mrs. Katherine Anne Pressly,"Porter, Katherine Anne",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/lawrence-letters-h-lawrence/,The Letters of D. H. Lawrence,,"Lawrence, D. H.",1932,,Lending Library Card,"Sylvia Beach, Katherine Anne Porter Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e929ad7e-7cda-422b-9107-310e3c4feb78/manifest,https://iiif.princeton.edu/loris/figgy_prod/ea%2F15%2F1d%2Fea151daa9ec144258470f0d3e74f7ba9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-03-04,1932-03-09,https://shakespeareandco.princeton.edu/members/tritton/,A. Tritton,"Tritton, A.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/borden-sarah-gay/,Sarah Gay,,"Borden, Mary",1931,,Lending Library Card,"Sylvia Beach, Miss A. Tritton Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0eb2f199-cd31-4332-a691-e6e0194cf4a6/manifest,https://iiif.princeton.edu/loris/figgy_prod/8d%2Fbe%2Fb2%2F8dbeb2e592b74163bf5398912ddeb3bc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1932-03-05,1933-03-05,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",175.00,,1 year,365,1,,1932-03-05,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/26%2F73%2Fc4%2F2673c41d1a72495c8231da059cc85000%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-03-05,1932-03-19,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/van-doren-london-omnibus/,The London Omnibus,,"Van Doren, Carl",1932,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/b4%2Fa0%2F50%2Fb4a05048ffef47afa61a806652e662da%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-03-05,1932-03-07,https://shakespeareandco.princeton.edu/members/sperry/,Mrs. Sperry,"Sperry, Mrs.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/stern-thunderstorm/,Thunderstorm,,"Stern, G. B.",1925,,Lending Library Card,"Sylvia Beach, Mrs Sperry Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b214a6c1-6d56-48f7-a451-c5fa3f845e0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/77%2F93%2Fe5%2F7793e5a2db2141fb837b383ddf7ce6e4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-03-05,1932-03-19,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/frost-collected-poems/,Collected Poems,,"Frost, Robert",,"FranΓ§ois ValΓ©ry borrowed *The Collected Poems of Robert Frost* (Longmans, 1930) and Ella Cassaigne borrowed *The Poems of Robert Frost* (Modern Library, 1946).",Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/b4%2Fa0%2F50%2Fb4a05048ffef47afa61a806652e662da%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-03-07,1932-03-09,https://shakespeareandco.princeton.edu/members/sperry/,Mrs. Sperry,"Sperry, Mrs.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/stern-mosaic/,Mosaic,,"Stern, G. B.",1930,,Lending Library Card,"Sylvia Beach, Mrs Sperry Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b214a6c1-6d56-48f7-a451-c5fa3f845e0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/77%2F93%2Fe5%2F7793e5a2db2141fb837b383ddf7ce6e4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-03-09,1932-03-09,https://shakespeareandco.princeton.edu/members/jolas-maria/,Maria McDonald Jolas / Miss Maria McDonald / Mrs. Eugene Jolas,"Jolas, Maria",,,,,,,,,,,30.00,FRF,https://shakespeareandco.princeton.edu/books/montessori-advanced-montessori-method/,The Advanced Montessori Method,,"Montessori, Maria",1917,,Lending Library Card,"Sylvia Beach, Mrs Eugene Jolas Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/896eee0c-590b-4007-b96e-996face8c57a/manifest,https://iiif.princeton.edu/loris/figgy_prod/17%2F1a%2F8a%2F171a8a48c9fd48ce8fa0799b666cbf87%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-03-09,1932-03-11,https://shakespeareandco.princeton.edu/members/tritton/,A. Tritton,"Tritton, A.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/hardy-well-beloved-sketch/,The Well-Beloved: A Sketch of a Temperament,,"Hardy, Thomas",1897,,Lending Library Card,"Sylvia Beach, Miss A. Tritton Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0eb2f199-cd31-4332-a691-e6e0194cf4a6/manifest,https://iiif.princeton.edu/loris/figgy_prod/8d%2Fbe%2Fb2%2F8dbeb2e592b74163bf5398912ddeb3bc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-03-09,1932-03-10,https://shakespeareandco.princeton.edu/members/sperry/,Mrs. Sperry,"Sperry, Mrs.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/masters-nuptial-flight/,The Nuptial Flight,,"Masters, Edgar Lee",1923,,Lending Library Card,"Sylvia Beach, Mrs Sperry Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b214a6c1-6d56-48f7-a451-c5fa3f845e0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/77%2F93%2Fe5%2F7793e5a2db2141fb837b383ddf7ce6e4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-03-09,1932-03-09,https://shakespeareandco.princeton.edu/members/jolas-maria/,Maria McDonald Jolas / Miss Maria McDonald / Mrs. Eugene Jolas,"Jolas, Maria",,,,,,,,,,,45.00,FRF,https://shakespeareandco.princeton.edu/books/montessori-advanced-montessori-method/,The Advanced Montessori Method,Vol. 2,"Montessori, Maria",1917,,Lending Library Card,"Sylvia Beach, Mrs Eugene Jolas Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/896eee0c-590b-4007-b96e-996face8c57a/manifest,https://iiif.princeton.edu/loris/figgy_prod/17%2F1a%2F8a%2F171a8a48c9fd48ce8fa0799b666cbf87%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-03-10,1932-03-11,https://shakespeareandco.princeton.edu/members/sperry/,Mrs. Sperry,"Sperry, Mrs.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/borden-sarah-gay/,Sarah Gay,,"Borden, Mary",1931,,Lending Library Card,"Sylvia Beach, Mrs Sperry Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b214a6c1-6d56-48f7-a451-c5fa3f845e0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/77%2F93%2Fe5%2F7793e5a2db2141fb837b383ddf7ce6e4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-03-10,1932-03-12,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/smith-satans-circus-stories/,Satan's Circus and Other Stories,,"Smith, Eleanor",1932,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/5f%2F47%2F3a%2F5f473ac7bddd46a6b4314e22a3b90042%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-03-11,1932-03-14,https://shakespeareandco.princeton.edu/members/sperry/,Mrs. Sperry,"Sperry, Mrs.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/stern-jack-amanory/,Jack A'Manory,,"Stern, G. B.",1927,,Lending Library Card,"Sylvia Beach, Mrs Sperry Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b214a6c1-6d56-48f7-a451-c5fa3f845e0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/77%2F93%2Fe5%2F7793e5a2db2141fb837b383ddf7ce6e4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-03-11,1932-03-17,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/boyle-plagued-nightingale/,Plagued by the Nightingale,,"Boyle, Kay",1931,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/26%2F73%2Fc4%2F2673c41d1a72495c8231da059cc85000%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-03-12,1932-03-14,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/wallace-white-face/,White Face,,"Wallace, Edgar",1930,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/5f%2F47%2F3a%2F5f473ac7bddd46a6b4314e22a3b90042%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-03-12,1932-03-18,https://shakespeareandco.princeton.edu/members/faulkner-norma/,Norma Faulkner,"Faulkner, Norma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/morgan-fountain/,The Fountain,,"Morgan, Charles",1932,,Lending Library Card,"Norma Faulkner's lending library cards are part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Borrow,1932-03-12,1932-03-14,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/buck-good-earth/,The Good Earth,,"Buck, Pearl S.",1931,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/3f%2F8d%2F5a%2F3f8d5aab23654f30ab6a9a0f7d22e8df%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1932-03-12,1932-06-12,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",100.00,,3 months,92,1,,1932-03-08,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/5f%2F47%2F3a%2F5f473ac7bddd46a6b4314e22a3b90042%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-03-14,1932-03-19,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/morand-lewis-irene/,Lewis and Irene,,"Morand, Paul",1925,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2Fe8%2Ffe%2F21e8fe9e0f30440d9c250f4758733d8a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-03-14,1932-05-16,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,63,,,https://shakespeareandco.princeton.edu/books/davis-opening-door-novel/,The Opening of a Door: A Novel,,"Davis, George",1931,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/3f%2F8d%2F5a%2F3f8d5aab23654f30ab6a9a0f7d22e8df%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-03-14,1932-03-16,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/wodehouse-uneasy-money/,Uneasy Money,,"Wodehouse, P. G.",1916,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/5f%2F47%2F3a%2F5f473ac7bddd46a6b4314e22a3b90042%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-03-14,1932-03-19,https://shakespeareandco.princeton.edu/members/sperry/,Mrs. Sperry,"Sperry, Mrs.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/tomlinson-gallions-reach/,Gallions Reach,,"Tomlinson, H. M.",1927,,Lending Library Card,"Sylvia Beach, Mrs Sperry Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b214a6c1-6d56-48f7-a451-c5fa3f845e0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/77%2F93%2Fe5%2F7793e5a2db2141fb837b383ddf7ce6e4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-03-14,1932-03-19,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/melville-great-french-short/,Great French Short Stories,,,1928,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2Fe8%2Ffe%2F21e8fe9e0f30440d9c250f4758733d8a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-03-14,1932-03-19,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/oneill-mourning-becomes-electra/,Mourning Becomes Electra,,"O'Neill, Eugene",1931,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2Fe8%2Ffe%2F21e8fe9e0f30440d9c250f4758733d8a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-03-14,1932-03-16,https://shakespeareandco.princeton.edu/members/child-bertha-cushing/,Bertha Cushing Child,"Child, Bertha Cushing",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/stern-debonair-story-persephone/,Debonair: The Story of Persephone,,"Stern, G. B.",1928,,Lending Library Card,"Sylvia Beach, Bertha Cushing Child Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9be92353-f80b-4fc7-a95a-09f7ef28b99a/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2Fd2%2F95%2Ff2d29586227842e69386891c7d596430%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-03-16,1932-03-31,https://shakespeareandco.princeton.edu/members/child-bertha-cushing/,Bertha Cushing Child,"Child, Bertha Cushing",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/lewis-apes-god/,The Apes of God,,"Lewis, Wyndham",1930,,Lending Library Card,"Sylvia Beach, Bertha Cushing Child Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9be92353-f80b-4fc7-a95a-09f7ef28b99a/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2Fd2%2F95%2Ff2d29586227842e69386891c7d596430%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-03-16,1932-05-19,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,64,,,https://shakespeareandco.princeton.edu/books/galsworthy-maid-waiting/,Maid in Waiting (End of Chapter),,"Galsworthy, John",1931,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/3f%2F8d%2F5a%2F3f8d5aab23654f30ab6a9a0f7d22e8df%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-03-16,1932-03-24,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/clark-great-short-stories/,Great Short Stories of the World,,,1925,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/5f%2F47%2F3a%2F5f473ac7bddd46a6b4314e22a3b90042%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-03-17,1932-03-21,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/la-farge-laughing-boy/,Laughing Boy,,"La Farge, Oliver",1929,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/8a%2Fed%2Fe5%2F8aede54be5604567b84a579bfcd20ff8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-03-17,1932-03-21,https://shakespeareandco.princeton.edu/members/kennedy-robert/,Robert Kennedy,"Kennedy, Robert",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/fletcher-murder-four-degrees/,Murder in Four Degrees,,"Fletcher, Joseph Smith",1931,,Lending Library Card,"Sylvia Beach, Robert Kennedy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5819877c-8d7f-42cc-a86b-f8161bca822f/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F74%2Ffe%2Fb474fec7d360422b8c92db20f203ede2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-03-17,1932-03-21,https://shakespeareandco.princeton.edu/members/kennedy-robert/,Robert Kennedy,"Kennedy, Robert",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/carroll-alices-adventures-wonderland/,Alice's Adventures in Wonderland,,"Carroll, Lewis",1865,,Lending Library Card,"Sylvia Beach, Robert Kennedy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5819877c-8d7f-42cc-a86b-f8161bca822f/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F74%2Ffe%2Fb474fec7d360422b8c92db20f203ede2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-03-17,1932-03-24,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/cronin-hatters-castle/,Hatter's Castle,,"Cronin, A. J.",1932,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/26%2F73%2Fc4%2F2673c41d1a72495c8231da059cc85000%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-03-17,1932-03-23,https://shakespeareandco.princeton.edu/members/kennedy-robert/,Robert Kennedy,"Kennedy, Robert",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/wolfe-happy-though-human/,How to Be Happy though Human,,"Wolfe, Walter BΓ©ran",1931,,Lending Library Card,"Sylvia Beach, Robert Kennedy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5819877c-8d7f-42cc-a86b-f8161bca822f/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F74%2Ffe%2Fb474fec7d360422b8c92db20f203ede2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1932-03-18,1932-04-16,https://shakespeareandco.princeton.edu/members/de-boisanger-mr/,Mr. de Boisanger,"Boisanger, Mr. de",,,29 days,29,,,1932-03-18,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1932-03-18,1932-04-02,https://shakespeareandco.princeton.edu/members/faulkner-norma/,Norma Faulkner,"Faulkner, Norma",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/nichols-evensong/,Evensong,,"Nichols, Beverley",1932,,Lending Library Card,"Norma Faulkner's lending library cards are part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Borrow,1932-03-19,1932-04-09,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/percy-bysshe-shelley/,Percy Bysshe Shelley,,,,"Unidentified. By or about Shelley. John Rodker borrowed an unspecifed Oxford edition. On March 19, 1932, Fernand Colens borrowed volume 2 of an unspecified edition.",Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/b4%2Fa0%2F50%2Fb4a05048ffef47afa61a806652e662da%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1932-03-19,1932-03-30,https://shakespeareandco.princeton.edu/members/barbier-2/,Mr. Barbier,"Barbier, Mr.",,,11 days,11,,,1932-03-19,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1932-03-19,1932-03-21,https://shakespeareandco.princeton.edu/members/sperry/,Mrs. Sperry,"Sperry, Mrs.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/dell-love-without-money/,Love without Money,,"Dell, Floyd",1931,,Lending Library Card,"Sylvia Beach, Mrs Sperry Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b214a6c1-6d56-48f7-a451-c5fa3f845e0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/77%2F93%2Fe5%2F7793e5a2db2141fb837b383ddf7ce6e4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-03-19,1932-03-22,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/huxley-brave-new-world/,Brave New World,,"Huxley, Aldous",1932,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2Fe8%2Ffe%2F21e8fe9e0f30440d9c250f4758733d8a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-03-19,1932-03-22,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/dos-passos-1919/,1919,,"Dos Passos, John",1932,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2Fe8%2Ffe%2F21e8fe9e0f30440d9c250f4758733d8a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-03-19,1932-03-22,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/fletcher-murder-wrides-park/,The Murder at Wrides Park,,"Fletcher, Joseph Smith",1931,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/3f%2F8d%2F5a%2F3f8d5aab23654f30ab6a9a0f7d22e8df%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-03-19,1932-03-22,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/melville-great-german-short/,Great German Short Stories,,,1929,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2Fe8%2Ffe%2F21e8fe9e0f30440d9c250f4758733d8a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-03-19,1932-04-06,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/fletcher-sea-fog/,Sea Fog,,"Fletcher, Joseph Smith",1925,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/0f%2Fd5%2Fe8%2F0fd5e8ecc00f4c159cbabdbe207808d7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-03-21,1932-03-23,https://shakespeareandco.princeton.edu/members/kennedy-robert/,Robert Kennedy,"Kennedy, Robert",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/homer-odyssey/,The Odyssey,,Homer,,"Henry Church borrowed *The Odyssey,* translated by S. H. Butcher and A. Lang (1879), and Louise Crane borrowed *The Odyssey,* translated by A. T. Murray (1919).",Lending Library Card,"Sylvia Beach, Robert Kennedy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5819877c-8d7f-42cc-a86b-f8161bca822f/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F74%2Ffe%2Fb474fec7d360422b8c92db20f203ede2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-03-21,1932-03-26,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/golding-magnolia-street/,Magnolia Street,,"Golding, Louis",1932,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/8a%2Fed%2Fe5%2F8aede54be5604567b84a579bfcd20ff8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-03-21,1932-03-23,https://shakespeareandco.princeton.edu/members/kennedy-robert/,Robert Kennedy,"Kennedy, Robert",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/cather-professors-house/,The Professor's House,,"Cather, Willa",1925,,Lending Library Card,"Sylvia Beach, Robert Kennedy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5819877c-8d7f-42cc-a86b-f8161bca822f/manifest,https://iiif.princeton.edu/loris/figgy_prod/b4%2F74%2Ffe%2Fb474fec7d360422b8c92db20f203ede2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-03-21,1932-03-21,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,23.33,FRF,https://shakespeareandco.princeton.edu/books/jolas-transition/,transition,"no. 21, 1932",,,,Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fa2%2F0e%2Fcba20e86c11b4bacbd1eadda8182fccc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-03-21,1932-03-21,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,23.33,FRF,https://shakespeareandco.princeton.edu/books/jolas-transition/,transition,"no. 21, 1932",,,,Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fa2%2F0e%2Fcba20e86c11b4bacbd1eadda8182fccc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-03-21,1932-03-21,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,23.33,FRF,https://shakespeareandco.princeton.edu/books/jolas-transition/,transition,"no. 21, 1932",,,,Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fa2%2F0e%2Fcba20e86c11b4bacbd1eadda8182fccc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-03-21,1932-03-21,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,23.33,FRF,https://shakespeareandco.princeton.edu/books/jolas-transition/,transition,"no. 21, 1932",,,,Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fa2%2F0e%2Fcba20e86c11b4bacbd1eadda8182fccc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-03-21,1932-03-21,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,23.33,FRF,https://shakespeareandco.princeton.edu/books/jolas-transition/,transition,"no. 21, 1932",,,,Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fa2%2F0e%2Fcba20e86c11b4bacbd1eadda8182fccc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-03-21,1932-03-21,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,23.33,FRF,https://shakespeareandco.princeton.edu/books/jolas-transition/,transition,"no. 21, 1932",,,,Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fa2%2F0e%2Fcba20e86c11b4bacbd1eadda8182fccc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-03-21,1932-03-21,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,23.33,FRF,https://shakespeareandco.princeton.edu/books/jolas-transition/,transition,"no. 21, 1932",,,,Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fa2%2F0e%2Fcba20e86c11b4bacbd1eadda8182fccc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-03-21,1932-03-21,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,23.33,FRF,https://shakespeareandco.princeton.edu/books/jolas-transition/,transition,"no. 21, 1932",,,,Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fa2%2F0e%2Fcba20e86c11b4bacbd1eadda8182fccc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-03-21,1932-03-21,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,23.33,FRF,https://shakespeareandco.princeton.edu/books/jolas-transition/,transition,"no. 21, 1932",,,,Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fa2%2F0e%2Fcba20e86c11b4bacbd1eadda8182fccc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-03-21,1932-03-21,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/jolas-transition/,transition,"no. 21, 1932",,,,Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fa2%2F0e%2Fcba20e86c11b4bacbd1eadda8182fccc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-03-21,1932-03-21,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/jolas-transition/,transition,"no. 21, 1932",,,,Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fa2%2F0e%2Fcba20e86c11b4bacbd1eadda8182fccc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-03-21,1932-03-21,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/jolas-transition/,transition,"no. 21, 1932",,,,Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fa2%2F0e%2Fcba20e86c11b4bacbd1eadda8182fccc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-03-21,1932-03-21,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/jolas-transition/,transition,"no. 21, 1932",,,,Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fa2%2F0e%2Fcba20e86c11b4bacbd1eadda8182fccc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-03-21,1932-03-21,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/jolas-transition/,transition,"no. 21, 1932",,,,Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fa2%2F0e%2Fcba20e86c11b4bacbd1eadda8182fccc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-03-21,1932-03-21,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/jolas-transition/,transition,"no. 21, 1932",,,,Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fa2%2F0e%2Fcba20e86c11b4bacbd1eadda8182fccc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-03-21,1932-03-21,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/jolas-transition/,transition,"no. 21, 1932",,,,Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fa2%2F0e%2Fcba20e86c11b4bacbd1eadda8182fccc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-03-21,1932-03-21,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/jolas-transition/,transition,"no. 21, 1932",,,,Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fa2%2F0e%2Fcba20e86c11b4bacbd1eadda8182fccc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-03-21,1932-03-21,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/jolas-transition/,transition,"no. 21, 1932",,,,Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fa2%2F0e%2Fcba20e86c11b4bacbd1eadda8182fccc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-03-21,1932-03-21,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/jolas-transition/,transition,"no. 21, 1932",,,,Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fa2%2F0e%2Fcba20e86c11b4bacbd1eadda8182fccc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-03-21,1932-03-21,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,23.33,FRF,https://shakespeareandco.princeton.edu/books/jolas-transition/,transition,"no. 21, 1932",,,,Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fa2%2F0e%2Fcba20e86c11b4bacbd1eadda8182fccc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-03-21,1932-03-21,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/jolas-transition/,transition,"no. 21, 1932",,,,Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fa2%2F0e%2Fcba20e86c11b4bacbd1eadda8182fccc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-03-21,1932-03-21,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,23.33,FRF,https://shakespeareandco.princeton.edu/books/jolas-transition/,transition,"no. 21, 1932",,,,Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fa2%2F0e%2Fcba20e86c11b4bacbd1eadda8182fccc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-03-21,1932-03-21,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,23.33,FRF,https://shakespeareandco.princeton.edu/books/jolas-transition/,transition,"no. 21, 1932",,,,Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fa2%2F0e%2Fcba20e86c11b4bacbd1eadda8182fccc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-03-21,1932-03-21,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,23.33,FRF,https://shakespeareandco.princeton.edu/books/jolas-transition/,transition,"no. 21, 1932",,,,Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fa2%2F0e%2Fcba20e86c11b4bacbd1eadda8182fccc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-03-21,1932-03-21,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,23.33,FRF,https://shakespeareandco.princeton.edu/books/jolas-transition/,transition,"no. 21, 1932",,,,Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fa2%2F0e%2Fcba20e86c11b4bacbd1eadda8182fccc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-03-21,,https://shakespeareandco.princeton.edu/members/sperry/,Mrs. Sperry,"Sperry, Mrs.",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/mckenna-due-reckoning-third/,Due Reckoning: Being the Third and Last Part of the Realists,,"McKenna, Stephen",1927,,Lending Library Card,"Sylvia Beach, Mrs Sperry Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b214a6c1-6d56-48f7-a451-c5fa3f845e0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/77%2F93%2Fe5%2F7793e5a2db2141fb837b383ddf7ce6e4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-03-22,,https://shakespeareandco.princeton.edu/members/melik/,M. Melik,"Melik, M.",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/eliot-sacred-wood-essays/,The Sacred Wood: Essays on Poetry and Criticism,,"Eliot, T. S.",1920,,Lending Library Card,"Sylvia Beach, Melik Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fe8fa931-fcd1-469e-9d43-39a979973b28/manifest,https://iiif.princeton.edu/loris/figgy_prod/31%2F56%2Ff5%2F3156f59710954d82a009fb0c115ce9ad%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-03-22,1932-03-25,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/dos-passos-one-mans-initiation/,One Man's Initiation β 1917,,"Dos Passos, John",1917,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/12%2Fc0%2F9a%2F12c09a547466442eb8070b17b3423a31%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-03-22,1932-03-25,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/zweig-amok-story/,Amok: A Story,,"Zweig, Stefan",1931,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/12%2Fc0%2F9a%2F12c09a547466442eb8070b17b3423a31%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-03-22,1932-03-25,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/douglas-summer-islands-ischia/,Summer Islands: Ischia and Ponza,,"Douglas, Norman",1931,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/12%2Fc0%2F9a%2F12c09a547466442eb8070b17b3423a31%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-03-22,1932-03-25,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/jolas-transition/,transition,,,,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/12%2Fc0%2F9a%2F12c09a547466442eb8070b17b3423a31%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-03-22,1932-05-24,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,63,,,https://shakespeareandco.princeton.edu/books/wassermann-doctor-kerkhoven/,Doctor Kerkhoven,,"Wassermann, Jakob",1932,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/3f%2F8d%2F5a%2F3f8d5aab23654f30ab6a9a0f7d22e8df%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-03-22,,https://shakespeareandco.princeton.edu/members/melik/,M. Melik,"Melik, M.",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/dante/,Dante,,,,Unidentified. By or about Dante.,Lending Library Card,"Sylvia Beach, Melik Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fe8fa931-fcd1-469e-9d43-39a979973b28/manifest,https://iiif.princeton.edu/loris/figgy_prod/31%2F56%2Ff5%2F3156f59710954d82a009fb0c115ce9ad%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-03-24,1932-04-04,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/coyle-french-husband/,The French Husband,,"Coyle, Kathleen",1932,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/26%2F73%2Fc4%2F2673c41d1a72495c8231da059cc85000%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-03-24,1932-04-02,https://shakespeareandco.princeton.edu/members/faulkner-norma/,Norma Faulkner,"Faulkner, Norma",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/faulkner-sanctuary/,Sanctuary,,"Faulkner, William",1931,"Caresse Crosby sold a copy of the Black Sun Press edition of *Sanctuary* to Shakespeare and Company on Feb. 17, 1932.",Lending Library Card,"Norma Faulkner's lending library cards are part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Borrow,1932-03-25,1932-03-29,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/dell-briary-bush/,The Briary-Bush,,"Dell, Floyd",1921,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/12%2Fc0%2F9a%2F12c09a547466442eb8070b17b3423a31%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-03-25,1932-03-29,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/davis-opening-door-novel/,The Opening of a Door: A Novel,,"Davis, George",1931,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/12%2Fc0%2F9a%2F12c09a547466442eb8070b17b3423a31%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-03-25,1932-03-29,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/obrien-best-short-stories-1931-english/,The Best Short Stories of 1931: English,,,1931,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/12%2Fc0%2F9a%2F12c09a547466442eb8070b17b3423a31%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-03-26,1932-04-02,https://shakespeareandco.princeton.edu/members/pfeiffer-virginia/,Virginia Pfeiffer,"Pfeiffer, Virginia",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/barbey-daurevilly-diaboliques/,The Diaboliques,,"Barbey d'Aurevilly, Jules",1925,,Lending Library Card,"Sylvia Beach, Virginia Pfeiffer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5f9e74fc-c06a-4c36-a2d1-878b8fce2cd2/manifest,https://iiif.princeton.edu/loris/figgy_prod/ac%2F78%2Ff5%2Fac78f5786e5d44e0abf8a8aa506e58c4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1932-03-26,1932-04-26,https://shakespeareandco.princeton.edu/members/pfeiffer-virginia/,Virginia Pfeiffer,"Pfeiffer, Virginia",40.00,,1 month,31,2,,1932-03-26,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Virginia Pfeiffer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5f9e74fc-c06a-4c36-a2d1-878b8fce2cd2/manifest,https://iiif.princeton.edu/loris/figgy_prod/ac%2F78%2Ff5%2Fac78f5786e5d44e0abf8a8aa506e58c4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-03-26,1932-04-02,https://shakespeareandco.princeton.edu/members/pfeiffer-virginia/,Virginia Pfeiffer,"Pfeiffer, Virginia",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/boyle-plagued-nightingale/,Plagued by the Nightingale,,"Boyle, Kay",1931,,Lending Library Card,"Sylvia Beach, Virginia Pfeiffer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5f9e74fc-c06a-4c36-a2d1-878b8fce2cd2/manifest,https://iiif.princeton.edu/loris/figgy_prod/ac%2F78%2Ff5%2Fac78f5786e5d44e0abf8a8aa506e58c4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-03-26,1932-04-01,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/jones-morning-cloud/,Morning and Cloud,,"Jones, E. B. C.",1932,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/8a%2Fed%2Fe5%2F8aede54be5604567b84a579bfcd20ff8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-03-29,1932-04-07,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/ernst-pure/,To the Pure,,"Ernst, Morris Leopold",1928,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/12%2Fc0%2F9a%2F12c09a547466442eb8070b17b3423a31%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-03-29,1932-04-01,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/hauptmann-dramatic-works-gerhart/,The Dramatic Works of Gerhart Hauptmann,"Vol. 9, 1929 Historic and Legendary Dramas","Hauptmann, Gerhart",,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/12%2Fc0%2F9a%2F12c09a547466442eb8070b17b3423a31%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-03-29,1932-03-31,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/fletcher-mill-many-windows/,The Mill of Many Windows,,"Fletcher, Joseph Smith",1927,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/1d%2F3c%2F8a%2F1d3c8ac2c87e4aaf87fc8a02d6aeebd0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-03-29,1932-04-01,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/dell-runaway/,Runaway,,"Dell, Floyd",1925,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/12%2Fc0%2F9a%2F12c09a547466442eb8070b17b3423a31%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-03-29,1932-05-31,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,63,,,https://shakespeareandco.princeton.edu/books/mackail-square-circle/,The Square Circle,,"Mackail, Denis",1930,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/3f%2F8d%2F5a%2F3f8d5aab23654f30ab6a9a0f7d22e8df%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-03-29,1932-04-01,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/feuchtwanger-jew-suss/,Jew SΓΌss,,"Feuchtwanger, Lion",1926,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/12%2Fc0%2F9a%2F12c09a547466442eb8070b17b3423a31%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-03-29,1932-04-01,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/spengler-decline-west/,The Decline of the West,Vol. 1,"Spengler, Oswald",1926,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/12%2Fc0%2F9a%2F12c09a547466442eb8070b17b3423a31%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1932-03-30,1932-03-30,https://shakespeareandco.princeton.edu/members/barbier-2/,Mr. Barbier,"Barbier, Mr.",,,,,,,,,,,,,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1932-03-31,1932-04-04,https://shakespeareandco.princeton.edu/members/child-bertha-cushing/,Bertha Cushing Child,"Child, Bertha Cushing",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/oneill-mourning-becomes-electra/,Mourning Becomes Electra,,"O'Neill, Eugene",1931,,Lending Library Card,"Sylvia Beach, Bertha Cushing Child Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9be92353-f80b-4fc7-a95a-09f7ef28b99a/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2Fd2%2F95%2Ff2d29586227842e69386891c7d596430%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-03-31,1932-04-12,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/wassermann-doctor-kerkhoven/,Doctor Kerkhoven,,"Wassermann, Jakob",1932,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/1d%2F3c%2F8a%2F1d3c8ac2c87e4aaf87fc8a02d6aeebd0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-03-31,1932-04-04,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/huxley-brave-new-world/,Brave New World,,"Huxley, Aldous",1932,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/3f%2F8d%2F5a%2F3f8d5aab23654f30ab6a9a0f7d22e8df%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-04-01,,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/gogol-dead-souls/,Dead Souls,2 vols.,"Gogol, Nikolai",1842,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/12%2Fc0%2F9a%2F12c09a547466442eb8070b17b3423a31%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-04-01,1932-04-05,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/sullivan-grace-god/,But for the Grace of God,,"Sullivan, J. W. N.",1932,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/8a%2Fed%2Fe5%2F8aede54be5604567b84a579bfcd20ff8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-04-01,1932-04-07,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/lewisohn-case-mr-crump/,The Case of Mr. Crump,,"Lewisohn, Ludwig",1926,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/12%2Fc0%2F9a%2F12c09a547466442eb8070b17b3423a31%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-04-01,1932-04-11,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/wassermann-worlds-illusion/,The World's Illusion,Vol. 1,"Wassermann, Jakob",1920,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/12%2Fc0%2F9a%2F12c09a547466442eb8070b17b3423a31%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-04-02,1932-04-15,https://shakespeareandco.princeton.edu/members/pfeiffer-virginia/,Virginia Pfeiffer,"Pfeiffer, Virginia",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/anthropology/,Anthropology,,,,"Unidentified. Edward B. Tylor's *Anthropology* (1904), R. R. Marett's *Anthropology* (1911), or A. K. Kroeber's [*Anthropology*](https://shakespeareandco.princeton.edu/books/kroeber-anthropology/) (1923), etc.",Lending Library Card,"Sylvia Beach, Virginia Pfeiffer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5f9e74fc-c06a-4c36-a2d1-878b8fce2cd2/manifest,https://iiif.princeton.edu/loris/figgy_prod/ac%2F78%2Ff5%2Fac78f5786e5d44e0abf8a8aa506e58c4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-04-02,1932-04-15,https://shakespeareandco.princeton.edu/members/pfeiffer-virginia/,Virginia Pfeiffer,"Pfeiffer, Virginia",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/nichols-star-spangled-manner/,The Star-Spangled Manner,,"Nichols, Beverley",1928,,Lending Library Card,"Sylvia Beach, Virginia Pfeiffer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5f9e74fc-c06a-4c36-a2d1-878b8fce2cd2/manifest,https://iiif.princeton.edu/loris/figgy_prod/ac%2F78%2Ff5%2Fac78f5786e5d44e0abf8a8aa506e58c4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-04-02,1932-04-09,https://shakespeareandco.princeton.edu/members/faulkner-norma/,Norma Faulkner,"Faulkner, Norma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/golding-magnolia-street/,Magnolia Street,,"Golding, Louis",1932,,Lending Library Card,"Norma Faulkner's lending library cards are part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Borrow,1932-04-04,1932-04-05,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/island/,Island,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/3f%2F8d%2F5a%2F3f8d5aab23654f30ab6a9a0f7d22e8df%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-04-04,1932-04-14,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/faulkner-sanctuary/,Sanctuary,,"Faulkner, William",1931,"Caresse Crosby sold a copy of the Black Sun Press edition of *Sanctuary* to Shakespeare and Company on Feb. 17, 1932.",Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/26%2F73%2Fc4%2F2673c41d1a72495c8231da059cc85000%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-04-04,1932-04-21,https://shakespeareandco.princeton.edu/members/child-bertha-cushing/,Bertha Cushing Child,"Child, Bertha Cushing",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/powys-rabelais-life/,"Rabelais, His Life",,"Powys, John Cowper",1913,,Lending Library Card,"Sylvia Beach, Bertha Cushing Child Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9be92353-f80b-4fc7-a95a-09f7ef28b99a/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2Fd2%2F95%2Ff2d29586227842e69386891c7d596430%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-04-05,1932-04-07,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/hoffenstein-poems-praise-practically/,Poems in Praise of Practically Nothing,,"Hoffenstein, Samuel",1928,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/12%2Fc0%2F9a%2F12c09a547466442eb8070b17b3423a31%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-04-05,1932-04-09,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/swinnerton-three-lovers/,The Three Lovers,,"Swinnerton, Frank",1922,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/3f%2F8d%2F5a%2F3f8d5aab23654f30ab6a9a0f7d22e8df%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-04-05,1932-04-09,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/hall-master-house/,The Master of the House,,"Hall, Radclyffe",1932,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/8a%2Fed%2Fe5%2F8aede54be5604567b84a579bfcd20ff8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-04-06,1932-04-11,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/kennedy-return-dare/,Return I Dare Not,,"Kennedy, Margaret",1931,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/0f%2Fd5%2Fe8%2F0fd5e8ecc00f4c159cbabdbe207808d7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-04-07,1932-04-09,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/nine-people/,Nine People,,,,Unidentified.,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/12%2Fc0%2F9a%2F12c09a547466442eb8070b17b3423a31%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-04-07,1932-04-11,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/glory/,Glory,,,,Unidentified. LΓ©onie Aminoff's *Glory* (1927) or Nan Bagby Stephens's *Glory* (1932).,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/12%2Fc0%2F9a%2F12c09a547466442eb8070b17b3423a31%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-04-07,1932-04-11,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/chramoff-flying-osip-stories/,Flying Osip: Stories of New Russia,,,1925,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/12%2Fc0%2F9a%2F12c09a547466442eb8070b17b3423a31%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-04-09,1932-04-23,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/beers-history-english-romanticism/,A History of English Romanticism in the Nineteenth Century,,"Beers, Henry A.",1898,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/b4%2Fa0%2F50%2Fb4a05048ffef47afa61a806652e662da%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-04-09,1932-04-23,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/harris-bernard-shaw/,Bernard Shaw: An Unauthorized Biography Based on Firsthand Information,,"Harris, Frank",1931,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/b4%2Fa0%2F50%2Fb4a05048ffef47afa61a806652e662da%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-04-09,1932-04-11,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/reid-mackerel-sky/,Mackerel Sky,,"Reid, Eleanor",1926,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/3f%2F8d%2F5a%2F3f8d5aab23654f30ab6a9a0f7d22e8df%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-04-09,1932-04-13,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/boyle-plagued-nightingale/,Plagued by the Nightingale,,"Boyle, Kay",1931,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/8a%2Fed%2Fe5%2F8aede54be5604567b84a579bfcd20ff8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-04-09,1932-04-30,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/wendell-france-today/,The France of Today,,"Wendell, Barrett",1907,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/98%2F0f%2Fd5%2F980fd5da7f05425b999c42e6af9d4636%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-04-09,1932-04-30,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/paris/,Paris,,,,Unidentified.,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/98%2F0f%2Fd5%2F980fd5da7f05425b999c42e6af9d4636%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-04-09,1932-04-30,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/kivi-seven-brothers/,Seven Brothers,,"Kivi, Aleksis",1929,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/98%2F0f%2Fd5%2F980fd5da7f05425b999c42e6af9d4636%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-04-09,1932-04-16,https://shakespeareandco.princeton.edu/members/faulkner-norma/,Norma Faulkner,"Faulkner, Norma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/kollontai-free-love/,Free Love,,"Kollontai, Alexandra",1932,,Lending Library Card,"Norma Faulkner's lending library cards are part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Borrow,1932-04-11,1932-04-14,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/three-loves/,Three Loves,,,,"Unidentified. Max Brod's *Three Loves* (1929) or A. J. Cronin's *Three Loves* (1932), etc.",Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/98%2F0f%2Fd5%2F980fd5da7f05425b999c42e6af9d4636%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-04-11,1932-04-14,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/morgan-fountain/,The Fountain,,"Morgan, Charles",1932,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/3f%2F8d%2F5a%2F3f8d5aab23654f30ab6a9a0f7d22e8df%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-04-11,,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/renier-english-human/,The English: Are They Human?,,"Renier, Gustaaf Johannes",1931,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/98%2F0f%2Fd5%2F980fd5da7f05425b999c42e6af9d4636%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-04-11,1932-04-30,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/goncharov-oblomov/,Oblomov,,"Goncharov, Ivan",1929,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/98%2F0f%2Fd5%2F980fd5da7f05425b999c42e6af9d4636%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1932-04-12,1932-04-12,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,,,91.00,FRF,https://shakespeareandco.princeton.edu/books/sheldon-consumer-engineering-new/,Consumer Engineering: A New Technique for Prosperity,,"Sheldon, Roy;Arens, Egmont Hegel",1932,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/98%2F0f%2Fd5%2F980fd5da7f05425b999c42e6af9d4636%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-04-12,1932-04-19,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/rousseau-emile-education/,"Emile, or On Education",,"Rousseau, Jean-Jacques",1762,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/98%2F0f%2Fd5%2F980fd5da7f05425b999c42e6af9d4636%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1932-04-12,1932-04-12,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,,,73.00,FRF,https://shakespeareandco.princeton.edu/books/paul-gaugin/,Paul Gauguin,,,,"Unidentified. John Gould Fletcher's *Paul Gauguin: His Life and Art* (1921), Robert Rey's *Gauguin* (1924), or Beril Becker's *Paul Gauguin: The Calm Madman* (1931), etc.",Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/98%2F0f%2Fd5%2F980fd5da7f05425b999c42e6af9d4636%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-04-12,1932-04-18,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/oneill-emperor-jones/,The Emperor Jones,,"O'Neill, Eugene",1921,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/1d%2F3c%2F8a%2F1d3c8ac2c87e4aaf87fc8a02d6aeebd0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1932-04-12,1932-07-12,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",200.00,,3 months,91,3,,1932-04-12,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/98%2F0f%2Fd5%2F980fd5da7f05425b999c42e6af9d4636%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-04-13,1932-04-20,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/buck-good-earth/,The Good Earth,,"Buck, Pearl S.",1931,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/8a%2Fed%2Fe5%2F8aede54be5604567b84a579bfcd20ff8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-04-14,1932-04-20,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/young-young-physician/,The Young Physician,,"Young, Francis Brett",1920,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/3f%2F8d%2F5a%2F3f8d5aab23654f30ab6a9a0f7d22e8df%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-04-15,1932-06-11,https://shakespeareandco.princeton.edu/members/vogue-de/,Countess de VoguΓ©,"de VoguΓ©, Countess",,,,,,,,,Returned,57,,,https://shakespeareandco.princeton.edu/books/melville-white-jacket/,White-Jacket,,"Melville, Herman",1850,,Lending Library Card,"Sylvia Beach, La Comtesse de Vogue Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4a9b4f25-ef3e-4b7d-9d28-cc9f2c070d68/manifest,https://iiif-cloud.princeton.edu/iiif/2/2b%2Ffd%2F2e%2F2bfd2e2420b84fbba1b3e805c78012a7%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-04-15,1932-04-21,https://shakespeareandco.princeton.edu/members/pfeiffer-virginia/,Virginia Pfeiffer,"Pfeiffer, Virginia",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/garnett-grasshoppers-come/,The Grasshoppers Come,,"Garnett, David",1931,,Lending Library Card,"Sylvia Beach, Virginia Pfeiffer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5f9e74fc-c06a-4c36-a2d1-878b8fce2cd2/manifest,https://iiif.princeton.edu/loris/figgy_prod/ac%2F78%2Ff5%2Fac78f5786e5d44e0abf8a8aa506e58c4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-04-15,1932-04-21,https://shakespeareandco.princeton.edu/members/pfeiffer-virginia/,Virginia Pfeiffer,"Pfeiffer, Virginia",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/atkinson-inner-teachings-philosophies/,The Inner Teachings of the Philosophies and Religions of India,,"Ramacharaka, Yogi",1909,,Lending Library Card,"Sylvia Beach, Virginia Pfeiffer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5f9e74fc-c06a-4c36-a2d1-878b8fce2cd2/manifest,https://iiif.princeton.edu/loris/figgy_prod/ac%2F78%2Ff5%2Fac78f5786e5d44e0abf8a8aa506e58c4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-04-15,1932-04-21,https://shakespeareandco.princeton.edu/members/pfeiffer-virginia/,Virginia Pfeiffer,"Pfeiffer, Virginia",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/wassermann-maurizius-case/,The Maurizius Case,,"Wassermann, Jakob",1930,,Lending Library Card,"Sylvia Beach, Virginia Pfeiffer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5f9e74fc-c06a-4c36-a2d1-878b8fce2cd2/manifest,https://iiif.princeton.edu/loris/figgy_prod/ac%2F78%2Ff5%2Fac78f5786e5d44e0abf8a8aa506e58c4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-04-15,1932-06-28,https://shakespeareandco.princeton.edu/members/vogue-de/,Countess de VoguΓ©,"de VoguΓ©, Countess",,,,,,,,,Returned,74,,,https://shakespeareandco.princeton.edu/books/herman-melville/,Herman Melville,,,,Unidentified. By or about Herman Melville.,Lending Library Card,"Sylvia Beach, La Comtesse de Vogue Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4a9b4f25-ef3e-4b7d-9d28-cc9f2c070d68/manifest,https://iiif-cloud.princeton.edu/iiif/2/2b%2Ffd%2F2e%2F2bfd2e2420b84fbba1b3e805c78012a7%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1932-04-15,1932-05-15,https://shakespeareandco.princeton.edu/members/vogue-de/,Countess de VoguΓ©,"de VoguΓ©, Countess",40.00,100.00,1 month,30,2,,1932-04-15,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, La Comtesse de Vogue Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4a9b4f25-ef3e-4b7d-9d28-cc9f2c070d68/manifest,https://iiif-cloud.princeton.edu/iiif/2/2b%2Ffd%2F2e%2F2bfd2e2420b84fbba1b3e805c78012a7%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-04-16,1932-04-26,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/galsworthy-maid-waiting/,Maid in Waiting (End of Chapter),,"Galsworthy, John",1931,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/0f%2Fd5%2Fe8%2F0fd5e8ecc00f4c159cbabdbe207808d7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-04-16,1932-04-18,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/sayers-carcase/,Have His Carcase,,"Sayers, Dorothy L.",1932,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/0f%2Fd5%2Fe8%2F0fd5e8ecc00f4c159cbabdbe207808d7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-04-18,1932-04-20,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/boyle-plagued-nightingale/,Plagued by the Nightingale,,"Boyle, Kay",1931,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/1d%2F3c%2F8a%2F1d3c8ac2c87e4aaf87fc8a02d6aeebd0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-04-20,1932-04-22,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/oconnor-saint-mary-kate/,The Saint and Mary Kate,,"O'Connor, Frank",1932,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/3f%2F8d%2F5a%2F3f8d5aab23654f30ab6a9a0f7d22e8df%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-04-20,1932-05-03,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/la-farge-laughing-boy/,Laughing Boy,,"La Farge, Oliver",1929,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/1d%2F3c%2F8a%2F1d3c8ac2c87e4aaf87fc8a02d6aeebd0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-04-20,1932-04-23,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/certain-man/,A Certain Man,,,,Unidentified. Bryan T. Holland's *A Certain Man* (1924) or Oliver Onions's *A Certain Man* (1932).,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/8a%2Fed%2Fe5%2F8aede54be5604567b84a579bfcd20ff8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-04-21,1932-04-25,https://shakespeareandco.princeton.edu/members/child-bertha-cushing/,Bertha Cushing Child,"Child, Bertha Cushing",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/oflaherty-went-russia/,I Went to Russia,,"O'Flaherty, Liam",1931,,Lending Library Card,"Sylvia Beach, Bertha Cushing Child Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9be92353-f80b-4fc7-a95a-09f7ef28b99a/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2Fd2%2F95%2Ff2d29586227842e69386891c7d596430%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-04-22,1932-04-25,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/sayers-carcase/,Have His Carcase,,"Sayers, Dorothy L.",1932,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/3f%2F8d%2F5a%2F3f8d5aab23654f30ab6a9a0f7d22e8df%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-04-23,1932-05-04,https://shakespeareandco.princeton.edu/members/faulkner-norma/,Norma Faulkner,"Faulkner, Norma",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/oneill-mourning-becomes-electra/,Mourning Becomes Electra,,"O'Neill, Eugene",1931,,Lending Library Card,"Norma Faulkner's lending library cards are part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Borrow,1932-04-23,1932-05-07,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/wolfe-requiem/,Requiem,,"Wolfe, Humbert",1927,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/b4%2Fa0%2F50%2Fb4a05048ffef47afa61a806652e662da%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-04-23,1932-05-07,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/powys-ducdame/,Ducdame,,"Powys, John Cowper",1925,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/b4%2Fa0%2F50%2Fb4a05048ffef47afa61a806652e662da%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-04-23,1932-05-02,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/coyle-french-husband/,The French Husband,,"Coyle, Kathleen",1932,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/8a%2Fed%2Fe5%2F8aede54be5604567b84a579bfcd20ff8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-04-25,1932-04-26,https://shakespeareandco.princeton.edu/members/child-bertha-cushing/,Bertha Cushing Child,"Child, Bertha Cushing",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/lawrence-apropos-lady-chatterleys/,Apropos of Lady Chatterley's Lover,,"Lawrence, D. H.",1930,,Lending Library Card,"Sylvia Beach, Bertha Cushing Child Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9be92353-f80b-4fc7-a95a-09f7ef28b99a/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2Fd2%2F95%2Ff2d29586227842e69386891c7d596430%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-04-25,1932-05-13,https://shakespeareandco.princeton.edu/members/child-bertha-cushing/,Bertha Cushing Child,"Child, Bertha Cushing",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/hackett-henry-eighth/,Henry the Eighth,,"Hackett, Francis",1929,,Lending Library Card,"Sylvia Beach, Bertha Cushing Child Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9be92353-f80b-4fc7-a95a-09f7ef28b99a/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2Fd2%2F95%2Ff2d29586227842e69386891c7d596430%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-04-25,1932-04-30,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/history-devil/,The History of the Devil,,,,"Unidentified. Daniel Defoe's *The Political History of the Devil* (1724), Paul Carus's *History of the Devil and the Idea of Evil* (1899), or R. Lowe Thompson's *The History of the Devil, the Horned God of the West* (1929).",Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/3f%2F8d%2F5a%2F3f8d5aab23654f30ab6a9a0f7d22e8df%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-04-26,1932-04-30,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/oflaherty-puritan/,The Puritan,,"O'Flaherty, Liam",1932,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/0f%2Fd5%2Fe8%2F0fd5e8ecc00f4c159cbabdbe207808d7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-04-28,1932-05-24,https://shakespeareandco.princeton.edu/members/schlumberger-jean/,Jean Schlumberger,"Schlumberger, Jean",,,,,,,,,Returned,26,,,https://shakespeareandco.princeton.edu/books/benson-tobit-transplanted/,Tobit Transplanted,,"Benson, Stella",1931,,Lending Library Card,"Sylvia Beach, Jean Schlumberger Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b29e004f-91aa-4b3a-b2b9-3abfb69b8ac7/manifest,https://iiif-cloud.princeton.edu/iiif/2/e8%2Fed%2Fc2%2Fe8edc28311914253a864357db8714fbd%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-04-28,1932-05-24,https://shakespeareandco.princeton.edu/members/schlumberger-jean/,Jean Schlumberger,"Schlumberger, Jean",,,,,,,,,Returned,26,,,https://shakespeareandco.princeton.edu/books/nicolson-people/,Some People,,"Nicolson, Harold George",1926,,Lending Library Card,"Sylvia Beach, Jean Schlumberger Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b29e004f-91aa-4b3a-b2b9-3abfb69b8ac7/manifest,https://iiif-cloud.princeton.edu/iiif/2/e8%2Fed%2Fc2%2Fe8edc28311914253a864357db8714fbd%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-04-30,1932-05-06,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/strindberg-plays-august-strindberg-second/,Plays by August Strindberg: Second Series,,"Strindberg, August",1913,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/98%2F0f%2Fd5%2F980fd5da7f05425b999c42e6af9d4636%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-04-30,1932-05-06,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/strindberg-easter-plays/,Easter and Other Plays,,"Strindberg, August",1929,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/98%2F0f%2Fd5%2F980fd5da7f05425b999c42e6af9d4636%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-04-30,1932-05-14,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/corneille-six-plays-corneille/,Six Plays by Corneille and Racine,,"Corneille, Pierre;Racine, Jean",1931,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/98%2F0f%2Fd5%2F980fd5da7f05425b999c42e6af9d4636%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-04-30,1932-05-14,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/mckay-banjo-story-without/,Banjo: A Story without a Plot,,"McKay, Claude",1929,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/98%2F0f%2Fd5%2F980fd5da7f05425b999c42e6af9d4636%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-04-30,1932-05-07,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/zangwill-children-ghetto-study/,Children of the Ghetto: A Study of a Peculiar People,,"Zangwill, Israel",1892,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/3f%2F8d%2F5a%2F3f8d5aab23654f30ab6a9a0f7d22e8df%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-04-30,1932-05-04,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/green-filigree-ball-full/,The Filigree Ball: Being a Full and True Account of the Solution of the Mystery Concerning the Jeffrey-Moore Affair,,"Green, Anna Katharine",1903,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/0f%2Fd5%2Fe8%2F0fd5e8ecc00f4c159cbabdbe207808d7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-05-02,1932-05-07,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/nichols-evensong/,Evensong,,"Nichols, Beverley",1932,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/8a%2Fed%2Fe5%2F8aede54be5604567b84a579bfcd20ff8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-05-03,1932-05-13,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/obrien-best-short-stories-1931-english/,The Best Short Stories of 1931: English,,,1931,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/1d%2F3c%2F8a%2F1d3c8ac2c87e4aaf87fc8a02d6aeebd0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1932-05-04,1932-05-04,https://shakespeareandco.princeton.edu/members/barbey-valerie/,ValΓ©rie Barbey,"Barbey, ValΓ©rie",,,,,,,,,,,,,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1932-05-04,1932-05-10,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/stern-shortest-night/,The Shortest Night,,"Stern, G. B.",1931,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/0f%2Fd5%2Fe8%2F0fd5e8ecc00f4c159cbabdbe207808d7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-05-04,1932-05-21,https://shakespeareandco.princeton.edu/members/faulkner-norma/,Norma Faulkner,"Faulkner, Norma",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/ackerley-hindoo-holiday/,Hindoo Holiday,,"Ackerley, J. R.",1932,,Lending Library Card,"Norma Faulkner's lending library cards are part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Borrow,1932-05-06,1932-05-14,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/larsen-swedens-best-stories/,Sweden's Best Stories,,"Larsen, Hanna Astrup",1928,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/98%2F0f%2Fd5%2F980fd5da7f05425b999c42e6af9d4636%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-05-06,1932-05-14,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/green-reader-married/,Reader I Married Him,,"Green, Anne",1931,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/98%2F0f%2Fd5%2F980fd5da7f05425b999c42e6af9d4636%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-05-07,1932-05-14,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/bentley-inheritance/,Inheritance,,"Bentley, Phyllis Eleanor",1932,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/8a%2Fed%2Fe5%2F8aede54be5604567b84a579bfcd20ff8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-05-07,1932-05-21,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/powys-dorothy-richardson/,Dorothy M. Richardson,,"Powys, John Cowper",1931,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2Ff1%2Ffc%2F5ef1fc21a2be4ee7a21be500c8143229%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-05-07,1932-05-09,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/sackville-west-passion-spent/,All Passion Spent,,"Sackville-West, Vita",1931,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/3f%2F8d%2F5a%2F3f8d5aab23654f30ab6a9a0f7d22e8df%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-05-10,1932-05-13,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/locke-house-balthazar/,The House of Balthazar,,"Locke, William John",1920,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/0f%2Fd5%2Fe8%2F0fd5e8ecc00f4c159cbabdbe207808d7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-05-10,1932-05-14,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/zangwill-jinny-carrier/,Jinny the Carrier,,"Zangwill, Israel",1919,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/3f%2F8d%2F5a%2F3f8d5aab23654f30ab6a9a0f7d22e8df%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1932-05-11,1932-05-11,https://shakespeareandco.princeton.edu/members/wendel/,Hélène de Wendel / Comtesse de Noailles,"de Wendel, Hélène",,,,,,,,,,,24.00,FRF,https://shakespeareandco.princeton.edu/books/hundred-seventy-chinese/,A Hundred and Seventy Chinese Poems,,,1918,,Lending Library Card,"Sylvia Beach, Madame Hélène Wendel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c70e230a-8313-4c53-9939-22beb5f809b6/manifest,https://iiif-cloud.princeton.edu/iiif/2/a6%2Ffc%2F58%2Fa6fc58fc7f8a431481a50269d0073534%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1932-05-11,1932-05-11,https://shakespeareandco.princeton.edu/members/duff-donald/,Donald Duff,"Duff, Donald",,,,,,,,,,,12.50,FRF,https://shakespeareandco.princeton.edu/books/russell-far-wandering-men/,Far Wandering Men,,"Russell, John",1929,,Lending Library Card,"Sylvia Beach, Donald Duff Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c9f19d83-d075-4536-b1fd-fe2a86bdf975/manifest,https://iiif.princeton.edu/loris/figgy_prod/fd%2F86%2Fc3%2Ffd86c35e550a4a85bb1918bd06261772%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-05-11,1932-05-12,https://shakespeareandco.princeton.edu/members/pelorson/,AndrΓ©e (Hirsch) Pelorson / Mme Pelorson,"Pelorson, AndrΓ©e",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/khayyam-rubaiyat-omar-khayyam/,Rubaiyat of Omar Khayyam,,"Khayyam, Omar",1859,,Lending Library Card,"Sylvia Beach, AndrΓ©e Pelorson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/46af6b89-5df8-48be-9390-96c2c54f40a7/manifest,https://iiif.princeton.edu/loris/figgy_prod/48%2F98%2F4d%2F48984da2390e47e7996e561510b483b8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1932-05-11,,https://shakespeareandco.princeton.edu/members/pelorson/,AndrΓ©e (Hirsch) Pelorson / Mme Pelorson,"Pelorson, AndrΓ©e",,21.00,,,,Day By Day,1932-05-11,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, AndrΓ©e Pelorson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/46af6b89-5df8-48be-9390-96c2c54f40a7/manifest,https://iiif.princeton.edu/loris/figgy_prod/48%2F98%2F4d%2F48984da2390e47e7996e561510b483b8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-05-13,1932-06-01,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/nichols-evensong/,Evensong,,"Nichols, Beverley",1932,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/1d%2F3c%2F8a%2F1d3c8ac2c87e4aaf87fc8a02d6aeebd0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-05-13,1932-05-26,https://shakespeareandco.princeton.edu/members/child-bertha-cushing/,Bertha Cushing Child,"Child, Bertha Cushing",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/endore-sword-god-jeanne/,The Sword of God: Jeanne d'Arc,,"Endore, S. Guy",1931,,Lending Library Card,"Sylvia Beach, Bertha Cushing Child Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9be92353-f80b-4fc7-a95a-09f7ef28b99a/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2Fd2%2F95%2Ff2d29586227842e69386891c7d596430%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-05-13,1932-05-21,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/birmingham-majors-candlesticks/,The Major's Candlesticks,,"Birmingham, George A.",1929,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/0f%2Fd5%2Fe8%2F0fd5e8ecc00f4c159cbabdbe207808d7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-05-14,1932-05-17,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/rodker-memoirs-fronts/,Memoirs of Other Fronts,,"Rodker, John",1932,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/98%2F0f%2Fd5%2F980fd5da7f05425b999c42e6af9d4636%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-05-14,1932-05-20,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/mckay-banjo-story-without/,Banjo: A Story without a Plot,,"McKay, Claude",1929,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/8a%2Fed%2Fe5%2F8aede54be5604567b84a579bfcd20ff8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-05-14,1932-05-17,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/stern-shortest-night/,The Shortest Night,,"Stern, G. B.",1931,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/98%2F0f%2Fd5%2F980fd5da7f05425b999c42e6af9d4636%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-05-14,1932-05-17,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/crofts-inspector-frenchs-case/,Inspector French's Case Book,,"Crofts, Freeman Wills",1928,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/3f%2F8d%2F5a%2F3f8d5aab23654f30ab6a9a0f7d22e8df%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-05-14,1932-05-21,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/renier-english-human/,The English: Are They Human?,,"Renier, Gustaaf Johannes",1931,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/8a%2Fed%2Fe5%2F8aede54be5604567b84a579bfcd20ff8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-05-14,1932-05-17,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/coyle-french-husband/,The French Husband,,"Coyle, Kathleen",1932,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/98%2F0f%2Fd5%2F980fd5da7f05425b999c42e6af9d4636%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1932-05-15,1932-06-15,https://shakespeareandco.princeton.edu/members/vogue-de/,Countess de VoguΓ©,"de VoguΓ©, Countess",40.00,,1 month,31,2,,1932-05-15,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, La Comtesse de Vogue Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4a9b4f25-ef3e-4b7d-9d28-cc9f2c070d68/manifest,https://iiif-cloud.princeton.edu/iiif/2/2b%2Ffd%2F2e%2F2bfd2e2420b84fbba1b3e805c78012a7%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1932-05-16,1932-08-10,https://shakespeareandco.princeton.edu/members/faulkner-norma/,Norma Faulkner,"Faulkner, Norma",,,"2 months, 25 days",86,1,,1932-05-21,,,,,FRF,,,,,,,Lending Library Card,"Norma Faulkner's lending library cards are part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Borrow,1932-05-17,1932-05-24,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/frank-rahab/,Rahab,,"Frank, Waldo",1922,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/98%2F0f%2Fd5%2F980fd5da7f05425b999c42e6af9d4636%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-05-17,1932-05-24,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/fitzgerald-sad-young-men/,All the Sad Young Men,,"Fitzgerald, F. Scott",1926,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/98%2F0f%2Fd5%2F980fd5da7f05425b999c42e6af9d4636%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-05-17,1932-05-19,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/zweig-amok-story/,Amok: A Story,,"Zweig, Stefan",1931,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/3f%2F8d%2F5a%2F3f8d5aab23654f30ab6a9a0f7d22e8df%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-05-17,1932-05-24,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/dell-mad-ideal/,This Mad Ideal,,"Dell, Floyd",1925,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/98%2F0f%2Fd5%2F980fd5da7f05425b999c42e6af9d4636%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-05-17,1932-05-24,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/wilson-devil-take-hindmost/,Devil Take the Hindmost,,"Wilson, Edmund",1932,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/98%2F0f%2Fd5%2F980fd5da7f05425b999c42e6af9d4636%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1932-05-18,1932-05-18,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,8.33,FRF,https://shakespeareandco.princeton.edu/books/jolas-language-night/,The Language of Night,,"Jolas, Eugene",1932,,Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fa2%2F0e%2Fcba20e86c11b4bacbd1eadda8182fccc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-05-18,1932-05-18,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,8.33,FRF,https://shakespeareandco.princeton.edu/books/jolas-language-night/,The Language of Night,,"Jolas, Eugene",1932,,Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fa2%2F0e%2Fcba20e86c11b4bacbd1eadda8182fccc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-05-18,1932-05-18,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,8.33,FRF,https://shakespeareandco.princeton.edu/books/jolas-language-night/,The Language of Night,,"Jolas, Eugene",1932,,Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fa2%2F0e%2Fcba20e86c11b4bacbd1eadda8182fccc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-05-18,1932-05-18,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,8.33,FRF,https://shakespeareandco.princeton.edu/books/jolas-language-night/,The Language of Night,,"Jolas, Eugene",1932,,Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fa2%2F0e%2Fcba20e86c11b4bacbd1eadda8182fccc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-05-18,1932-05-18,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,8.33,FRF,https://shakespeareandco.princeton.edu/books/jolas-language-night/,The Language of Night,,"Jolas, Eugene",1932,,Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fa2%2F0e%2Fcba20e86c11b4bacbd1eadda8182fccc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-05-18,1932-05-18,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,8.33,FRF,https://shakespeareandco.princeton.edu/books/jolas-language-night/,The Language of Night,,"Jolas, Eugene",1932,,Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fa2%2F0e%2Fcba20e86c11b4bacbd1eadda8182fccc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-05-19,1932-05-23,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/baum-secret-sentence/,Secret Sentence,,"Baum, Vicki",1932,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/3f%2F8d%2F5a%2F3f8d5aab23654f30ab6a9a0f7d22e8df%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-05-20,1932-05-21,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/sitwell-far-home-stories/,"Far from My Home: Stories, Long and Short",,"Sitwell, Sacheverell",1931,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/8a%2Fed%2Fe5%2F8aede54be5604567b84a579bfcd20ff8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-05-21,1932-05-28,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/wassermann-doctor-kerkhoven/,Doctor Kerkhoven,,"Wassermann, Jakob",1932,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/8a%2Fed%2Fe5%2F8aede54be5604567b84a579bfcd20ff8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-05-21,1932-06-09,https://shakespeareandco.princeton.edu/members/faulkner-norma/,Norma Faulkner,"Faulkner, Norma",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/lewisohn-case-mr-crump/,The Case of Mr. Crump,,"Lewisohn, Ludwig",1926,,Lending Library Card,"Norma Faulkner's lending library cards are part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Borrow,1932-05-21,1932-05-28,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/richardson-fortunes-richard-mahony/,The Fortunes of Richard Mahony,,"Richardson, Henry Handel",1931,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2Ff1%2Ffc%2F5ef1fc21a2be4ee7a21be500c8143229%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-05-23,1932-05-24,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/ohiggins-detective-duff-unravels/,Detective Duff Unravels it,,"O'Higgins, Harvey Jerrold",1929,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/3f%2F8d%2F5a%2F3f8d5aab23654f30ab6a9a0f7d22e8df%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-05-24,1932-05-26,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/butts-several-occasions/,Several Occasions,,"Butts, Mary",1932,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/12%2F27%2Fd7%2F1227d75ec7164a27aac2c0a1aa6d01f8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-05-24,1932-06-03,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/marx-capital-critique-political/,Capital: A Critique of Political Economy,,"Marx, Karl",,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/0c%2Ffc%2F32%2F0cfc3229219146c7bcdb6779946530e3%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-05-24,1932-06-03,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/eastman-literary-mind-place/,The Literary Mind: Its Place in an Age of Science,,"Eastman, Max",1931,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/0c%2Ffc%2F32%2F0cfc3229219146c7bcdb6779946530e3%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-05-24,1932-06-03,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/lamb-genghis-khan-emperor/,Genghis Khan: Emperor of All Men,,"Lamb, Harold",1927,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/0c%2Ffc%2F32%2F0cfc3229219146c7bcdb6779946530e3%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-05-25,1932-06-02,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/lowndes-lonely-house/,The Lonely House,,"Lowndes, Marie Belloc",1920,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/0f%2Fd5%2Fe8%2F0fd5e8ecc00f4c159cbabdbe207808d7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-05-26,,https://shakespeareandco.princeton.edu/members/child-bertha-cushing/,Bertha Cushing Child,"Child, Bertha Cushing",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/terry-ellen-terry-bernard/,Ellen Terry and Bernard Shaw: A Correspondence,,"Terry, Ellen;Shaw, George Bernard",1931,,Lending Library Card,"Sylvia Beach, Bertha Cushing Child Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9be92353-f80b-4fc7-a95a-09f7ef28b99a/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2Fd2%2F95%2Ff2d29586227842e69386891c7d596430%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-05-26,1932-05-28,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/stevenson-strange-case-dr/,Strange Case of Dr. Jekyll and Mr. Hyde,,"Stevenson, Robert Louis",1886,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/12%2F27%2Fd7%2F1227d75ec7164a27aac2c0a1aa6d01f8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-05-28,1932-06-04,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/duff-james-joyce-plain/,James Joyce and the Plain Reader: An Essay,,"Duff, Charles",1932,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2Ff1%2Ffc%2F5ef1fc21a2be4ee7a21be500c8143229%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-05-28,1932-06-11,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/richardson-dawns-left-hand/,Dawn's Left Hand (Pilgrimage 10),,"Richardson, Dorothy M.",1931,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2Ff1%2Ffc%2F5ef1fc21a2be4ee7a21be500c8143229%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-05-28,1932-06-02,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/sitwell-mozart/,Mozart,,"Sitwell, Sacheverell",1932,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/8a%2Fed%2Fe5%2F8aede54be5604567b84a579bfcd20ff8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-05-28,1932-05-30,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/lowndes-studies-wives/,Studies in Wives,,"Lowndes, Marie Belloc",1909,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/12%2F27%2Fd7%2F1227d75ec7164a27aac2c0a1aa6d01f8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-05-30,1932-06-02,https://shakespeareandco.princeton.edu/members/gilbert-stuart/,Stuart Gilbert,"Gilbert, Stuart",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/burnham-symposium-critical-review/,The Symposium: A Critical Review,"Vol. 2, no. 4, Oct 1931",,,,Lending Library Card,"Sylvia Beach, Stuart Gilbert Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/861dcb07-60d7-4a64-b1ba-6296bd9c66c3/manifest,https://iiif.princeton.edu/loris/figgy_prod/db%2F26%2F51%2Fdb2651e9ccd742a8a2be9e5a6e00c862%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-05-30,1932-06-02,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/bentley-inheritance/,Inheritance,,"Bentley, Phyllis Eleanor",1932,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/12%2F27%2Fd7%2F1227d75ec7164a27aac2c0a1aa6d01f8%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1932-05-31,1933-05-31,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",157.50,,1 year,365,1,,1932-06-02,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/8a%2Fed%2Fe5%2F8aede54be5604567b84a579bfcd20ff8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-06-01,1932-06-04,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/huxley-brave-new-world/,Brave New World,,"Huxley, Aldous",1932,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/1d%2F3c%2F8a%2F1d3c8ac2c87e4aaf87fc8a02d6aeebd0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-06-02,1932-06-03,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/fletcher-murder-four-degrees/,Murder in Four Degrees,,"Fletcher, Joseph Smith",1931,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/12%2F27%2Fd7%2F1227d75ec7164a27aac2c0a1aa6d01f8%2Fintermediate_file/full/full/0/default.jpg
+Crossed out,1932-06-02,,https://shakespeareandco.princeton.edu/members/duff-donald/,Donald Duff,"Duff, Donald",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/hughes-high-wind-jamaica/,A High Wind in Jamaica,,"Hughes, Richard",1929,,Lending Library Card,"Sylvia Beach, Donald Duff Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c9f19d83-d075-4536-b1fd-fe2a86bdf975/manifest,https://iiif.princeton.edu/loris/figgy_prod/fd%2F86%2Fc3%2Ffd86c35e550a4a85bb1918bd06261772%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-06-02,1932-06-07,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/collins-doctor-looks-life/,The Doctor Looks at Life and Death,,"Collins, Joseph",1931,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/8a%2Fed%2Fe5%2F8aede54be5604567b84a579bfcd20ff8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-06-02,1932-06-20,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/fletcher-double-chance/,The Double Chance,,"Fletcher, Joseph Smith",1928,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/0f%2Fd5%2Fe8%2F0fd5e8ecc00f4c159cbabdbe207808d7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-06-02,1932-07-25,https://shakespeareandco.princeton.edu/members/gilbert-stuart/,Stuart Gilbert,"Gilbert, Stuart",,,,,,,,,Returned,53,,,https://shakespeareandco.princeton.edu/books/huddleston-back-montparnasse-glimpses/,Back to Montparnasse: Glimpses of Broadway in Bohemia,,"Huddleston, Sisley",1931,,Lending Library Card,"Sylvia Beach, Stuart Gilbert Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/861dcb07-60d7-4a64-b1ba-6296bd9c66c3/manifest,https://iiif.princeton.edu/loris/figgy_prod/db%2F26%2F51%2Fdb2651e9ccd742a8a2be9e5a6e00c862%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-06-03,1932-06-04,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/van-dine-benson-murder-case/,The Benson Murder Case,,"Van Dine, S. S.",1926,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/12%2F27%2Fd7%2F1227d75ec7164a27aac2c0a1aa6d01f8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-06-03,1932-06-10,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/dell-love-without-money/,Love without Money,,"Dell, Floyd",1931,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/0c%2Ffc%2F32%2F0cfc3229219146c7bcdb6779946530e3%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-06-03,1932-06-10,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/dane-broome-stages/,Broome Stages,,"Dane, Clemence",1931,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/0c%2Ffc%2F32%2F0cfc3229219146c7bcdb6779946530e3%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-06-03,1932-06-10,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/obrien-modern-american-short/,Modern American Short Stories,,,1932,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/0c%2Ffc%2F32%2F0cfc3229219146c7bcdb6779946530e3%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-06-04,1932-06-18,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/eastman-literary-mind-place/,The Literary Mind: Its Place in an Age of Science,,"Eastman, Max",1931,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2Ff1%2Ffc%2F5ef1fc21a2be4ee7a21be500c8143229%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-06-04,1932-06-06,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/van-dine-bishop-murder-case/,The Bishop Murder Case: A Philo Vance Story,,"Van Dine, S. S.",1929,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/12%2F27%2Fd7%2F1227d75ec7164a27aac2c0a1aa6d01f8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-06-06,1932-06-16,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/malory-morte-darthur/,Le Morte d'Arthur,,"Malory, Thomas",1485,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/12%2F27%2Fd7%2F1227d75ec7164a27aac2c0a1aa6d01f8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-06-07,1932-06-14,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/frankau-christopher-strong-romance/,Christopher Strong: A Romance,,"Frankau, Gilbert",1931,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/1d%2F3c%2F8a%2F1d3c8ac2c87e4aaf87fc8a02d6aeebd0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-06-07,1932-06-10,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/mottram-home-holidays/,Home for the Holidays,,"Mottram, R. H.",1932,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/8a%2Fed%2Fe5%2F8aede54be5604567b84a579bfcd20ff8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-06-09,1932-06-21,https://shakespeareandco.princeton.edu/members/faulkner-norma/,Norma Faulkner,"Faulkner, Norma",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/villard-newspapers-newspaper-men/,Some Newspapers and Newspaper-Men,,"Villard, Oswald Garrison",1923,,Lending Library Card,"Norma Faulkner's lending library cards are part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Borrow,1932-06-10,1932-06-24,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/larsen-norways-best-stories/,Norway's Best Stories,,,1927,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/0c%2Ffc%2F32%2F0cfc3229219146c7bcdb6779946530e3%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-06-10,1932-06-24,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/coppard-field-mustard/,The Field of Mustard,,"Coppard, A. E.",1927,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/0c%2Ffc%2F32%2F0cfc3229219146c7bcdb6779946530e3%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-06-10,1932-07-15,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,35,,,https://shakespeareandco.princeton.edu/books/clark-great-short-novels/,Great Short Novels of the World,,,1925,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/0c%2Ffc%2F32%2F0cfc3229219146c7bcdb6779946530e3%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-06-10,1932-06-24,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/larsen-swedens-best-stories/,Sweden's Best Stories,,"Larsen, Hanna Astrup",1928,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/0c%2Ffc%2F32%2F0cfc3229219146c7bcdb6779946530e3%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-06-11,1932-06-25,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/cather-professors-house/,The Professor's House,,"Cather, Willa",1925,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2Ff1%2Ffc%2F5ef1fc21a2be4ee7a21be500c8143229%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-06-11,1932-07-04,https://shakespeareandco.princeton.edu/members/vogue-de/,Countess de VoguΓ©,"de VoguΓ©, Countess",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/dane-broome-stages/,Broome Stages,,"Dane, Clemence",1931,,Lending Library Card,"Sylvia Beach, La Comtesse de Vogue Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4a9b4f25-ef3e-4b7d-9d28-cc9f2c070d68/manifest,https://iiif-cloud.princeton.edu/iiif/2/2b%2Ffd%2F2e%2F2bfd2e2420b84fbba1b3e805c78012a7%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1932-06-12,1932-12-12,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",100.00,,6 months,183,1,,1932-07-19,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/1d%2F3c%2F8a%2F1d3c8ac2c87e4aaf87fc8a02d6aeebd0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-06-14,1932-07-19,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,35,,,https://shakespeareandco.princeton.edu/books/morley-sweet-dry-dry/,In the Sweet Dry and Dry,,"Morley, Christopher;Haley, Bart",1919,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/1d%2F3c%2F8a%2F1d3c8ac2c87e4aaf87fc8a02d6aeebd0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-06-14,1932-07-01,https://shakespeareandco.princeton.edu/members/child-bertha-cushing/,Bertha Cushing Child,"Child, Bertha Cushing",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/six-plays/,Six Plays,,,,Unidentified. Likely either George Bernard Shaw's *Six Plays* (1914) or [*Six Plays*](https://shakespeareandco.princeton.edu/books/coward-six-plays/) (1937).,Lending Library Card,"Sylvia Beach, Bertha Cushing Child Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9be92353-f80b-4fc7-a95a-09f7ef28b99a/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2Fd2%2F95%2Ff2d29586227842e69386891c7d596430%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1932-06-15,1932-07-15,https://shakespeareandco.princeton.edu/members/vogue-de/,Countess de VoguΓ©,"de VoguΓ©, Countess",40.00,,1 month,30,2,,1932-06-15,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, La Comtesse de Vogue Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4a9b4f25-ef3e-4b7d-9d28-cc9f2c070d68/manifest,https://iiif-cloud.princeton.edu/iiif/2/2b%2Ffd%2F2e%2F2bfd2e2420b84fbba1b3e805c78012a7%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-06-16,1932-08-24,https://shakespeareandco.princeton.edu/members/finger/,Mrs. W. H. Finger,"Finger, Mrs. W. H.",,,,,,,,,Returned,69,,,https://shakespeareandco.princeton.edu/books/hardy-early-life-thomas/,The Early Life of Thomas Hardy,,"Hardy, Florence Emily",1928,,Lending Library Card,"Sylvia Beach, Finger Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3613c707-36cc-4cb0-860d-d7cce3c15d5d/manifest,https://iiif.princeton.edu/loris/figgy_prod/98%2F78%2F7d%2F98787d8c8239496c8ef746abe636bf30%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-06-16,1932-06-20,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/stern-little-red-horses/,Little Red Horses,,"Stern, G. B.",1932,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/12%2F27%2Fd7%2F1227d75ec7164a27aac2c0a1aa6d01f8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-06-18,1932-06-25,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/lawrence-apocalypse/,Apocalypse,,"Lawrence, D. H.",1931,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2Ff1%2Ffc%2F5ef1fc21a2be4ee7a21be500c8143229%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-06-20,1932-06-22,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/sayers-clouds-witness/,Clouds of Witness,,"Sayers, Dorothy L.",1926,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/12%2F27%2Fd7%2F1227d75ec7164a27aac2c0a1aa6d01f8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-06-21,1932-06-30,https://shakespeareandco.princeton.edu/members/faulkner-norma/,Norma Faulkner,"Faulkner, Norma",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/baum-secret-sentence/,Secret Sentence,,"Baum, Vicki",1932,,Lending Library Card,"Norma Faulkner's lending library cards are part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Borrow,1932-06-22,1932-06-30,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/three-loves/,Three Loves,,,,"Unidentified. Max Brod's *Three Loves* (1929) or A. J. Cronin's *Three Loves* (1932), etc.",Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/8a%2Fed%2Fe5%2F8aede54be5604567b84a579bfcd20ff8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-06-22,1932-06-25,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/malory-morte-darthur/,Le Morte d'Arthur,,"Malory, Thomas",1485,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/12%2F27%2Fd7%2F1227d75ec7164a27aac2c0a1aa6d01f8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-06-24,1932-07-01,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/green-selbys/,The Selbys,,"Green, Anne",1930,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/0c%2Ffc%2F32%2F0cfc3229219146c7bcdb6779946530e3%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-06-24,1932-07-01,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/coppard-silver-circus/,Silver Circus,,"Coppard, A. E.",1928,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/0c%2Ffc%2F32%2F0cfc3229219146c7bcdb6779946530e3%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-06-24,1932-07-01,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/coppard-black-dog-stories/,The Black Dog and Other Stories,,"Coppard, A. E.",1923,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/0c%2Ffc%2F32%2F0cfc3229219146c7bcdb6779946530e3%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-06-25,1932-06-29,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/dos-passos-1919/,1919,,"Dos Passos, John",1932,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/12%2F27%2Fd7%2F1227d75ec7164a27aac2c0a1aa6d01f8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-06-25,1932-07-02,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/benson-tobit-transplanted/,Tobit Transplanted,,"Benson, Stella",1931,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2Ff1%2Ffc%2F5ef1fc21a2be4ee7a21be500c8143229%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-06-25,1932-07-02,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/poe-poems-edgar-allan/,The Poems of Edgar Allan Poe,,"Poe, Edgar Allan",1901,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2Ff1%2Ffc%2F5ef1fc21a2be4ee7a21be500c8143229%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-06-27,1932-07-05,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/mcneile-return-bulldog-drummond/,The Return of Bulldog Drummond,,"McNeile, H. C.",1932,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/0f%2Fd5%2Fe8%2F0fd5e8ecc00f4c159cbabdbe207808d7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-06-28,1932-07-08,https://shakespeareandco.princeton.edu/members/vogue-de/,Countess de VoguΓ©,"de VoguΓ©, Countess",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/hawthorne-marble-faun-transformation/,The Marble Faun / Transformation,,"Hawthorne, Nathaniel",1860,*The Marble Faun* was published in England as *Transformation.* Both American and English editions circulated in the lending library.,Lending Library Card,"Sylvia Beach, La Comtesse de Vogue Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4a9b4f25-ef3e-4b7d-9d28-cc9f2c070d68/manifest,https://iiif-cloud.princeton.edu/iiif/2/2b%2Ffd%2F2e%2F2bfd2e2420b84fbba1b3e805c78012a7%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-06-28,1932-07-11,https://shakespeareandco.princeton.edu/members/vogue-de/,Countess de VoguΓ©,"de VoguΓ©, Countess",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/melville-pierre-ambiguities/,"Pierre; Or, the Ambiguities",,"Melville, Herman",1852,,Lending Library Card,"Sylvia Beach, La Comtesse de Vogue Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4a9b4f25-ef3e-4b7d-9d28-cc9f2c070d68/manifest,https://iiif-cloud.princeton.edu/iiif/2/2b%2Ffd%2F2e%2F2bfd2e2420b84fbba1b3e805c78012a7%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-06-29,1932-06-30,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/lawrence-apocalypse/,Apocalypse,,"Lawrence, D. H.",1931,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/12%2F27%2Fd7%2F1227d75ec7164a27aac2c0a1aa6d01f8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-06-30,1932-07-05,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/galsworthy-maid-waiting/,Maid in Waiting (End of Chapter),,"Galsworthy, John",1931,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/8a%2Fed%2Fe5%2F8aede54be5604567b84a579bfcd20ff8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-06-30,1932-07-02,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/wallace-red-aces-three/,Red Aces: Being Three Cases of Mr. Reeder,,"Wallace, Edgar",1929,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/12%2F27%2Fd7%2F1227d75ec7164a27aac2c0a1aa6d01f8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-06-30,1932-07-13,https://shakespeareandco.princeton.edu/members/faulkner-norma/,Norma Faulkner,"Faulkner, Norma",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/bentley-inheritance/,Inheritance,,"Bentley, Phyllis Eleanor",1932,,Lending Library Card,"Norma Faulkner's lending library cards are part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Borrow,1932-07-01,1932-07-15,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/turgenev-smoke/,Smoke,,"Turgenev, Ivan",1896,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/0c%2Ffc%2F32%2F0cfc3229219146c7bcdb6779946530e3%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-07-01,1932-07-15,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/turgenev-fathers-children/,Fathers and Children,,"Turgenev, Ivan",1895,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/0c%2Ffc%2F32%2F0cfc3229219146c7bcdb6779946530e3%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-07-01,1932-07-17,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/wells-work-wealth-happiness/,"The Work, Wealth and Happiness of Mankind",,"Wells, H. G.",1931,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/0c%2Ffc%2F32%2F0cfc3229219146c7bcdb6779946530e3%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-07-01,1932-07-12,https://shakespeareandco.princeton.edu/members/child-bertha-cushing/,Bertha Cushing Child,"Child, Bertha Cushing",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/obrien-best-short-stories-1931/,The Best Short Stories 1931: And the Yearbook of the American Short Story,,,1931,,Lending Library Card,"Sylvia Beach, Bertha Cushing Child Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9be92353-f80b-4fc7-a95a-09f7ef28b99a/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2Fd2%2F95%2Ff2d29586227842e69386891c7d596430%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-07-01,,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/morand-lewis-irene/,Lewis and Irene,,"Morand, Paul",1925,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/0c%2Ffc%2F32%2F0cfc3229219146c7bcdb6779946530e3%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-07-01,1932-08-01,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,31,,,https://shakespeareandco.princeton.edu/books/gogol-evenings-farm-near/,Evenings on a Farm Near Dikanka,,"Gogol, Nikolai",1926,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/0c%2Ffc%2F32%2F0cfc3229219146c7bcdb6779946530e3%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-07-02,1932-07-04,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/stern-shortest-night/,The Shortest Night,,"Stern, G. B.",1931,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/12%2F27%2Fd7%2F1227d75ec7164a27aac2c0a1aa6d01f8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-07-02,1932-07-09,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/hall-master-house/,The Master of the House,,"Hall, Radclyffe",1932,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2Ff1%2Ffc%2F5ef1fc21a2be4ee7a21be500c8143229%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-07-04,1932-07-15,https://shakespeareandco.princeton.edu/members/vogue-de/,Countess de VoguΓ©,"de VoguΓ©, Countess",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/faulkner-sound-fury/,The Sound and the Fury,,"Faulkner, William",1929,,Lending Library Card,"Sylvia Beach, La Comtesse de Vogue Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4a9b4f25-ef3e-4b7d-9d28-cc9f2c070d68/manifest,https://iiif-cloud.princeton.edu/iiif/2/2b%2Ffd%2F2e%2F2bfd2e2420b84fbba1b3e805c78012a7%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-07-04,1932-07-05,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/christie-thirteen-problems/,The Thirteen Problems,,"Christie, Agatha",1932,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/12%2F27%2Fd7%2F1227d75ec7164a27aac2c0a1aa6d01f8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-07-05,1932-07-11,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/williams-death-answers-bell/,Death Answers the Bell,,"Williams, Valentine",1932,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/0f%2Fd5%2Fe8%2F0fd5e8ecc00f4c159cbabdbe207808d7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-07-05,1932-07-08,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/mackail-davids-day/,David's Day,,"Mackail, Denis",1932,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/12%2F27%2Fd7%2F1227d75ec7164a27aac2c0a1aa6d01f8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-07-05,1932-07-09,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/ferber-american-beauty/,American Beauty,,"Ferber, Edna",1931,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/8a%2Fed%2Fe5%2F8aede54be5604567b84a579bfcd20ff8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-07-07,1932-07-07,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,2.00,FRF,https://shakespeareandco.princeton.edu/books/vertigral-3/,Vertigral 3,,,,"Unidentified. Likely Eugene Jolas's *Epivocables of 3* (Editions Vertigral, 1932).",Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fa2%2F0e%2Fcba20e86c11b4bacbd1eadda8182fccc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-07-07,1932-07-07,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,2.00,FRF,https://shakespeareandco.princeton.edu/books/vertigral-3/,Vertigral 3,,,,"Unidentified. Likely Eugene Jolas's *Epivocables of 3* (Editions Vertigral, 1932).",Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fa2%2F0e%2Fcba20e86c11b4bacbd1eadda8182fccc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-07-07,1932-07-07,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,2.00,FRF,https://shakespeareandco.princeton.edu/books/vertigral-3/,Vertigral 3,,,,"Unidentified. Likely Eugene Jolas's *Epivocables of 3* (Editions Vertigral, 1932).",Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fa2%2F0e%2Fcba20e86c11b4bacbd1eadda8182fccc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-07-07,1932-07-07,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,2.00,FRF,https://shakespeareandco.princeton.edu/books/vertigral-3/,Vertigral 3,,,,"Unidentified. Likely Eugene Jolas's *Epivocables of 3* (Editions Vertigral, 1932).",Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fa2%2F0e%2Fcba20e86c11b4bacbd1eadda8182fccc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-07-07,1932-07-07,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,2.00,FRF,https://shakespeareandco.princeton.edu/books/vertigral-3/,Vertigral 3,,,,"Unidentified. Likely Eugene Jolas's *Epivocables of 3* (Editions Vertigral, 1932).",Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fa2%2F0e%2Fcba20e86c11b4bacbd1eadda8182fccc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-07-07,1932-07-07,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,2.00,FRF,https://shakespeareandco.princeton.edu/books/vertigral-3/,Vertigral 3,,,,"Unidentified. Likely Eugene Jolas's *Epivocables of 3* (Editions Vertigral, 1932).",Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fa2%2F0e%2Fcba20e86c11b4bacbd1eadda8182fccc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-07-07,1932-07-07,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,2.00,FRF,https://shakespeareandco.princeton.edu/books/vertigral-3/,Vertigral 3,,,,"Unidentified. Likely Eugene Jolas's *Epivocables of 3* (Editions Vertigral, 1932).",Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fa2%2F0e%2Fcba20e86c11b4bacbd1eadda8182fccc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-07-07,1932-07-07,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,2.00,FRF,https://shakespeareandco.princeton.edu/books/vertigral-3/,Vertigral 3,,,,"Unidentified. Likely Eugene Jolas's *Epivocables of 3* (Editions Vertigral, 1932).",Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fa2%2F0e%2Fcba20e86c11b4bacbd1eadda8182fccc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-07-07,1932-07-07,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,2.00,FRF,https://shakespeareandco.princeton.edu/books/vertigral-3/,Vertigral 3,,,,"Unidentified. Likely Eugene Jolas's *Epivocables of 3* (Editions Vertigral, 1932).",Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fa2%2F0e%2Fcba20e86c11b4bacbd1eadda8182fccc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-07-07,1932-07-07,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,2.00,FRF,https://shakespeareandco.princeton.edu/books/vertigral-3/,Vertigral 3,,,,"Unidentified. Likely Eugene Jolas's *Epivocables of 3* (Editions Vertigral, 1932).",Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fa2%2F0e%2Fcba20e86c11b4bacbd1eadda8182fccc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-07-07,1932-07-07,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,2.00,FRF,https://shakespeareandco.princeton.edu/books/vertigral-3/,Vertigral 3,,,,"Unidentified. Likely Eugene Jolas's *Epivocables of 3* (Editions Vertigral, 1932).",Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fa2%2F0e%2Fcba20e86c11b4bacbd1eadda8182fccc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-07-07,1932-07-07,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,2.00,FRF,https://shakespeareandco.princeton.edu/books/vertigral-3/,Vertigral 3,,,,"Unidentified. Likely Eugene Jolas's *Epivocables of 3* (Editions Vertigral, 1932).",Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fa2%2F0e%2Fcba20e86c11b4bacbd1eadda8182fccc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-07-07,1932-07-07,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,2.00,FRF,https://shakespeareandco.princeton.edu/books/vertigral-3/,Vertigral 3,,,,"Unidentified. Likely Eugene Jolas's *Epivocables of 3* (Editions Vertigral, 1932).",Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fa2%2F0e%2Fcba20e86c11b4bacbd1eadda8182fccc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-07-07,1932-07-07,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,2.00,FRF,https://shakespeareandco.princeton.edu/books/vertigral-3/,Vertigral 3,,,,"Unidentified. Likely Eugene Jolas's *Epivocables of 3* (Editions Vertigral, 1932).",Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fa2%2F0e%2Fcba20e86c11b4bacbd1eadda8182fccc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-07-07,1932-07-07,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,2.00,FRF,https://shakespeareandco.princeton.edu/books/vertigral-3/,Vertigral 3,,,,"Unidentified. Likely Eugene Jolas's *Epivocables of 3* (Editions Vertigral, 1932).",Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fa2%2F0e%2Fcba20e86c11b4bacbd1eadda8182fccc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-07-07,1932-07-07,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,2.00,FRF,https://shakespeareandco.princeton.edu/books/vertigral-3/,Vertigral 3,,,,"Unidentified. Likely Eugene Jolas's *Epivocables of 3* (Editions Vertigral, 1932).",Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fa2%2F0e%2Fcba20e86c11b4bacbd1eadda8182fccc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-07-07,1932-07-07,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,2.00,FRF,https://shakespeareandco.princeton.edu/books/vertigral-3/,Vertigral 3,,,,"Unidentified. Likely Eugene Jolas's *Epivocables of 3* (Editions Vertigral, 1932).",Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fa2%2F0e%2Fcba20e86c11b4bacbd1eadda8182fccc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-07-07,1932-07-07,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,2.00,FRF,https://shakespeareandco.princeton.edu/books/vertigral-3/,Vertigral 3,,,,"Unidentified. Likely Eugene Jolas's *Epivocables of 3* (Editions Vertigral, 1932).",Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fa2%2F0e%2Fcba20e86c11b4bacbd1eadda8182fccc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-07-07,1932-07-07,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,2.00,FRF,https://shakespeareandco.princeton.edu/books/vertigral-3/,Vertigral 3,,,,"Unidentified. Likely Eugene Jolas's *Epivocables of 3* (Editions Vertigral, 1932).",Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fa2%2F0e%2Fcba20e86c11b4bacbd1eadda8182fccc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-07-07,1932-07-07,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,2.00,FRF,https://shakespeareandco.princeton.edu/books/vertigral-3/,Vertigral 3,,,,"Unidentified. Likely Eugene Jolas's *Epivocables of 3* (Editions Vertigral, 1932).",Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fa2%2F0e%2Fcba20e86c11b4bacbd1eadda8182fccc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-07-08,1932-07-08,https://shakespeareandco.princeton.edu/members/metcalf-thomas-n/,Thomas N. Metcalf,"Metcalf, Thomas N.",,,,,,,,,,,57.75,FRF,https://shakespeareandco.princeton.edu/books/lewis-doom-youth/,The Doom of Youth,,"Lewis, Wyndham",1932,,Lending Library Card,"Sylvia Beach, Thomas N. Metcalf Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0c5a220d-4d5e-43db-a442-2e4feaec122a/manifest,https://iiif.princeton.edu/loris/figgy_prod/ce%2Fd2%2F08%2Fced2087334f946c38f9d3ee73c10785e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1932-07-08,1932-08-08,https://shakespeareandco.princeton.edu/members/vechten/,Ann van Vechten,"Vechten, Ann van",25.00,50.00,1 month,31,1,,1932-07-08,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Mrs. Ann van Vechten Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ddb18782-925b-4085-be72-2084e6ce1ec4/manifest,https://iiif.princeton.edu/loris/figgy_prod/e8%2F81%2F0e%2Fe8810ea64b4b4e99919a60373a97955a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-07-08,1932-07-16,https://shakespeareandco.princeton.edu/members/vechten/,Ann van Vechten,"Vechten, Ann van",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/morgan-fountain/,The Fountain,,"Morgan, Charles",1932,,Lending Library Card,"Sylvia Beach, Mrs. Ann van Vechten Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ddb18782-925b-4085-be72-2084e6ce1ec4/manifest,https://iiif.princeton.edu/loris/figgy_prod/e8%2F81%2F0e%2Fe8810ea64b4b4e99919a60373a97955a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-07-08,1932-07-08,https://shakespeareandco.princeton.edu/members/metcalf-thomas-n/,Thomas N. Metcalf,"Metcalf, Thomas N.",,,,,,,,,,,45.00,FRF,https://shakespeareandco.princeton.edu/books/boyle-year-last/,Year before Last,,"Boyle, Kay",1932,,Lending Library Card,"Sylvia Beach, Thomas N. Metcalf Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0c5a220d-4d5e-43db-a442-2e4feaec122a/manifest,https://iiif.princeton.edu/loris/figgy_prod/ce%2Fd2%2F08%2Fced2087334f946c38f9d3ee73c10785e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-07-08,1932-07-08,https://shakespeareandco.princeton.edu/members/metcalf-thomas-n/,Thomas N. Metcalf,"Metcalf, Thomas N.",,,,,,,,,,,35.00,FRF,https://shakespeareandco.princeton.edu/books/jolas-transition/,transition,,,,,Lending Library Card,"Sylvia Beach, Thomas N. Metcalf Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0c5a220d-4d5e-43db-a442-2e4feaec122a/manifest,https://iiif.princeton.edu/loris/figgy_prod/ce%2Fd2%2F08%2Fced2087334f946c38f9d3ee73c10785e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-07-08,1932-07-08,https://shakespeareandco.princeton.edu/members/metcalf-thomas-n/,Thomas N. Metcalf,"Metcalf, Thomas N.",,,,,,,,,,,125.00,FRF,https://shakespeareandco.princeton.edu/books/joyce-ulysses/,Ulysses,,"Joyce, James",1922,,Lending Library Card,"Sylvia Beach, Thomas N. Metcalf Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0c5a220d-4d5e-43db-a442-2e4feaec122a/manifest,https://iiif.princeton.edu/loris/figgy_prod/ce%2Fd2%2F08%2Fced2087334f946c38f9d3ee73c10785e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-07-08,1932-07-08,https://shakespeareandco.princeton.edu/members/metcalf-thomas-n/,Thomas N. Metcalf,"Metcalf, Thomas N.",,,,,,,,,,,45.00,FRF,https://shakespeareandco.princeton.edu/books/criterion/,The Criterion,,,,"Renamed *The New Criterion* from January 1926 to January 1927, and *The Monthly Criterion* from May 1927 to March 1928.",Lending Library Card,"Sylvia Beach, Thomas N. Metcalf Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0c5a220d-4d5e-43db-a442-2e4feaec122a/manifest,https://iiif.princeton.edu/loris/figgy_prod/ce%2Fd2%2F08%2Fced2087334f946c38f9d3ee73c10785e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-07-08,1932-07-19,https://shakespeareandco.princeton.edu/members/vechten/,Ann van Vechten,"Vechten, Ann van",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/cronin-hatters-castle/,Hatter's Castle,,"Cronin, A. J.",1932,,Lending Library Card,"Sylvia Beach, Mrs. Ann van Vechten Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ddb18782-925b-4085-be72-2084e6ce1ec4/manifest,https://iiif.princeton.edu/loris/figgy_prod/e8%2F81%2F0e%2Fe8810ea64b4b4e99919a60373a97955a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-07-08,1932-07-09,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/hammett-glass-key/,The Glass Key,,"Hammett, Dashiell",1931,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/12%2F27%2Fd7%2F1227d75ec7164a27aac2c0a1aa6d01f8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-07-09,1932-07-11,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/street-dead-men-folly/,Dead Men at the Folly,,"Street, Cecil",1932,By Street writing as John Rhode.,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/12%2F27%2Fd7%2F1227d75ec7164a27aac2c0a1aa6d01f8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-07-09,1932-07-27,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/richardson-fortunes-richard-mahony/,The Fortunes of Richard Mahony,,"Richardson, Henry Handel",1931,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2Ff1%2Ffc%2F5ef1fc21a2be4ee7a21be500c8143229%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-07-09,1932-07-13,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/mckenna-way-phoenix/,The Way of the Phoenix,,"McKenna, Stephen",1932,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/8a%2Fed%2Fe5%2F8aede54be5604567b84a579bfcd20ff8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-07-10,1932-07-22,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/lamb-genghis-khan-emperor/,Genghis Khan: Emperor of All Men,,"Lamb, Harold",1927,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/8a%2Fed%2Fe5%2F8aede54be5604567b84a579bfcd20ff8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-07-11,1932-07-13,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/mackenzie-vestal-fire/,Vestal Fire,,"Mackenzie, Compton",1927,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/12%2F27%2Fd7%2F1227d75ec7164a27aac2c0a1aa6d01f8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-07-11,1932-07-15,https://shakespeareandco.princeton.edu/members/vogue-de/,Countess de VoguΓ©,"de VoguΓ©, Countess",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/dane-regiment-women/,Regiment of Women,,"Dane, Clemence",1917,,Lending Library Card,"Sylvia Beach, La Comtesse de Vogue Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4a9b4f25-ef3e-4b7d-9d28-cc9f2c070d68/manifest,https://iiif-cloud.princeton.edu/iiif/2/2b%2Ffd%2F2e%2F2bfd2e2420b84fbba1b3e805c78012a7%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-07-12,1932-07-22,https://shakespeareandco.princeton.edu/members/child-bertha-cushing/,Bertha Cushing Child,"Child, Bertha Cushing",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/colette-morning-glory/,Morning Glory,,"Colette, Sidonie-Gabrielle",1932,,Lending Library Card,"Sylvia Beach, Bertha Cushing Child Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9be92353-f80b-4fc7-a95a-09f7ef28b99a/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2Fd2%2F95%2Ff2d29586227842e69386891c7d596430%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1932-07-12,1933-07-12,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",500.00,,1 year,365,,,1932-09-30,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/83%2F5b%2Fe3%2F835be3c0ea384483af2f15b9bc2b544a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-07-13,1932-07-20,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/baum-secret-sentence/,Secret Sentence,,"Baum, Vicki",1932,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/8a%2Fed%2Fe5%2F8aede54be5604567b84a579bfcd20ff8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-07-13,1932-07-23,https://shakespeareandco.princeton.edu/members/faulkner-norma/,Norma Faulkner,"Faulkner, Norma",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/moore-esther-waters/,Esther Waters,,"Moore, George",1894,,Lending Library Card,"Norma Faulkner's lending library cards are part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Borrow,1932-07-13,1932-07-15,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/lewisohn-island-within/,The Island Within,,"Lewisohn, Ludwig",1928,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/12%2F27%2Fd7%2F1227d75ec7164a27aac2c0a1aa6d01f8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-07-14,1932-07-25,https://shakespeareandco.princeton.edu/members/gilbert-stuart/,Stuart Gilbert,"Gilbert, Stuart",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/kirstein-hound-horn/,Hound & Horn,"Vol. 3, no. 1, Oct β Dec 1929",,,,Lending Library Card,"Sylvia Beach, Stuart Gilbert Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/861dcb07-60d7-4a64-b1ba-6296bd9c66c3/manifest,https://iiif.princeton.edu/loris/figgy_prod/db%2F26%2F51%2Fdb2651e9ccd742a8a2be9e5a6e00c862%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-07-15,1932-07-16,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/wallace-face-night/,The Face in the Night,,"Wallace, Edgar",1924,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/12%2F27%2Fd7%2F1227d75ec7164a27aac2c0a1aa6d01f8%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1932-07-15,1932-07-15,https://shakespeareandco.princeton.edu/members/metcalf-thomas-n/,Thomas N. Metcalf,"Metcalf, Thomas N.",,,,,,,,,,,60.00,FRF,https://shakespeareandco.princeton.edu/books/wilson-axels-castle-study/,Axel's Castle: A Study in the Imaginative Literature of 1870 β 1930,,"Wilson, Edmund",1931,,Lending Library Card,"Sylvia Beach, Thomas N. Metcalf Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0c5a220d-4d5e-43db-a442-2e4feaec122a/manifest,https://iiif.princeton.edu/loris/figgy_prod/ce%2Fd2%2F08%2Fced2087334f946c38f9d3ee73c10785e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1932-07-16,1933-01-16,https://shakespeareandco.princeton.edu/members/finger/,Mrs. W. H. Finger,"Finger, Mrs. W. H.",100.00,50.00,6 months,184,1,,1932-07-16,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Finger Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3613c707-36cc-4cb0-860d-d7cce3c15d5d/manifest,https://iiif.princeton.edu/loris/figgy_prod/98%2F78%2F7d%2F98787d8c8239496c8ef746abe636bf30%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-07-16,1932-07-19,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/wilson-devil-take-hindmost/,Devil Take the Hindmost,,"Wilson, Edmund",1932,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/12%2F27%2Fd7%2F1227d75ec7164a27aac2c0a1aa6d01f8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-07-19,1932-07-22,https://shakespeareandco.princeton.edu/members/vechten/,Ann van Vechten,"Vechten, Ann van",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/golding-magnolia-street/,Magnolia Street,,"Golding, Louis",1932,,Lending Library Card,"Sylvia Beach, Mrs. Ann van Vechten Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ddb18782-925b-4085-be72-2084e6ce1ec4/manifest,https://iiif.princeton.edu/loris/figgy_prod/e8%2F81%2F0e%2Fe8810ea64b4b4e99919a60373a97955a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-07-19,1932-07-27,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/la-farge-sparks-fly-upward/,Sparks Fly Upward,,"La Farge, Oliver",1932,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/1d%2F3c%2F8a%2F1d3c8ac2c87e4aaf87fc8a02d6aeebd0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-07-19,1932-07-22,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/ford-wicked-man/,When the Wicked Man,,"Ford, Ford Madox",1932,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/12%2F27%2Fd7%2F1227d75ec7164a27aac2c0a1aa6d01f8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-07-20,1932-08-01,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/bennett-journals-arnold-bennett/,The Journals of Arnold Bennett,,"Bennett, Arnold",1932,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/8a%2Fed%2Fe5%2F8aede54be5604567b84a579bfcd20ff8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-07-21,1932-07-30,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/loder-death-thicket/,Death in the Thicket,,"Loder, Vernon",1932,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/0f%2Fd5%2Fe8%2F0fd5e8ecc00f4c159cbabdbe207808d7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-07-22,1932-08-01,https://shakespeareandco.princeton.edu/members/vechten/,Ann van Vechten,"Vechten, Ann van",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/benson-tobit-transplanted/,Tobit Transplanted,,"Benson, Stella",1931,,Lending Library Card,"Sylvia Beach, Mrs. Ann van Vechten Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ddb18782-925b-4085-be72-2084e6ce1ec4/manifest,https://iiif.princeton.edu/loris/figgy_prod/e8%2F81%2F0e%2Fe8810ea64b4b4e99919a60373a97955a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-07-22,1932-07-23,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/mcneile-return-bulldog-drummond/,The Return of Bulldog Drummond,,"McNeile, H. C.",1932,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/12%2F27%2Fd7%2F1227d75ec7164a27aac2c0a1aa6d01f8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-07-22,,https://shakespeareandco.princeton.edu/members/child-bertha-cushing/,Bertha Cushing Child,"Child, Bertha Cushing",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/peterkin-bright-skin/,Bright Skin,,"Peterkin, Julia Mood",1932,,Lending Library Card,"Sylvia Beach, Bertha Cushing Child Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9be92353-f80b-4fc7-a95a-09f7ef28b99a/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2Fd2%2F95%2Ff2d29586227842e69386891c7d596430%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-07-23,1932-08-28,https://shakespeareandco.princeton.edu/members/faulkner-norma/,Norma Faulkner,"Faulkner, Norma",,,,,,,,,Returned,36,,,https://shakespeareandco.princeton.edu/books/boyle-plagued-nightingale/,Plagued by the Nightingale,,"Boyle, Kay",1931,,Lending Library Card,"Norma Faulkner's lending library cards are part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Borrow,1932-07-23,1932-07-26,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/bennett-glimpse-adventure-soul/,Glimpse: An Adventure of the Soul,,"Bennett, Arnold",1909,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/12%2F27%2Fd7%2F1227d75ec7164a27aac2c0a1aa6d01f8%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1932-07-26,1932-07-26,https://shakespeareandco.princeton.edu/members/robertson-william-cowper/,William Cowper Robertson / Rev. W. Cowper Robertson,"Robertson, William Cowper",,,,,,,,,,,15.00,FRF,https://shakespeareandco.princeton.edu/books/hawthorne-legends-province-house/,Legends of the Province House: And Other Twice-Told Tales /,,"Hawthorne, Nathaniel",1900,,Lending Library Card,"Sylvia Beach, W. Cowper Robertson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/33769c35-cdbb-47ab-b0b9-ca17c85798d6/manifest,https://iiif.princeton.edu/loris/figgy_prod/e2%2F5b%2F81%2Fe25b8195e28345a79276895fb81ade3e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-07-26,1932-07-29,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/williams-death-answers-bell/,Death Answers the Bell,,"Williams, Valentine",1932,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/12%2F27%2Fd7%2F1227d75ec7164a27aac2c0a1aa6d01f8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-07-27,1932-08-08,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/buchan-gap-curtain/,The Gap in the Curtain,,"Buchan, John",1932,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/1d%2F3c%2F8a%2F1d3c8ac2c87e4aaf87fc8a02d6aeebd0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-07-29,1932-08-01,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/dane-babyons-chronicle-family/,The Babyons: The Chronicle of a Family,,"Dane, Clemence",1928,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/12%2F27%2Fd7%2F1227d75ec7164a27aac2c0a1aa6d01f8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-07-30,1932-08-06,https://shakespeareandco.princeton.edu/members/antoine-may/,RenΓ©e Antoine-May,"Antoine-May, RenΓ©e",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/baum-secret-sentence/,Secret Sentence,,"Baum, Vicki",1932,,Lending Library Card,"Sylvia Beach, RenΓ©e Antoine-May Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f4a144a-7d06-48d3-ac9a-4b9ddbb404a9/manifest,https://iiif.princeton.edu/loris/figgy_prod/0f%2Fd5%2Fe8%2F0fd5e8ecc00f4c159cbabdbe207808d7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-08-01,1932-10-07,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,67,,,https://shakespeareandco.princeton.edu/books/benson-sentimentalists/,The Sentimentalists,,"Benson, Robert-Hugh",1906,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2F34%2Fa0%2Fcb34a06754bc48edade768f52aa21e25%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-08-01,1932-10-07,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,67,,,https://shakespeareandco.princeton.edu/books/de-la-roche-whiteoaks/,Whiteoaks,,"De la Roche, Mazo",1929,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2F34%2Fa0%2Fcb34a06754bc48edade768f52aa21e25%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-08-01,1932-10-07,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,67,,,https://shakespeareandco.princeton.edu/books/mann-buddenbrooks/,Buddenbrooks,,"Mann, Thomas",1924,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2F34%2Fa0%2Fcb34a06754bc48edade768f52aa21e25%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-08-01,1932-08-05,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/sherard-life-work-evil/,"The Life, Work, and Evil Fate of Guy de Maupassant",,"Sherard, Robert Harborough",1926,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/0c%2Ffc%2F32%2F0cfc3229219146c7bcdb6779946530e3%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-08-01,1932-08-17,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/zola-nana/,Nana,,"Zola, Γmile",1880,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/0c%2Ffc%2F32%2F0cfc3229219146c7bcdb6779946530e3%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-08-01,1932-08-05,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/istrati-kyra-kyralina/,Kyra Kyralina,,"Istrati, Panait",1926,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/0c%2Ffc%2F32%2F0cfc3229219146c7bcdb6779946530e3%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-08-01,1932-10-07,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,67,,,https://shakespeareandco.princeton.edu/books/hardy-return-native/,The Return of the Native,,"Hardy, Thomas",1878,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2F34%2Fa0%2Fcb34a06754bc48edade768f52aa21e25%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-08-01,1932-08-08,https://shakespeareandco.princeton.edu/members/vechten/,Ann van Vechten,"Vechten, Ann van",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/mckenna-way-phoenix/,The Way of the Phoenix,,"McKenna, Stephen",1932,,Lending Library Card,"Sylvia Beach, Mrs. Ann van Vechten Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ddb18782-925b-4085-be72-2084e6ce1ec4/manifest,https://iiif.princeton.edu/loris/figgy_prod/e8%2F81%2F0e%2Fe8810ea64b4b4e99919a60373a97955a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-08-01,1932-08-02,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/oppenheim-ostrekoff-jewels/,The Ostrekoff Jewels,,"Oppenheim, E. Phillips",1932,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/12%2F27%2Fd7%2F1227d75ec7164a27aac2c0a1aa6d01f8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-08-03,,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/morgan-fountain/,The Fountain,,"Morgan, Charles",1932,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2Ff1%2Ffc%2F5ef1fc21a2be4ee7a21be500c8143229%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-08-03,1932-08-06,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/bromfield-modern-hero/,A Modern Hero,,"Bromfield, Louis",1932,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2Fee%2Fa7%2F25eea7c00d7c4917ac6479671b002569%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-08-03,1932-08-26,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/hardy-mayor-casterbridge/,The Mayor of Casterbridge,,"Hardy, Thomas",1886,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2Ff1%2Ffc%2F5ef1fc21a2be4ee7a21be500c8143229%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1932-08-05,1932-09-05,https://shakespeareandco.princeton.edu/members/schlumberger-jean/,Jean Schlumberger,"Schlumberger, Jean",25.00,50.00,1 month,31,1,,1932-08-05,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Jean Schlumberger Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b29e004f-91aa-4b3a-b2b9-3abfb69b8ac7/manifest,https://iiif-cloud.princeton.edu/iiif/2/0b%2F9f%2Fc0%2F0b9fc056feb04d63b9747cfa41a56071%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-08-05,1932-08-10,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/cather-song-lark/,The Song of the Lark,,"Cather, Willa",1915,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/0c%2Ffc%2F32%2F0cfc3229219146c7bcdb6779946530e3%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-08-05,1932-09-02,https://shakespeareandco.princeton.edu/members/schlumberger-jean/,Jean Schlumberger,"Schlumberger, Jean",,,,,,,,,Returned,28,,,https://shakespeareandco.princeton.edu/books/munthe-story-san-michele/,The Story of San Michele,,"Munthe, Axel",1930,,Lending Library Card,"Sylvia Beach, Jean Schlumberger Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b29e004f-91aa-4b3a-b2b9-3abfb69b8ac7/manifest,https://iiif-cloud.princeton.edu/iiif/2/0b%2F9f%2Fc0%2F0b9fc056feb04d63b9747cfa41a56071%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-08-05,1932-08-10,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/dell-ever-child/,Were You Ever a Child?,,"Dell, Floyd",1919,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/0c%2Ffc%2F32%2F0cfc3229219146c7bcdb6779946530e3%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-08-05,1932-08-10,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/dell-janet-march-novel/,Janet March: A Novel,,"Dell, Floyd",1923,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/0c%2Ffc%2F32%2F0cfc3229219146c7bcdb6779946530e3%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-08-06,1932-08-08,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/kitchin-death-aunt/,Death of My Aunt,,"Kitchin, C. H. B.",1929,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2Fee%2Fa7%2F25eea7c00d7c4917ac6479671b002569%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-08-08,1932-08-12,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/mckenna-way-phoenix/,The Way of the Phoenix,,"McKenna, Stephen",1932,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2Fee%2Fa7%2F25eea7c00d7c4917ac6479671b002569%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-08-08,1932-08-11,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/connington-case-nine-solutions/,The Case with Nine Solutions,,"Connington, J. J.",1928,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/1d%2F3c%2F8a%2F1d3c8ac2c87e4aaf87fc8a02d6aeebd0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-08-10,1932-08-17,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/cullen-color/,Color,,"Cullen, Countee",1925,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/0c%2Ffc%2F32%2F0cfc3229219146c7bcdb6779946530e3%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-08-11,1932-08-30,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/williams-death-answers-bell/,Death Answers the Bell,,"Williams, Valentine",1932,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/1d%2F3c%2F8a%2F1d3c8ac2c87e4aaf87fc8a02d6aeebd0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-08-12,1932-08-13,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/macaulay-mystery-geneva-improbable/,Mystery at Geneva: An Improbable Tale of Singular Happenings,,"Macaulay, Rose",1922,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2Fee%2Fa7%2F25eea7c00d7c4917ac6479671b002569%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-08-13,1932-08-16,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/richardson-backwater-pilgrimage-2/,Backwater (Pilgrimage 2),,"Richardson, Dorothy M.",1916,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2Fee%2Fa7%2F25eea7c00d7c4917ac6479671b002569%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-08-13,1932-08-16,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/richardson-pointed-roofs/,Pointed Roofs (Pilgrimage 1),,"Richardson, Dorothy M.",1915,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2Fee%2Fa7%2F25eea7c00d7c4917ac6479671b002569%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-08-16,1932-08-30,https://shakespeareandco.princeton.edu/members/sortor/,Mrs. Sortor,"Sortor, Mrs.",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/frank-virgin-spain/,Virgin Spain,,"Frank, Waldo",1926,,Lending Library Card,"Sylvia Beach, Mrs Sortor Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/66f7dc5d-21aa-4d5b-a4df-8114ef880915/manifest,https://iiif.princeton.edu/loris/figgy_prod/54%2F63%2F97%2F54639724b13a477394eec76fa019af90%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-08-16,1932-08-18,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/kreymborg-new-american-caravan/,The New American Caravan: A Yearbook of American Literature,,,1929,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/0c%2Ffc%2F32%2F0cfc3229219146c7bcdb6779946530e3%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1932-08-16,1932-09-16,https://shakespeareandco.princeton.edu/members/sortor/,Mrs. Sortor,"Sortor, Mrs.",25.00,50.00,1 month,31,1,,1932-08-16,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Mrs Sortor Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/66f7dc5d-21aa-4d5b-a4df-8114ef880915/manifest,https://iiif.princeton.edu/loris/figgy_prod/54%2F63%2F97%2F54639724b13a477394eec76fa019af90%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-08-16,1932-08-18,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/richardson-honeycomb-pilgrimage-3/,Honeycomb (Pilgrimage 3),,"Richardson, Dorothy M.",1917,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2Fee%2Fa7%2F25eea7c00d7c4917ac6479671b002569%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-08-17,1932-08-22,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/jeffers-roan-stallion-tamar/,"Roan Stallion, Tamar, and Other Poems",,"Jeffers, Robinson",1925,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/0c%2Ffc%2F32%2F0cfc3229219146c7bcdb6779946530e3%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-08-18,1932-08-20,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/connington-nemesis-raynham-parva/,Nemesis at Raynham Parva,,"Connington, J. J.",1929,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2Fee%2Fa7%2F25eea7c00d7c4917ac6479671b002569%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-08-20,1932-08-22,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/erskine-unfinished-business/,Unfinished Business,,"Erskine, John",1931,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2Fee%2Fa7%2F25eea7c00d7c4917ac6479671b002569%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1932-08-20,1932-08-20,https://shakespeareandco.princeton.edu/members/faulkner-norma/,Norma Faulkner,"Faulkner, Norma",,,,,,,,50.00,,,,FRF,,,,,,,Lending Library Card,"Norma Faulkner's lending library cards are part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Borrow,1932-08-22,,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/williams-contact/,Contact,,,,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/0c%2Ffc%2F32%2F0cfc3229219146c7bcdb6779946530e3%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-08-22,1932-08-24,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/loder-death-thicket/,Death in the Thicket,,"Loder, Vernon",1932,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2Fee%2Fa7%2F25eea7c00d7c4917ac6479671b002569%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-08-22,,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/hutchinson-big-business/,Big Business,,"Hutchinson, A. S. M.",1932,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2Fee%2Fa7%2F25eea7c00d7c4917ac6479671b002569%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-08-22,1932-08-26,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/leskov-sentry-stories/,The Sentry and Other Stories,,"Leskov, Nikola Semyonovich",1922,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/0c%2Ffc%2F32%2F0cfc3229219146c7bcdb6779946530e3%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-08-22,1932-08-30,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/stendhal-charterhouse-parma/,The Charterhouse of Parma,,Stendhal,1839,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/0c%2Ffc%2F32%2F0cfc3229219146c7bcdb6779946530e3%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-08-22,,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/kirstein-hound-horn/,Hound & Horn,,,,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/0c%2Ffc%2F32%2F0cfc3229219146c7bcdb6779946530e3%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-08-23,1932-09-02,https://shakespeareandco.princeton.edu/members/wegner/,Max Christian Wegner,"Wegner, Max Christian",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/joyce-ulysses/,Ulysses,,"Joyce, James",1922,,Lending Library Card,"Sylvia Beach, Wegner Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fefa0f0d-1fc7-41b1-a87c-5c2679d5e46e/manifest,https://iiif.princeton.edu/loris/figgy_prod/a3%2F9d%2F59%2Fa39d5986a9b24308987c282fb9b0b735%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-08-24,1932-08-26,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/buchan-gap-curtain/,The Gap in the Curtain,,"Buchan, John",1932,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2Fee%2Fa7%2F25eea7c00d7c4917ac6479671b002569%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-08-24,1932-09-03,https://shakespeareandco.princeton.edu/members/finger/,Mrs. W. H. Finger,"Finger, Mrs. W. H.",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/six-plays/,Six Plays,,,,Unidentified. Likely either George Bernard Shaw's *Six Plays* (1914) or [*Six Plays*](https://shakespeareandco.princeton.edu/books/coward-six-plays/) (1937).,Lending Library Card,"Sylvia Beach, Finger Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3613c707-36cc-4cb0-860d-d7cce3c15d5d/manifest,https://iiif.princeton.edu/loris/figgy_prod/98%2F78%2F7d%2F98787d8c8239496c8ef746abe636bf30%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-08-25,1932-09-02,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/chesterton-chaucer/,Chaucer,,"Chesterton, G. K.",1932,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2Ff1%2Ffc%2F5ef1fc21a2be4ee7a21be500c8143229%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1932-08-25,1932-08-25,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/hopkins-poems-gerard-manley/,Poems of Gerard Manley Hopkins,,"Hopkins, Gerard Manley",1918,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2Ff1%2Ffc%2F5ef1fc21a2be4ee7a21be500c8143229%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-08-26,1932-09-13,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/flaubert-madame-bovary/,Madame Bovary,,"Flaubert, Gustave",1856,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/83%2F5b%2Fe3%2F835be3c0ea384483af2f15b9bc2b544a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-08-26,1932-08-27,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/cocteau-thomas-impostor/,Thomas the Impostor,,"Cocteau, Jean",1925,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/83%2F5b%2Fe3%2F835be3c0ea384483af2f15b9bc2b544a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-08-26,1932-08-27,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/green-leavenworth-case/,The Leavenworth Case,,"Green, Anna Katharine",1878,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2Fee%2Fa7%2F25eea7c00d7c4917ac6479671b002569%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1932-08-27,1932-08-27,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,23.33,FRF,https://shakespeareandco.princeton.edu/books/jolas-transition/,transition,"no. 21, 1932",,,,Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fa2%2F0e%2Fcba20e86c11b4bacbd1eadda8182fccc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-08-27,1932-08-27,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,23.33,FRF,https://shakespeareandco.princeton.edu/books/jolas-transition/,transition,"no. 21, 1932",,,,Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fa2%2F0e%2Fcba20e86c11b4bacbd1eadda8182fccc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-08-27,1932-08-29,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/mackenzie-coral-sequel-carnival/,"Coral: A Sequel to ""Carnival""",,"Mackenzie, Compton",1925,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2Fee%2Fa7%2F25eea7c00d7c4917ac6479671b002569%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1932-08-27,1932-08-27,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,23.33,FRF,https://shakespeareandco.princeton.edu/books/jolas-transition/,transition,"no. 21, 1932",,,,Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fa2%2F0e%2Fcba20e86c11b4bacbd1eadda8182fccc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-08-27,1932-08-27,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,23.33,FRF,https://shakespeareandco.princeton.edu/books/jolas-transition/,transition,"no. 21, 1932",,,,Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fa2%2F0e%2Fcba20e86c11b4bacbd1eadda8182fccc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-08-27,1932-08-27,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,23.33,FRF,https://shakespeareandco.princeton.edu/books/jolas-transition/,transition,"no. 21, 1932",,,,Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fa2%2F0e%2Fcba20e86c11b4bacbd1eadda8182fccc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-08-27,1932-08-30,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/france-opinions-jerome-coignard/,The Opinions of JΓ©rΓ΄me Coignard,,"France, Anatole",1913,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/83%2F5b%2Fe3%2F835be3c0ea384483af2f15b9bc2b544a%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1932-08-27,1932-08-27,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,23.33,FRF,https://shakespeareandco.princeton.edu/books/jolas-transition/,transition,"no. 21, 1932",,,,Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fa2%2F0e%2Fcba20e86c11b4bacbd1eadda8182fccc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-08-29,1932-09-03,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/mackenzie-sinister-street/,Sinister Street,,"Mackenzie, Compton",1914,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2Fee%2Fa7%2F25eea7c00d7c4917ac6479671b002569%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-08-30,1932-09-02,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/bella/,Bella,,,,"Unidentified. Likely Jean Giraudoux's *Bella,* translated by J. F. Scanlon (1927).",Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/83%2F5b%2Fe3%2F835be3c0ea384483af2f15b9bc2b544a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-08-30,1932-09-13,https://shakespeareandco.princeton.edu/members/sortor/,Mrs. Sortor,"Sortor, Mrs.",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/hunt-flurried-years/,The Flurried Years,,"Hunt, Violet",1926,,Lending Library Card,"Sylvia Beach, Mrs Sortor Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/66f7dc5d-21aa-4d5b-a4df-8114ef880915/manifest,https://iiif.princeton.edu/loris/figgy_prod/54%2F63%2F97%2F54639724b13a477394eec76fa019af90%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-08-30,1932-09-02,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/yeats-brown-golden-horn/,Golden Horn,,"Yeats-Brown, Francis",1932,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/1d%2F3c%2F8a%2F1d3c8ac2c87e4aaf87fc8a02d6aeebd0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-08-30,1932-09-16,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/kessel-princes-night/,Princes of the Night,,"Kessel, Joseph",1928,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/83%2F5b%2Fe3%2F835be3c0ea384483af2f15b9bc2b544a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-09-02,1932-09-05,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/hall-master-house/,The Master of the House,,"Hall, Radclyffe",1932,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/1d%2F3c%2F8a%2F1d3c8ac2c87e4aaf87fc8a02d6aeebd0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-09-02,1932-09-07,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/latzko-men-war/,Men in War,,"Latzko, Andreas",1918,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/83%2F5b%2Fe3%2F835be3c0ea384483af2f15b9bc2b544a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-09-02,1932-09-07,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/week/,Week,,,,Unidentified.,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/83%2F5b%2Fe3%2F835be3c0ea384483af2f15b9bc2b544a%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1932-09-03,,https://shakespeareandco.princeton.edu/members/acton/,Baroness Acton,"Acton, Baroness",,,,,,,1932-09-03,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1932-09-03,1932-09-06,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/priestley-faraway/,Faraway,,"Priestley, J. B.",1932,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2Fee%2Fa7%2F25eea7c00d7c4917ac6479671b002569%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-09-03,1932-09-12,https://shakespeareandco.princeton.edu/members/finger/,Mrs. W. H. Finger,"Finger, Mrs. W. H.",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/masefield-hawbucks/,The Hawbucks,,"Masefield, John",1929,,Lending Library Card,"Sylvia Beach, Finger Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3613c707-36cc-4cb0-860d-d7cce3c15d5d/manifest,https://iiif.princeton.edu/loris/figgy_prod/98%2F78%2F7d%2F98787d8c8239496c8ef746abe636bf30%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-09-05,1932-09-09,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/baum-secret-sentence/,Secret Sentence,,"Baum, Vicki",1932,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/1d%2F3c%2F8a%2F1d3c8ac2c87e4aaf87fc8a02d6aeebd0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-09-06,1932-09-08,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/mackenzie-vanity-girl/,The Vanity Girl,,"Mackenzie, Compton",1920,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2Fee%2Fa7%2F25eea7c00d7c4917ac6479671b002569%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-09-07,1932-09-23,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/cabell-jurgen-comedy-justice/,Jurgen: A Comedy of Justice,,"Cabell, James Branch",1919,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/83%2F5b%2Fe3%2F835be3c0ea384483af2f15b9bc2b544a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-09-07,1932-09-16,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/atkinson-gnani-yoga-series/,A Series of Lessons in Gnani Yoga,,"Ramacharaka, Yogi",1907,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/83%2F5b%2Fe3%2F835be3c0ea384483af2f15b9bc2b544a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-09-07,1932-09-16,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/dostoyevsky-honest-thief/,An Honest Thief,,"Dostoyevsky, Fyodor",1919,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/83%2F5b%2Fe3%2F835be3c0ea384483af2f15b9bc2b544a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-09-08,1932-09-10,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/fletcher-kang-vase/,The Kang-He Vase,,"Fletcher, Joseph Smith",1923,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2Fee%2Fa7%2F25eea7c00d7c4917ac6479671b002569%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-09-09,1932-09-14,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/babbitt-masters-modern-french/,The Masters of Modern French Criticism,,"Babbitt, Irving",1912,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/83%2F5b%2Fe3%2F835be3c0ea384483af2f15b9bc2b544a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-09-09,1932-09-14,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/wodehouse-hot-water/,Hot Water,,"Wodehouse, P. G.",1932,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/1d%2F3c%2F8a%2F1d3c8ac2c87e4aaf87fc8a02d6aeebd0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-09-09,1932-09-14,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/whitehead-process-reality/,Process and Reality,,"Whitehead, Alfred North",1929,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/83%2F5b%2Fe3%2F835be3c0ea384483af2f15b9bc2b544a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-09-10,1932-09-12,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/mackenzie-sylvia-michael/,Sylvia & Michael,,"Mackenzie, Compton",1919,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2Fee%2Fa7%2F25eea7c00d7c4917ac6479671b002569%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-09-12,1932-09-14,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/christie-mystery-blue-train/,The Mystery of the Blue Train,,"Christie, Agatha",1928,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2Fee%2Fa7%2F25eea7c00d7c4917ac6479671b002569%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-09-12,,https://shakespeareandco.princeton.edu/members/finger/,Mrs. W. H. Finger,"Finger, Mrs. W. H.",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/meredith-diana-crossways/,Diana of the Crossways,,"Meredith, George",1885,,Lending Library Card,"Sylvia Beach, Finger Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3613c707-36cc-4cb0-860d-d7cce3c15d5d/manifest,https://iiif.princeton.edu/loris/figgy_prod/98%2F78%2F7d%2F98787d8c8239496c8ef746abe636bf30%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1932-09-13,1932-12-13,https://shakespeareandco.princeton.edu/members/bidoire-boulenger/,Miss Boulenger / Mme Bidoire,"Bidoire, Mme",65.00,50.00,3 months,91,1,,1932-09-13,,,,,FRF,,,,,,,Lending Library Card;Lending Library Card,"Sylvia Beach, Boulenger Bidoire Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Boulenger Bidoire Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7f3ef4f0-6ce0-43d1-b96a-1328f891536c/manifest;https://figgy.princeton.edu/concern/scanned_resources/7f3ef4f0-6ce0-43d1-b96a-1328f891536c/manifest,https://iiif-cloud.princeton.edu/iiif/2/9e%2F43%2F49%2F9e43495bc0ee4fa2b0fd028ced999c26%2Fintermediate_file/full/full/0/default.jpg;https://iiif-cloud.princeton.edu/iiif/2/06%2Fe5%2F48%2F06e548926d5b4ecb8353ccb4162827fe%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-09-13,1932-09-20,https://shakespeareandco.princeton.edu/members/bidoire-boulenger/,Miss Boulenger / Mme Bidoire,"Bidoire, Mme",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/huxley-brave-new-world/,Brave New World,,"Huxley, Aldous",1932,,Lending Library Card;Lending Library Card,"Sylvia Beach, Boulenger Bidoire Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Boulenger Bidoire Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7f3ef4f0-6ce0-43d1-b96a-1328f891536c/manifest;https://figgy.princeton.edu/concern/scanned_resources/7f3ef4f0-6ce0-43d1-b96a-1328f891536c/manifest,https://iiif-cloud.princeton.edu/iiif/2/9e%2F43%2F49%2F9e43495bc0ee4fa2b0fd028ced999c26%2Fintermediate_file/full/full/0/default.jpg;https://iiif-cloud.princeton.edu/iiif/2/06%2Fe5%2F48%2F06e548926d5b4ecb8353ccb4162827fe%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-09-13,1932-09-14,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/whitehead-religion-making-lowell/,"Religion in the Making: Lowell Lectures, 1926",,"Whitehead, Alfred North",1926,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/83%2F5b%2Fe3%2F835be3c0ea384483af2f15b9bc2b544a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-09-13,1932-09-26,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/whitehead-symbolism-meaning-effect/,Symbolism: Its Meaning and Effect,,"Whitehead, Alfred North",1927,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/83%2F5b%2Fe3%2F835be3c0ea384483af2f15b9bc2b544a%2Fintermediate_file/full/full/0/default.jpg
+Crossed out,1932-09-13,,https://shakespeareandco.princeton.edu/members/bidoire-boulenger/,Miss Boulenger / Mme Bidoire,"Bidoire, Mme",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/tarkington-marys-neck/,Mary's Neck,,"Tarkington, Booth",1932,,Lending Library Card;Lending Library Card,"Sylvia Beach, Boulenger Bidoire Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Boulenger Bidoire Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7f3ef4f0-6ce0-43d1-b96a-1328f891536c/manifest;https://figgy.princeton.edu/concern/scanned_resources/7f3ef4f0-6ce0-43d1-b96a-1328f891536c/manifest,https://iiif-cloud.princeton.edu/iiif/2/9e%2F43%2F49%2F9e43495bc0ee4fa2b0fd028ced999c26%2Fintermediate_file/full/full/0/default.jpg;https://iiif-cloud.princeton.edu/iiif/2/06%2Fe5%2F48%2F06e548926d5b4ecb8353ccb4162827fe%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-09-13,1932-09-30,https://shakespeareandco.princeton.edu/members/sortor/,Mrs. Sortor,"Sortor, Mrs.",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/cummings-enormous-room/,The Enormous Room,,"Cummings, E. E.",1922,,Lending Library Card,"Sylvia Beach, Mrs Sortor Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/66f7dc5d-21aa-4d5b-a4df-8114ef880915/manifest,https://iiif.princeton.edu/loris/figgy_prod/54%2F63%2F97%2F54639724b13a477394eec76fa019af90%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-09-14,1932-09-15,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/hutchinson-big-business/,Big Business,,"Hutchinson, A. S. M.",1932,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/1d%2F3c%2F8a%2F1d3c8ac2c87e4aaf87fc8a02d6aeebd0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-09-14,1932-09-16,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/aldington-soft-answers/,Soft Answers,,"Aldington, Richard",1932,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2Fee%2Fa7%2F25eea7c00d7c4917ac6479671b002569%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-09-15,1932-09-20,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/morley-swiss-family-manhattan/,Swiss Family Manhattan,,"Morley, Christopher",1932,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/1d%2F3c%2F8a%2F1d3c8ac2c87e4aaf87fc8a02d6aeebd0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-09-16,1932-09-17,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/obrien-best-short-stories-1931-english/,The Best Short Stories of 1931: English,,,1931,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2Fee%2Fa7%2F25eea7c00d7c4917ac6479671b002569%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-09-17,1932-09-21,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/walpole-fortress/,The Fortress,,"Walpole, Hugh",1932,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2Fee%2Fa7%2F25eea7c00d7c4917ac6479671b002569%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-09-19,1932-09-23,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/doblin-berlin-alexanderplatz/,Berlin Alexanderplatz,,"DoΜblin, Alfred",1931,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/83%2F5b%2Fe3%2F835be3c0ea384483af2f15b9bc2b544a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-09-20,1932-09-22,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/ford-wicked-man/,When the Wicked Man,,"Ford, Ford Madox",1932,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/1d%2F3c%2F8a%2F1d3c8ac2c87e4aaf87fc8a02d6aeebd0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-09-20,1932-10-03,https://shakespeareandco.princeton.edu/members/bidoire-boulenger/,Miss Boulenger / Mme Bidoire,"Bidoire, Mme",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/golding-magnolia-street/,Magnolia Street,,"Golding, Louis",1932,,Lending Library Card;Lending Library Card,"Sylvia Beach, Boulenger Bidoire Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Boulenger Bidoire Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7f3ef4f0-6ce0-43d1-b96a-1328f891536c/manifest;https://figgy.princeton.edu/concern/scanned_resources/7f3ef4f0-6ce0-43d1-b96a-1328f891536c/manifest,https://iiif-cloud.princeton.edu/iiif/2/9e%2F43%2F49%2F9e43495bc0ee4fa2b0fd028ced999c26%2Fintermediate_file/full/full/0/default.jpg;https://iiif-cloud.princeton.edu/iiif/2/06%2Fe5%2F48%2F06e548926d5b4ecb8353ccb4162827fe%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-09-21,1932-09-23,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/wodehouse-good-jeeves/,"Very Good, Jeeves",,"Wodehouse, P. G.",1930,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2Fee%2Fa7%2F25eea7c00d7c4917ac6479671b002569%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-09-22,1932-09-23,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/mcneile-return-bulldog-drummond/,The Return of Bulldog Drummond,,"McNeile, H. C.",1932,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/1d%2F3c%2F8a%2F1d3c8ac2c87e4aaf87fc8a02d6aeebd0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-09-23,1932-10-11,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/dos-passos-manhattan-transfer/,Manhattan Transfer,,"Dos Passos, John",1925,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/83%2F5b%2Fe3%2F835be3c0ea384483af2f15b9bc2b544a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-09-23,1932-09-28,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/erskine-unfinished-business/,Unfinished Business,,"Erskine, John",1931,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/1d%2F3c%2F8a%2F1d3c8ac2c87e4aaf87fc8a02d6aeebd0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-09-23,1932-09-26,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/hammett-maltese-falcon/,The Maltese Falcon,,"Hammett, Dashiell",1930,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2Fee%2Fa7%2F25eea7c00d7c4917ac6479671b002569%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-09-23,1932-10-07,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/hutchinson-big-business/,Big Business,,"Hutchinson, A. S. M.",1932,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/83%2F5b%2Fe3%2F835be3c0ea384483af2f15b9bc2b544a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-09-23,1932-09-30,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/cather-obscure-destinies/,Obscure Destinies,,"Cather, Willa",1932,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/83%2F5b%2Fe3%2F835be3c0ea384483af2f15b9bc2b544a%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1932-09-24,1932-09-24,https://shakespeareandco.princeton.edu/members/rodman/,Selden Rodman,"Rodman, Selden",,,,,,,,,,,10.00,FRF,https://shakespeareandco.princeton.edu/books/joyce-ulysses/,Ulysses,,"Joyce, James",1922,,Lending Library Card,"Sylvia Beach, Seldon Rodman Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f049652e-7d2f-4a96-8803-db3fb08ab324/manifest,https://iiif.princeton.edu/loris/figgy_prod/8c%2F38%2Fc8%2F8c38c8f0b9ba4a50a29abcfb48bc1045%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-09-24,1932-09-24,https://shakespeareandco.princeton.edu/members/rodman/,Selden Rodman,"Rodman, Selden",,,,,,,,,,,53.00,FRF,https://shakespeareandco.princeton.edu/books/yeats-selected-poems-lyrical/,"Selected Poems, Lyrical and Narrative",,"Yeats, William Butler",1929,,Lending Library Card,"Sylvia Beach, Seldon Rodman Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f049652e-7d2f-4a96-8803-db3fb08ab324/manifest,https://iiif.princeton.edu/loris/figgy_prod/8c%2F38%2Fc8%2F8c38c8f0b9ba4a50a29abcfb48bc1045%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-09-26,1932-09-28,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/wodehouse-summer-lightning/,Summer Lightning,,"Wodehouse, P. G.",1929,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2Fee%2Fa7%2F25eea7c00d7c4917ac6479671b002569%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1932-09-26,,https://shakespeareandco.princeton.edu/members/melera-3/,Mme Melera,"Melera, Mme",,30.00,,,,Day By Day,1932-09-26,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Purchase,1932-09-27,1932-09-27,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,,,10.00,FRF,https://shakespeareandco.princeton.edu/books/radiguet-devil-flesh/,The Devil in the Flesh,,"Radiguet, Raymond",1923,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/19%2Fd6%2F77%2F19d6775df9374e48a47bd74873380d58%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1932-09-27,1932-10-27,https://shakespeareandco.princeton.edu/members/roditi-marcel-d/,Marcel D. Roditi,"Roditi, Marcel D.",22.50,10.00,1 month,30,1,,1932-09-27,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Marcel Roditi Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/9575562e-b17b-4d25-a006-3886cf9db6f1/manifest,;https://iiif.princeton.edu/loris/figgy_prod/a4%2F5c%2F30%2Fa45c30ec90be4968a4d1bcd32c19a1c9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-09-27,1932-10-18,https://shakespeareandco.princeton.edu/members/roditi-marcel-d/,Marcel D. Roditi,"Roditi, Marcel D.",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/bennett-journals-arnold-bennett/,The Journals of Arnold Bennett,,"Bennett, Arnold",1932,,Lending Library Card,"Sylvia Beach, Marcel Roditi Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9575562e-b17b-4d25-a006-3886cf9db6f1/manifest,https://iiif.princeton.edu/loris/figgy_prod/a4%2F5c%2F30%2Fa45c30ec90be4968a4d1bcd32c19a1c9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-09-27,1932-09-27,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,,,6.00,FRF,https://shakespeareandco.princeton.edu/books/croly-new-republic/,The New Republic,,,,"Antoinette Bernheim's lending library card includes the following notation next to her borrow on March 1, 1939: 39/10/2. There is no issue of *The New Republic* on that date.",Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/19%2Fd6%2F77%2F19d6775df9374e48a47bd74873380d58%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1932-09-27,1932-09-27,https://shakespeareandco.princeton.edu/members/melera-3/,Mme Melera,"Melera, Mme",,,,,,,,30.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1932-09-27,1932-10-27,https://shakespeareandco.princeton.edu/members/gillois/,Gillois,Gillois,25.00,50.00,1 month,30,1,,1932-09-27,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1932-09-28,1932-10-05,https://shakespeareandco.princeton.edu/members/lasselin-georges/,Georges Lasselin,"Lasselin, Georges",7.00,50.00,1 week,7,,,1932-09-28,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1932-09-28,1932-10-03,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/loder-death-thicket/,Death in the Thicket,,"Loder, Vernon",1932,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/1d%2F3c%2F8a%2F1d3c8ac2c87e4aaf87fc8a02d6aeebd0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1932-09-28,1932-10-31,https://shakespeareandco.princeton.edu/members/bayer/,Jerome Bayer,"Bayer, Jerome",25.00,,"1 month, 3 days",33,,,1932-09-28,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1932-09-28,1932-10-01,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/simpson-boomerang/,Boomerang,,"Simpson, Helen",1932,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2Fee%2Fa7%2F25eea7c00d7c4917ac6479671b002569%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1932-09-28,1932-09-28,https://shakespeareandco.princeton.edu/members/de-rochemont/,de Rochemont,de Rochemont,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1932-09-29,1932-10-11,https://shakespeareandco.princeton.edu/members/plummer-dorothy/,Dorothy Plummer,"Plummer, Dorothy",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/woolf-waves/,The Waves,,"Woolf, Virginia",1931,,Lending Library Card,"Sylvia Beach, Dorothy Plummer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5f53ce0-8ea6-4d1f-b36b-f6e5321bab4c/manifest,https://iiif.princeton.edu/loris/figgy_prod/a1%2F20%2F86%2Fa120869f9753422d95807c64cfe30599%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1932-09-30,1932-12-30,https://shakespeareandco.princeton.edu/members/bosman-harold/,Harold Bosman,"Bosman, Harold",,,3 months,91,,,1932-09-30,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1932-09-30,1932-10-30,https://shakespeareandco.princeton.edu/members/carroll-2/,Mrs. Carroll,"Carroll, Mrs.",40.00,,1 month,30,,,1932-09-30,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1932-09-30,1932-09-30,https://shakespeareandco.princeton.edu/members/sortor/,Mrs. Sortor,"Sortor, Mrs.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1932-09-30,1932-10-28,https://shakespeareandco.princeton.edu/members/coles-2/,Mrs. Coles,"Coles, Mrs.",25.00,,28 days,28,,,1932-09-30,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1932-09-30,1932-10-10,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/maugham-cakes-ale-skeleton/,"Cakes and Ale, or, the Skeleton in the Cupboard",,"Maugham, W. Somerset",1930,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/83%2F5b%2Fe3%2F835be3c0ea384483af2f15b9bc2b544a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-09-30,1932-10-27,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,27,,,https://shakespeareandco.princeton.edu/books/oil/,Oil!,,"Sinclair, Upton",1927,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/83%2F5b%2Fe3%2F835be3c0ea384483af2f15b9bc2b544a%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1932-10-01,,https://shakespeareandco.princeton.edu/members/oppen/,George Oppen / To Publishers,"Oppen, George",,50.00,,,,Day By Day,1932-10-01,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1932-10-01,1932-10-04,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/wharton-gods-arrive/,The Gods Arrive,,"Wharton, Edith",1932,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2Fee%2Fa7%2F25eea7c00d7c4917ac6479671b002569%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1932-10-01,,https://shakespeareandco.princeton.edu/members/chang-c-t/,C. T. Chang,"Chang, C. T.",15.00,15.00,,,,,1932-10-01,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1932-10-01,1932-10-01,https://shakespeareandco.princeton.edu/members/auge-2/,Simone AugΓ©,"AugΓ©, Simone",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1932-10-02,1932-10-02,https://shakespeareandco.princeton.edu/members/acton/,Baroness Acton,"Acton, Baroness",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1932-10-02,1932-10-02,https://shakespeareandco.princeton.edu/members/oppen/,George Oppen / To Publishers,"Oppen, George",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1932-10-03,1932-10-04,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/russell-education-social-order/,Education and the Social Order,,"Russell, Bertrand",1932,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/1d%2F3c%2F8a%2F1d3c8ac2c87e4aaf87fc8a02d6aeebd0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1932-10-03,,https://shakespeareandco.princeton.edu/members/shipman-2/,Shipman,Shipman,,30.00,,,,Day By Day,1932-10-03,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1932-10-03,1933-10-22,https://shakespeareandco.princeton.edu/members/bidoire-boulenger/,Miss Boulenger / Mme Bidoire,"Bidoire, Mme",,,,,,,,,Returned,384,,,https://shakespeareandco.princeton.edu/books/priestley-angel-pavement/,Angel Pavement,,"Priestley, J. B.",1930,,Lending Library Card;Lending Library Card,"Sylvia Beach, Boulenger Bidoire Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Boulenger Bidoire Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7f3ef4f0-6ce0-43d1-b96a-1328f891536c/manifest;https://figgy.princeton.edu/concern/scanned_resources/7f3ef4f0-6ce0-43d1-b96a-1328f891536c/manifest,https://iiif-cloud.princeton.edu/iiif/2/9e%2F43%2F49%2F9e43495bc0ee4fa2b0fd028ced999c26%2Fintermediate_file/full/full/0/default.jpg;https://iiif-cloud.princeton.edu/iiif/2/06%2Fe5%2F48%2F06e548926d5b4ecb8353ccb4162827fe%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1932-10-04,1932-10-04,https://shakespeareandco.princeton.edu/members/chassinat/,Mme Chassinat,"Chassinat, Mme",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1932-10-04,1932-10-07,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/best-story-anthology/,My Best Story: An Anthology of Stories Chosen by Their Own Authors,,,1929,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/33%2F20%2Ff9%2F3320f93dc585496c946588919b0c06c7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-10-04,1932-10-08,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/young-mr-mrs-pennington/,Mr. and Mrs. Pennington,,"Young, Francis Brett",1932,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2Fee%2Fa7%2F25eea7c00d7c4917ac6479671b002569%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1932-10-04,1932-10-04,https://shakespeareandco.princeton.edu/members/quackenbush-stanley/,Stanley L. Quackenbush,"Quackenbush, Stanley L.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1932-10-05,1932-10-05,https://shakespeareandco.princeton.edu/members/baylor-maria-roy/,Maria Roy Baylor,"Baylor, Maria Roy",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1932-10-06,1932-10-06,https://shakespeareandco.princeton.edu/members/lasselin-georges/,Georges Lasselin,"Lasselin, Georges",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1932-10-06,,https://shakespeareandco.princeton.edu/members/connolly-jean/,Jean (Bakewell) Connolly / Mrs. Cyril Connolly,"Connolly, Jean",,100.00,,31,,,1932-10-06,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1932-10-06,1932-11-06,https://shakespeareandco.princeton.edu/members/boissevain/,Boissevain,Boissevain,22.50,,1 month,31,,,1932-10-06,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1932-10-07,1932-10-12,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/waugh-black-mischief/,Black Mischief,,"Waugh, Evelyn",1932,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/33%2F20%2Ff9%2F3320f93dc585496c946588919b0c06c7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-10-07,1932-10-13,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/sinclair-intercessor-stories/,The Intercessor and Other Stories,,"Sinclair, May",1932,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2F34%2Fa0%2Fcb34a06754bc48edade768f52aa21e25%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-10-08,1932-10-15,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/leavis-fiction-reading-public/,Fiction and the Reading Public,,"Leavis, Q. D.",1932,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2Ff1%2Ffc%2F5ef1fc21a2be4ee7a21be500c8143229%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1932-10-08,1932-10-08,https://shakespeareandco.princeton.edu/members/connolly-jean/,Jean (Bakewell) Connolly / Mrs. Cyril Connolly,"Connolly, Jean",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1932-10-08,1932-10-10,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/fletcher-dressing-room-murder/,The Dressing Room Murder,,"Fletcher, Joseph Smith",1931,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2Fee%2Fa7%2F25eea7c00d7c4917ac6479671b002569%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-10-08,1932-10-15,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/nicolson-people-things-wireless/,People and Things: Wireless Talks,,"Nicolson, Harold George",1931,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2Ff1%2Ffc%2F5ef1fc21a2be4ee7a21be500c8143229%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1932-10-10,1932-10-10,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,,,105.00,FRF,https://shakespeareandco.princeton.edu/books/hemingway-death-afternoon/,Death in the Afternoon,,"Hemingway, Ernest",1932,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/83%2F5b%2Fe3%2F835be3c0ea384483af2f15b9bc2b544a%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1932-10-10,1932-10-10,https://shakespeareandco.princeton.edu/members/nachod/,Nachod,Nachod,,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1932-10-10,,https://shakespeareandco.princeton.edu/members/carter-e-c/,E. C. Carter,"Carter, E. C.",,100.00,,,,Day By Day,1932-10-10,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1932-10-10,1932-10-13,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/faulkner-light-august/,Light in August,,"Faulkner, William",1932,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2Fee%2Fa7%2F25eea7c00d7c4917ac6479671b002569%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-10-10,,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/sinclair-mountain-city/,Mountain City,,"Sinclair, Upton",1930,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/83%2F5b%2Fe3%2F835be3c0ea384483af2f15b9bc2b544a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-10-10,1932-10-27,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/sinclair-king-midas/,King Midas,,"Sinclair, Upton",1901,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/83%2F5b%2Fe3%2F835be3c0ea384483af2f15b9bc2b544a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-10-11,1932-10-19,https://shakespeareandco.princeton.edu/members/plummer-dorothy/,Dorothy Plummer,"Plummer, Dorothy",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/huxley-brave-new-world/,Brave New World,,"Huxley, Aldous",1932,,Lending Library Card,"Sylvia Beach, Dorothy Plummer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5f53ce0-8ea6-4d1f-b36b-f6e5321bab4c/manifest,https://iiif.princeton.edu/loris/figgy_prod/a1%2F20%2F86%2Fa120869f9753422d95807c64cfe30599%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-10-12,1932-10-25,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/bromfield-modern-hero/,A Modern Hero,,"Bromfield, Louis",1932,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/33%2F20%2Ff9%2F3320f93dc585496c946588919b0c06c7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-10-13,1932-10-19,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/cather-song-lark/,The Song of the Lark,,"Cather, Willa",1915,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2F34%2Fa0%2Fcb34a06754bc48edade768f52aa21e25%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-10-13,1932-10-14,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/obrien-without-cloak/,Without My Cloak,,"O'Brien, Kate",1931,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/25%2Fee%2Fa7%2F25eea7c00d7c4917ac6479671b002569%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1932-10-14,,https://shakespeareandco.princeton.edu/members/coffey/,Coffey,Coffey,,50.00,,,,,1932-10-14,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Coffey Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/4398d159-18a9-48ca-b94e-a84ce9436baa/manifest,;https://iiif.princeton.edu/loris/figgy_prod/ef%2F3c%2Fbd%2Fef3cbd132c244978a983ffecace2c280%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1932-10-14,,https://shakespeareandco.princeton.edu/members/frank-3/,Frank,Frank,,30.00,,,,,1932-10-14,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1932-10-14,1932-10-17,https://shakespeareandco.princeton.edu/members/coffey/,Coffey,Coffey,,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/gilbert-james-joyces-ulysses/,James Joyce's Ulysses: A Study,,"Gilbert, Stuart",1930,,Lending Library Card,"Sylvia Beach, Coffey Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4398d159-18a9-48ca-b94e-a84ce9436baa/manifest,https://iiif.princeton.edu/loris/figgy_prod/ef%2F3c%2Fbd%2Fef3cbd132c244978a983ffecace2c280%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1932-10-14,1932-10-14,https://shakespeareandco.princeton.edu/members/pujo/,Pujo,Pujo,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1932-10-14,1932-10-14,https://shakespeareandco.princeton.edu/members/marrey-1/,Marrey,Marrey,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1932-10-15,1932-10-22,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/huxley-scientist-among-soviets/,A Scientist among the Soviets,,"Huxley, Julian",1932,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2Ff1%2Ffc%2F5ef1fc21a2be4ee7a21be500c8143229%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-10-15,,https://shakespeareandco.princeton.edu/members/boscq-marie/,Marie Boscq / Bosq,"Boscq, Marie",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/hall-well-loneliness/,The Well of Loneliness,,"Hall, Radclyffe",1926,,Lending Library Card,"Sylvia Beach, Marie Boscq Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/11480fae-3477-40c8-be7d-484c91023da7/manifest,https://iiif.princeton.edu/loris/figgy_prod/9b%2F07%2Fe2%2F9b07e236b5ce465a9fef365511bf55e8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1932-10-15,1932-11-15,https://shakespeareandco.princeton.edu/members/adler/,Helen (Boynton) Adler / Mrs. Mortimer J. Adler,"Adler, Helen",40.00,100.00,1 month,31,2,,1932-10-15,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1932-10-15,1933-04-14,https://shakespeareandco.princeton.edu/members/boscq-marie/,Marie Boscq / Bosq,"Boscq, Marie",50.00,30.00,"5 months, 30 days",181,1,,1932-10-15,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Marie Boscq Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/11480fae-3477-40c8-be7d-484c91023da7/manifest,;https://iiif.princeton.edu/loris/figgy_prod/9b%2F07%2Fe2%2F9b07e236b5ce465a9fef365511bf55e8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-10-17,1932-10-20,https://shakespeareandco.princeton.edu/members/denham/,Mrs. Denham,"Denham, Mrs.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/fisher-made-order-stories/,Made-to-Order Stories,,"Fisher, Dorothy Canfield",1925,,Lending Library Card,"Sylvia Beach, Mrs. Denham Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f9111a66-7f5e-4c34-bf9d-9b740bb0388c/manifest,https://iiif.princeton.edu/loris/figgy_prod/53%2Fdf%2F12%2F53df128fca6d48869c271d56e1d049ac%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-10-17,1932-10-20,https://shakespeareandco.princeton.edu/members/denham/,Mrs. Denham,"Denham, Mrs.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/buffalo-child-long-lance-long-lance/,Long Lance,,Buffalo Child Long Lance,1928,,Lending Library Card,"Sylvia Beach, Mrs. Denham Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f9111a66-7f5e-4c34-bf9d-9b740bb0388c/manifest,https://iiif.princeton.edu/loris/figgy_prod/53%2Fdf%2F12%2F53df128fca6d48869c271d56e1d049ac%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1932-10-17,1932-10-17,https://shakespeareandco.princeton.edu/members/hallam/,Hallam,Hallam,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1932-10-17,1932-10-17,https://shakespeareandco.princeton.edu/members/frank-3/,Frank,Frank,,,,,,,,30.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1932-10-17,1932-10-17,https://shakespeareandco.princeton.edu/members/coffey/,Coffey,Coffey,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1932-10-18,,https://shakespeareandco.princeton.edu/members/roditi-marcel-d/,Marcel D. Roditi,"Roditi, Marcel D.",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/six-plays/,Six Plays,,,,Unidentified. Likely either George Bernard Shaw's *Six Plays* (1914) or [*Six Plays*](https://shakespeareandco.princeton.edu/books/coward-six-plays/) (1937).,Lending Library Card,"Sylvia Beach, Marcel Roditi Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9575562e-b17b-4d25-a006-3886cf9db6f1/manifest,https://iiif.princeton.edu/loris/figgy_prod/a4%2F5c%2F30%2Fa45c30ec90be4968a4d1bcd32c19a1c9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-10-19,1932-10-22,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/baum-helene/,Helene,,"Baum, Vicki",1932,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2F34%2Fa0%2Fcb34a06754bc48edade768f52aa21e25%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-10-19,1932-10-25,https://shakespeareandco.princeton.edu/members/plummer-dorothy/,Dorothy Plummer,"Plummer, Dorothy",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/sackville-west-passion-spent/,All Passion Spent,,"Sackville-West, Vita",1931,,Lending Library Card,"Sylvia Beach, Dorothy Plummer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5f53ce0-8ea6-4d1f-b36b-f6e5321bab4c/manifest,https://iiif.princeton.edu/loris/figgy_prod/a1%2F20%2F86%2Fa120869f9753422d95807c64cfe30599%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1932-10-20,1932-10-20,https://shakespeareandco.princeton.edu/members/chwer-dunning/,Chwer Dunning,Chwer Dunning,,,,,,,,15.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1932-10-22,1932-10-29,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/luhan-lorenzo-taos/,Lorenzo in Taos,,"Luhan, Mabel Dodge",1932,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2Ff1%2Ffc%2F5ef1fc21a2be4ee7a21be500c8143229%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-10-22,1932-10-29,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/powys-two-thieves/,The Two Thieves,,"Powys, Theodore Francis",1932,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2Ff1%2Ffc%2F5ef1fc21a2be4ee7a21be500c8143229%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-10-22,1932-10-27,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/buck-sons/,Sons,,"Buck, Pearl S.",1932,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2F34%2Fa0%2Fcb34a06754bc48edade768f52aa21e25%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-10-24,1932-11-22,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Returned,29,,,https://shakespeareandco.princeton.edu/books/chaucer-complete-works-geoffrey-chaucer/,The Complete Works of Geoffrey Chaucer,,"Chaucer, Geoffrey",1894,"Published by Clarendon Press, Oxford University Press.",Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1932-10-25,1932-10-27,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/thompson-hounds-spring/,The Hounds of Spring,,"Thompson, Sylvia",1926,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/33%2F20%2Ff9%2F3320f93dc585496c946588919b0c06c7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-10-25,1932-11-02,https://shakespeareandco.princeton.edu/members/plummer-dorothy/,Dorothy Plummer,"Plummer, Dorothy",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/nichols-evensong/,Evensong,,"Nichols, Beverley",1932,,Lending Library Card,"Sylvia Beach, Dorothy Plummer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5f53ce0-8ea6-4d1f-b36b-f6e5321bab4c/manifest,https://iiif.princeton.edu/loris/figgy_prod/a1%2F20%2F86%2Fa120869f9753422d95807c64cfe30599%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1932-10-26,1932-10-26,https://shakespeareandco.princeton.edu/members/sanchez/,Sanchez,Sanchez,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1932-10-26,1932-11-10,https://shakespeareandco.princeton.edu/members/erdelyi/,Erdelyi / Erdely,Erdelyi,40.00,,15 days,15,,,1932-10-26,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1932-10-26,1932-11-21,https://shakespeareandco.princeton.edu/members/hill-10/,Hill,Hill,40.00,,26 days,26,,,1932-10-26,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1932-10-27,1932-11-02,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/mackail-davids-day/,David's Day,,"Mackail, Denis",1932,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2F34%2Fa0%2Fcb34a06754bc48edade768f52aa21e25%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-10-27,1932-11-08,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/wodehouse-sam-sudden/,Sam the Sudden,,"Wodehouse, P. G.",1925,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/33%2F20%2Ff9%2F3320f93dc585496c946588919b0c06c7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-10-27,,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/sinclair-boston/,Boston,2 vols.,"Sinclair, Upton",1928,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/83%2F5b%2Fe3%2F835be3c0ea384483af2f15b9bc2b544a%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1932-10-28,1932-10-28,https://shakespeareandco.princeton.edu/members/yatter/,Yatter,Yatter,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1932-10-28,1933-01-28,https://shakespeareandco.princeton.edu/members/bailey/,Mrs. Pearce Bailey,"Bailey, Mrs. Pearce",100.00,100.00,3 months,92,,,1932-10-28,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1932-10-28,,https://shakespeareandco.princeton.edu/members/mayo/,Mayo,Mayo,,50.00,,,,Day By Day,1932-10-28,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1932-10-29,1932-11-05,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/powys-house-echo/,House with the Echo,,"Powys, Theodore Francis",1928,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2Ff1%2Ffc%2F5ef1fc21a2be4ee7a21be500c8143229%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-10-29,1932-11-05,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/powys-white-paternoster-stories/,The White Paternoster and Other Stories,,"Powys, Theodore Francis",1930,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2Ff1%2Ffc%2F5ef1fc21a2be4ee7a21be500c8143229%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-10-30,,https://shakespeareandco.princeton.edu/members/boscq-marie/,Marie Boscq / Bosq,"Boscq, Marie",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/huxley-brave-new-world/,Brave New World,,"Huxley, Aldous",1932,,Lending Library Card,"Sylvia Beach, Marie Boscq Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/11480fae-3477-40c8-be7d-484c91023da7/manifest,https://iiif.princeton.edu/loris/figgy_prod/9b%2F07%2Fe2%2F9b07e236b5ce465a9fef365511bf55e8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1932-10-31,1932-10-31,https://shakespeareandco.princeton.edu/members/bayer/,Jerome Bayer,"Bayer, Jerome",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1932-10-31,1932-10-31,https://shakespeareandco.princeton.edu/members/carter-e-c/,E. C. Carter,"Carter, E. C.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1932-10-31,1932-11-14,https://shakespeareandco.princeton.edu/members/child-bertha-cushing/,Bertha Cushing Child,"Child, Bertha Cushing",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/cather-song-lark/,The Song of the Lark,,"Cather, Willa",1915,,Lending Library Card,"Sylvia Beach, Bertha Cushing Child Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9be92353-f80b-4fc7-a95a-09f7ef28b99a/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2Fd2%2F95%2Ff2d29586227842e69386891c7d596430%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-10-31,1932-11-25,https://shakespeareandco.princeton.edu/members/franchot/,Stanislas Pascal Franchot,"Franchot, Stanislas Pascal",,,,,,,,,Returned,25,,,https://shakespeareandco.princeton.edu/books/bryce-american-commonwealth/,The American Commonwealth,Vol. 1,"Bryce, James",1888,,Lending Library Card,"Sylvia Beach, Stanislas Pascal Franchot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1d769df8-a15b-427e-a8aa-96a1e3ff030e/manifest,https://iiif.princeton.edu/loris/figgy_prod/fa%2Fc2%2F01%2Ffac2016244be4f77b72bf7f7248f0c74%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1932-10-31,1932-11-30,https://shakespeareandco.princeton.edu/members/franchot/,Stanislas Pascal Franchot,"Franchot, Stanislas Pascal",12.00,30.00,1 month,30,1,,1932-10-25,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Stanislas Pascal Franchot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/1d769df8-a15b-427e-a8aa-96a1e3ff030e/manifest,;https://iiif.princeton.edu/loris/figgy_prod/fa%2Fc2%2F01%2Ffac2016244be4f77b72bf7f7248f0c74%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1932-11-01,1933-05-01,https://shakespeareandco.princeton.edu/members/child-bertha-cushing/,Bertha Cushing Child,"Child, Bertha Cushing",100.00,,6 months,181,1,,1932-11-14,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Bertha Cushing Child Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/9be92353-f80b-4fc7-a95a-09f7ef28b99a/manifest,;https://iiif.princeton.edu/loris/figgy_prod/08%2F3e%2Fa5%2F083ea52fccd645f2827614478b065591%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-11-02,1932-11-12,https://shakespeareandco.princeton.edu/members/plummer-dorothy/,Dorothy Plummer,"Plummer, Dorothy",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/tennyson/,Tennyson,,,,Unidentified. By or about Tennyson.,Lending Library Card,"Sylvia Beach, Dorothy Plummer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5f53ce0-8ea6-4d1f-b36b-f6e5321bab4c/manifest,https://iiif.princeton.edu/loris/figgy_prod/a1%2F20%2F86%2Fa120869f9753422d95807c64cfe30599%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1932-11-02,,https://shakespeareandco.princeton.edu/members/aubert/,Mme Aubert,"Aubert, Mme",,50.00,,,,Day By Day,1932-11-02,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1932-11-02,1932-11-02,https://shakespeareandco.princeton.edu/members/shipman-2/,Shipman,Shipman,,,,,,,,30.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1932-11-02,1932-11-14,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/lawrence-letters-h-lawrence/,The Letters of D. H. Lawrence,,"Lawrence, D. H.",1932,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2F34%2Fa0%2Fcb34a06754bc48edade768f52aa21e25%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1932-11-04,1932-11-04,https://shakespeareandco.princeton.edu/members/atkinson-3/,Mrs. K. F. Atkinson,"Atkinson, Mrs. K. F.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1932-11-04,1932-11-24,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/sinclair-american-outpost-book/,American Outpost: A Book of Reminiscences,,"Sinclair, Upton",1932,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/83%2F5b%2Fe3%2F835be3c0ea384483af2f15b9bc2b544a%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1932-11-04,,https://shakespeareandco.princeton.edu/members/sard/,Sard,Sard,12.00,30.00,,,,,1932-11-04,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1932-11-04,,https://shakespeareandco.princeton.edu/members/swinnerton-2/,Swinnerton,Swinnerton,,250.00,,,,,1932-11-04,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1932-11-04,1932-11-24,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/priestley-faraway/,Faraway,,"Priestley, J. B.",1932,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/83%2F5b%2Fe3%2F835be3c0ea384483af2f15b9bc2b544a%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1932-11-05,1933-02-05,https://shakespeareandco.princeton.edu/members/bloch-marguerite-herzog/,Marguerite (Herzog) Bloch / Mme Jean Bloch,"Bloch, Marguerite",65.00,50.00,3 months,92,1,,1932-11-05,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Marguerite Bloch Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/9020f86f-a1a1-42bf-b1c1-e6216de74973/manifest,;https://iiif.princeton.edu/loris/figgy_prod/6a%2Fa7%2F30%2F6aa7305dc3114ed4a072b7701d43720a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1932-11-05,,https://shakespeareandco.princeton.edu/members/saunders-2/,Saunders,Saunders,25.00,,,,,,1932-11-05,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1932-11-05,1932-11-12,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/chambers-oxford-book-sixteenth/,The Oxford Book of Sixteenth Century Verse,,"Chambers, E. K.",1932,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2Ff1%2Ffc%2F5ef1fc21a2be4ee7a21be500c8143229%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-11-05,,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/murry-necessity-communism/,The Necessity of Communism,,"Murry, John Middleton",1932,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2Ff1%2Ffc%2F5ef1fc21a2be4ee7a21be500c8143229%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-11-05,1932-11-14,https://shakespeareandco.princeton.edu/members/bloch-marguerite-herzog/,Marguerite (Herzog) Bloch / Mme Jean Bloch,"Bloch, Marguerite",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/dreiser-american-tragedy/,An American Tragedy,,"Dreiser, Theodore",1925,,Lending Library Card,"Sylvia Beach, Marguerite Bloch Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9020f86f-a1a1-42bf-b1c1-e6216de74973/manifest,https://iiif.princeton.edu/loris/figgy_prod/6a%2Fa7%2F30%2F6aa7305dc3114ed4a072b7701d43720a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1932-11-06,1932-12-06,https://shakespeareandco.princeton.edu/members/boissevain/,Boissevain,Boissevain,22.50,,1 month,30,,,1932-11-08,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1932-11-07,1932-11-08,https://shakespeareandco.princeton.edu/members/franchot/,Stanislas Pascal Franchot,"Franchot, Stanislas Pascal",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/shelley-poetical-works-percy/,Shelley's Works,,"Shelley, Percy Bysshe",,"Fernand Colens borrowed the 2 volume Everyman's Library edition of Shelley's poems, edited by A. H. Koszul (1907). Alina Prot borrowed volume 1 of an unidentified edition, and Antoinette Bernheim and Elizabeth Theves borrowed volume 2 of an unidentified edition.",Lending Library Card,"Sylvia Beach, Stanislas Pascal Franchot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1d769df8-a15b-427e-a8aa-96a1e3ff030e/manifest,https://iiif.princeton.edu/loris/figgy_prod/fa%2Fc2%2F01%2Ffac2016244be4f77b72bf7f7248f0c74%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1932-11-07,1932-12-07,https://shakespeareandco.princeton.edu/members/spark/,Spark,Spark,25.00,50.00,1 month,30,,,1932-11-07,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Supplement,1932-11-07,1932-11-30,https://shakespeareandco.princeton.edu/members/franchot/,Stanislas Pascal Franchot,"Franchot, Stanislas Pascal",,75.00,23 days,23,,,1932-11-07,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1932-11-07,1932-11-08,https://shakespeareandco.princeton.edu/members/franchot/,Stanislas Pascal Franchot,"Franchot, Stanislas Pascal",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/ben-jonson/,Ben Jonson,"Vol. 3, 1903 Volpone, or the Fox; EpicΕne, or the Silent Woman; The Alchemist",,,"Unidentified edition. N. E. Mayer borrows volume 1, Stanislas Pascal Franchot borrows volume 3, Irene Wissotzky borrows volumes 1β3, and Francoise de Marcilly borrows volume 2.",Lending Library Card,"Sylvia Beach, Stanislas Pascal Franchot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1d769df8-a15b-427e-a8aa-96a1e3ff030e/manifest,https://iiif.princeton.edu/loris/figgy_prod/fa%2Fc2%2F01%2Ffac2016244be4f77b72bf7f7248f0c74%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1932-11-07,1933-05-07,https://shakespeareandco.princeton.edu/members/scott-a/,A. Scott,"Scott, A.",50.00,30.00,6 months,181,1,,1932-11-07,,,,,FRF,,,,,,,Lending Library Card;Logbook,"Sylvia Beach, Mr. A. Scott Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",https://figgy.princeton.edu/concern/scanned_resources/bde7369e-8f4c-4ae8-b602-64798422455e/manifest;,https://iiif.princeton.edu/loris/figgy_prod/0e%2F4a%2Fd6%2F0e4ad66409a5488fb6fac6c55c2993f4%2Fintermediate_file.jp2/full/full/0/default.jpg;
+Borrow,1932-11-07,1932-11-12,https://shakespeareandco.princeton.edu/members/scott-a/,A. Scott,"Scott, A.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/brandes-main-currents-nineteenth/,Main Currents in Nineteenth Century Literature,Vol. 5 The Romantic School in France,"Brandes, Georg",1905,,Lending Library Card,"Sylvia Beach, Mr. A. Scott Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bde7369e-8f4c-4ae8-b602-64798422455e/manifest,https://iiif.princeton.edu/loris/figgy_prod/0e%2F4a%2Fd6%2F0e4ad66409a5488fb6fac6c55c2993f4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-11-08,1932-11-14,https://shakespeareandco.princeton.edu/members/franchot/,Stanislas Pascal Franchot,"Franchot, Stanislas Pascal",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/petronius-petronius-seneca-apocolocyntosis/,"Petronius; Seneca, Apocolocyntosis",,Petronius;Seneca,1913,,Lending Library Card,"Sylvia Beach, Stanislas Pascal Franchot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1d769df8-a15b-427e-a8aa-96a1e3ff030e/manifest,https://iiif.princeton.edu/loris/figgy_prod/fa%2Fc2%2F01%2Ffac2016244be4f77b72bf7f7248f0c74%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1932-11-08,1932-11-08,https://shakespeareandco.princeton.edu/members/franchot/,Stanislas Pascal Franchot,"Franchot, Stanislas Pascal",,,,,,,,75.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1932-11-08,1932-11-09,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/mottram-castle-island/,Castle Island,,"Mottram, R. H.",1931,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/33%2F20%2Ff9%2F3320f93dc585496c946588919b0c06c7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Supplement,1932-11-08,1932-12-08,https://shakespeareandco.princeton.edu/members/franchot/,Stanislas Pascal Franchot,"Franchot, Stanislas Pascal",11.00,30.00,1 month,30,,,1932-11-08,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Stanislas Pascal Franchot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/1d769df8-a15b-427e-a8aa-96a1e3ff030e/manifest,;https://iiif.princeton.edu/loris/figgy_prod/fa%2Fc2%2F01%2Ffac2016244be4f77b72bf7f7248f0c74%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1932-11-09,1932-11-28,https://shakespeareandco.princeton.edu/members/coles-2/,Mrs. Coles,"Coles, Mrs.",25.00,,19 days,19,,,1932-11-09,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1932-11-09,1932-11-09,https://shakespeareandco.princeton.edu/members/erdelyi/,Erdelyi / Erdely,Erdelyi,,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1932-11-09,1932-11-09,https://shakespeareandco.princeton.edu/members/mayo/,Mayo,Mayo,,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1932-11-09,1932-11-15,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/obrien-best-short-stories-1932/,The Best Short Stories of 1932: And the Yearbook of the American Short Story,,,1932,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/33%2F20%2Ff9%2F3320f93dc585496c946588919b0c06c7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1932-11-09,1932-11-09,https://shakespeareandco.princeton.edu/members/roditi-marcel-d/,Marcel D. Roditi,"Roditi, Marcel D.",,,,,,,,10.00,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Marcel Roditi Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/9575562e-b17b-4d25-a006-3886cf9db6f1/manifest,;https://iiif.princeton.edu/loris/figgy_prod/a4%2F5c%2F30%2Fa45c30ec90be4968a4d1bcd32c19a1c9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1932-11-09,1932-11-09,https://shakespeareandco.princeton.edu/members/sloan-2/,Sloan,Sloan,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1932-11-10,1932-11-10,https://shakespeareandco.princeton.edu/members/swinnerton-2/,Swinnerton,Swinnerton,,,,,,,,200.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1932-11-10,1933-02-10,https://shakespeareandco.princeton.edu/members/bodhuin/,Mme Robert Bodhuin,"Bodhuin, Mme Robert",30.00,30.00,3 months,92,,,1932-11-10,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1932-11-10,,https://shakespeareandco.princeton.edu/members/tibbitts-3/,Tibbitts,Tibbitts,,50.00,,,,,1932-11-10,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1932-11-10,1932-11-15,https://shakespeareandco.princeton.edu/members/watson-sarah-pressly/,Sarah Pressly Watson / Miss S. P. Watson,"Watson, Sarah Pressly",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/galsworthy-maid-waiting/,Maid in Waiting (End of Chapter),,"Galsworthy, John",1931,,Lending Library Card,"Sylvia Beach, Sarah Pressly Watson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b54712a1-8ea4-4b3b-9dbb-f81c5950ac57/manifest,https://iiif.princeton.edu/loris/figgy_prod/5d%2F63%2F50%2F5d63508a60b14f8e8c482b025ba17866%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1932-11-10,1933-02-10,https://shakespeareandco.princeton.edu/members/watson-sarah-pressly/,Sarah Pressly Watson / Miss S. P. Watson,"Watson, Sarah Pressly",65.00,,3 months,92,1,,1932-11-10,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Sarah Pressly Watson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/b54712a1-8ea4-4b3b-9dbb-f81c5950ac57/manifest,;https://iiif.princeton.edu/loris/figgy_prod/5d%2F63%2F50%2F5d63508a60b14f8e8c482b025ba17866%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-11-12,1932-11-19,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/kingsmill-frank-harris/,Frank Harris,,"Kingsmill, Hugh",1932,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2Ff1%2Ffc%2F5ef1fc21a2be4ee7a21be500c8143229%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-11-12,1932-11-15,https://shakespeareandco.princeton.edu/members/scott-a/,A. Scott,"Scott, A.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/graves-poems/,Poems,,"Graves, Robert",,"Unidentified edition or editions. Robert Graves's *Poems (1914 βΒ 26)* (1927), *Poems, 1926 β 1930* (1931), or *Poems, 1930-1933* (1933).",Lending Library Card,"Sylvia Beach, Mr. A. Scott Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bde7369e-8f4c-4ae8-b602-64798422455e/manifest,https://iiif.princeton.edu/loris/figgy_prod/0e%2F4a%2Fd6%2F0e4ad66409a5488fb6fac6c55c2993f4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-11-12,1932-11-22,https://shakespeareandco.princeton.edu/members/plummer-dorothy/,Dorothy Plummer,"Plummer, Dorothy",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/stern-little-red-horses/,Little Red Horses,,"Stern, G. B.",1932,,Lending Library Card,"Sylvia Beach, Dorothy Plummer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5f53ce0-8ea6-4d1f-b36b-f6e5321bab4c/manifest,https://iiif.princeton.edu/loris/figgy_prod/a1%2F20%2F86%2Fa120869f9753422d95807c64cfe30599%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1932-11-12,1932-11-12,https://shakespeareandco.princeton.edu/members/tibbitts-3/,Tibbitts,Tibbitts,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1932-11-14,1932-11-14,https://shakespeareandco.princeton.edu/members/vechten/,Ann van Vechten,"Vechten, Ann van",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1932-11-14,1932-12-30,https://shakespeareandco.princeton.edu/members/franchot/,Stanislas Pascal Franchot,"Franchot, Stanislas Pascal",,,,,,,,,Returned,46,,,https://shakespeareandco.princeton.edu/books/pope-poetical-works-alexander/,The Poetical Works of Alexander Pope,,"Pope, Alexander",,,Lending Library Card,"Sylvia Beach, Stanislas Pascal Franchot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1d769df8-a15b-427e-a8aa-96a1e3ff030e/manifest,https://iiif.princeton.edu/loris/figgy_prod/fa%2Fc2%2F01%2Ffac2016244be4f77b72bf7f7248f0c74%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-11-14,1932-11-18,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/omalley-peking-picnic/,Peking Picnic: A Novel,,"Bridge, Ann",1932,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2F34%2Fa0%2Fcb34a06754bc48edade768f52aa21e25%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-11-14,1932-11-25,https://shakespeareandco.princeton.edu/members/bloch-marguerite-herzog/,Marguerite (Herzog) Bloch / Mme Jean Bloch,"Bloch, Marguerite",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/woolf-waves/,The Waves,,"Woolf, Virginia",1931,,Lending Library Card,"Sylvia Beach, Marguerite Bloch Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9020f86f-a1a1-42bf-b1c1-e6216de74973/manifest,https://iiif.princeton.edu/loris/figgy_prod/6a%2Fa7%2F30%2F6aa7305dc3114ed4a072b7701d43720a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-11-14,1932-11-17,https://shakespeareandco.princeton.edu/members/child-bertha-cushing/,Bertha Cushing Child,"Child, Bertha Cushing",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/ackerley-hindoo-holiday/,Hindoo Holiday,,"Ackerley, J. R.",1932,,Lending Library Card,"Sylvia Beach, Bertha Cushing Child Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9be92353-f80b-4fc7-a95a-09f7ef28b99a/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2Fd2%2F95%2Ff2d29586227842e69386891c7d596430%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-11-14,1932-11-15,https://shakespeareandco.princeton.edu/members/child-bertha-cushing/,Bertha Cushing Child,"Child, Bertha Cushing",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/bott-mothers-cavalcade-pictures/,"Our Mothers: A Cavalcade in Pictures, Quotation and Description of Late Victorian Women 1870 β 1900",,,1932,,Lending Library Card,"Sylvia Beach, Bertha Cushing Child Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9be92353-f80b-4fc7-a95a-09f7ef28b99a/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2Fd2%2F95%2Ff2d29586227842e69386891c7d596430%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1932-11-14,1932-11-14,https://shakespeareandco.princeton.edu/members/adler/,Helen (Boynton) Adler / Mrs. Mortimer J. Adler,"Adler, Helen",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1932-11-14,,https://shakespeareandco.princeton.edu/members/melera-4/,Melera,Melera,,30.00,,,2,Day By Day,1932-11-14,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1932-11-14,1932-11-30,https://shakespeareandco.princeton.edu/members/carroll-2/,Mrs. Carroll,"Carroll, Mrs.",40.00,,16 days,16,,,1932-11-14,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1932-11-14,1932-11-24,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/sinclair-brass-check/,The Brass Check,,"Sinclair, Upton",1919,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/83%2F5b%2Fe3%2F835be3c0ea384483af2f15b9bc2b544a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-11-14,1932-11-24,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/dahlberg-bottom-dogs/,Bottom Dogs,,"Dahlberg, Edward",1929,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/83%2F5b%2Fe3%2F835be3c0ea384483af2f15b9bc2b544a%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1932-11-15,1932-12-15,https://shakespeareandco.princeton.edu/members/geoffroy-1/,Geoffroy,Geoffroy,12.00,30.00,1 month,30,1,,1932-11-15,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Purchase,1932-11-15,1932-11-15,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,,,18.00,FRF,https://shakespeareandco.princeton.edu/books/lawrence-birds-beasts-flowers/,"Birds, Beasts, and Flowers",,"Lawrence, D. H.",1923,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/19%2Fd6%2F77%2F19d6775df9374e48a47bd74873380d58%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-11-15,1932-11-15,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,,,6.00,FRF,https://shakespeareandco.princeton.edu/books/croly-new-republic/,The New Republic,,,,"Antoinette Bernheim's lending library card includes the following notation next to her borrow on March 1, 1939: 39/10/2. There is no issue of *The New Republic* on that date.",Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/19%2Fd6%2F77%2F19d6775df9374e48a47bd74873380d58%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-11-15,1932-11-18,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/hammett-modern-tales-horror/,Modern Tales of Horror,,,1932,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/33%2F20%2Ff9%2F3320f93dc585496c946588919b0c06c7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-11-15,1932-12-01,https://shakespeareandco.princeton.edu/members/watson-sarah-pressly/,Sarah Pressly Watson / Miss S. P. Watson,"Watson, Sarah Pressly",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/buck-sons/,Sons,,"Buck, Pearl S.",1932,,Lending Library Card,"Sylvia Beach, Sarah Pressly Watson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b54712a1-8ea4-4b3b-9dbb-f81c5950ac57/manifest,https://iiif.princeton.edu/loris/figgy_prod/5d%2F63%2F50%2F5d63508a60b14f8e8c482b025ba17866%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-11-15,1932-11-15,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,,,32.00,FRF,https://shakespeareandco.princeton.edu/books/marx-capital-critique-political/,Capital: A Critique of Political Economy,,"Marx, Karl",,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/19%2Fd6%2F77%2F19d6775df9374e48a47bd74873380d58%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1932-11-15,1932-11-15,https://shakespeareandco.princeton.edu/members/melera-4/,Melera,Melera,,,,,,,,60.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1932-11-16,1932-11-16,https://shakespeareandco.princeton.edu/members/benton/,E. R. Benton,"Benton, E. R.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1932-11-16,1932-11-21,https://shakespeareandco.princeton.edu/members/scott-a/,A. Scott,"Scott, A.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/pater-appreciations-essay-style/,Appreciations: With an Essay on Style,,"Pater, Walter",1889,,Lending Library Card,"Sylvia Beach, Mr. A. Scott Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bde7369e-8f4c-4ae8-b602-64798422455e/manifest,https://iiif.princeton.edu/loris/figgy_prod/0e%2F4a%2Fd6%2F0e4ad66409a5488fb6fac6c55c2993f4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1932-11-17,1932-12-17,https://shakespeareandco.princeton.edu/members/roditi-georges/,Georges Roditi,"Roditi, Georges",25.00,50.00,1 month,30,2,,1932-11-17,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Georges Roditi Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/40f31028-742e-4808-bd49-8ba2c8a43e89/manifest,;https://iiif.princeton.edu/loris/figgy_prod/55%2F32%2F04%2F5532045a445f47269ad9e22a09be3e77%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-11-17,1932-11-19,https://shakespeareandco.princeton.edu/members/child-bertha-cushing/,Bertha Cushing Child,"Child, Bertha Cushing",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/seabrook-magic-island/,The Magic Island,,"Seabrook, William",1929,,Lending Library Card,"Sylvia Beach, Bertha Cushing Child Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9be92353-f80b-4fc7-a95a-09f7ef28b99a/manifest,https://iiif.princeton.edu/loris/figgy_prod/f2%2Fd2%2F95%2Ff2d29586227842e69386891c7d596430%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1932-11-17,1932-11-17,https://shakespeareandco.princeton.edu/members/swinnerton-2/,Swinnerton,Swinnerton,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1932-11-17,1932-11-17,https://shakespeareandco.princeton.edu/members/sotiroff/,Sotiroff,Sotiroff,,,,,,,,25.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Separate Payment,1932-11-17,1932-11-17,https://shakespeareandco.princeton.edu/members/sotiroff/,Sotiroff,Sotiroff,,100.00,,,,,1932-11-17,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1932-11-17,1932-11-22,https://shakespeareandco.princeton.edu/members/roditi-georges/,Georges Roditi,"Roditi, Georges",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/sitwell-pleasures-poetry-critical/,The Pleasures of Poetry: A Critical Anthology,First Series Milton and the Augustan Age,"Sitwell, Edith",1930,,Lending Library Card,"Sylvia Beach, Georges Roditi Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/40f31028-742e-4808-bd49-8ba2c8a43e89/manifest,https://iiif.princeton.edu/loris/figgy_prod/55%2F32%2F04%2F5532045a445f47269ad9e22a09be3e77%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-11-18,1932-12-20,https://shakespeareandco.princeton.edu/members/milhaud/,Madeleine Milhaud,"Milhaud, Madeleine",,,,,,,,,Returned,32,,,https://shakespeareandco.princeton.edu/books/six-plays/,Six Plays,,,,Unidentified. Likely either George Bernard Shaw's *Six Plays* (1914) or [*Six Plays*](https://shakespeareandco.princeton.edu/books/coward-six-plays/) (1937).,Lending Library Card,"Sylvia Beach, Madeleine Milhaud Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/30bac701-0f7f-4f16-b790-8c7876940713/manifest,https://iiif.princeton.edu/loris/figgy_prod/04%2Fc2%2Fec%2F04c2eca52e6d4e859677482470664534%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1932-11-18,1932-12-18,https://shakespeareandco.princeton.edu/members/coleman-2/,B. M. Coleman,"Coleman, B. M.",40.00,100.00,1 month,30,2,,1932-11-18,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1932-11-18,1932-11-25,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/woolf-common-reader-second/,The Common Reader: Second Series,,"Woolf, Virginia",1932,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2F34%2Fa0%2Fcb34a06754bc48edade768f52aa21e25%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-11-18,1932-11-24,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/bennett-journals-arnold-bennett/,The Journals of Arnold Bennett,Vol. 2,"Bennett, Arnold",1932,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/33%2F20%2Ff9%2F3320f93dc585496c946588919b0c06c7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1932-11-18,1932-12-18,https://shakespeareandco.princeton.edu/members/bidot/,N. M. Bidot,"Bidot, N. M.",25.00,50.00,1 month,30,2,,1932-11-18,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1932-11-19,1932-12-05,https://shakespeareandco.princeton.edu/members/fischer-marjorie/,Marjorie Fischer,"Fischer, Marjorie",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/dickinson-letters-emily-dickinson/,The Letters of Emily Dickinson,,"Dickinson, Emily",1931,,Lending Library Card,"Sylvia Beach, Marjorie Fischer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f3d0ad43-5972-4bfb-a123-072cd742ed20/manifest,https://iiif.princeton.edu/loris/figgy_prod/33%2Ff8%2Ff0%2F33f8f09893784c85a2193d95c37157bc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-11-19,1932-11-21,https://shakespeareandco.princeton.edu/members/child-bertha-cushing/,Bertha Cushing Child,"Child, Bertha Cushing",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/seabrook-jungle-ways/,Jungle Ways,,"Seabrook, William",1931,,Lending Library Card,"Sylvia Beach, Bertha Cushing Child Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9be92353-f80b-4fc7-a95a-09f7ef28b99a/manifest,https://iiif.princeton.edu/loris/figgy_prod/08%2F3e%2Fa5%2F083ea52fccd645f2827614478b065591%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1932-11-19,1932-12-19,https://shakespeareandco.princeton.edu/members/fischer-marjorie/,Marjorie Fischer,"Fischer, Marjorie",25.00,50.00,1 month,30,1,,1932-11-19,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Marjorie Fischer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/f3d0ad43-5972-4bfb-a123-072cd742ed20/manifest,;https://iiif.princeton.edu/loris/figgy_prod/33%2Ff8%2Ff0%2F33f8f09893784c85a2193d95c37157bc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-11-19,1932-11-26,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/russell-education-social-order/,Education and the Social Order,,"Russell, Bertrand",1932,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2Ff1%2Ffc%2F5ef1fc21a2be4ee7a21be500c8143229%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-11-19,1932-12-03,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/locke-new-negro/,The New Negro,,"Locke, Alain",1925,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2Ff1%2Ffc%2F5ef1fc21a2be4ee7a21be500c8143229%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-11-21,1932-11-28,https://shakespeareandco.princeton.edu/members/child-bertha-cushing/,Bertha Cushing Child,"Child, Bertha Cushing",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/lewisohn-mid-channel-american/,Mid-Channel: An American Chronicle,,"Lewisohn, Ludwig",1929,,Lending Library Card,"Sylvia Beach, Bertha Cushing Child Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9be92353-f80b-4fc7-a95a-09f7ef28b99a/manifest,https://iiif.princeton.edu/loris/figgy_prod/08%2F3e%2Fa5%2F083ea52fccd645f2827614478b065591%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-11-21,1932-11-29,https://shakespeareandco.princeton.edu/members/scott-a/,A. Scott,"Scott, A.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/pater-greek-studies-series/,Greek Studies: A Series of Essays,,"Pater, Walter",1895,,Lending Library Card,"Sylvia Beach, Mr. A. Scott Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bde7369e-8f4c-4ae8-b602-64798422455e/manifest,https://iiif.princeton.edu/loris/figgy_prod/0e%2F4a%2Fd6%2F0e4ad66409a5488fb6fac6c55c2993f4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-11-21,1932-11-21,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,25.00,FRF,https://shakespeareandco.princeton.edu/books/jolas-transition/,transition,"no. 16 β 17, 1929",,,,Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fa2%2F0e%2Fcba20e86c11b4bacbd1eadda8182fccc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-11-21,1932-11-21,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,25.00,FRF,https://shakespeareandco.princeton.edu/books/jolas-transition/,transition,"no. 16 β 17, 1929",,,,Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fa2%2F0e%2Fcba20e86c11b4bacbd1eadda8182fccc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-11-21,1932-11-21,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,25.00,FRF,https://shakespeareandco.princeton.edu/books/jolas-transition/,transition,"no. 16 β 17, 1929",,,,Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fa2%2F0e%2Fcba20e86c11b4bacbd1eadda8182fccc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-11-21,1932-11-21,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,25.00,FRF,https://shakespeareandco.princeton.edu/books/jolas-transition/,transition,"no. 15, 1929",,,,Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fa2%2F0e%2Fcba20e86c11b4bacbd1eadda8182fccc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-11-21,1932-11-21,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,25.00,FRF,https://shakespeareandco.princeton.edu/books/jolas-transition/,transition,"no. 15, 1929",,,,Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fa2%2F0e%2Fcba20e86c11b4bacbd1eadda8182fccc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-11-21,1932-11-21,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,25.00,FRF,https://shakespeareandco.princeton.edu/books/jolas-transition/,transition,"no. 15, 1929",,,,Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fa2%2F0e%2Fcba20e86c11b4bacbd1eadda8182fccc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-11-22,,https://shakespeareandco.princeton.edu/members/roditi-georges/,Georges Roditi,"Roditi, Georges",,,,,,,,,Missing,,,,https://shakespeareandco.princeton.edu/books/hogarth-essay-viii/,Hogarth Essay VIII,,,,Unidentified. Likely the eighth essay in the first or second series of the Hogarth Press essay series: Robert Graves's [*Contemporary Techniques of Poetry: A Political Analogy*](https://shakespeareandco.princeton.edu/books/graves-contemporary-techniques-poetry/) (1925) or Logan Pearsall Smith's *The Prospects of Literature* (1927).,Lending Library Card,"Sylvia Beach, Georges Roditi Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/40f31028-742e-4808-bd49-8ba2c8a43e89/manifest,https://iiif.princeton.edu/loris/figgy_prod/55%2F32%2F04%2F5532045a445f47269ad9e22a09be3e77%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-11-22,1932-12-14,https://shakespeareandco.princeton.edu/members/plummer-dorothy/,Dorothy Plummer,"Plummer, Dorothy",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/tomlinson-gallions-reach/,Gallions Reach,,"Tomlinson, H. M.",1927,,Lending Library Card,"Sylvia Beach, Dorothy Plummer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5f53ce0-8ea6-4d1f-b36b-f6e5321bab4c/manifest,https://iiif.princeton.edu/loris/figgy_prod/a1%2F20%2F86%2Fa120869f9753422d95807c64cfe30599%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-11-24,1932-12-05,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/dos-passos-1919/,1919,,"Dos Passos, John",1932,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/62%2F77%2F6f%2F62776f401c1744f3b61c996bf9ac6f1c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-11-24,1932-12-16,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/baum-results-accident/,Results of an Accident,,"Baum, Vicki",1931,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/b2%2Fa5%2F1f%2Fb2a51f637c684475909e315e7d236a47%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1932-11-24,1932-12-24,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",25.00,,1 month,30,1,,1932-11-24,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/62%2F77%2F6f%2F62776f401c1744f3b61c996bf9ac6f1c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-11-24,1932-11-25,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/bott-mothers-cavalcade-pictures/,"Our Mothers: A Cavalcade in Pictures, Quotation and Description of Late Victorian Women 1870 β 1900",,,1932,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/33%2F20%2Ff9%2F3320f93dc585496c946588919b0c06c7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-11-24,1932-12-16,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/komroff-grace-lambs/,The Grace of Lambs,,"Komroff, Manuel",1925,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/b2%2Fa5%2F1f%2Fb2a51f637c684475909e315e7d236a47%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-11-25,1932-11-29,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/lewis-filibusters-barbary/,Filibusters in Barbary,,"Lewis, Wyndham",1932,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/33%2F20%2Ff9%2F3320f93dc585496c946588919b0c06c7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-11-25,1932-12-01,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/aldington-soft-answers/,Soft Answers,,"Aldington, Richard",1932,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/33%2F20%2Ff9%2F3320f93dc585496c946588919b0c06c7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-11-25,1932-11-29,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/kennedy-long-time-ago/,A Long Time Ago,,"Kennedy, Margaret",1932,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2F34%2Fa0%2Fcb34a06754bc48edade768f52aa21e25%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-11-25,1932-12-03,https://shakespeareandco.princeton.edu/members/bloch-marguerite-herzog/,Marguerite (Herzog) Bloch / Mme Jean Bloch,"Bloch, Marguerite",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/cather-death-comes-archbishop/,Death Comes for the Archbishop,,"Cather, Willa",1927,,Lending Library Card,"Sylvia Beach, Marguerite Bloch Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9020f86f-a1a1-42bf-b1c1-e6216de74973/manifest,https://iiif.princeton.edu/loris/figgy_prod/6a%2Fa7%2F30%2F6aa7305dc3114ed4a072b7701d43720a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-11-26,1932-12-03,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/dane-wild-decembers/,Wild Decembers,,"Dane, Clemence",1932,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2Ff1%2Ffc%2F5ef1fc21a2be4ee7a21be500c8143229%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-11-26,1932-12-13,https://shakespeareandco.princeton.edu/members/franchot/,Stanislas Pascal Franchot,"Franchot, Stanislas Pascal",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/marlowe-christopher-marlowe/,The Best Plays of Christopher Marlowe,,"Marlowe, Christopher",1903,From the [Mermaid Series](https://seriesofseries.owu.edu/mermaid-series/).,Lending Library Card,"Sylvia Beach, Stanislas Pascal Franchot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1d769df8-a15b-427e-a8aa-96a1e3ff030e/manifest,https://iiif.princeton.edu/loris/figgy_prod/fa%2Fc2%2F01%2Ffac2016244be4f77b72bf7f7248f0c74%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-11-28,1932-12-01,https://shakespeareandco.princeton.edu/members/child-bertha-cushing/,Bertha Cushing Child,"Child, Bertha Cushing",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/lewisohn-case-mr-crump/,The Case of Mr. Crump,,"Lewisohn, Ludwig",1926,,Lending Library Card,"Sylvia Beach, Bertha Cushing Child Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9be92353-f80b-4fc7-a95a-09f7ef28b99a/manifest,https://iiif.princeton.edu/loris/figgy_prod/08%2F3e%2Fa5%2F083ea52fccd645f2827614478b065591%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-11-29,1932-12-02,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/maugham-narrow-corner/,The Narrow Corner,,"Maugham, W. Somerset",1932,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2F34%2Fa0%2Fcb34a06754bc48edade768f52aa21e25%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-11-29,1932-12-02,https://shakespeareandco.princeton.edu/members/scott-a/,A. Scott,"Scott, A.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/pater-essays-guardian/,"Essays from ""The Guardian""",,"Pater, Walter",1896,,Lending Library Card,"Sylvia Beach, Mr. A. Scott Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bde7369e-8f4c-4ae8-b602-64798422455e/manifest,https://iiif.princeton.edu/loris/figgy_prod/0e%2F4a%2Fd6%2F0e4ad66409a5488fb6fac6c55c2993f4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-11-30,1932-12-05,https://shakespeareandco.princeton.edu/members/boscq-marie/,Marie Boscq / Bosq,"Boscq, Marie",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/bromfield-modern-hero/,A Modern Hero,,"Bromfield, Louis",1932,,Lending Library Card,"Sylvia Beach, Marie Boscq Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/11480fae-3477-40c8-be7d-484c91023da7/manifest,https://iiif.princeton.edu/loris/figgy_prod/9b%2F07%2Fe2%2F9b07e236b5ce465a9fef365511bf55e8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-11-30,,https://shakespeareandco.princeton.edu/members/child-bertha-cushing/,Bertha Cushing Child,"Child, Bertha Cushing",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/lewisohn-island-within/,The Island Within,,"Lewisohn, Ludwig",1928,,Lending Library Card,"Sylvia Beach, Bertha Cushing Child Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9be92353-f80b-4fc7-a95a-09f7ef28b99a/manifest,https://iiif.princeton.edu/loris/figgy_prod/08%2F3e%2Fa5%2F083ea52fccd645f2827614478b065591%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-12-01,1932-12-06,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/ringel-america-americans-see/,America as Americans See It,,"Ringel, Fred J.",1932,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/33%2F20%2Ff9%2F3320f93dc585496c946588919b0c06c7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-12-01,1932-12-10,https://shakespeareandco.princeton.edu/members/watson-sarah-pressly/,Sarah Pressly Watson / Miss S. P. Watson,"Watson, Sarah Pressly",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/wharton-gods-arrive/,The Gods Arrive,,"Wharton, Edith",1932,,Lending Library Card,"Sylvia Beach, Sarah Pressly Watson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b54712a1-8ea4-4b3b-9dbb-f81c5950ac57/manifest,https://iiif.princeton.edu/loris/figgy_prod/5d%2F63%2F50%2F5d63508a60b14f8e8c482b025ba17866%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-12-01,1932-12-06,https://shakespeareandco.princeton.edu/members/franchot/,Stanislas Pascal Franchot,"Franchot, Stanislas Pascal",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/beebe-galapagos-worlds-end/,Galapagos: World's End,,"Beebe, William",1924,,Lending Library Card,"Sylvia Beach, Stanislas Pascal Franchot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1d769df8-a15b-427e-a8aa-96a1e3ff030e/manifest,https://iiif.princeton.edu/loris/figgy_prod/fa%2Fc2%2F01%2Ffac2016244be4f77b72bf7f7248f0c74%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-12-02,1932-12-03,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/murry-woman-story-h/,Son of Woman: The Story of D. H. Lawrence,,"Murry, John Middleton",1931,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/62%2F77%2F6f%2F62776f401c1744f3b61c996bf9ac6f1c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-12-02,1932-12-09,https://shakespeareandco.princeton.edu/members/scott-a/,A. Scott,"Scott, A.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/pater-gaston-latour-unfinished/,Gaston de Latour: An Unfinished Romance,,"Pater, Walter",1896,,Lending Library Card,"Sylvia Beach, Mr. A. Scott Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bde7369e-8f4c-4ae8-b602-64798422455e/manifest,https://iiif.princeton.edu/loris/figgy_prod/0e%2F4a%2Fd6%2F0e4ad66409a5488fb6fac6c55c2993f4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-12-03,,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/shaw-adventures-black-girl/,The Adventures of the Black Girl in Her Search for God,,"Shaw, George Bernard",1932,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2Ff1%2Ffc%2F5ef1fc21a2be4ee7a21be500c8143229%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-12-03,1932-12-08,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/sinclair-american-outpost-book/,American Outpost: A Book of Reminiscences,,"Sinclair, Upton",1932,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/62%2F77%2F6f%2F62776f401c1744f3b61c996bf9ac6f1c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-12-03,1932-12-22,https://shakespeareandco.princeton.edu/members/bloch-marguerite-herzog/,Marguerite (Herzog) Bloch / Mme Jean Bloch,"Bloch, Marguerite",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/lawrence-aarons-rod/,Aaron's Rod,,"Lawrence, D. H.",1922,,Lending Library Card,"Sylvia Beach, Marguerite Bloch Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9020f86f-a1a1-42bf-b1c1-e6216de74973/manifest,https://iiif.princeton.edu/loris/figgy_prod/6a%2Fa7%2F30%2F6aa7305dc3114ed4a072b7701d43720a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-12-03,1932-12-09,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/sturt-francis-bacon-biography/,Francis Bacon: A Biography,,"Sturt, Mary",1932,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2Ff1%2Ffc%2F5ef1fc21a2be4ee7a21be500c8143229%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-12-05,1932-12-20,https://shakespeareandco.princeton.edu/members/fischer-marjorie/,Marjorie Fischer,"Fischer, Marjorie",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/woolf-common-reader-second/,The Common Reader: Second Series,,"Woolf, Virginia",1932,,Lending Library Card,"Sylvia Beach, Marjorie Fischer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f3d0ad43-5972-4bfb-a123-072cd742ed20/manifest,https://iiif.princeton.edu/loris/figgy_prod/33%2Ff8%2Ff0%2F33f8f09893784c85a2193d95c37157bc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-12-05,1932-12-09,https://shakespeareandco.princeton.edu/members/fischer-marjorie/,Marjorie Fischer,"Fischer, Marjorie",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/kennedy-long-time-ago/,A Long Time Ago,,"Kennedy, Margaret",1932,,Lending Library Card,"Sylvia Beach, Marjorie Fischer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f3d0ad43-5972-4bfb-a123-072cd742ed20/manifest,https://iiif.princeton.edu/loris/figgy_prod/33%2Ff8%2Ff0%2F33f8f09893784c85a2193d95c37157bc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-12-05,1932-12-07,https://shakespeareandco.princeton.edu/members/boscq-marie/,Marie Boscq / Bosq,"Boscq, Marie",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/linklater-men-ness/,The Men of Ness,,"Linklater, Eric",1932,,Lending Library Card,"Sylvia Beach, Marie Boscq Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/11480fae-3477-40c8-be7d-484c91023da7/manifest,https://iiif.princeton.edu/loris/figgy_prod/9b%2F07%2Fe2%2F9b07e236b5ce465a9fef365511bf55e8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-12-05,1932-12-07,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/wells-work-wealth-happiness/,"The Work, Wealth and Happiness of Mankind",,"Wells, H. G.",1931,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/62%2F77%2F6f%2F62776f401c1744f3b61c996bf9ac6f1c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-12-06,1932-12-17,https://shakespeareandco.princeton.edu/members/franchot/,Stanislas Pascal Franchot,"Franchot, Stanislas Pascal",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/lindsay-voyage-arcturus/,A Voyage to Arcturus,,"Lindsay, David",1920,,Lending Library Card,"Sylvia Beach, Stanislas Pascal Franchot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1d769df8-a15b-427e-a8aa-96a1e3ff030e/manifest,https://iiif.princeton.edu/loris/figgy_prod/fa%2Fc2%2F01%2Ffac2016244be4f77b72bf7f7248f0c74%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-12-06,1932-12-25,https://shakespeareandco.princeton.edu/members/bidoire-boulenger/,Miss Boulenger / Mme Bidoire,"Bidoire, Mme",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/bentley-inheritance/,Inheritance,,"Bentley, Phyllis Eleanor",1932,,Lending Library Card;Lending Library Card,"Sylvia Beach, Boulenger Bidoire Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Boulenger Bidoire Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7f3ef4f0-6ce0-43d1-b96a-1328f891536c/manifest;https://figgy.princeton.edu/concern/scanned_resources/7f3ef4f0-6ce0-43d1-b96a-1328f891536c/manifest,https://iiif-cloud.princeton.edu/iiif/2/9e%2F43%2F49%2F9e43495bc0ee4fa2b0fd028ced999c26%2Fintermediate_file/full/full/0/default.jpg;https://iiif-cloud.princeton.edu/iiif/2/06%2Fe5%2F48%2F06e548926d5b4ecb8353ccb4162827fe%2Fintermediate_file/full/full/0/default.jpg
+Generic,1932-12-06,,https://shakespeareandco.princeton.edu/members/bidoire-boulenger/,Miss Boulenger / Mme Bidoire,"Bidoire, Mme",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/morgan-fountain/,The Fountain,,"Morgan, Charles",1932,,Lending Library Card;Lending Library Card,"Sylvia Beach, Boulenger Bidoire Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Boulenger Bidoire Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7f3ef4f0-6ce0-43d1-b96a-1328f891536c/manifest;https://figgy.princeton.edu/concern/scanned_resources/7f3ef4f0-6ce0-43d1-b96a-1328f891536c/manifest,https://iiif-cloud.princeton.edu/iiif/2/9e%2F43%2F49%2F9e43495bc0ee4fa2b0fd028ced999c26%2Fintermediate_file/full/full/0/default.jpg;https://iiif-cloud.princeton.edu/iiif/2/06%2Fe5%2F48%2F06e548926d5b4ecb8353ccb4162827fe%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-12-06,1932-12-09,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/christie-thirteen-problems/,The Thirteen Problems,,"Christie, Agatha",1932,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/33%2F20%2Ff9%2F3320f93dc585496c946588919b0c06c7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-12-07,1932-12-16,https://shakespeareandco.princeton.edu/members/boscq-marie/,Marie Boscq / Bosq,"Boscq, Marie",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/sassoon-poems/,Poems,,"Sassoon, Siegfried",1925,,Lending Library Card,"Sylvia Beach, Marie Boscq Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/11480fae-3477-40c8-be7d-484c91023da7/manifest,https://iiif.princeton.edu/loris/figgy_prod/9b%2F07%2Fe2%2F9b07e236b5ce465a9fef365511bf55e8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1932-12-08,1933-01-08,https://shakespeareandco.princeton.edu/members/franchot/,Stanislas Pascal Franchot,"Franchot, Stanislas Pascal",20.00,,1 month,31,1,,1932-12-13,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Stanislas Pascal Franchot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1d769df8-a15b-427e-a8aa-96a1e3ff030e/manifest,https://iiif.princeton.edu/loris/figgy_prod/fa%2Fc2%2F01%2Ffac2016244be4f77b72bf7f7248f0c74%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-12-08,1932-12-09,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/lawrence-collected-poems-h/,The Collected Poems of D. H. Lawrence,,"Lawrence, D. H.",1928,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/62%2F77%2F6f%2F62776f401c1744f3b61c996bf9ac6f1c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-12-09,1932-12-27,https://shakespeareandco.princeton.edu/members/fischer-marjorie/,Marjorie Fischer,"Fischer, Marjorie",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/roberts-new-signatures-poems/,New Signatures: Poems by Several Hands,,,1932,,Lending Library Card,"Sylvia Beach, Marjorie Fischer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f3d0ad43-5972-4bfb-a123-072cd742ed20/manifest,https://iiif.princeton.edu/loris/figgy_prod/33%2Ff8%2Ff0%2F33f8f09893784c85a2193d95c37157bc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-12-09,1932-12-10,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/lewisohn-expression-america/,Expression in America,,"Lewisohn, Ludwig",1931,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/62%2F77%2F6f%2F62776f401c1744f3b61c996bf9ac6f1c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-12-09,1932-12-15,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/sidgwick-maid-minx/,Maid and Minx,,"Sidgwick, Cecily",1932,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2F34%2Fa0%2Fcb34a06754bc48edade768f52aa21e25%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-12-09,1932-12-13,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/lawrence-lady-chatterleys-lover/,Lady Chatterley's Lover,,"Lawrence, D. H.",1928,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/33%2F20%2Ff9%2F3320f93dc585496c946588919b0c06c7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-12-09,1932-12-17,https://shakespeareandco.princeton.edu/members/scott-a/,A. Scott,"Scott, A.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/grierson-lyrical-poetry-blake/,Lyrical Poetry from Blake to Hardy,,"Grierson, H. J. C.",1928,,Lending Library Card,"Sylvia Beach, Mr. A. Scott Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bde7369e-8f4c-4ae8-b602-64798422455e/manifest,https://iiif.princeton.edu/loris/figgy_prod/0e%2F4a%2Fd6%2F0e4ad66409a5488fb6fac6c55c2993f4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-12-10,1932-12-12,https://shakespeareandco.princeton.edu/members/watson-sarah-pressly/,Sarah Pressly Watson / Miss S. P. Watson,"Watson, Sarah Pressly",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/galsworthy-flowering-wilderness/,Flowering Wilderness (End of Chapter),,"Galsworthy, John",1932,,Lending Library Card,"Sylvia Beach, Sarah Pressly Watson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b54712a1-8ea4-4b3b-9dbb-f81c5950ac57/manifest,https://iiif.princeton.edu/loris/figgy_prod/5d%2F63%2F50%2F5d63508a60b14f8e8c482b025ba17866%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-12-10,1932-12-12,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/lawrence-letters-h-lawrence/,The Letters of D. H. Lawrence,,"Lawrence, D. H.",1932,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/62%2F77%2F6f%2F62776f401c1744f3b61c996bf9ac6f1c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-12-12,1932-12-12,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/eliot-ariel-poems-marina/,Ariel Poems: Marina,,"Eliot, T. S.",1930,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/19%2Fd6%2F77%2F19d6775df9374e48a47bd74873380d58%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-12-12,1932-12-12,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/eliot-ariel-poems-animula/,Ariel Poems: Animula,,"Eliot, T. S.",1929,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/19%2Fd6%2F77%2F19d6775df9374e48a47bd74873380d58%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-12-12,1932-12-24,https://shakespeareandco.princeton.edu/members/watson-sarah-pressly/,Sarah Pressly Watson / Miss S. P. Watson,"Watson, Sarah Pressly",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/masters-spoon-river-anthology/,Spoon River Anthology,,"Masters, Edgar Lee",1914,,Lending Library Card,"Sylvia Beach, Sarah Pressly Watson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b54712a1-8ea4-4b3b-9dbb-f81c5950ac57/manifest,https://iiif.princeton.edu/loris/figgy_prod/5d%2F63%2F50%2F5d63508a60b14f8e8c482b025ba17866%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-12-12,1932-12-16,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/quiller-couch-oxford-book-victorian/,The Oxford Book of Victorian Verse,,,1912,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/62%2F77%2F6f%2F62776f401c1744f3b61c996bf9ac6f1c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Crossed out,1932-12-12,,https://shakespeareandco.princeton.edu/members/watson-sarah-pressly/,Sarah Pressly Watson / Miss S. P. Watson,"Watson, Sarah Pressly",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/chappell-shropshire-mary-webb/,The Shropshire of Mary Webb,,"Chappell, W. Reid",1930,,Lending Library Card,"Sylvia Beach, Sarah Pressly Watson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b54712a1-8ea4-4b3b-9dbb-f81c5950ac57/manifest,https://iiif.princeton.edu/loris/figgy_prod/5d%2F63%2F50%2F5d63508a60b14f8e8c482b025ba17866%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-12-12,1932-12-12,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,,,4.50,FRF,https://shakespeareandco.princeton.edu/books/martin-new-statesman-nation/,The New Statesman and Nation,"Vol. 4, no. 94, Dec 10, 1932",,,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/19%2Fd6%2F77%2F19d6775df9374e48a47bd74873380d58%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-12-12,1932-12-28,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/baum-grand-hotel/,Grand Hotel,,"Baum, Vicki",1931,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/62%2F77%2F6f%2F62776f401c1744f3b61c996bf9ac6f1c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-12-12,1932-12-12,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,,,30.00,FRF,https://shakespeareandco.princeton.edu/books/eliot-lancelot-andrewes-essays/,For Lancelot Andrewes: Essays on Style and Order,,"Eliot, T. S.",1928,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/19%2Fd6%2F77%2F19d6775df9374e48a47bd74873380d58%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-12-12,1932-12-12,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/eliot-ariel-poems-journey/,Ariel Poems: Journey of the Magi,,"Eliot, T. S.",1927,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/19%2Fd6%2F77%2F19d6775df9374e48a47bd74873380d58%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-12-13,1933-01-03,https://shakespeareandco.princeton.edu/members/franchot/,Stanislas Pascal Franchot,"Franchot, Stanislas Pascal",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/whitehead-science-modern-world/,Science and the Modern World,,"Whitehead, Alfred North",1925,,Lending Library Card,"Sylvia Beach, Stanislas Pascal Franchot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1d769df8-a15b-427e-a8aa-96a1e3ff030e/manifest,https://iiif.princeton.edu/loris/figgy_prod/fa%2Fc2%2F01%2Ffac2016244be4f77b72bf7f7248f0c74%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-12-13,1932-12-16,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/komroff-new-york-tempest/,A New York Tempest,,"Komroff, Manuel",1932,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/33%2F20%2Ff9%2F3320f93dc585496c946588919b0c06c7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-12-14,1933-01-14,https://shakespeareandco.princeton.edu/members/plummer-dorothy/,Dorothy Plummer,"Plummer, Dorothy",,,,,,,,,Returned,31,,,https://shakespeareandco.princeton.edu/books/shaw-adventures-black-girl/,The Adventures of the Black Girl in Her Search for God,,"Shaw, George Bernard",1932,,Lending Library Card,"Sylvia Beach, Dorothy Plummer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5f53ce0-8ea6-4d1f-b36b-f6e5321bab4c/manifest,https://iiif.princeton.edu/loris/figgy_prod/a1%2F20%2F86%2Fa120869f9753422d95807c64cfe30599%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1932-12-14,1932-12-14,https://shakespeareandco.princeton.edu/members/roditi-georges/,Georges Roditi,"Roditi, Georges",,,,,,,,33.00,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Georges Roditi Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/40f31028-742e-4808-bd49-8ba2c8a43e89/manifest,https://iiif.princeton.edu/loris/figgy_prod/55%2F32%2F04%2F5532045a445f47269ad9e22a09be3e77%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-12-15,1932-12-21,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/macaulay-defeated/,They Were Defeated,,"Macaulay, Rose",1932,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2F34%2Fa0%2Fcb34a06754bc48edade768f52aa21e25%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-12-16,1933-01-03,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/maugham-narrow-corner/,The Narrow Corner,,"Maugham, W. Somerset",1932,,Lending Library Card,"Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,https://iiif.princeton.edu/loris/figgy_prod/33%2F20%2Ff9%2F3320f93dc585496c946588919b0c06c7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-12-16,1933-01-05,https://shakespeareandco.princeton.edu/members/boscq-marie/,Marie Boscq / Bosq,"Boscq, Marie",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/harris-bernard-shaw/,Bernard Shaw: An Unauthorized Biography Based on Firsthand Information,,"Harris, Frank",1931,,Lending Library Card,"Sylvia Beach, Marie Boscq Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/11480fae-3477-40c8-be7d-484c91023da7/manifest,https://iiif.princeton.edu/loris/figgy_prod/9b%2F07%2Fe2%2F9b07e236b5ce465a9fef365511bf55e8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-12-16,1933-01-23,https://shakespeareandco.princeton.edu/members/sheldon-james-s/,James S. Sheldon,"Sheldon, James S.",,,,,,,,,Returned,38,,,https://shakespeareandco.princeton.edu/books/dos-passos-three-soldiers/,Three Soldiers,,"Dos Passos, John",1921,,Lending Library Card,"Sylvia Beach, James Sheldon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3912d1e1-1719-4b97-a5b6-99d8205942e6/manifest,https://iiif-cloud.princeton.edu/iiif/2/b2%2Fa5%2F1f%2Fb2a51f637c684475909e315e7d236a47%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-12-17,1932-12-31,https://shakespeareandco.princeton.edu/members/dalsace/,Mme Dalsace,"Dalsace, Mme",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/richardson-pointed-roofs/,Pointed Roofs (Pilgrimage 1),,"Richardson, Dorothy M.",1915,,Lending Library Card,"Sylvia Beach, Mme Dalsace Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd1b74e4-14f3-4828-998c-eb51b7df62c3/manifest,https://iiif.princeton.edu/loris/figgy_prod/76%2F3e%2F35%2F763e357532a14aec802ff30208c63814%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1932-12-17,1933-03-17,https://shakespeareandco.princeton.edu/members/dalsace/,Mme Dalsace,"Dalsace, Mme",50.00,,3 months,90,2,,1932-12-17,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Mme Dalsace Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd1b74e4-14f3-4828-998c-eb51b7df62c3/manifest,https://iiif.princeton.edu/loris/figgy_prod/76%2F3e%2F35%2F763e357532a14aec802ff30208c63814%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-12-17,1932-12-17,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,,,14.00,FRF,https://shakespeareandco.princeton.edu/books/eliot-sweeney-agonistes-fragments/,Sweeney Agonistes: Fragments of an Aristophanic Melodrama,,"Eliot, T. S.",1932,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/19%2Fd6%2F77%2F19d6775df9374e48a47bd74873380d58%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-12-17,1932-12-22,https://shakespeareandco.princeton.edu/members/scott-a/,A. Scott,"Scott, A.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/arnold-essays-criticism/,Essays in Criticism,,"Arnold, Matthew",1865,,Lending Library Card,"Sylvia Beach, Mr. A. Scott Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bde7369e-8f4c-4ae8-b602-64798422455e/manifest,https://iiif.princeton.edu/loris/figgy_prod/0e%2F4a%2Fd6%2F0e4ad66409a5488fb6fac6c55c2993f4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-12-17,1932-12-17,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,,,4.50,FRF,https://shakespeareandco.princeton.edu/books/martin-new-statesman-nation/,The New Statesman and Nation,"Vol. 4, no. 93, Dec 3, 1932",,,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/19%2Fd6%2F77%2F19d6775df9374e48a47bd74873380d58%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-12-17,1932-12-30,https://shakespeareandco.princeton.edu/members/dalsace/,Mme Dalsace,"Dalsace, Mme",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/powys-dorothy-richardson/,Dorothy M. Richardson,,"Powys, John Cowper",1931,,Lending Library Card,"Sylvia Beach, Mme Dalsace Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd1b74e4-14f3-4828-998c-eb51b7df62c3/manifest,https://iiif.princeton.edu/loris/figgy_prod/76%2F3e%2F35%2F763e357532a14aec802ff30208c63814%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-12-17,1933-01-17,https://shakespeareandco.princeton.edu/members/dalsace/,Mme Dalsace,"Dalsace, Mme",,,,,,,,,Returned,31,,,https://shakespeareandco.princeton.edu/books/richardson-backwater-pilgrimage-2/,Backwater (Pilgrimage 2),,"Richardson, Dorothy M.",1916,,Lending Library Card,"Sylvia Beach, Mme Dalsace Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd1b74e4-14f3-4828-998c-eb51b7df62c3/manifest,https://iiif.princeton.edu/loris/figgy_prod/76%2F3e%2F35%2F763e357532a14aec802ff30208c63814%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1932-12-19,1933-03-19,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",50.00,60.00,3 months,90,2,,1932-12-19,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Aline Prot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/15a376bb-405b-4488-b789-1559abbe3fb2/manifest,https://iiif-cloud.princeton.edu/iiif/2/3d%2F96%2F3a%2F3d963a0b51aa48cbbb2e5dba5f22c789%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-12-19,1933-01-10,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/marriage/,Marriage,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Aline Prot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/15a376bb-405b-4488-b789-1559abbe3fb2/manifest,https://iiif-cloud.princeton.edu/iiif/2/3d%2F96%2F3a%2F3d963a0b51aa48cbbb2e5dba5f22c789%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-12-19,1933-01-10,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/galsworthy-swan-song/,Swan Song (A Modern Comedy),,"Galsworthy, John",1928,,Lending Library Card,"Sylvia Beach, Aline Prot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/15a376bb-405b-4488-b789-1559abbe3fb2/manifest,https://iiif-cloud.princeton.edu/iiif/2/3d%2F96%2F3a%2F3d963a0b51aa48cbbb2e5dba5f22c789%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1932-12-19,1932-12-19,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,10.00,FRF,https://shakespeareandco.princeton.edu/books/duff-mind-products-limited/,Mind Products Limited: A Melodrama of the Future,,"Duff, Charles",1932,,Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fa2%2F0e%2Fcba20e86c11b4bacbd1eadda8182fccc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-12-19,1932-12-19,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,40.00,FRF,https://shakespeareandco.princeton.edu/books/neagoe-americans-abroad-anthology/,Americans Abroad: An Anthology,,,1932,,Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fa2%2F0e%2Fcba20e86c11b4bacbd1eadda8182fccc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-12-19,1932-12-19,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,40.00,FRF,https://shakespeareandco.princeton.edu/books/neagoe-americans-abroad-anthology/,Americans Abroad: An Anthology,,,1932,,Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fa2%2F0e%2Fcba20e86c11b4bacbd1eadda8182fccc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-12-19,1932-12-19,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,40.00,FRF,https://shakespeareandco.princeton.edu/books/neagoe-americans-abroad-anthology/,Americans Abroad: An Anthology,,,1932,,Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fa2%2F0e%2Fcba20e86c11b4bacbd1eadda8182fccc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-12-19,1932-12-19,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,10.00,FRF,https://shakespeareandco.princeton.edu/books/duff-mind-products-limited/,Mind Products Limited: A Melodrama of the Future,,"Duff, Charles",1932,,Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fa2%2F0e%2Fcba20e86c11b4bacbd1eadda8182fccc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-12-19,1932-12-19,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,10.00,FRF,https://shakespeareandco.princeton.edu/books/duff-mind-products-limited/,Mind Products Limited: A Melodrama of the Future,,"Duff, Charles",1932,,Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fa2%2F0e%2Fcba20e86c11b4bacbd1eadda8182fccc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-12-19,1932-12-19,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,10.00,FRF,https://shakespeareandco.princeton.edu/books/duff-mind-products-limited/,Mind Products Limited: A Melodrama of the Future,,"Duff, Charles",1932,,Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fa2%2F0e%2Fcba20e86c11b4bacbd1eadda8182fccc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-12-19,1932-12-19,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,10.00,FRF,https://shakespeareandco.princeton.edu/books/duff-mind-products-limited/,Mind Products Limited: A Melodrama of the Future,,"Duff, Charles",1932,,Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fa2%2F0e%2Fcba20e86c11b4bacbd1eadda8182fccc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-12-19,1932-12-19,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,10.00,FRF,https://shakespeareandco.princeton.edu/books/duff-mind-products-limited/,Mind Products Limited: A Melodrama of the Future,,"Duff, Charles",1932,,Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2Fa2%2F0e%2Fcba20e86c11b4bacbd1eadda8182fccc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-12-21,1932-12-28,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/bennett-journals-arnold-bennett/,The Journals of Arnold Bennett,Vol. 2,"Bennett, Arnold",1932,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2F34%2Fa0%2Fcb34a06754bc48edade768f52aa21e25%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-12-21,1932-12-24,https://shakespeareandco.princeton.edu/members/franchot/,Stanislas Pascal Franchot,"Franchot, Stanislas Pascal",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/relativity-gravitation/,Relativity and Gravitation,,,,"Unidentified. *Relativity and Gravitation,* edited by J. Malcolm Bird (1921) or T. Percy Nunn's *Relativity and Gravitation: An Elementary Treatise upon Einstein's Theory* (1923).",Lending Library Card,"Sylvia Beach, Stanislas Pascal Franchot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1d769df8-a15b-427e-a8aa-96a1e3ff030e/manifest,https://iiif.princeton.edu/loris/figgy_prod/fa%2Fc2%2F01%2Ffac2016244be4f77b72bf7f7248f0c74%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-12-22,1932-12-22,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,10.00,FRF,https://shakespeareandco.princeton.edu/books/duff-mind-products-limited/,Mind Products Limited: A Melodrama of the Future,,"Duff, Charles",1932,,Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/6d%2F02%2Fea%2F6d02ea92311c444890ba5b1cc80946d0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-12-22,1932-12-22,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,10.00,FRF,https://shakespeareandco.princeton.edu/books/duff-mind-products-limited/,Mind Products Limited: A Melodrama of the Future,,"Duff, Charles",1932,,Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/6d%2F02%2Fea%2F6d02ea92311c444890ba5b1cc80946d0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-12-22,1932-12-22,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,40.00,FRF,https://shakespeareandco.princeton.edu/books/neagoe-americans-abroad-anthology/,Americans Abroad: An Anthology,,,1932,,Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/6d%2F02%2Fea%2F6d02ea92311c444890ba5b1cc80946d0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-12-22,1932-12-22,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,10.00,FRF,https://shakespeareandco.princeton.edu/books/duff-mind-products-limited/,Mind Products Limited: A Melodrama of the Future,,"Duff, Charles",1932,,Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/6d%2F02%2Fea%2F6d02ea92311c444890ba5b1cc80946d0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-12-22,1932-12-22,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,40.00,FRF,https://shakespeareandco.princeton.edu/books/neagoe-americans-abroad-anthology/,Americans Abroad: An Anthology,,,1932,,Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/6d%2F02%2Fea%2F6d02ea92311c444890ba5b1cc80946d0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-12-22,1932-12-22,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,40.00,FRF,https://shakespeareandco.princeton.edu/books/neagoe-americans-abroad-anthology/,Americans Abroad: An Anthology,,,1932,,Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/6d%2F02%2Fea%2F6d02ea92311c444890ba5b1cc80946d0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-12-22,1932-12-22,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,10.00,FRF,https://shakespeareandco.princeton.edu/books/duff-mind-products-limited/,Mind Products Limited: A Melodrama of the Future,,"Duff, Charles",1932,,Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/6d%2F02%2Fea%2F6d02ea92311c444890ba5b1cc80946d0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-12-22,1932-12-22,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,10.00,FRF,https://shakespeareandco.princeton.edu/books/duff-mind-products-limited/,Mind Products Limited: A Melodrama of the Future,,"Duff, Charles",1932,,Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/6d%2F02%2Fea%2F6d02ea92311c444890ba5b1cc80946d0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-12-22,1932-12-22,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,10.00,FRF,https://shakespeareandco.princeton.edu/books/duff-mind-products-limited/,Mind Products Limited: A Melodrama of the Future,,"Duff, Charles",1932,,Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/6d%2F02%2Fea%2F6d02ea92311c444890ba5b1cc80946d0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-12-22,1933-01-03,https://shakespeareandco.princeton.edu/members/milward-j-d/,J. D. Milward,"Milward, J. D.",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/hemingway-death-afternoon/,Death in the Afternoon,,"Hemingway, Ernest",1932,,Lending Library Card,"Sylvia Beach, J. D. Milward Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af730253-bb8f-4845-a835-116af90c60d3/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F3d%2F25%2F563d25cfccc941ee91aa6bf7966c5987%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1932-12-22,1933-01-22,https://shakespeareandco.princeton.edu/members/milward-j-d/,J. D. Milward,"Milward, J. D.",25.00,50.00,1 month,31,1,,1932-12-22,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, J. D. Milward Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af730253-bb8f-4845-a835-116af90c60d3/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F3d%2F25%2F563d25cfccc941ee91aa6bf7966c5987%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-12-23,1932-12-30,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/lewis-enemy-stars/,Enemy of the Stars,,"Lewis, Wyndham",1932,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1932-12-23,1933-02-07,https://shakespeareandco.princeton.edu/members/bloch-marguerite-herzog/,Marguerite (Herzog) Bloch / Mme Jean Bloch,"Bloch, Marguerite",,,,,,,,,Returned,46,,,https://shakespeareandco.princeton.edu/books/lewis-main-street-story/,Main Street: The Story of Carol Kennicott,,"Lewis, Sinclair",1920,,Lending Library Card,"Sylvia Beach, Marguerite Bloch Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9020f86f-a1a1-42bf-b1c1-e6216de74973/manifest,https://iiif.princeton.edu/loris/figgy_prod/6a%2Fa7%2F30%2F6aa7305dc3114ed4a072b7701d43720a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-12-24,1933-01-03,https://shakespeareandco.princeton.edu/members/franchot/,Stanislas Pascal Franchot,"Franchot, Stanislas Pascal",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/spinoza/,Spinoza,,,,Unidentified. By or about Spinoza.,Lending Library Card,"Sylvia Beach, Stanislas Pascal Franchot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1d769df8-a15b-427e-a8aa-96a1e3ff030e/manifest,https://iiif.princeton.edu/loris/figgy_prod/fa%2Fc2%2F01%2Ffac2016244be4f77b72bf7f7248f0c74%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1932-12-24,1933-01-24,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",25.00,,1 month,31,1,,1933-01-09,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/62%2F77%2F6f%2F62776f401c1744f3b61c996bf9ac6f1c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-12-27,1932-12-31,https://shakespeareandco.princeton.edu/members/fischer-marjorie/,Marjorie Fischer,"Fischer, Marjorie",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/sitwell-collected-poems-edith/,The Collected Poems of Edith Sitwell,,"Sitwell, Edith",1930,,Lending Library Card,"Sylvia Beach, Marjorie Fischer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f3d0ad43-5972-4bfb-a123-072cd742ed20/manifest,https://iiif.princeton.edu/loris/figgy_prod/33%2Ff8%2Ff0%2F33f8f09893784c85a2193d95c37157bc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-12-27,1932-12-31,https://shakespeareandco.princeton.edu/members/fischer-marjorie/,Marjorie Fischer,"Fischer, Marjorie",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/sackville-west-family-history/,Family History,,"Sackville-West, Vita",1932,,Lending Library Card,"Sylvia Beach, Marjorie Fischer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f3d0ad43-5972-4bfb-a123-072cd742ed20/manifest,https://iiif.princeton.edu/loris/figgy_prod/33%2Ff8%2Ff0%2F33f8f09893784c85a2193d95c37157bc%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-12-27,1933-01-03,https://shakespeareandco.princeton.edu/members/watson-sarah-pressly/,Sarah Pressly Watson / Miss S. P. Watson,"Watson, Sarah Pressly",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/morgan-fountain/,The Fountain,,"Morgan, Charles",1932,,Lending Library Card,"Sylvia Beach, Sarah Pressly Watson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b54712a1-8ea4-4b3b-9dbb-f81c5950ac57/manifest,https://iiif.princeton.edu/loris/figgy_prod/5d%2F63%2F50%2F5d63508a60b14f8e8c482b025ba17866%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-12-28,1932-12-30,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/lewis-enemy-review-art/,The Enemy: A Review of Art and Literature,"Vol. 1, no. 3, First Quarter 1929",,,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1932-12-28,1932-12-30,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/lewis-enemy-review-art/,The Enemy: A Review of Art and Literature,"Vol. 1, no. 2, Sep 1927",,,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1932-12-28,1933-02-01,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,35,,,https://shakespeareandco.princeton.edu/books/huxley-brave-new-world/,Brave New World,,"Huxley, Aldous",1932,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/ce%2F3a%2F4d%2Fce3a4d52aa5246f0a0e70b81193ae8d1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-12-28,1933-01-09,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/faulkner-sanctuary/,Sanctuary,,"Faulkner, William",1931,"Caresse Crosby sold a copy of the Black Sun Press edition of *Sanctuary* to Shakespeare and Company on Feb. 17, 1932.",Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/62%2F77%2F6f%2F62776f401c1744f3b61c996bf9ac6f1c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-12-28,1932-12-28,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,,,37.50,FRF,https://shakespeareandco.princeton.edu/books/criterion/,The Criterion,"Vol. 12, no. 47, Jan 1933",,,"Renamed *The New Criterion* from January 1926 to January 1927, and *The Monthly Criterion* from May 1927 to March 1928.",Lending Library Card,"Sylvia Beach, James Joyce Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/60df1b72-de14-4053-ac2b-b16671872306/manifest,https://iiif.princeton.edu/loris/figgy_prod/bc%2Fbc%2F66%2Fbcbc66ffbe6d414db058f3691cca7ef5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-12-28,1932-12-30,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/lewis-blast/,Blast,,,,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Borrow,1932-12-28,1932-12-30,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/lehmann-invitation-waltz/,Invitation to the Waltz,,"Lehmann, Rosamond",1932,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2F34%2Fa0%2Fcb34a06754bc48edade768f52aa21e25%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-12-28,1933-01-05,https://shakespeareandco.princeton.edu/members/bidoire-boulenger/,Miss Boulenger / Mme Bidoire,"Bidoire, Mme",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/omalley-peking-picnic/,Peking Picnic: A Novel,,"Bridge, Ann",1932,,Lending Library Card;Lending Library Card,"Sylvia Beach, Boulenger Bidoire Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Boulenger Bidoire Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7f3ef4f0-6ce0-43d1-b96a-1328f891536c/manifest;https://figgy.princeton.edu/concern/scanned_resources/7f3ef4f0-6ce0-43d1-b96a-1328f891536c/manifest,https://iiif-cloud.princeton.edu/iiif/2/9e%2F43%2F49%2F9e43495bc0ee4fa2b0fd028ced999c26%2Fintermediate_file/full/full/0/default.jpg;https://iiif-cloud.princeton.edu/iiif/2/06%2Fe5%2F48%2F06e548926d5b4ecb8353ccb4162827fe%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-12-28,1933-01-05,https://shakespeareandco.princeton.edu/members/bidoire-boulenger/,Miss Boulenger / Mme Bidoire,"Bidoire, Mme",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/faulkner-sanctuary/,Sanctuary,,"Faulkner, William",1931,"Caresse Crosby sold a copy of the Black Sun Press edition of *Sanctuary* to Shakespeare and Company on Feb. 17, 1932.",Lending Library Card;Lending Library Card,"Sylvia Beach, Boulenger Bidoire Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Boulenger Bidoire Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7f3ef4f0-6ce0-43d1-b96a-1328f891536c/manifest;https://figgy.princeton.edu/concern/scanned_resources/7f3ef4f0-6ce0-43d1-b96a-1328f891536c/manifest,https://iiif-cloud.princeton.edu/iiif/2/9e%2F43%2F49%2F9e43495bc0ee4fa2b0fd028ced999c26%2Fintermediate_file/full/full/0/default.jpg;https://iiif-cloud.princeton.edu/iiif/2/06%2Fe5%2F48%2F06e548926d5b4ecb8353ccb4162827fe%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-12-28,1933-01-05,https://shakespeareandco.princeton.edu/members/bidoire-boulenger/,Miss Boulenger / Mme Bidoire,"Bidoire, Mme",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/shaw-adventures-black-girl/,The Adventures of the Black Girl in Her Search for God,,"Shaw, George Bernard",1932,,Lending Library Card;Lending Library Card,"Sylvia Beach, Boulenger Bidoire Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Boulenger Bidoire Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7f3ef4f0-6ce0-43d1-b96a-1328f891536c/manifest;https://figgy.princeton.edu/concern/scanned_resources/7f3ef4f0-6ce0-43d1-b96a-1328f891536c/manifest,https://iiif-cloud.princeton.edu/iiif/2/9e%2F43%2F49%2F9e43495bc0ee4fa2b0fd028ced999c26%2Fintermediate_file/full/full/0/default.jpg;https://iiif-cloud.princeton.edu/iiif/2/06%2Fe5%2F48%2F06e548926d5b4ecb8353ccb4162827fe%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1932-12-30,1933-04-07,https://shakespeareandco.princeton.edu/members/dalsace/,Mme Dalsace,"Dalsace, Mme",,,,,,,,,Returned,98,,,https://shakespeareandco.princeton.edu/books/richardson-honeycomb-pilgrimage-3/,Honeycomb (Pilgrimage 3),,"Richardson, Dorothy M.",1917,,Lending Library Card,"Sylvia Beach, Mme Dalsace Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd1b74e4-14f3-4828-998c-eb51b7df62c3/manifest,https://iiif.princeton.edu/loris/figgy_prod/76%2F3e%2F35%2F763e357532a14aec802ff30208c63814%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-12-30,1933-01-05,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/aldington-soft-answers/,Soft Answers,,"Aldington, Richard",1932,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2F34%2Fa0%2Fcb34a06754bc48edade768f52aa21e25%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1932-12-30,1933-01-09,https://shakespeareandco.princeton.edu/members/child-bertha-cushing/,Bertha Cushing Child,"Child, Bertha Cushing",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/mann-buddenbrooks/,Buddenbrooks,2 vols.,"Mann, Thomas",1924,,Lending Library Card,"Sylvia Beach, Bertha Cushing Child Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9be92353-f80b-4fc7-a95a-09f7ef28b99a/manifest,https://iiif.princeton.edu/loris/figgy_prod/08%2F3e%2Fa5%2F083ea52fccd645f2827614478b065591%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-12-31,1932-12-31,https://shakespeareandco.princeton.edu/members/jolas-maria/,Maria McDonald Jolas / Miss Maria McDonald / Mrs. Eugene Jolas,"Jolas, Maria",,,,,,,,,,,60.00,FRF,https://shakespeareandco.princeton.edu/books/studebaker-standard-service-arithmetic/,Standard Service Arithmetic,,"Studebaker, J W",1929,,Lending Library Card,"Sylvia Beach, Mrs Eugene Jolas Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/896eee0c-590b-4007-b96e-996face8c57a/manifest,https://iiif.princeton.edu/loris/figgy_prod/17%2F1a%2F8a%2F171a8a48c9fd48ce8fa0799b666cbf87%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1932-12-31,1932-12-31,https://shakespeareandco.princeton.edu/members/jolas-maria/,Maria McDonald Jolas / Miss Maria McDonald / Mrs. Eugene Jolas,"Jolas, Maria",,,,,,,,,,,30.00,FRF,https://shakespeareandco.princeton.edu/books/studebaker-standard-service-arithmetic/,Standard Service Arithmetic,,"Studebaker, J W",1929,,Lending Library Card,"Sylvia Beach, Mrs Eugene Jolas Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/896eee0c-590b-4007-b96e-996face8c57a/manifest,https://iiif.princeton.edu/loris/figgy_prod/17%2F1a%2F8a%2F171a8a48c9fd48ce8fa0799b666cbf87%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-01-03,1933-01-04,https://shakespeareandco.princeton.edu/members/milward-j-d/,J. D. Milward,"Milward, J. D.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/fairlie-mr-malcolm-presents/,Mr. Malcolm Presents,,"Fairlie, Gerard",1932,,Lending Library Card,"Sylvia Beach, J. D. Milward Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af730253-bb8f-4845-a835-116af90c60d3/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F3d%2F25%2F563d25cfccc941ee91aa6bf7966c5987%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-01-03,1933-01-11,https://shakespeareandco.princeton.edu/members/watson-sarah-pressly/,Sarah Pressly Watson / Miss S. P. Watson,"Watson, Sarah Pressly",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/waugh-black-mischief/,Black Mischief,,"Waugh, Evelyn",1932,,Lending Library Card,"Sylvia Beach, Sarah Pressly Watson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b54712a1-8ea4-4b3b-9dbb-f81c5950ac57/manifest,https://iiif.princeton.edu/loris/figgy_prod/5d%2F63%2F50%2F5d63508a60b14f8e8c482b025ba17866%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1933-01-03,1933-01-10,https://shakespeareandco.princeton.edu/members/dranez/,Mlle Dranez,"Dranez, Mlle",8.00,30.00,1 week,7,1,,1933-01-03,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1933-01-03,1933-01-08,https://shakespeareandco.princeton.edu/members/franchot/,Stanislas Pascal Franchot,"Franchot, Stanislas Pascal",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/close-eminent-asians-six/,Eminent Asians: Six Great Personalities of the Near East,,"Hall, Josef Washington",1929,,Lending Library Card,"Sylvia Beach, Stanislas Pascal Franchot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1d769df8-a15b-427e-a8aa-96a1e3ff030e/manifest,https://iiif.princeton.edu/loris/figgy_prod/fa%2Fc2%2F01%2Ffac2016244be4f77b72bf7f7248f0c74%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-01-04,,https://shakespeareandco.princeton.edu/members/milward-j-d/,J. D. Milward,"Milward, J. D.",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/boyle-plagued-nightingale/,Plagued by the Nightingale,,"Boyle, Kay",1931,,Lending Library Card,"Sylvia Beach, J. D. Milward Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af730253-bb8f-4845-a835-116af90c60d3/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F3d%2F25%2F563d25cfccc941ee91aa6bf7966c5987%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1933-01-05,1933-04-05,https://shakespeareandco.princeton.edu/members/briffault/,Robert Briffault,"Briffault, Robert",58.50,50.00,3 months,90,1,,1933-01-05,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1933-01-05,1933-02-12,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,38,,,https://shakespeareandco.princeton.edu/books/sackville-west-family-history/,Family History,,"Sackville-West, Vita",1932,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2F34%2Fa0%2Fcb34a06754bc48edade768f52aa21e25%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-01-05,,https://shakespeareandco.princeton.edu/members/franchot/,Stanislas Pascal Franchot,"Franchot, Stanislas Pascal",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/banished-empire/,Banished Empire,,,,Unidentified. Likely B. L. Putnam Weale's *The Vanished Empire* (1926).,Lending Library Card,"Sylvia Beach, Stanislas Pascal Franchot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1d769df8-a15b-427e-a8aa-96a1e3ff030e/manifest,https://iiif.princeton.edu/loris/figgy_prod/fa%2Fc2%2F01%2Ffac2016244be4f77b72bf7f7248f0c74%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-01-05,1933-01-05,https://shakespeareandco.princeton.edu/members/edwards-thomas/,Thomas Edwards,"Edwards, Thomas",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Mr. Thomas Edwards Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/641cc13a-65e5-4314-aba7-3d9d2167a0d1/manifest,;https://iiif.princeton.edu/loris/figgy_prod/86%2F21%2F45%2F862145764c5c499cb8a9d2ca1da73cf6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-01-05,1933-01-14,https://shakespeareandco.princeton.edu/members/boscq-marie/,Marie Boscq / Bosq,"Boscq, Marie",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/kipling-puck-pooks-hill/,Puck of Pook's Hill,,"Kipling, Rudyard",1906,,Lending Library Card,"Sylvia Beach, Marie Boscq Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/11480fae-3477-40c8-be7d-484c91023da7/manifest,https://iiif.princeton.edu/loris/figgy_prod/9b%2F07%2Fe2%2F9b07e236b5ce465a9fef365511bf55e8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-01-05,1933-01-11,https://shakespeareandco.princeton.edu/members/bidoire-boulenger/,Miss Boulenger / Mme Bidoire,"Bidoire, Mme",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/galsworthy-flowering-wilderness/,Flowering Wilderness (End of Chapter),,"Galsworthy, John",1932,,Lending Library Card;Lending Library Card,"Sylvia Beach, Boulenger Bidoire Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Boulenger Bidoire Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7f3ef4f0-6ce0-43d1-b96a-1328f891536c/manifest;https://figgy.princeton.edu/concern/scanned_resources/7f3ef4f0-6ce0-43d1-b96a-1328f891536c/manifest,https://iiif-cloud.princeton.edu/iiif/2/9e%2F43%2F49%2F9e43495bc0ee4fa2b0fd028ced999c26%2Fintermediate_file/full/full/0/default.jpg;https://iiif-cloud.princeton.edu/iiif/2/06%2Fe5%2F48%2F06e548926d5b4ecb8353ccb4162827fe%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1933-01-05,,https://shakespeareandco.princeton.edu/members/hastings-2/,Hastings,Hastings,,30.00,,,,Day By Day,1933-01-05,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-01-07,1933-01-20,https://shakespeareandco.princeton.edu/members/milward-j-d/,J. D. Milward,"Milward, J. D.",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/lawrence-letters-h-lawrence/,The Letters of D. H. Lawrence,,"Lawrence, D. H.",1932,,Lending Library Card,"Sylvia Beach, J. D. Milward Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af730253-bb8f-4845-a835-116af90c60d3/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F3d%2F25%2F563d25cfccc941ee91aa6bf7966c5987%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1933-01-07,1933-07-07,https://shakespeareandco.princeton.edu/members/berry/,Claudine Berry,"Berry, Claudine",100.00,50.00,6 months,181,1,,1933-01-07,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1933-01-07,1933-02-07,https://shakespeareandco.princeton.edu/members/milward-j-d/,J. D. Milward,"Milward, J. D.",25.00,,1 month,31,1,,1933-01-07,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, J. D. Milward Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/af730253-bb8f-4845-a835-116af90c60d3/manifest,;https://iiif.princeton.edu/loris/figgy_prod/56%2F3d%2F25%2F563d25cfccc941ee91aa6bf7966c5987%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1933-01-08,1933-02-08,https://shakespeareandco.princeton.edu/members/franchot/,Stanislas Pascal Franchot,"Franchot, Stanislas Pascal",20.00,,1 month,31,1,,1933-01-23,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Stanislas Pascal Franchot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/1d769df8-a15b-427e-a8aa-96a1e3ff030e/manifest,;https://iiif.princeton.edu/loris/figgy_prod/fa%2Fc2%2F01%2Ffac2016244be4f77b72bf7f7248f0c74%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-01-09,1933-01-12,https://shakespeareandco.princeton.edu/members/child-bertha-cushing/,Bertha Cushing Child,"Child, Bertha Cushing",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/buffalo-child-long-lance-long-lance/,Long Lance,,Buffalo Child Long Lance,1928,,Lending Library Card,"Sylvia Beach, Bertha Cushing Child Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9be92353-f80b-4fc7-a95a-09f7ef28b99a/manifest,https://iiif.princeton.edu/loris/figgy_prod/08%2F3e%2Fa5%2F083ea52fccd645f2827614478b065591%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-01-09,1933-01-13,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/komroff-new-york-tempest/,A New York Tempest,,"Komroff, Manuel",1932,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/62%2F77%2F6f%2F62776f401c1744f3b61c996bf9ac6f1c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1933-01-09,1933-07-09,https://shakespeareandco.princeton.edu/members/citron/,Mme Citron,"Citron, Mme",180.00,,6 months,181,2,,1933-01-09,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1933-01-09,1933-01-16,https://shakespeareandco.princeton.edu/members/child-bertha-cushing/,Bertha Cushing Child,"Child, Bertha Cushing",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/buck-sons/,Sons,,"Buck, Pearl S.",1932,,Lending Library Card,"Sylvia Beach, Bertha Cushing Child Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9be92353-f80b-4fc7-a95a-09f7ef28b99a/manifest,https://iiif.princeton.edu/loris/figgy_prod/08%2F3e%2Fa5%2F083ea52fccd645f2827614478b065591%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-01-09,,https://shakespeareandco.princeton.edu/members/franchot/,Stanislas Pascal Franchot,"Franchot, Stanislas Pascal",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/breasted-ancient-times-history/,Ancient Times: A History of the Early World,,"Breasted, James Henry",1916,,Lending Library Card,"Sylvia Beach, Stanislas Pascal Franchot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1d769df8-a15b-427e-a8aa-96a1e3ff030e/manifest,https://iiif.princeton.edu/loris/figgy_prod/fa%2Fc2%2F01%2Ffac2016244be4f77b72bf7f7248f0c74%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-01-10,1933-01-24,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/galsworthy-forsyte-saga/,The Forsyte Saga,,"Galsworthy, John",1922,,Lending Library Card,"Sylvia Beach, Aline Prot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/15a376bb-405b-4488-b789-1559abbe3fb2/manifest,https://iiif-cloud.princeton.edu/iiif/2/3d%2F96%2F3a%2F3d963a0b51aa48cbbb2e5dba5f22c789%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-01-10,1933-01-12,https://shakespeareandco.princeton.edu/members/metcalf-thomas/,Mrs. Thomas Metcalf,"Metcalf, Mrs. Thomas",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/oconnor-saint-mary-kate/,The Saint and Mary Kate,,"O'Connor, Frank",1932,,Lending Library Card,"Mrs. Thomas Metcalf's lending library card is part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Subscription,1933-01-10,1933-02-10,https://shakespeareandco.princeton.edu/members/metcalf-thomas/,Mrs. Thomas Metcalf,"Metcalf, Mrs. Thomas",25.00,50.00,1 month,31,1,,1933-01-10,,,,,FRF,,,,,,,Lending Library Card;Logbook,"Mrs. Thomas Metcalf's lending library card is part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.;Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1933-01-10,1933-02-10,https://shakespeareandco.princeton.edu/members/rodini/,Rodini / Rudini,Rodini,25.00,,1 month,31,1,,1933-01-10,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1933-01-10,1933-02-10,https://shakespeareandco.princeton.edu/members/weiss-colette/,Colette Weiss,"Weiss, Colette",12.00,,1 month,31,1,,1933-01-10,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Mme Collette Weiss Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/a67263e9-aea1-4914-a98b-c9086ec72353/manifest,;https://iiif.princeton.edu/loris/figgy_prod/20%2F93%2F74%2F20937497601649518d50cab9b5e796fb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-01-10,1933-01-24,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/woolf-lighthouse/,To the Lighthouse,,"Woolf, Virginia",1927,,Lending Library Card,"Sylvia Beach, Aline Prot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/15a376bb-405b-4488-b789-1559abbe3fb2/manifest,https://iiif-cloud.princeton.edu/iiif/2/3d%2F96%2F3a%2F3d963a0b51aa48cbbb2e5dba5f22c789%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-01-10,1933-01-11,https://shakespeareandco.princeton.edu/members/franchot/,Stanislas Pascal Franchot,"Franchot, Stanislas Pascal",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/hundred-seventy-chinese/,A Hundred and Seventy Chinese Poems,,,1918,,Lending Library Card,"Sylvia Beach, Stanislas Pascal Franchot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1d769df8-a15b-427e-a8aa-96a1e3ff030e/manifest,https://iiif.princeton.edu/loris/figgy_prod/fa%2Fc2%2F01%2Ffac2016244be4f77b72bf7f7248f0c74%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1933-01-11,,https://shakespeareandco.princeton.edu/members/hill-5/,Hill,Hill,20.00,,,,2,,1933-01-11,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-01-11,1933-01-18,https://shakespeareandco.princeton.edu/members/bidoire-boulenger/,Miss Boulenger / Mme Bidoire,"Bidoire, Mme",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/douglas-south-wind/,South Wind,,"Douglas, Norman",1917,,Lending Library Card;Lending Library Card,"Sylvia Beach, Boulenger Bidoire Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Boulenger Bidoire Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7f3ef4f0-6ce0-43d1-b96a-1328f891536c/manifest;https://figgy.princeton.edu/concern/scanned_resources/7f3ef4f0-6ce0-43d1-b96a-1328f891536c/manifest,https://iiif-cloud.princeton.edu/iiif/2/9e%2F43%2F49%2F9e43495bc0ee4fa2b0fd028ced999c26%2Fintermediate_file/full/full/0/default.jpg;https://iiif-cloud.princeton.edu/iiif/2/06%2Fe5%2F48%2F06e548926d5b4ecb8353ccb4162827fe%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1933-01-11,1933-01-11,https://shakespeareandco.princeton.edu/members/coyle-kathleen/;https://shakespeareandco.princeton.edu/members/coyle-kestrel-2/,Kathleen Coyle / Mrs. K. Coyle;Kestrel Coyle,"Coyle, Kathleen;Coyle, Kestrel",,,,,,,,,,,12.50,FRF,https://shakespeareandco.princeton.edu/books/coyle-flock-birds/,A Flock of Birds,,"Coyle, Kathleen",1930,,Lending Library Card,"Sylvia Beach, Kathleen and Kestrel Coyle Lending Library Cards, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4bfa91e8-c7e0-479d-9dd8-0cd691c6a0e4/manifest,https://iiif.princeton.edu/loris/figgy_prod/da%2Faa%2Fb6%2Fdaaab6cd09f745e397df611a9e68cca4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1933-01-11,1933-01-11,https://shakespeareandco.princeton.edu/members/coyle-kathleen/;https://shakespeareandco.princeton.edu/members/coyle-kestrel-2/,Kathleen Coyle / Mrs. K. Coyle;Kestrel Coyle,"Coyle, Kathleen;Coyle, Kestrel",,,,,,,,,,,12.50,FRF,https://shakespeareandco.princeton.edu/books/coyle-flock-birds/,A Flock of Birds,,"Coyle, Kathleen",1930,,Lending Library Card,"Sylvia Beach, Kathleen and Kestrel Coyle Lending Library Cards, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4bfa91e8-c7e0-479d-9dd8-0cd691c6a0e4/manifest,https://iiif.princeton.edu/loris/figgy_prod/da%2Faa%2Fb6%2Fdaaab6cd09f745e397df611a9e68cca4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-01-11,1933-01-18,https://shakespeareandco.princeton.edu/members/bidoire-boulenger/,Miss Boulenger / Mme Bidoire,"Bidoire, Mme",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/morgan-fountain/,The Fountain,,"Morgan, Charles",1932,,Lending Library Card;Lending Library Card,"Sylvia Beach, Boulenger Bidoire Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Boulenger Bidoire Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7f3ef4f0-6ce0-43d1-b96a-1328f891536c/manifest;https://figgy.princeton.edu/concern/scanned_resources/7f3ef4f0-6ce0-43d1-b96a-1328f891536c/manifest,https://iiif-cloud.princeton.edu/iiif/2/9e%2F43%2F49%2F9e43495bc0ee4fa2b0fd028ced999c26%2Fintermediate_file/full/full/0/default.jpg;https://iiif-cloud.princeton.edu/iiif/2/06%2Fe5%2F48%2F06e548926d5b4ecb8353ccb4162827fe%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-01-11,1933-01-18,https://shakespeareandco.princeton.edu/members/watson-sarah-pressly/,Sarah Pressly Watson / Miss S. P. Watson,"Watson, Sarah Pressly",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/ackerley-hindoo-holiday/,Hindoo Holiday,,"Ackerley, J. R.",1932,,Lending Library Card,"Sylvia Beach, Sarah Pressly Watson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b54712a1-8ea4-4b3b-9dbb-f81c5950ac57/manifest,https://iiif.princeton.edu/loris/figgy_prod/5d%2F63%2F50%2F5d63508a60b14f8e8c482b025ba17866%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-01-11,1933-01-26,https://shakespeareandco.princeton.edu/members/scott-a/,A. Scott,"Scott, A.",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/arnold-literature-dogma/,Literature and Dogma,,"Arnold, Matthew",1873,,Lending Library Card,"Sylvia Beach, Mr. A. Scott Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bde7369e-8f4c-4ae8-b602-64798422455e/manifest,https://iiif.princeton.edu/loris/figgy_prod/0e%2F4a%2Fd6%2F0e4ad66409a5488fb6fac6c55c2993f4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-01-11,1933-01-11,https://shakespeareandco.princeton.edu/members/dranez/,Mlle Dranez,"Dranez, Mlle",,,,,,,,30.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Purchase,1933-01-11,1933-01-11,https://shakespeareandco.princeton.edu/members/coyle-kathleen/;https://shakespeareandco.princeton.edu/members/coyle-kestrel-2/,Kathleen Coyle / Mrs. K. Coyle;Kestrel Coyle,"Coyle, Kathleen;Coyle, Kestrel",,,,,,,,,,,12.50,FRF,https://shakespeareandco.princeton.edu/books/coyle-flock-birds/,A Flock of Birds,,"Coyle, Kathleen",1930,,Lending Library Card,"Sylvia Beach, Kathleen and Kestrel Coyle Lending Library Cards, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4bfa91e8-c7e0-479d-9dd8-0cd691c6a0e4/manifest,https://iiif.princeton.edu/loris/figgy_prod/da%2Faa%2Fb6%2Fdaaab6cd09f745e397df611a9e68cca4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-01-12,1933-01-19,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/du-maurier-ill-never-young/,I'll Never Be Young Again,,"Du Maurier, Daphne",1932,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2F34%2Fa0%2Fcb34a06754bc48edade768f52aa21e25%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-01-12,1933-01-13,https://shakespeareandco.princeton.edu/members/metcalf-thomas/,Mrs. Thomas Metcalf,"Metcalf, Mrs. Thomas",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/powys-two-thieves/,The Two Thieves,,"Powys, Theodore Francis",1932,,Lending Library Card,"Mrs. Thomas Metcalf's lending library card is part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Borrow,1933-01-13,1933-01-14,https://shakespeareandco.princeton.edu/members/metcalf-thomas/,Mrs. Thomas Metcalf,"Metcalf, Mrs. Thomas",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/salutation/,Salutation,,,,Unidentified. A. E.'s *Salutation: A Poem on the the Irish Rebellion of 1916* (1917) or Sylvia Townsend Warner's *The Salutation* (1932).,Lending Library Card,"Mrs. Thomas Metcalf's lending library card is part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Borrow,1933-01-13,1933-01-19,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/lawrence-women-love/,Women in Love,,"Lawrence, D. H.",1920,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/62%2F77%2F6f%2F62776f401c1744f3b61c996bf9ac6f1c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-01-14,1933-01-16,https://shakespeareandco.princeton.edu/members/metcalf-thomas/,Mrs. Thomas Metcalf,"Metcalf, Mrs. Thomas",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/linklater-men-ness/,The Men of Ness,,"Linklater, Eric",1932,,Lending Library Card,"Mrs. Thomas Metcalf's lending library card is part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Borrow,1933-01-14,1933-01-23,https://shakespeareandco.princeton.edu/members/plummer-dorothy/,Dorothy Plummer,"Plummer, Dorothy",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/kennedy-long-time-ago/,A Long Time Ago,,"Kennedy, Margaret",1932,,Lending Library Card,"Sylvia Beach, Dorothy Plummer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5f53ce0-8ea6-4d1f-b36b-f6e5321bab4c/manifest,https://iiif.princeton.edu/loris/figgy_prod/a1%2F20%2F86%2Fa120869f9753422d95807c64cfe30599%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-01-14,1933-01-16,https://shakespeareandco.princeton.edu/members/child-bertha-cushing/,Bertha Cushing Child,"Child, Bertha Cushing",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/das-purdah-status-indian/,Purdah: The Status of Indian Women,,"Das, Frieda Hauswirth",1932,,Lending Library Card,"Sylvia Beach, Bertha Cushing Child Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9be92353-f80b-4fc7-a95a-09f7ef28b99a/manifest,https://iiif.princeton.edu/loris/figgy_prod/08%2F3e%2Fa5%2F083ea52fccd645f2827614478b065591%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-01-14,1933-01-17,https://shakespeareandco.princeton.edu/members/franchot/,Stanislas Pascal Franchot,"Franchot, Stanislas Pascal",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/nietzsche-human-human/,"Human, All Too Human",,"Nietzsche, Friedrich",1878,,Lending Library Card,"Sylvia Beach, Stanislas Pascal Franchot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1d769df8-a15b-427e-a8aa-96a1e3ff030e/manifest,https://iiif.princeton.edu/loris/figgy_prod/fa%2Fc2%2F01%2Ffac2016244be4f77b72bf7f7248f0c74%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-01-14,1933-01-17,https://shakespeareandco.princeton.edu/members/franchot/,Stanislas Pascal Franchot,"Franchot, Stanislas Pascal",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/freud-totem-taboo/,Totem and Taboo,,"Freud, Sigmund",1919,,Lending Library Card,"Sylvia Beach, Stanislas Pascal Franchot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1d769df8-a15b-427e-a8aa-96a1e3ff030e/manifest,https://iiif.princeton.edu/loris/figgy_prod/fa%2Fc2%2F01%2Ffac2016244be4f77b72bf7f7248f0c74%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-01-14,1933-01-20,https://shakespeareandco.princeton.edu/members/boscq-marie/,Marie Boscq / Bosq,"Boscq, Marie",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/hemingway-death-afternoon/,Death in the Afternoon,,"Hemingway, Ernest",1932,,Lending Library Card,"Sylvia Beach, Marie Boscq Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/11480fae-3477-40c8-be7d-484c91023da7/manifest,https://iiif.princeton.edu/loris/figgy_prod/9b%2F07%2Fe2%2F9b07e236b5ce465a9fef365511bf55e8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-01-15,1933-01-22,https://shakespeareandco.princeton.edu/members/solano/,Solita Solano,"Solano, Solita",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/stein-autobiography-alice-b/,The Autobiography of Alice B. Toklas,,"Stein, Gertrude",1933,,Lending Library Card,"Sylvia Beach, Solita Solano Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ae91e41-ccc0-4df6-9150-63a893d8d633/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2F85%2Fb1%2F2385b11cb18c451b989e5b87c5b8eb82%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-01-16,1933-01-21,https://shakespeareandco.princeton.edu/members/child-bertha-cushing/,Bertha Cushing Child,"Child, Bertha Cushing",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/lowell-east-wind/,East Wind,,"Lowell, Amy",1926,,Lending Library Card,"Sylvia Beach, Bertha Cushing Child Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9be92353-f80b-4fc7-a95a-09f7ef28b99a/manifest,https://iiif.princeton.edu/loris/figgy_prod/08%2F3e%2Fa5%2F083ea52fccd645f2827614478b065591%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-01-16,1933-01-16,https://shakespeareandco.princeton.edu/members/preyss/,Preyss,Preyss,,,,,,,,30.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-01-16,1933-01-18,https://shakespeareandco.princeton.edu/members/metcalf-thomas/,Mrs. Thomas Metcalf,"Metcalf, Mrs. Thomas",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/fitzgerald-save-waltz/,Save Me the Waltz,,"Fitzgerald, Zelda",1932,,Lending Library Card,"Mrs. Thomas Metcalf's lending library card is part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Borrow,1933-01-17,1933-01-20,https://shakespeareandco.princeton.edu/members/franchot/,Stanislas Pascal Franchot,"Franchot, Stanislas Pascal",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/gibbon-history-decline-fall/,The History of the Decline and Fall of the Roman Empire,Vol. 1,"Gibbon, Edward",1776,,Lending Library Card,"Sylvia Beach, Stanislas Pascal Franchot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1d769df8-a15b-427e-a8aa-96a1e3ff030e/manifest,https://iiif.princeton.edu/loris/figgy_prod/fa%2Fc2%2F01%2Ffac2016244be4f77b72bf7f7248f0c74%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-01-17,1933-04-07,https://shakespeareandco.princeton.edu/members/dalsace/,Mme Dalsace,"Dalsace, Mme",,,,,,,,,Returned,80,,,https://shakespeareandco.princeton.edu/books/richardson-pointed-roofs/,Pointed Roofs (Pilgrimage 1),,"Richardson, Dorothy M.",1915,,Lending Library Card,"Sylvia Beach, Mme Dalsace Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd1b74e4-14f3-4828-998c-eb51b7df62c3/manifest,https://iiif.princeton.edu/loris/figgy_prod/76%2F3e%2F35%2F763e357532a14aec802ff30208c63814%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-01-17,1933-01-19,https://shakespeareandco.princeton.edu/members/franchot/,Stanislas Pascal Franchot,"Franchot, Stanislas Pascal",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/coleridge-poems/,Samuel Taylor Coleridge's Works,,"Coleridge, Samuel Taylor",,,Lending Library Card,"Sylvia Beach, Stanislas Pascal Franchot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1d769df8-a15b-427e-a8aa-96a1e3ff030e/manifest,https://iiif.princeton.edu/loris/figgy_prod/fa%2Fc2%2F01%2Ffac2016244be4f77b72bf7f7248f0c74%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-01-18,1933-01-26,https://shakespeareandco.princeton.edu/members/bidoire-boulenger/,Miss Boulenger / Mme Bidoire,"Bidoire, Mme",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/luhan-lorenzo-taos/,Lorenzo in Taos,,"Luhan, Mabel Dodge",1932,,Lending Library Card;Lending Library Card,"Sylvia Beach, Boulenger Bidoire Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Boulenger Bidoire Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7f3ef4f0-6ce0-43d1-b96a-1328f891536c/manifest;https://figgy.princeton.edu/concern/scanned_resources/7f3ef4f0-6ce0-43d1-b96a-1328f891536c/manifest,https://iiif-cloud.princeton.edu/iiif/2/9e%2F43%2F49%2F9e43495bc0ee4fa2b0fd028ced999c26%2Fintermediate_file/full/full/0/default.jpg;https://iiif-cloud.princeton.edu/iiif/2/06%2Fe5%2F48%2F06e548926d5b4ecb8353ccb4162827fe%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1933-01-18,1933-02-18,https://shakespeareandco.princeton.edu/members/beaumel-germaine/,Germaine Beaumel,"Beaumel, Germaine",20.00,60.00,1 month,31,2,,1933-01-18,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1933-01-18,1933-06-28,https://shakespeareandco.princeton.edu/members/weiss-colette/,Colette Weiss,"Weiss, Colette",,,,,,,,,Returned,161,,,https://shakespeareandco.princeton.edu/books/obrien-best-short-stories-1930/,The Best Short Stories 1930: And the Yearbook of the American Short Story,,,1930,,Lending Library Card,"Sylvia Beach, Mme Collette Weiss Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a67263e9-aea1-4914-a98b-c9086ec72353/manifest,https://iiif.princeton.edu/loris/figgy_prod/20%2F93%2F74%2F20937497601649518d50cab9b5e796fb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-01-18,,https://shakespeareandco.princeton.edu/members/weiss-colette/,Colette Weiss,"Weiss, Colette",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/jolas-transition/,transition,"no. 15, 1929",,,,Lending Library Card,"Sylvia Beach, Mme Collette Weiss Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a67263e9-aea1-4914-a98b-c9086ec72353/manifest,https://iiif.princeton.edu/loris/figgy_prod/20%2F93%2F74%2F20937497601649518d50cab9b5e796fb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-01-18,1933-01-19,https://shakespeareandco.princeton.edu/members/metcalf-thomas/,Mrs. Thomas Metcalf,"Metcalf, Mrs. Thomas",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/fitzgerald-great-gatsby/,The Great Gatsby,,"Fitzgerald, F. Scott",1925,,Lending Library Card,"Mrs. Thomas Metcalf's lending library card is part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Renewal,1933-01-18,1933-02-18,https://shakespeareandco.princeton.edu/members/page-4/,Page,Page,12.00,,1 month,31,1,,1933-01-18,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-01-18,,https://shakespeareandco.princeton.edu/members/brody-rachel/,Rachel Brody,"Brody, Rachel",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/doblin-berlin-alexanderplatz/,Berlin Alexanderplatz,,"DoΜblin, Alfred",1931,,Lending Library Card,"Sylvia Beach, Miss Rachel Brody Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b8ebffd3-4bd9-418f-8309-0d84e4352206/manifest,https://iiif.princeton.edu/loris/figgy_prod/0b%2F3f%2F75%2F0b3f75f0eaf24630a1eee242d1d4587d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-01-18,,https://shakespeareandco.princeton.edu/members/bidoire-boulenger/,Miss Boulenger / Mme Bidoire,"Bidoire, Mme",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/forster-howards-end/,Howards End,,"Forster, E. M.",1910,,Lending Library Card;Lending Library Card,"Sylvia Beach, Boulenger Bidoire Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Boulenger Bidoire Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7f3ef4f0-6ce0-43d1-b96a-1328f891536c/manifest;https://figgy.princeton.edu/concern/scanned_resources/7f3ef4f0-6ce0-43d1-b96a-1328f891536c/manifest,https://iiif-cloud.princeton.edu/iiif/2/9e%2F43%2F49%2F9e43495bc0ee4fa2b0fd028ced999c26%2Fintermediate_file/full/full/0/default.jpg;https://iiif-cloud.princeton.edu/iiif/2/06%2Fe5%2F48%2F06e548926d5b4ecb8353ccb4162827fe%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1933-01-19,1933-02-19,https://shakespeareandco.princeton.edu/members/brody-rachel/,Rachel Brody,"Brody, Rachel",12.00,30.00,1 month,31,1,Student,1933-01-19,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1933-01-19,1933-01-19,https://shakespeareandco.princeton.edu/members/milward-j-d/,J. D. Milward,"Milward, J. D.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, J. D. Milward Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/af730253-bb8f-4845-a835-116af90c60d3/manifest,;https://iiif.princeton.edu/loris/figgy_prod/56%2F3d%2F25%2F563d25cfccc941ee91aa6bf7966c5987%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-01-19,1933-01-26,https://shakespeareandco.princeton.edu/members/franchot/,Stanislas Pascal Franchot,"Franchot, Stanislas Pascal",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/spenser-edmund-spenser/,Edmund Spenser's Works,,"Spenser, Edmund",,"Madeleine Blaess borrowed *The Poetical Works of Edmund Spenser,* edited by J. C. Smith and E. de Selincurt (Oxford, 1912).",Lending Library Card,"Sylvia Beach, Stanislas Pascal Franchot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1d769df8-a15b-427e-a8aa-96a1e3ff030e/manifest,https://iiif.princeton.edu/loris/figgy_prod/fa%2Fc2%2F01%2Ffac2016244be4f77b72bf7f7248f0c74%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-01-19,1933-01-28,https://shakespeareandco.princeton.edu/members/oppen/,George Oppen / To Publishers,"Oppen, George",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/trotsky-history-russian-revolution/,History of the Russian Revolution,Vol. 2 The Attempted Counter-Revolution,"Trotsky, Leon",1932,,Lending Library Card,"Sylvia Beach, George Oppen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f6f86621-7670-4887-954c-25658976393e/manifest,https://iiif.princeton.edu/loris/figgy_prod/3e%2F11%2F7f%2F3e117f3d715b4d979bc396525858069e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-01-19,1933-01-20,https://shakespeareandco.princeton.edu/members/metcalf-thomas/,Mrs. Thomas Metcalf,"Metcalf, Mrs. Thomas",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/fitzgerald-sad-young-men/,All the Sad Young Men,,"Fitzgerald, F. Scott",1926,,Lending Library Card,"Mrs. Thomas Metcalf's lending library card is part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Borrow,1933-01-19,1933-02-03,https://shakespeareandco.princeton.edu/members/oppen/,George Oppen / To Publishers,"Oppen, George",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/eliot-poems/,Poems,,"Eliot, T. S.",,"Unidentified edition or editions. Monique de Vigan borrowed Eliot's *Poems, 1909 β 1925* (1925).",Lending Library Card,"Sylvia Beach, George Oppen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f6f86621-7670-4887-954c-25658976393e/manifest,https://iiif.princeton.edu/loris/figgy_prod/3e%2F11%2F7f%2F3e117f3d715b4d979bc396525858069e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-01-19,1933-01-23,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/hemingway-death-afternoon/,Death in the Afternoon,,"Hemingway, Ernest",1932,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2F34%2Fa0%2Fcb34a06754bc48edade768f52aa21e25%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-01-19,1933-02-03,https://shakespeareandco.princeton.edu/members/oppen/,George Oppen / To Publishers,"Oppen, George",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/williams-spring/,Spring and All,,"Williams, William Carlos",1923,,Lending Library Card,"Sylvia Beach, George Oppen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f6f86621-7670-4887-954c-25658976393e/manifest,https://iiif.princeton.edu/loris/figgy_prod/3e%2F11%2F7f%2F3e117f3d715b4d979bc396525858069e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1933-01-19,1933-02-02,https://shakespeareandco.princeton.edu/members/oppen/,George Oppen / To Publishers,"Oppen, George",20.00,,2 weeks,14,2,,1933-01-19,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, George Oppen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/f6f86621-7670-4887-954c-25658976393e/manifest,;https://iiif.princeton.edu/loris/figgy_prod/3e%2F11%2F7f%2F3e117f3d715b4d979bc396525858069e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-01-19,1933-01-23,https://shakespeareandco.princeton.edu/members/tate/,Allen Tate,"Tate, Allen",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/van-dine-kennel-murder-case/,The Kennel Murder Case: A Philo Vance Story,,"Van Dine, S. S.",1933,,Lending Library Card,"Sylvia Beach, Mr. Allen Tate Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/40a5e977-a833-4da5-8a7a-232e3e56cfe5/manifest,https://iiif.princeton.edu/loris/figgy_prod/f3%2F72%2F1c%2Ff3721c562dd747438a29bd2f5ad0e905%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-01-20,1933-01-23,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/lawrence-lady-chatterleys-lover/,Lady Chatterley's Lover,,"Lawrence, D. H.",1928,,Lending Library Card,"Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest,https://iiif.princeton.edu/loris/figgy_prod/31%2Fba%2F2d%2F31ba2d65ea7d4de790412954d08eaa1c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-01-20,1933-01-24,https://shakespeareandco.princeton.edu/members/satenstein/,Sylvia Satenstein / Sylvia Blatas,"Satenstein, Sylvia",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/lewis-time-western-man/,Time and Western Man,,"Lewis, Wyndham",1927,,Lending Library Card,"Sylvia Beach, Sylvia Satenstein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/aaef8dd6-0955-40f8-aad2-505dfe3bba4e/manifest,https://iiif.princeton.edu/loris/figgy_prod/b8%2F55%2Fad%2Fb855ad7358124ae0bfe9d95c46bfab59%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-01-20,,https://shakespeareandco.princeton.edu/members/boscq-marie/,Marie Boscq / Bosq,"Boscq, Marie",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/hemingway-men-without-women/,Men without Women,,"Hemingway, Ernest",1927,,Lending Library Card,"Sylvia Beach, Marie Boscq Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/11480fae-3477-40c8-be7d-484c91023da7/manifest,https://iiif.princeton.edu/loris/figgy_prod/9b%2F07%2Fe2%2F9b07e236b5ce465a9fef365511bf55e8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1933-01-20,1933-04-20,https://shakespeareandco.princeton.edu/members/satenstein/,Sylvia Satenstein / Sylvia Blatas,"Satenstein, Sylvia",30.00,30.00,3 months,90,1,,1933-01-20,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Sylvia Satenstein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/aaef8dd6-0955-40f8-aad2-505dfe3bba4e/manifest,;https://iiif.princeton.edu/loris/figgy_prod/b8%2F55%2Fad%2Fb855ad7358124ae0bfe9d95c46bfab59%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-01-20,1933-01-21,https://shakespeareandco.princeton.edu/members/metcalf-thomas/,Mrs. Thomas Metcalf,"Metcalf, Mrs. Thomas",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/crane-maggie-girl-streets/,Maggie: A Girl of the Streets,,"Crane, Stephen",1893,,Lending Library Card,"Mrs. Thomas Metcalf's lending library card is part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Reimbursement,1933-01-20,1933-01-20,https://shakespeareandco.princeton.edu/members/shaw-3/,Shaw,Shaw,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1933-01-20,1933-02-20,https://shakespeareandco.princeton.edu/members/de-roos-elisabeth/;https://shakespeareandco.princeton.edu/members/perron-eddy/,Elisabeth de Roos / Mrs. du Perron;E. du Perron / Eddy du Perron,"de Roos, Elisabeth;du Perron, Eddy",25.00,50.00,1 month,31,1,,1933-01-20,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1933-01-20,1933-02-08,https://shakespeareandco.princeton.edu/members/franchot/,Stanislas Pascal Franchot,"Franchot, Stanislas Pascal",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/quiller-couch-oxford-book-english/,"The Oxford Book of English Verse, 1250 β 1900",,,1931,,Lending Library Card,"Sylvia Beach, Stanislas Pascal Franchot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1d769df8-a15b-427e-a8aa-96a1e3ff030e/manifest,https://iiif.princeton.edu/loris/figgy_prod/fa%2Fc2%2F01%2Ffac2016244be4f77b72bf7f7248f0c74%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1933-01-20,1933-04-20,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",30.00,30.00,3 months,90,1,,1933-01-20,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest,;https://iiif.princeton.edu/loris/figgy_prod/31%2Fba%2F2d%2F31ba2d65ea7d4de790412954d08eaa1c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-01-21,1933-01-23,https://shakespeareandco.princeton.edu/members/metcalf-thomas/,Mrs. Thomas Metcalf,"Metcalf, Mrs. Thomas",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/dane-babyons-chronicle-family/,The Babyons: The Chronicle of a Family,,"Dane, Clemence",1928,,Lending Library Card,"Mrs. Thomas Metcalf's lending library card is part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Borrow,1933-01-21,1933-01-24,https://shakespeareandco.princeton.edu/members/child-bertha-cushing/,Bertha Cushing Child,"Child, Bertha Cushing",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/tom-brown/,Tom Brown,,,,Unidentified. Likely Thomas Hughes's *Tom Brown's School Days* (1857).,Lending Library Card,"Sylvia Beach, Bertha Cushing Child Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9be92353-f80b-4fc7-a95a-09f7ef28b99a/manifest,https://iiif.princeton.edu/loris/figgy_prod/08%2F3e%2Fa5%2F083ea52fccd645f2827614478b065591%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-01-21,1933-01-23,https://shakespeareandco.princeton.edu/members/metcalf-thomas/,Mrs. Thomas Metcalf,"Metcalf, Mrs. Thomas",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/cather-antonia/,My Antonia,,"Cather, Willa",1918,,Lending Library Card,"Mrs. Thomas Metcalf's lending library card is part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Subscription,1933-01-21,,https://shakespeareandco.princeton.edu/members/guerin-2/,Guerin,Guerin,,10.00,,,,,1933-01-21,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-01-21,1933-01-28,https://shakespeareandco.princeton.edu/members/child-bertha-cushing/,Bertha Cushing Child,"Child, Bertha Cushing",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/hindus-humanity-uprooted/,Humanity Uprooted,,"Hindus, Maurice Gerschon",1929,,Lending Library Card,"Sylvia Beach, Bertha Cushing Child Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9be92353-f80b-4fc7-a95a-09f7ef28b99a/manifest,https://iiif.princeton.edu/loris/figgy_prod/08%2F3e%2Fa5%2F083ea52fccd645f2827614478b065591%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-01-22,1933-01-30,https://shakespeareandco.princeton.edu/members/solano/,Solita Solano,"Solano, Solita",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/whitehead-adventures-ideas/,Adventures of Ideas,,"Whitehead, Alfred North",1933,,Lending Library Card,"Sylvia Beach, Solita Solano Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ae91e41-ccc0-4df6-9150-63a893d8d633/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2F85%2Fb1%2F2385b11cb18c451b989e5b87c5b8eb82%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-01-23,1933-01-23,https://shakespeareandco.princeton.edu/members/guerin-2/,Guerin,Guerin,,,,,,,,10.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1933-01-23,,https://shakespeareandco.princeton.edu/members/dent/,Mr. Dent,"Dent, Mr.",,30.00,,,,Day By Day,1933-01-23,,,,,FRF,,,,,,,Logbook;Lending Library Card;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Mr. Dent Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/05655921-654f-4765-b1a5-4edf065983b4/manifest;,;https://iiif.princeton.edu/loris/figgy_prod/79%2F87%2F34%2F798734e73e384d08b4d77ad820f5318d%2Fintermediate_file.jp2/full/full/0/default.jpg;
+Borrow,1933-01-23,1933-01-24,https://shakespeareandco.princeton.edu/members/metcalf-thomas/,Mrs. Thomas Metcalf,"Metcalf, Mrs. Thomas",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/stern-mosaic/,Mosaic,,"Stern, G. B.",1930,,Lending Library Card,"Mrs. Thomas Metcalf's lending library card is part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Borrow,1933-01-23,1933-01-24,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/garnett-grasshoppers-come/,The Grasshoppers Come,,"Garnett, David",1931,,Lending Library Card,"Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest,https://iiif.princeton.edu/loris/figgy_prod/31%2Fba%2F2d%2F31ba2d65ea7d4de790412954d08eaa1c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-01-23,1933-01-31,https://shakespeareandco.princeton.edu/members/boscq-marie/,Marie Boscq / Bosq,"Boscq, Marie",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/stevenson-black-arrow-tale/,The Black Arrow: A Tale of Two Roses,,"Stevenson, Robert Louis",1888,,Lending Library Card,"Sylvia Beach, Marie Boscq Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/11480fae-3477-40c8-be7d-484c91023da7/manifest,https://iiif.princeton.edu/loris/figgy_prod/9b%2F07%2Fe2%2F9b07e236b5ce465a9fef365511bf55e8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-01-23,1933-01-23,https://shakespeareandco.princeton.edu/members/roederer/,Roederer,Roederer,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-01-23,1933-01-26,https://shakespeareandco.princeton.edu/members/dent/,Mr. Dent,"Dent, Mr.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/seton-lives-hunted-containing/,"Lives of the Hunted: Containing a True Account of the Doings of Five Quadrupeds & Three Birds, and, in Elucidation of the Same, Over 200 Drawings",,"Seton, Ernest Thompson",1901,,Lending Library Card,"Sylvia Beach, Mr. Dent Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/05655921-654f-4765-b1a5-4edf065983b4/manifest,https://iiif.princeton.edu/loris/figgy_prod/79%2F87%2F34%2F798734e73e384d08b4d77ad820f5318d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-01-23,1933-01-27,https://shakespeareandco.princeton.edu/members/plummer-dorothy/,Dorothy Plummer,"Plummer, Dorothy",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/dane-wild-decembers/,Wild Decembers,,"Dane, Clemence",1932,,Lending Library Card,"Sylvia Beach, Dorothy Plummer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5f53ce0-8ea6-4d1f-b36b-f6e5321bab4c/manifest,https://iiif.princeton.edu/loris/figgy_prod/a1%2F20%2F86%2Fa120869f9753422d95807c64cfe30599%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1933-01-24,1933-02-24,https://shakespeareandco.princeton.edu/members/rivers/,Rivers,Rivers,22.50,,1 month,31,1,,1933-01-24,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Purchase,1933-01-24,1933-01-24,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,,,12.50,FRF,https://shakespeareandco.princeton.edu/books/dos-passos-three-soldiers/,Three Soldiers,,"Dos Passos, John",1921,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/19%2Fd6%2F77%2F19d6775df9374e48a47bd74873380d58%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-01-24,1933-02-09,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/eliot-mill-floss/,The Mill on the Floss,,"Eliot, George",1860,,Lending Library Card,"Sylvia Beach, Aline Prot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/15a376bb-405b-4488-b789-1559abbe3fb2/manifest,https://iiif-cloud.princeton.edu/iiif/2/3d%2F96%2F3a%2F3d963a0b51aa48cbbb2e5dba5f22c789%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-01-24,1933-01-25,https://shakespeareandco.princeton.edu/members/child-bertha-cushing/,Bertha Cushing Child,"Child, Bertha Cushing",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/sandburg-rootabaga-stories/,Rootabaga Stories,,"Sandburg, Carl",1922,,Lending Library Card,"Sylvia Beach, Bertha Cushing Child Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9be92353-f80b-4fc7-a95a-09f7ef28b99a/manifest,https://iiif.princeton.edu/loris/figgy_prod/08%2F3e%2Fa5%2F083ea52fccd645f2827614478b065591%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-01-24,1933-01-31,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/woolf-lighthouse/,To the Lighthouse,,"Woolf, Virginia",1927,,Lending Library Card,"Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest,https://iiif.princeton.edu/loris/figgy_prod/31%2Fba%2F2d%2F31ba2d65ea7d4de790412954d08eaa1c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-01-24,1933-01-26,https://shakespeareandco.princeton.edu/members/satenstein/,Sylvia Satenstein / Sylvia Blatas,"Satenstein, Sylvia",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/doblin-berlin-alexanderplatz/,Berlin Alexanderplatz,,"DoΜblin, Alfred",1931,,Lending Library Card,"Sylvia Beach, Sylvia Satenstein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/aaef8dd6-0955-40f8-aad2-505dfe3bba4e/manifest,https://iiif.princeton.edu/loris/figgy_prod/b8%2F55%2Fad%2Fb855ad7358124ae0bfe9d95c46bfab59%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-01-24,1933-01-31,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/mansfield-bliss-short-stories/,Bliss and Other Stories,,"Mansfield, Katherine",1920,,Lending Library Card,"Sylvia Beach, Aline Prot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/15a376bb-405b-4488-b789-1559abbe3fb2/manifest,https://iiif-cloud.princeton.edu/iiif/2/3d%2F96%2F3a%2F3d963a0b51aa48cbbb2e5dba5f22c789%2Fintermediate_file/full/full/0/default.jpg
+Separate Payment,1933-01-24,1933-01-24,https://shakespeareandco.princeton.edu/members/fitzgerald-9/,Fitzgerald,Fitzgerald,,50.00,,,,,1933-01-24,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Purchase,1933-01-24,1933-01-24,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,,,37.50,FRF,https://shakespeareandco.princeton.edu/books/auden-orators/,The Orators,,"Auden, W. H.",1932,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/19%2Fd6%2F77%2F19d6775df9374e48a47bd74873380d58%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1933-01-24,1933-01-24,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,,,37.50,FRF,https://shakespeareandco.princeton.edu/books/sympathy/,Sympathy,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/19%2Fd6%2F77%2F19d6775df9374e48a47bd74873380d58%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-01-24,1933-01-27,https://shakespeareandco.princeton.edu/members/metcalf-thomas/,Mrs. Thomas Metcalf,"Metcalf, Mrs. Thomas",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/murasaki-shikibu-lady-boat/,The Lady of the Boat (The Tale of Genji 5),,Murasaki Shikibu,1932,,Lending Library Card,"Mrs. Thomas Metcalf's lending library card is part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Purchase,1933-01-24,1933-01-24,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,,,28.50,FRF,https://shakespeareandco.princeton.edu/books/james-turn-screw/,The Turn of the Screw,,"James, Henry",1898,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/19%2Fd6%2F77%2F19d6775df9374e48a47bd74873380d58%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-01-26,1933-01-26,https://shakespeareandco.princeton.edu/members/dent/,Mr. Dent,"Dent, Mr.",,,,,,,,30.00,,,,FRF,,,,,,,Logbook;Lending Library Card;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Mr. Dent Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/05655921-654f-4765-b1a5-4edf065983b4/manifest;,;https://iiif.princeton.edu/loris/figgy_prod/79%2F87%2F34%2F798734e73e384d08b4d77ad820f5318d%2Fintermediate_file.jp2/full/full/0/default.jpg;
+Reimbursement,1933-01-26,1933-01-26,https://shakespeareandco.princeton.edu/members/adams-10/,Adams,Adams,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1933-01-26,1933-02-26,https://shakespeareandco.princeton.edu/members/kohlberg/,Kohlberg,Kohlberg,,30.00,1 month,31,1,,1933-01-26,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-01-26,1933-06-28,https://shakespeareandco.princeton.edu/members/weiss-colette/,Colette Weiss,"Weiss, Colette",,,,,,,,,Returned,153,,,https://shakespeareandco.princeton.edu/books/kreymborg-second-american-caravan/,The Second American Caravan: A Yearbook of American Literature,,,1928,,Lending Library Card,"Sylvia Beach, Mme Collette Weiss Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a67263e9-aea1-4914-a98b-c9086ec72353/manifest,https://iiif.princeton.edu/loris/figgy_prod/20%2F93%2F74%2F20937497601649518d50cab9b5e796fb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-01-26,1933-02-01,https://shakespeareandco.princeton.edu/members/bidoire-boulenger/,Miss Boulenger / Mme Bidoire,"Bidoire, Mme",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/lehmann-invitation-waltz/,Invitation to the Waltz,,"Lehmann, Rosamond",1932,,Lending Library Card;Lending Library Card,"Sylvia Beach, Boulenger Bidoire Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Boulenger Bidoire Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7f3ef4f0-6ce0-43d1-b96a-1328f891536c/manifest;https://figgy.princeton.edu/concern/scanned_resources/7f3ef4f0-6ce0-43d1-b96a-1328f891536c/manifest,https://iiif-cloud.princeton.edu/iiif/2/9e%2F43%2F49%2F9e43495bc0ee4fa2b0fd028ced999c26%2Fintermediate_file/full/full/0/default.jpg;https://iiif-cloud.princeton.edu/iiif/2/06%2Fe5%2F48%2F06e548926d5b4ecb8353ccb4162827fe%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-01-26,1933-01-28,https://shakespeareandco.princeton.edu/members/satenstein/,Sylvia Satenstein / Sylvia Blatas,"Satenstein, Sylvia",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/maugham-human-bondage/,Of Human Bondage,,"Maugham, W. Somerset",1915,,Lending Library Card,"Sylvia Beach, Sylvia Satenstein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/aaef8dd6-0955-40f8-aad2-505dfe3bba4e/manifest,https://iiif.princeton.edu/loris/figgy_prod/b8%2F55%2Fad%2Fb855ad7358124ae0bfe9d95c46bfab59%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-01-26,1933-02-06,https://shakespeareandco.princeton.edu/members/scott-a/,A. Scott,"Scott, A.",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/byron-byrons-works/,Byron's Works,,"Byron, George Gordon Byron",,"At least two editions of Byron's collected poems circulated in the lending library. Claude Spira and Elizabeth Theves borrowed editions published by Oxford, and Jacques Mardrus borrowed an edition published by Frowde.",Lending Library Card,"Sylvia Beach, Mr. A. Scott Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bde7369e-8f4c-4ae8-b602-64798422455e/manifest,https://iiif.princeton.edu/loris/figgy_prod/0e%2F4a%2Fd6%2F0e4ad66409a5488fb6fac6c55c2993f4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1933-01-27,1933-01-27,https://shakespeareandco.princeton.edu/members/coyle-kathleen/;https://shakespeareandco.princeton.edu/members/coyle-kestrel-2/,Kathleen Coyle / Mrs. K. Coyle;Kestrel Coyle,"Coyle, Kathleen;Coyle, Kestrel",,,,,,,,,,,12.50,FRF,https://shakespeareandco.princeton.edu/books/coyle-flock-birds/,A Flock of Birds,,"Coyle, Kathleen",1930,,Lending Library Card,"Sylvia Beach, Kathleen and Kestrel Coyle Lending Library Cards, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4bfa91e8-c7e0-479d-9dd8-0cd691c6a0e4/manifest,https://iiif.princeton.edu/loris/figgy_prod/da%2Faa%2Fb6%2Fdaaab6cd09f745e397df611a9e68cca4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-01-27,1933-01-27,https://shakespeareandco.princeton.edu/members/rodini/,Rodini / Rudini,Rodini,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-01-27,1933-02-08,https://shakespeareandco.princeton.edu/members/metcalf-thomas/,Mrs. Thomas Metcalf,"Metcalf, Mrs. Thomas",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/frazier-folklore-old-testament/,Folklore in the Old Testament: Studies in Comparative Religion,,"Frazer, James George",1918,,Lending Library Card,"Mrs. Thomas Metcalf's lending library card is part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Subscription,1933-01-27,,https://shakespeareandco.princeton.edu/members/coyle-kathleen/;https://shakespeareandco.princeton.edu/members/coyle-kestrel-2/,Kathleen Coyle / Mrs. K. Coyle;Kestrel Coyle,"Coyle, Kathleen;Coyle, Kestrel",,,,,,,1933-01-27,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Kathleen and Kestrel Coyle Lending Library Cards, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/4bfa91e8-c7e0-479d-9dd8-0cd691c6a0e4/manifest,;https://iiif.princeton.edu/loris/figgy_prod/a1%2Fe6%2F38%2Fa1e6388f880246eda8f5f8468684bfc6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-01-27,1933-02-24,https://shakespeareandco.princeton.edu/members/coyle-kathleen/;https://shakespeareandco.princeton.edu/members/coyle-kestrel-2/,Kathleen Coyle / Mrs. K. Coyle;Kestrel Coyle,"Coyle, Kathleen;Coyle, Kestrel",,,,,,,,,Returned,28,,,https://shakespeareandco.princeton.edu/books/scott-ivanhoe/,Ivanhoe,,"Scott, Walter",1820,,Lending Library Card,"Sylvia Beach, Kathleen and Kestrel Coyle Lending Library Cards, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4bfa91e8-c7e0-479d-9dd8-0cd691c6a0e4/manifest,https://iiif.princeton.edu/loris/figgy_prod/a1%2Fe6%2F38%2Fa1e6388f880246eda8f5f8468684bfc6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-01-27,,https://shakespeareandco.princeton.edu/members/plummer-dorothy/,Dorothy Plummer,"Plummer, Dorothy",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/joyce-ulysses/,Ulysses,,"Joyce, James",1922,,Lending Library Card,"Sylvia Beach, Dorothy Plummer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5f53ce0-8ea6-4d1f-b36b-f6e5321bab4c/manifest,https://iiif.princeton.edu/loris/figgy_prod/a1%2F20%2F86%2Fa120869f9753422d95807c64cfe30599%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-01-27,,https://shakespeareandco.princeton.edu/members/franchot/,Stanislas Pascal Franchot,"Franchot, Stanislas Pascal",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/bryce-american-commonwealth/,The American Commonwealth,,"Bryce, James",1888,,Lending Library Card,"Sylvia Beach, Stanislas Pascal Franchot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1d769df8-a15b-427e-a8aa-96a1e3ff030e/manifest,https://iiif.princeton.edu/loris/figgy_prod/fa%2Fc2%2F01%2Ffac2016244be4f77b72bf7f7248f0c74%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-01-27,1933-01-27,https://shakespeareandco.princeton.edu/members/barthelow-l/,L. Barthelow,"Barthelow, L.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1933-01-28,1933-01-30,https://shakespeareandco.princeton.edu/members/child-bertha-cushing/,Bertha Cushing Child,"Child, Bertha Cushing",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/mann-magic-mountain/,The Magic Mountain,,"Mann, Thomas",1927,,Lending Library Card,"Sylvia Beach, Bertha Cushing Child Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9be92353-f80b-4fc7-a95a-09f7ef28b99a/manifest,https://iiif.princeton.edu/loris/figgy_prod/08%2F3e%2Fa5%2F083ea52fccd645f2827614478b065591%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-01-28,1933-02-04,https://shakespeareandco.princeton.edu/members/satenstein/,Sylvia Satenstein / Sylvia Blatas,"Satenstein, Sylvia",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/steffens-autobiography-lincoln-steffens/,The Autobiography of Lincoln Steffens,Vol. 2,"Steffens, Lincoln",1931,,Lending Library Card,"Sylvia Beach, Sylvia Satenstein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/aaef8dd6-0955-40f8-aad2-505dfe3bba4e/manifest,https://iiif.princeton.edu/loris/figgy_prod/b8%2F55%2Fad%2Fb855ad7358124ae0bfe9d95c46bfab59%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-01-28,1933-02-04,https://shakespeareandco.princeton.edu/members/satenstein/,Sylvia Satenstein / Sylvia Blatas,"Satenstein, Sylvia",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/steffens-autobiography-lincoln-steffens/,The Autobiography of Lincoln Steffens,Vol. 1,"Steffens, Lincoln",1931,,Lending Library Card,"Sylvia Beach, Sylvia Satenstein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/aaef8dd6-0955-40f8-aad2-505dfe3bba4e/manifest,https://iiif.princeton.edu/loris/figgy_prod/b8%2F55%2Fad%2Fb855ad7358124ae0bfe9d95c46bfab59%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-01-28,1933-02-06,https://shakespeareandco.princeton.edu/members/oppen/,George Oppen / To Publishers,"Oppen, George",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/trotsky-history-russian-revolution/,History of the Russian Revolution,Vol. 1 The Overthrow of Tzarism,"Trotsky, Leon",1932,,Lending Library Card,"Sylvia Beach, George Oppen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f6f86621-7670-4887-954c-25658976393e/manifest,https://iiif.princeton.edu/loris/figgy_prod/3e%2F11%2F7f%2F3e117f3d715b4d979bc396525858069e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1933-01-28,1933-01-28,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,,,16.00,FRF,https://shakespeareandco.princeton.edu/books/kirstein-hound-horn/,Hound & Horn,"Vol. 5, no. 2, Jan β Mar 1932",,,,Lending Library Card,"Sylvia Beach, James Joyce Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/60df1b72-de14-4053-ac2b-b16671872306/manifest,https://iiif.princeton.edu/loris/figgy_prod/bc%2Fbc%2F66%2Fbcbc66ffbe6d414db058f3691cca7ef5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Separate Payment,1933-01-28,1933-01-28,https://shakespeareandco.princeton.edu/members/satenstein/,Sylvia Satenstein / Sylvia Blatas,"Satenstein, Sylvia",,30.00,,,,,1933-01-28,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Purchase,1933-01-28,1933-01-28,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,,,14.00,FRF,https://shakespeareandco.princeton.edu/books/shaw-adventures-black-girl/,The Adventures of the Black Girl in Her Search for God,,"Shaw, George Bernard",1932,,Lending Library Card,"Sylvia Beach, James Joyce Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/60df1b72-de14-4053-ac2b-b16671872306/manifest,https://iiif.princeton.edu/loris/figgy_prod/bc%2Fbc%2F66%2Fbcbc66ffbe6d414db058f3691cca7ef5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-01-30,1933-01-30,https://shakespeareandco.princeton.edu/members/bailey/,Mrs. Pearce Bailey,"Bailey, Mrs. Pearce",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1933-01-30,1933-02-05,https://shakespeareandco.princeton.edu/members/solano/,Solita Solano,"Solano, Solita",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/mantz-life-katherine-mansfield/,The Life of Katherine Mansfield,,"Mantz, Ruth Elvish;Murry, John Middleton",1933,,Lending Library Card,"Sylvia Beach, Solita Solano Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ae91e41-ccc0-4df6-9150-63a893d8d633/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2F85%2Fb1%2F2385b11cb18c451b989e5b87c5b8eb82%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1933-01-30,1933-01-30,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/joyce-ulysse/,Ulysse,,"Joyce, James",1929,The first French translation of *Ulysses.*,Lending Library Card,"Sylvia Beach, James Joyce Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/60df1b72-de14-4053-ac2b-b16671872306/manifest,https://iiif.princeton.edu/loris/figgy_prod/bc%2Fbc%2F66%2Fbcbc66ffbe6d414db058f3691cca7ef5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1933-01-30,1933-01-30,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/doumic-revue-mondes/,La revue des deux mondes,,,,,Lending Library Card,"Sylvia Beach, James Joyce Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/60df1b72-de14-4053-ac2b-b16671872306/manifest,https://iiif.princeton.edu/loris/figgy_prod/bc%2Fbc%2F66%2Fbcbc66ffbe6d414db058f3691cca7ef5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-01-30,1933-02-04,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/komroff-new-york-tempest/,A New York Tempest,,"Komroff, Manuel",1932,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2F34%2Fa0%2Fcb34a06754bc48edade768f52aa21e25%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-01-31,1933-02-04,https://shakespeareandco.princeton.edu/members/boscq-marie/,Marie Boscq / Bosq,"Boscq, Marie",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/anderson-beyond-desire/,Beyond Desire,,"Anderson, Sherwood",1932,,Lending Library Card,"Sylvia Beach, Marie Boscq Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/11480fae-3477-40c8-be7d-484c91023da7/manifest,https://iiif.princeton.edu/loris/figgy_prod/9b%2F07%2Fe2%2F9b07e236b5ce465a9fef365511bf55e8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-01-31,1933-02-04,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/selected-essays/,Selected Essays,,,,"Unidentified. Likely T. S. Eliot's [*Selected Essays, 1917β1932*](https://shakespeareandco.princeton.edu/books/eliot-selected-essays-1917/) (1932).",Lending Library Card,"Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest,https://iiif.princeton.edu/loris/figgy_prod/31%2Fba%2F2d%2F31ba2d65ea7d4de790412954d08eaa1c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-01-31,1933-02-09,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/webb-golden-arrow/,Golden Arrow,,"Webb, Mary",1916,,Lending Library Card,"Sylvia Beach, Aline Prot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/15a376bb-405b-4488-b789-1559abbe3fb2/manifest,https://iiif-cloud.princeton.edu/iiif/2/3d%2F96%2F3a%2F3d963a0b51aa48cbbb2e5dba5f22c789%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1933-02-01,,https://shakespeareandco.princeton.edu/members/nouel/,Nouel,Nouel,,50.00,,,,Day By Day,1933-02-01,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1933-02-01,1933-08-01,https://shakespeareandco.princeton.edu/members/samson/,Samson,Samson,162.00,,6 months,181,2,Professor / Teacher,1933-02-01,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-02-01,1933-02-11,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/oppenheim-jeremiah-princess/,Jeremiah and the Princess,,"Oppenheim, E. Phillips",1933,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/ce%2F3a%2F4d%2Fce3a4d52aa5246f0a0e70b81193ae8d1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1933-02-01,1933-02-01,https://shakespeareandco.princeton.edu/members/gillet-louis/,Louis Gillet,"Gillet, Louis",,,,,,,,,,,37.50,FRF,https://shakespeareandco.princeton.edu/books/murry-reminiscences-h-lawrence/,Reminiscences of D. H. Lawrence,,"Murry, John Middleton",1933,,Lending Library Card,"Sylvia Beach, Louis Gillet Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/059a38e2-2b13-4c5c-b116-b978abc5de0c/manifest,https://iiif.princeton.edu/loris/figgy_prod/f5%2F5d%2F86%2Ff55d8687ab804f2fbe9123c7158d2f09%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1933-02-01,1933-02-01,https://shakespeareandco.princeton.edu/members/gillet-louis/,Louis Gillet,"Gillet, Louis",,,,,,,,,,,62.50,FRF,https://shakespeareandco.princeton.edu/books/eliot-selected-essays-1917/,"Selected Essays, 1917 β 1932",,"Eliot, T. S.",1932,,Lending Library Card,"Sylvia Beach, Louis Gillet Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/059a38e2-2b13-4c5c-b116-b978abc5de0c/manifest,https://iiif.princeton.edu/loris/figgy_prod/f5%2F5d%2F86%2Ff55d8687ab804f2fbe9123c7158d2f09%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1933-02-02,1933-02-02,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/hughes-joyce-book/,The Joyce Book,,,1933,,Lending Library Card,"Sylvia Beach, James Joyce Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/60df1b72-de14-4053-ac2b-b16671872306/manifest,https://iiif.princeton.edu/loris/figgy_prod/bc%2Fbc%2F66%2Fbcbc66ffbe6d414db058f3691cca7ef5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1933-02-02,1933-02-02,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/eliot-sweeney-agonistes-fragments/,Sweeney Agonistes: Fragments of an Aristophanic Melodrama,,"Eliot, T. S.",1932,,Lending Library Card,"Sylvia Beach, James Joyce Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/60df1b72-de14-4053-ac2b-b16671872306/manifest,https://iiif.princeton.edu/loris/figgy_prod/bc%2Fbc%2F66%2Fbcbc66ffbe6d414db058f3691cca7ef5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-02-02,1933-02-02,https://shakespeareandco.princeton.edu/members/morgan-4/,Morgan,Morgan,,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1933-02-02,1933-02-02,https://shakespeareandco.princeton.edu/members/sotiroff/,Sotiroff,Sotiroff,,,,,,,,30.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Purchase,1933-02-02,1933-02-02,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/joyce-haveth-childers-everywhere/,Haveth Childers Everywhere: Fragment of Work in Progress,,"Joyce, James",1930,,Lending Library Card,"Sylvia Beach, James Joyce Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/60df1b72-de14-4053-ac2b-b16671872306/manifest,https://iiif.princeton.edu/loris/figgy_prod/bc%2Fbc%2F66%2Fbcbc66ffbe6d414db058f3691cca7ef5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1933-02-03,1933-02-03,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,8.37,FRF,https://shakespeareandco.princeton.edu/books/jolas-language-night/,The Language of Night,,"Jolas, Eugene",1932,,Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/6d%2F02%2Fea%2F6d02ea92311c444890ba5b1cc80946d0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1933-02-03,1933-03-03,https://shakespeareandco.princeton.edu/members/nimr/,Nimr,Nimr,12.00,30.00,1 month,28,1,Student,1933-02-03,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1933-02-03,1933-02-10,https://shakespeareandco.princeton.edu/members/hill-5/,Hill,Hill,10.00,,1 week,7,,,1933-02-03,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1933-02-03,1933-05-03,https://shakespeareandco.princeton.edu/members/berger-suzanne/,Suzanne Berger,"Berger, Suzanne",30.00,30.00,3 months,89,1,,1933-02-03,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1933-02-03,1933-03-03,https://shakespeareandco.princeton.edu/members/jones-4/,Jones,Jones,25.00,,1 month,28,1,,1933-02-02,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Purchase,1933-02-03,1933-02-03,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,8.37,FRF,https://shakespeareandco.princeton.edu/books/jolas-language-night/,The Language of Night,,"Jolas, Eugene",1932,,Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/6d%2F02%2Fea%2F6d02ea92311c444890ba5b1cc80946d0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1933-02-03,1933-02-03,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,8.37,FRF,https://shakespeareandco.princeton.edu/books/jolas-language-night/,The Language of Night,,"Jolas, Eugene",1932,,Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/6d%2F02%2Fea%2F6d02ea92311c444890ba5b1cc80946d0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1933-02-03,1933-02-03,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,8.37,FRF,https://shakespeareandco.princeton.edu/books/jolas-language-night/,The Language of Night,,"Jolas, Eugene",1932,,Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/6d%2F02%2Fea%2F6d02ea92311c444890ba5b1cc80946d0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1933-02-03,1933-02-03,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,8.37,FRF,https://shakespeareandco.princeton.edu/books/jolas-language-night/,The Language of Night,,"Jolas, Eugene",1932,,Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/6d%2F02%2Fea%2F6d02ea92311c444890ba5b1cc80946d0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1933-02-03,1933-02-03,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,8.37,FRF,https://shakespeareandco.princeton.edu/books/jolas-language-night/,The Language of Night,,"Jolas, Eugene",1932,,Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/6d%2F02%2Fea%2F6d02ea92311c444890ba5b1cc80946d0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1933-02-03,1933-02-03,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,8.37,FRF,https://shakespeareandco.princeton.edu/books/jolas-language-night/,The Language of Night,,"Jolas, Eugene",1932,,Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/6d%2F02%2Fea%2F6d02ea92311c444890ba5b1cc80946d0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1933-02-03,1933-02-03,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,8.37,FRF,https://shakespeareandco.princeton.edu/books/jolas-language-night/,The Language of Night,,"Jolas, Eugene",1932,,Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/6d%2F02%2Fea%2F6d02ea92311c444890ba5b1cc80946d0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1933-02-03,1933-02-03,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,8.37,FRF,https://shakespeareandco.princeton.edu/books/jolas-language-night/,The Language of Night,,"Jolas, Eugene",1932,,Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/6d%2F02%2Fea%2F6d02ea92311c444890ba5b1cc80946d0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1933-02-03,1933-02-03,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,8.37,FRF,https://shakespeareandco.princeton.edu/books/jolas-language-night/,The Language of Night,,"Jolas, Eugene",1932,,Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/6d%2F02%2Fea%2F6d02ea92311c444890ba5b1cc80946d0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1933-02-03,1933-02-03,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,8.37,FRF,https://shakespeareandco.princeton.edu/books/jolas-language-night/,The Language of Night,,"Jolas, Eugene",1932,,Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/6d%2F02%2Fea%2F6d02ea92311c444890ba5b1cc80946d0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1933-02-03,1933-02-03,https://shakespeareandco.princeton.edu/members/librairie-des-deux-lycee/,Librairie des deux LycΓ©e,Librairie des deux LycΓ©e,,,,,,,,,,,8.37,FRF,https://shakespeareandco.princeton.edu/books/jolas-language-night/,The Language of Night,,"Jolas, Eugene",1932,,Lending Library Card,"Sylvia Beach, Librairie des Deux LycΓ©e Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ac4c2046-abd4-4aca-870d-6631aba24574/manifest,https://iiif.princeton.edu/loris/figgy_prod/6d%2F02%2Fea%2F6d02ea92311c444890ba5b1cc80946d0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1933-02-04,1933-05-04,https://shakespeareandco.princeton.edu/members/allespach/,Jean Allespach,"Allespach, Jean",65.00,50.00,3 months,89,1,,1933-02-04,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1933-02-04,1933-02-04,https://shakespeareandco.princeton.edu/members/nouel/,Nouel,Nouel,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-02-04,1933-02-09,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/glenn-east-eden/,East of Eden,,"Glenn, Isa",1932,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2F34%2Fa0%2Fcb34a06754bc48edade768f52aa21e25%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-02-04,1933-02-17,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/faulkner-sound-fury/,The Sound and the Fury,,"Faulkner, William",1929,,Lending Library Card,"Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest,https://iiif.princeton.edu/loris/figgy_prod/31%2Fba%2F2d%2F31ba2d65ea7d4de790412954d08eaa1c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-02-04,1933-02-07,https://shakespeareandco.princeton.edu/members/boscq-marie/,Marie Boscq / Bosq,"Boscq, Marie",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/strachey-eminent-victorians/,Eminent Victorians,,"Strachey, Giles Lytton",1918,,Lending Library Card,"Sylvia Beach, Marie Boscq Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/11480fae-3477-40c8-be7d-484c91023da7/manifest,https://iiif.princeton.edu/loris/figgy_prod/9b%2F07%2Fe2%2F9b07e236b5ce465a9fef365511bf55e8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-02-05,1933-02-14,https://shakespeareandco.princeton.edu/members/solano/,Solita Solano,"Solano, Solita",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/asquith-memories/,More Memories,,"Asquith, Margot",1933,,Lending Library Card,"Sylvia Beach, Solita Solano Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ae91e41-ccc0-4df6-9150-63a893d8d633/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2F85%2Fb1%2F2385b11cb18c451b989e5b87c5b8eb82%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-02-05,1933-02-05,https://shakespeareandco.princeton.edu/members/solano/,Solita Solano,"Solano, Solita",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/macdonell-shakespeare-murders/,The Shakespeare Murders,,"Macdonell, A. G.",1933,,Lending Library Card,"Sylvia Beach, Solita Solano Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ae91e41-ccc0-4df6-9150-63a893d8d633/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2F85%2Fb1%2F2385b11cb18c451b989e5b87c5b8eb82%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1933-02-05,1933-03-05,https://shakespeareandco.princeton.edu/members/levison/,Mrs. I. Levison,"Levison, Mrs. I.",20.00,,1 month,28,,,1933-02-04,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-02-05,1933-02-05,https://shakespeareandco.princeton.edu/members/solano/,Solita Solano,"Solano, Solita",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/sayers-murder-must-advertise/,Murder Must Advertise,,"Sayers, Dorothy L.",1933,,Lending Library Card,"Sylvia Beach, Solita Solano Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ae91e41-ccc0-4df6-9150-63a893d8d633/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2F85%2Fb1%2F2385b11cb18c451b989e5b87c5b8eb82%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-02-05,1933-02-16,https://shakespeareandco.princeton.edu/members/solano/,Solita Solano,"Solano, Solita",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/terry-ellen-terrys-memoirs/,Ellen Terry's Memoirs,,"Terry, Ellen",1932,,Lending Library Card,"Sylvia Beach, Solita Solano Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ae91e41-ccc0-4df6-9150-63a893d8d633/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2F85%2Fb1%2F2385b11cb18c451b989e5b87c5b8eb82%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-02-06,1933-02-13,https://shakespeareandco.princeton.edu/members/oppen/,George Oppen / To Publishers,"Oppen, George",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/trotsky-history-russian-revolution/,History of the Russian Revolution,Vol. 3 The Triumphs of the Soviets,"Trotsky, Leon",1932,,Lending Library Card,"Sylvia Beach, George Oppen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f6f86621-7670-4887-954c-25658976393e/manifest,https://iiif.princeton.edu/loris/figgy_prod/3e%2F11%2F7f%2F3e117f3d715b4d979bc396525858069e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-02-06,1933-02-13,https://shakespeareandco.princeton.edu/members/scott-a/,A. Scott,"Scott, A.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/arnold-essays-criticism/,Essays in Criticism,,"Arnold, Matthew",1865,,Lending Library Card,"Sylvia Beach, Mr. A. Scott Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bde7369e-8f4c-4ae8-b602-64798422455e/manifest,https://iiif.princeton.edu/loris/figgy_prod/0e%2F4a%2Fd6%2F0e4ad66409a5488fb6fac6c55c2993f4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-02-07,1933-02-07,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/monroe-new-poetry-anthology/,The New Poetry: Anthology of Twentieth Century Verse in English,,,1918,,Lending Library Card,"Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest,https://iiif.princeton.edu/loris/figgy_prod/31%2Fba%2F2d%2F31ba2d65ea7d4de790412954d08eaa1c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-02-07,,https://shakespeareandco.princeton.edu/members/bloch-marguerite-herzog/,Marguerite (Herzog) Bloch / Mme Jean Bloch,"Bloch, Marguerite",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/kennedy-return-dare/,Return I Dare Not,,"Kennedy, Margaret",1931,,Lending Library Card,"Sylvia Beach, Marguerite Bloch Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9020f86f-a1a1-42bf-b1c1-e6216de74973/manifest,https://iiif.princeton.edu/loris/figgy_prod/6a%2Fa7%2F30%2F6aa7305dc3114ed4a072b7701d43720a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-02-07,1933-02-09,https://shakespeareandco.princeton.edu/members/boscq-marie/,Marie Boscq / Bosq,"Boscq, Marie",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/anderson-beyond-desire/,Beyond Desire,,"Anderson, Sherwood",1932,,Lending Library Card,"Sylvia Beach, Marie Boscq Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/11480fae-3477-40c8-be7d-484c91023da7/manifest,https://iiif.princeton.edu/loris/figgy_prod/9b%2F07%2Fe2%2F9b07e236b5ce465a9fef365511bf55e8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-02-07,1933-02-07,https://shakespeareandco.princeton.edu/members/marret/,Marret,Marret,,,,,,,,30.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1933-02-07,1933-04-07,https://shakespeareandco.princeton.edu/members/douglas-2/,Douglas,Douglas,50.00,,2 months,59,,Student,1933-02-07,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-02-08,1933-02-13,https://shakespeareandco.princeton.edu/members/metcalf-thomas/,Mrs. Thomas Metcalf,"Metcalf, Mrs. Thomas",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/doyle-round-fire-stories/,Round the Fire Stories,,"Doyle, Arthur Conan",1908,,Lending Library Card,"Mrs. Thomas Metcalf's lending library card is part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Borrow,1933-02-08,1933-02-15,https://shakespeareandco.princeton.edu/members/tony-mayer/,Thérèse Tony-Mayer,"Tony-Mayer, Thérèse",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/lawrence-letters-h-lawrence/,The Letters of D. H. Lawrence,,"Lawrence, D. H.",1932,,Lending Library Card,"Sylvia Beach, Thérèse Tony-Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/27246b4c-7d99-4dca-b874-ab90bd542cfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2Fa0%2Fff%2F50a0ff19abc240c680a6a33baf060b76%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1933-02-08,1933-08-08,https://shakespeareandco.princeton.edu/members/tony-mayer/,ThΓ©rΓ¨se Tony-Mayer,"Tony-Mayer, ThΓ©rΓ¨se",90.00,50.00,6 months,181,1,,1933-02-08,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, ThΓ©rΓ¨se Tony-Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/27246b4c-7d99-4dca-b874-ab90bd542cfa/manifest,;https://iiif.princeton.edu/loris/figgy_prod/50%2Fa0%2Fff%2F50a0ff19abc240c680a6a33baf060b76%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1933-02-08,1933-03-08,https://shakespeareandco.princeton.edu/members/poltorasky/,Poltorasky,Poltorasky,12.00,30.00,1 month,28,1,Student,1933-02-08,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-02-08,1933-02-13,https://shakespeareandco.princeton.edu/members/metcalf-thomas/,Mrs. Thomas Metcalf,"Metcalf, Mrs. Thomas",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/doyle-last-adventures-sherlock/,The Last Adventures of Sherlock Holmes,,"Doyle, Arthur Conan",1897,,Lending Library Card,"Mrs. Thomas Metcalf's lending library card is part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Reimbursement,1933-02-08,1933-02-08,https://shakespeareandco.princeton.edu/members/gomme/,Gomme,Gomme,,,,,,,,30.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-02-09,1933-02-21,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/shelley-poetical-works-percy/,Shelley's Works,,"Shelley, Percy Bysshe",,"Fernand Colens borrowed the 2 volume Everyman's Library edition of Shelley's poems, edited by A. H. Koszul (1907). Alina Prot borrowed volume 1 of an unidentified edition, and Antoinette Bernheim and Elizabeth Theves borrowed volume 2 of an unidentified edition.",Lending Library Card,"Sylvia Beach, Aline Prot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/15a376bb-405b-4488-b789-1559abbe3fb2/manifest,https://iiif-cloud.princeton.edu/iiif/2/3d%2F96%2F3a%2F3d963a0b51aa48cbbb2e5dba5f22c789%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-02-09,1933-03-31,https://shakespeareandco.princeton.edu/members/boscq-marie/,Marie Boscq / Bosq,"Boscq, Marie",,,,,,,,,Returned,50,,,https://shakespeareandco.princeton.edu/books/strachey-queen-victoria/,Queen Victoria,,"Strachey, Giles Lytton",1921,,Lending Library Card,"Sylvia Beach, Marie Boscq Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/11480fae-3477-40c8-be7d-484c91023da7/manifest,https://iiif.princeton.edu/loris/figgy_prod/9b%2F07%2Fe2%2F9b07e236b5ce465a9fef365511bf55e8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-02-09,1933-02-17,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/wharton-gods-arrive/,The Gods Arrive,,"Wharton, Edith",1932,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2F34%2Fa0%2Fcb34a06754bc48edade768f52aa21e25%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-02-09,1933-02-21,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/herbert-water-gipsies/,The Water Gipsies,,"Herbert, A. P.",1930,,Lending Library Card,"Sylvia Beach, Aline Prot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/15a376bb-405b-4488-b789-1559abbe3fb2/manifest,https://iiif-cloud.princeton.edu/iiif/2/3d%2F96%2F3a%2F3d963a0b51aa48cbbb2e5dba5f22c789%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-02-09,1933-07-19,https://shakespeareandco.princeton.edu/members/satenstein/,Sylvia Satenstein / Sylvia Blatas,"Satenstein, Sylvia",,,,,,,,,Returned,160,,,https://shakespeareandco.princeton.edu/books/frazier-folklore-old-testament/,Folklore in the Old Testament: Studies in Comparative Religion,,"Frazer, James George",1918,,Lending Library Card,"Sylvia Beach, Sylvia Satenstein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/aaef8dd6-0955-40f8-aad2-505dfe3bba4e/manifest,https://iiif.princeton.edu/loris/figgy_prod/b8%2F55%2Fad%2Fb855ad7358124ae0bfe9d95c46bfab59%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-02-10,1933-02-17,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/dahlberg-flushing-calvary/,From Flushing to Calvary,,"Dahlberg, Edward",1932,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/b3%2F88%2F85%2Fb38885c606214804a0b750495aa0797c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-02-10,1933-02-16,https://shakespeareandco.princeton.edu/members/solano/,Solita Solano,"Solano, Solita",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/nijinsky-nijinsky/,Nijinsky,,"Nijinsky, Romola de Pulszky",1933,,Lending Library Card,"Sylvia Beach, Solita Solano Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ae91e41-ccc0-4df6-9150-63a893d8d633/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2F85%2Fb1%2F2385b11cb18c451b989e5b87c5b8eb82%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1933-02-10,1933-03-10,https://shakespeareandco.princeton.edu/members/vignet/,Vignet,Vignet,25.00,,1 month,28,,,1933-02-07,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1933-02-10,1933-03-10,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",25.00,50.00,1 month,28,1,,1933-02-10,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,;https://iiif.princeton.edu/loris/figgy_prod/b3%2F88%2F85%2Fb38885c606214804a0b750495aa0797c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-02-10,1933-02-10,https://shakespeareandco.princeton.edu/members/rivers/,Rivers,Rivers,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1933-02-10,1933-02-10,https://shakespeareandco.princeton.edu/members/weiss-colette/,Colette Weiss,"Weiss, Colette",,,,,,,,30.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Purchase,1933-02-10,1933-02-10,https://shakespeareandco.princeton.edu/members/robertson-william-cowper/,William Cowper Robertson / Rev. W. Cowper Robertson,"Robertson, William Cowper",,,,,,,,,,,10.00,FRF,https://shakespeareandco.princeton.edu/books/murray-euripides-age/,Euripides and His Age,,"Murray, Gilbert",1913,,Lending Library Card,"Sylvia Beach, W. Cowper Robertson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/33769c35-cdbb-47ab-b0b9-ca17c85798d6/manifest,https://iiif.princeton.edu/loris/figgy_prod/e2%2F5b%2F81%2Fe25b8195e28345a79276895fb81ade3e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-02-11,1933-02-18,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/maugham-narrow-corner/,The Narrow Corner,,"Maugham, W. Somerset",1932,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/ce%2F3a%2F4d%2Fce3a4d52aa5246f0a0e70b81193ae8d1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1933-02-11,1933-03-11,https://shakespeareandco.princeton.edu/members/vogue-de/,Countess de VoguΓ©,"de VoguΓ©, Countess",,,1 month,28,1,,1933-02-11,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, La Comtesse de Vogue Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/4a9b4f25-ef3e-4b7d-9d28-cc9f2c070d68/manifest,;https://iiif-cloud.princeton.edu/iiif/2/2b%2Ffd%2F2e%2F2bfd2e2420b84fbba1b3e805c78012a7%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1933-02-11,1933-02-11,https://shakespeareandco.princeton.edu/members/vogue-de/,Countess de VoguΓ©,"de VoguΓ©, Countess",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-02-11,1933-02-14,https://shakespeareandco.princeton.edu/members/vogue-de/,Countess de VoguΓ©,"de VoguΓ©, Countess",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/lowndes-lodger/,The Lodger,,"Lowndes, Marie Belloc",1913,,Lending Library Card,"Sylvia Beach, La Comtesse de Vogue Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4a9b4f25-ef3e-4b7d-9d28-cc9f2c070d68/manifest,https://iiif-cloud.princeton.edu/iiif/2/2b%2Ffd%2F2e%2F2bfd2e2420b84fbba1b3e805c78012a7%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-02-11,1933-02-25,https://shakespeareandco.princeton.edu/members/vogue-de/,Countess de VoguΓ©,"de VoguΓ©, Countess",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/obrien-best-short-stories-1933/,The Best Short Stories 1933: And the Yearbook of the American Short Story,,,1933,,Lending Library Card,"Sylvia Beach, La Comtesse de Vogue Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4a9b4f25-ef3e-4b7d-9d28-cc9f2c070d68/manifest,https://iiif-cloud.princeton.edu/iiif/2/2b%2Ffd%2F2e%2F2bfd2e2420b84fbba1b3e805c78012a7%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1933-02-11,1933-03-11,https://shakespeareandco.princeton.edu/members/lescure/,Lescure,Lescure,12.00,30.00,1 month,28,1,Student,1933-02-11,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1933-02-13,1933-03-13,https://shakespeareandco.princeton.edu/members/rose-de/,Mme de Rose,"de Rose, Mme",12.00,30.00,1 month,28,1,Student,1933-02-13,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Mme de Rose Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/9a78185c-19a1-4419-90e2-f5f137abf621/manifest,;https://iiif.princeton.edu/loris/figgy_prod/fe%2F2a%2F3f%2Ffe2a3fbc35ec434abea2c4c4542080ec%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1933-02-13,1933-03-13,https://shakespeareandco.princeton.edu/members/oppen/,George Oppen / To Publishers,"Oppen, George",,20.00,1 month,28,,Student,1933-02-13,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, George Oppen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/f6f86621-7670-4887-954c-25658976393e/manifest,;https://iiif.princeton.edu/loris/figgy_prod/3e%2F11%2F7f%2F3e117f3d715b4d979bc396525858069e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-02-13,1933-02-21,https://shakespeareandco.princeton.edu/members/oppen/,George Oppen / To Publishers,"Oppen, George",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/robertson-explorations/,Explorations,,"Robertson, John Mackinnon",1923,,Lending Library Card,"Sylvia Beach, George Oppen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f6f86621-7670-4887-954c-25658976393e/manifest,https://iiif.princeton.edu/loris/figgy_prod/3e%2F11%2F7f%2F3e117f3d715b4d979bc396525858069e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-02-13,1933-02-21,https://shakespeareandco.princeton.edu/members/oppen/,George Oppen / To Publishers,"Oppen, George",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/alder-life-mean/,What Life Should Mean to You,,"Alder, Alfred",1931,,Lending Library Card,"Sylvia Beach, George Oppen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f6f86621-7670-4887-954c-25658976393e/manifest,https://iiif.princeton.edu/loris/figgy_prod/3e%2F11%2F7f%2F3e117f3d715b4d979bc396525858069e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1933-02-13,1933-03-13,https://shakespeareandco.princeton.edu/members/parsons/,Parsons,Parsons,,,1 month,28,1,Student,1933-02-13,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1933-02-13,,https://shakespeareandco.princeton.edu/members/marret/,Marret,Marret,12.00,,,,,Student,1933-02-07,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1933-02-13,1933-02-13,https://shakespeareandco.princeton.edu/members/bodhuin/,Mme Robert Bodhuin,"Bodhuin, Mme Robert",,,,,,,,30.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1933-02-13,1933-02-22,https://shakespeareandco.princeton.edu/members/scott-a/,A. Scott,"Scott, A.",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/ruskin-selections-writings-john/,"Selections from the Writings of John Ruskin: First Series, 1843 β 1860",,"Ruskin, John",1893,,Lending Library Card,"Sylvia Beach, Mr. A. Scott Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bde7369e-8f4c-4ae8-b602-64798422455e/manifest,https://iiif.princeton.edu/loris/figgy_prod/0e%2F4a%2Fd6%2F0e4ad66409a5488fb6fac6c55c2993f4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-02-13,1933-02-25,https://shakespeareandco.princeton.edu/members/rose-de/,Mme de Rose,"de Rose, Mme",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/purohit-indian-monk-life/,"An Indian Monk, His Life and Adventures",,"Purohit, Swami",1932,,Lending Library Card,"Sylvia Beach, Mme de Rose Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9a78185c-19a1-4419-90e2-f5f137abf621/manifest,https://iiif.princeton.edu/loris/figgy_prod/fe%2F2a%2F3f%2Ffe2a3fbc35ec434abea2c4c4542080ec%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-02-14,1933-02-14,https://shakespeareandco.princeton.edu/members/beaumel-germaine/,Germaine Beaumel,"Beaumel, Germaine",,,,,,,,60.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1933-02-14,1933-02-19,https://shakespeareandco.princeton.edu/members/solano/,Solita Solano,"Solano, Solita",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/webb-s-s-murder/,S. S. Murder,,"Webb, Richard Wilson;Aswell, Mary Louise",1933,By Webb and Aswell writing together as [Q. Patrick](https://en.wikipedia.org/wiki/Patrick_Quentin).,Lending Library Card,"Sylvia Beach, Solita Solano Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ae91e41-ccc0-4df6-9150-63a893d8d633/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2F85%2Fb1%2F2385b11cb18c451b989e5b87c5b8eb82%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1933-02-15,1933-03-15,https://shakespeareandco.princeton.edu/members/wrenn-pw/,P. W. Wrenn,"Wrenn, P. W.",,,1 month,28,2,,1933-02-15,,,,,,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-02-15,1933-02-23,https://shakespeareandco.princeton.edu/members/tony-mayer/,Thérèse Tony-Mayer,"Tony-Mayer, Thérèse",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/luhan-lorenzo-taos/,Lorenzo in Taos,,"Luhan, Mabel Dodge",1932,,Lending Library Card,"Sylvia Beach, Thérèse Tony-Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/27246b4c-7d99-4dca-b874-ab90bd542cfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2Fa0%2Fff%2F50a0ff19abc240c680a6a33baf060b76%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-02-17,1933-02-23,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/murry-woman-story-h/,Son of Woman: The Story of D. H. Lawrence,,"Murry, John Middleton",1931,,Lending Library Card,"Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest,https://iiif.princeton.edu/loris/figgy_prod/31%2Fba%2F2d%2F31ba2d65ea7d4de790412954d08eaa1c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-02-17,1933-03-01,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/macleish-conquistador/,Conquistador,,"MacLeish, Archibald",1933,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/b3%2F88%2F85%2Fb38885c606214804a0b750495aa0797c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-02-17,1933-02-24,https://shakespeareandco.princeton.edu/members/franchot/,Stanislas Pascal Franchot,"Franchot, Stanislas Pascal",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/markham-life-christopher-columbus/,Christopher Columbus: The World's Great Explorers and Explorations,,"Markham, Clements R.",1892,"Volume 7 of the World's Great Explorers and Explorations series, published by George Philip & Son's.",Lending Library Card,"Sylvia Beach, Stanislas Pascal Franchot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1d769df8-a15b-427e-a8aa-96a1e3ff030e/manifest,https://iiif.princeton.edu/loris/figgy_prod/fa%2Fc2%2F01%2Ffac2016244be4f77b72bf7f7248f0c74%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-02-17,1933-02-24,https://shakespeareandco.princeton.edu/members/franchot/,Stanislas Pascal Franchot,"Franchot, Stanislas Pascal",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/history-american-people/,History of the American People,Vol. 1,,,Unidentified. Likely Woodrow Wilson's 5 volume *A History of the American People* (1902).,Lending Library Card,"Sylvia Beach, Stanislas Pascal Franchot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1d769df8-a15b-427e-a8aa-96a1e3ff030e/manifest,https://iiif.princeton.edu/loris/figgy_prod/fa%2Fc2%2F01%2Ffac2016244be4f77b72bf7f7248f0c74%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-02-18,1933-02-23,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/macaulay-defeated/,They Were Defeated,,"Macaulay, Rose",1932,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/ce%2F3a%2F4d%2Fce3a4d52aa5246f0a0e70b81193ae8d1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-02-19,,https://shakespeareandco.princeton.edu/members/solano/,Solita Solano,"Solano, Solita",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/oppenheim-murder-monte-carlo/,Murder at Monte Carlo,,"Oppenheim, E. Phillips",1933,,Lending Library Card,"Sylvia Beach, Solita Solano Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ae91e41-ccc0-4df6-9150-63a893d8d633/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2F85%2Fb1%2F2385b11cb18c451b989e5b87c5b8eb82%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1933-02-20,1933-05-20,https://shakespeareandco.princeton.edu/members/charmant/,Charmant,Charmant,30.00,30.00,3 months,89,1,Student,1933-02-20,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-02-20,1933-02-27,https://shakespeareandco.princeton.edu/members/scott-a/,A. Scott,"Scott, A.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/renaissance-2/,The Renaissance,,,,Unidentified. Likely Walter Pater's *The Renaissance: Studies of Art and Poetry* (1873).,Lending Library Card,"Sylvia Beach, Mr. A. Scott Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bde7369e-8f4c-4ae8-b602-64798422455e/manifest,https://iiif.princeton.edu/loris/figgy_prod/0e%2F4a%2Fd6%2F0e4ad66409a5488fb6fac6c55c2993f4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-02-20,1933-02-20,https://shakespeareandco.princeton.edu/members/jones-4/,Jones,Jones,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-02-20,1933-02-24,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/webb-gone-earth/,Gone to Earth,,"Webb, Mary",1917,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2F34%2Fa0%2Fcb34a06754bc48edade768f52aa21e25%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-02-21,1933-03-09,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/wordsworth-wordsworths-poetical-works/,Wordsworth's Poetical Works,,"Wordsworth, William",,,Lending Library Card,"Sylvia Beach, Aline Prot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/15a376bb-405b-4488-b789-1559abbe3fb2/manifest,https://iiif-cloud.princeton.edu/iiif/2/3d%2F96%2F3a%2F3d963a0b51aa48cbbb2e5dba5f22c789%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1933-02-21,1933-02-21,https://shakespeareandco.princeton.edu/members/coleman-2/,B. M. Coleman,"Coleman, B. M.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1933-02-21,1933-02-21,https://shakespeareandco.princeton.edu/members/oppen/,George Oppen / To Publishers,"Oppen, George",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1933-02-21,1933-03-21,https://shakespeareandco.princeton.edu/members/de-roos-elisabeth/;https://shakespeareandco.princeton.edu/members/perron-eddy/,Elisabeth de Roos / Mrs. du Perron;E. du Perron / Eddy du Perron,"de Roos, Elisabeth;du Perron, Eddy",25.00,,1 month,28,1,,1933-02-21,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-02-21,1933-03-01,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/wharton-gods-arrive/,The Gods Arrive,,"Wharton, Edith",1932,,Lending Library Card,"Sylvia Beach, Aline Prot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/15a376bb-405b-4488-b789-1559abbe3fb2/manifest,https://iiif-cloud.princeton.edu/iiif/2/3d%2F96%2F3a%2F3d963a0b51aa48cbbb2e5dba5f22c789%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1933-02-22,1933-02-22,https://shakespeareandco.princeton.edu/members/brody-rachel/,Rachel Brody,"Brody, Rachel",,,,,,,,30.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Purchase,1933-02-22,1933-02-22,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,,,57.00,FRF,https://shakespeareandco.princeton.edu/books/joyce-anna-livia-plurabelle/,Anna Livia Plurabelle,,"Joyce, James",1930,"Likely the Faber & Faber edition of *Anna Livia Plurabelle: Fragment of Work in Progress* (1930). Jacques Mercanton, however, likely purchases the Crosby Gaige edition of [*Anna Livia Plurabelle*](http://www.riverrun.org.uk/jj/ALP.pdf) (1928).",Lending Library Card,"Sylvia Beach, James Joyce Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/60df1b72-de14-4053-ac2b-b16671872306/manifest,https://iiif.princeton.edu/loris/figgy_prod/bc%2Fbc%2F66%2Fbcbc66ffbe6d414db058f3691cca7ef5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-02-22,1933-03-01,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/twain-adventures-tom-sawyer/,The Adventures of Tom Sawyer,,"Twain, Mark",1876,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/b3%2F88%2F85%2Fb38885c606214804a0b750495aa0797c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1933-02-23,1933-02-23,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,,,10.00,FRF,https://shakespeareandco.princeton.edu/books/hemingway-torrents-spring/,The Torrents of Spring,,"Hemingway, Ernest",1926,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/19%2Fd6%2F77%2F19d6775df9374e48a47bd74873380d58%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-02-23,1933-03-03,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/lawrence-letters-h-lawrence/,The Letters of D. H. Lawrence,,"Lawrence, D. H.",1932,,Lending Library Card,"Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest,https://iiif.princeton.edu/loris/figgy_prod/31%2Fba%2F2d%2F31ba2d65ea7d4de790412954d08eaa1c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-02-23,1933-03-03,https://shakespeareandco.princeton.edu/members/tony-mayer/,Thérèse Tony-Mayer,"Tony-Mayer, Thérèse",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/faulkner-light-august/,Light in August,,"Faulkner, William",1932,,Lending Library Card,"Sylvia Beach, Thérèse Tony-Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/27246b4c-7d99-4dca-b874-ab90bd542cfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2Fa0%2Fff%2F50a0ff19abc240c680a6a33baf060b76%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-02-23,1933-02-27,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/galsworthy-flowering-wilderness/,Flowering Wilderness (End of Chapter),,"Galsworthy, John",1932,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/ce%2F3a%2F4d%2Fce3a4d52aa5246f0a0e70b81193ae8d1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1933-02-24,1933-03-24,https://shakespeareandco.princeton.edu/members/rochemont-2/,Mme de Rochemont,"de Rochemont, Mme",25.00,50.00,1 month,28,1,,1933-02-24,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1933-02-24,1933-02-24,https://shakespeareandco.princeton.edu/members/franchot/,Stanislas Pascal Franchot,"Franchot, Stanislas Pascal",,,,,,,,60.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Purchase,1933-02-24,1933-02-24,https://shakespeareandco.princeton.edu/members/coyle-kathleen/;https://shakespeareandco.princeton.edu/members/coyle-kestrel-2/,Kathleen Coyle / Mrs. K. Coyle;Kestrel Coyle,"Coyle, Kathleen;Coyle, Kestrel",,,,,,,,,,,14.00,FRF,https://shakespeareandco.princeton.edu/books/donne-poems-john-donne/,The Poems of John Donne,,"Donne, John",1931,,Lending Library Card,"Sylvia Beach, Kathleen and Kestrel Coyle Lending Library Cards, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4bfa91e8-c7e0-479d-9dd8-0cd691c6a0e4/manifest,https://iiif.princeton.edu/loris/figgy_prod/da%2Faa%2Fb6%2Fdaaab6cd09f745e397df611a9e68cca4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-02-24,1933-02-28,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/paget-human-speech-observations/,"Human Speech: Some Observations, Experiments, and Conclusions as to the Nature, Origin, Purpose and Possible Improvements to Human Speech",,"Paget, Richard",1930,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2F34%2Fa0%2Fcb34a06754bc48edade768f52aa21e25%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-02-25,1933-03-03,https://shakespeareandco.princeton.edu/members/vogue-de/,Countess de VoguΓ©,"de VoguΓ©, Countess",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/lehmann-invitation-waltz/,Invitation to the Waltz,,"Lehmann, Rosamond",1932,,Lending Library Card,"Sylvia Beach, La Comtesse de Vogue Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4a9b4f25-ef3e-4b7d-9d28-cc9f2c070d68/manifest,https://iiif-cloud.princeton.edu/iiif/2/2b%2Ffd%2F2e%2F2bfd2e2420b84fbba1b3e805c78012a7%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-02-25,1933-02-27,https://shakespeareandco.princeton.edu/members/rose-de/,Mme de Rose,"de Rose, Mme",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/richardson-backwater-pilgrimage-2/,Backwater (Pilgrimage 2),,"Richardson, Dorothy M.",1916,,Lending Library Card,"Sylvia Beach, Mme de Rose Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9a78185c-19a1-4419-90e2-f5f137abf621/manifest,https://iiif.princeton.edu/loris/figgy_prod/fe%2F2a%2F3f%2Ffe2a3fbc35ec434abea2c4c4542080ec%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-02-27,,https://shakespeareandco.princeton.edu/members/scott-a/,A. Scott,"Scott, A.",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/pater-plato-platonism/,Plato and Platonism,,"Pater, Walter",1893,,Lending Library Card,"Sylvia Beach, Mr. A. Scott Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bde7369e-8f4c-4ae8-b602-64798422455e/manifest,https://iiif.princeton.edu/loris/figgy_prod/0e%2F4a%2Fd6%2F0e4ad66409a5488fb6fac6c55c2993f4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-02-27,1933-03-13,https://shakespeareandco.princeton.edu/members/rose-de/,Mme de Rose,"de Rose, Mme",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/holme-lonely-plough/,The Lonely Plough,,"Holme, Constance",1914,,Lending Library Card,"Sylvia Beach, Mme de Rose Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9a78185c-19a1-4419-90e2-f5f137abf621/manifest,https://iiif.princeton.edu/loris/figgy_prod/fe%2F2a%2F3f%2Ffe2a3fbc35ec434abea2c4c4542080ec%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-02-27,,https://shakespeareandco.princeton.edu/members/franchot/,Stanislas Pascal Franchot,"Franchot, Stanislas Pascal",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/milton-miltons-poetical-works/,Milton's Poetical Works,,"Milton, John",,,Lending Library Card,"Sylvia Beach, Stanislas Pascal Franchot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1d769df8-a15b-427e-a8aa-96a1e3ff030e/manifest,https://iiif.princeton.edu/loris/figgy_prod/7c%2F55%2Fd6%2F7c55d6d0ba9c410999ce6eaefa80429d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-02-27,1933-03-13,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/famous-plays/,Famous Plays,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/ce%2F3a%2F4d%2Fce3a4d52aa5246f0a0e70b81193ae8d1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-02-28,1933-03-04,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/nicolson-public-faces/,Public Faces,,"Nicolson, Harold George",1933,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2F34%2Fa0%2Fcb34a06754bc48edade768f52aa21e25%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-02-28,1933-02-28,https://shakespeareandco.princeton.edu/members/lacoste/,Lacoste,Lacoste,,,,,,,,30.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-03-01,1933-03-24,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/austin-earth-horizon/,Earth Horizon,,"Austin, Mary Hunter",1932,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/b3%2F88%2F85%2Fb38885c606214804a0b750495aa0797c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-03-01,1933-03-09,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/huxley-brave-new-world/,Brave New World,,"Huxley, Aldous",1932,,Lending Library Card,"Sylvia Beach, Aline Prot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/15a376bb-405b-4488-b789-1559abbe3fb2/manifest,https://iiif-cloud.princeton.edu/iiif/2/3d%2F96%2F3a%2F3d963a0b51aa48cbbb2e5dba5f22c789%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1933-03-02,1933-04-02,https://shakespeareandco.princeton.edu/members/kohlberg/,Kohlberg,Kohlberg,12.00,,1 month,31,1,Student,1933-02-28,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-03-02,1933-03-08,https://shakespeareandco.princeton.edu/members/leyris-pierre/,Pierre Leyris,"Leyris, Pierre",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/melville-pierre-ambiguities/,"Pierre; Or, the Ambiguities",,"Melville, Herman",1852,,Lending Library Card,"Sylvia Beach, Pierre Leyris Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6c75c34b-de6f-4465-baee-8f7cd76f5c87/manifest,https://iiif-cloud.princeton.edu/iiif/2/59%2F6b%2F87%2F596b87dc20b44bfab1f842c6ded18105%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-03-02,1933-03-21,https://shakespeareandco.princeton.edu/members/franchot/,Stanislas Pascal Franchot,"Franchot, Stanislas Pascal",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/apocrypha/,Apocrypha,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Stanislas Pascal Franchot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1d769df8-a15b-427e-a8aa-96a1e3ff030e/manifest,https://iiif.princeton.edu/loris/figgy_prod/7c%2F55%2Fd6%2F7c55d6d0ba9c410999ce6eaefa80429d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1933-03-02,1933-04-02,https://shakespeareandco.princeton.edu/members/leyris-pierre/,Pierre Leyris,"Leyris, Pierre",12.00,70.00,1 month,31,1,Student,1933-03-02,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Pierre Leyris Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/6c75c34b-de6f-4465-baee-8f7cd76f5c87/manifest,;https://iiif-cloud.princeton.edu/iiif/2/59%2F6b%2F87%2F596b87dc20b44bfab1f842c6ded18105%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1933-03-02,,https://shakespeareandco.princeton.edu/members/coleman-2/,B. M. Coleman,"Coleman, B. M.",,50.00,,,,Day By Day,1933-03-02,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1933-03-02,,https://shakespeareandco.princeton.edu/members/franchot/,Stanislas Pascal Franchot,"Franchot, Stanislas Pascal",,50.00,,31,,Day By Day,1933-03-02,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Stanislas Pascal Franchot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/1d769df8-a15b-427e-a8aa-96a1e3ff030e/manifest,;https://iiif.princeton.edu/loris/figgy_prod/7c%2F55%2Fd6%2F7c55d6d0ba9c410999ce6eaefa80429d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-03-03,1933-03-08,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/murry-reminiscences-h-lawrence/,Reminiscences of D. H. Lawrence,,"Murry, John Middleton",1933,,Lending Library Card,"Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest,https://iiif.princeton.edu/loris/figgy_prod/31%2Fba%2F2d%2F31ba2d65ea7d4de790412954d08eaa1c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1933-03-03,1933-04-03,https://shakespeareandco.princeton.edu/members/nimr/,Nimr,Nimr,,,1 month,31,1,,1933-03-01,,,,,,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-03-03,1933-03-09,https://shakespeareandco.princeton.edu/members/tony-mayer/,ThΓ©rΓ¨se Tony-Mayer,"Tony-Mayer, ThΓ©rΓ¨se",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/interpretations/,Interpretations,,,,"Unidentified. Likely Walter Lippmann's *Interpretations, 1931 β 1932,* edited by Allan Nevins.",Lending Library Card,"Sylvia Beach, ThΓ©rΓ¨se Tony-Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/27246b4c-7d99-4dca-b874-ab90bd542cfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2Fa0%2Fff%2F50a0ff19abc240c680a6a33baf060b76%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1933-03-03,1933-04-03,https://shakespeareandco.princeton.edu/members/coles-2/,Mrs. Coles,"Coles, Mrs.",25.00,,1 month,31,1,,1933-02-28,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-03-04,1933-04-06,https://shakespeareandco.princeton.edu/members/solano/,Solita Solano,"Solano, Solita",,,,,,,,,Returned,33,,,https://shakespeareandco.princeton.edu/books/woolf-flush-biography/,Flush: A Biography,,"Woolf, Virginia",1933,,Lending Library Card,"Sylvia Beach, Solita Solano Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ae91e41-ccc0-4df6-9150-63a893d8d633/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2F85%2Fb1%2F2385b11cb18c451b989e5b87c5b8eb82%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-03-04,1933-03-07,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/sitwell-facade/,FaΓ§ade,,"Sitwell, Edith",1922,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2F34%2Fa0%2Fcb34a06754bc48edade768f52aa21e25%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1933-03-05,1933-04-05,https://shakespeareandco.princeton.edu/members/levison/,Mrs. I. Levison,"Levison, Mrs. I.",20.00,,1 month,31,,,1933-03-02,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1933-03-06,1933-04-06,https://shakespeareandco.princeton.edu/members/poingt/,Poingt,Poingt,12.00,,1 month,31,1,Student,1933-03-06,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Purchase,1933-03-06,1933-03-06,https://shakespeareandco.princeton.edu/members/jolas-maria/,Maria McDonald Jolas / Miss Maria McDonald / Mrs. Eugene Jolas,"Jolas, Maria",,,,,,,,,,,20.00,FRF,https://shakespeareandco.princeton.edu/books/dopp-early-farmers/,The Early Farmers,,"Dopp, Katharine Elizabeth",1929,,Lending Library Card,"Sylvia Beach, Mrs Eugene Jolas Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/896eee0c-590b-4007-b96e-996face8c57a/manifest,https://iiif.princeton.edu/loris/figgy_prod/17%2F1a%2F8a%2F171a8a48c9fd48ce8fa0799b666cbf87%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-03-06,1933-03-19,https://shakespeareandco.princeton.edu/members/solano/,Solita Solano,"Solano, Solita",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/douglas-looking-back-autobiographical/,Looking Back: An Autobiographical Excursion,,"Douglas, Norman",1933,,Lending Library Card,"Sylvia Beach, Solita Solano Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ae91e41-ccc0-4df6-9150-63a893d8d633/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2F85%2Fb1%2F2385b11cb18c451b989e5b87c5b8eb82%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-03-06,1933-03-19,https://shakespeareandco.princeton.edu/members/solano/,Solita Solano,"Solano, Solita",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/yeats-brown-escape-book-escapes/,Escape: A Book of Escapes of All Kinds,,,1933,,Lending Library Card,"Sylvia Beach, Solita Solano Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ae91e41-ccc0-4df6-9150-63a893d8d633/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2F85%2Fb1%2F2385b11cb18c451b989e5b87c5b8eb82%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-03-06,1933-03-06,https://shakespeareandco.princeton.edu/members/coleman-2/,B. M. Coleman,"Coleman, B. M.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1933-03-06,1933-03-06,https://shakespeareandco.princeton.edu/members/hughes-2/,Hughes,Hughes,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-03-07,1933-03-11,https://shakespeareandco.princeton.edu/members/sze/,Mai-mai Sze / Miss Maimie Sze,"Sze, Mai-mai",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/lawrence-lovely-lady/,The Lovely Lady,,"Lawrence, D. H.",1932,,Lending Library Card,"Sylvia Beach, Maimie Sze Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ccb78f76-864b-41be-a9cc-55811b1bc004/manifest,https://iiif.princeton.edu/loris/figgy_prod/17%2F30%2F59%2F173059f7f01240b88a238894bd910ef5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-03-07,1933-03-07,https://shakespeareandco.princeton.edu/members/sutro/,Sutro,Sutro,,,,,,,,30.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1933-03-07,1933-06-07,https://shakespeareandco.princeton.edu/members/sze/,Mai-mai Sze / Miss Maimie Sze,"Sze, Mai-mai",,50.00,3 months,92,1,,1933-03-14,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Maimie Sze Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/ccb78f76-864b-41be-a9cc-55811b1bc004/manifest,;https://iiif.princeton.edu/loris/figgy_prod/17%2F30%2F59%2F173059f7f01240b88a238894bd910ef5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-03-07,1933-03-11,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/sugimoto-daughter-samurai/,"A Daughter of the Samurai: How a Daughter of Feudal Japan, Living Hundreds of Years in One Generation, Became a Modern American",,"Sugimoto, Etsuko",1925,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2F34%2Fa0%2Fcb34a06754bc48edade768f52aa21e25%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-03-08,1933-03-17,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/faulkner-sanctuary/,Sanctuary,,"Faulkner, William",1931,"Caresse Crosby sold a copy of the Black Sun Press edition of *Sanctuary* to Shakespeare and Company on Feb. 17, 1932.",Lending Library Card,"Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest,https://iiif.princeton.edu/loris/figgy_prod/31%2Fba%2F2d%2F31ba2d65ea7d4de790412954d08eaa1c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-03-08,1933-03-10,https://shakespeareandco.princeton.edu/members/leyris-pierre/,Pierre Leyris,"Leyris, Pierre",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/herman-melville/,Herman Melville,,,,Unidentified. By or about Herman Melville.,Lending Library Card,"Sylvia Beach, Pierre Leyris Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6c75c34b-de6f-4465-baee-8f7cd76f5c87/manifest,https://iiif-cloud.princeton.edu/iiif/2/59%2F6b%2F87%2F596b87dc20b44bfab1f842c6ded18105%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1933-03-08,1933-06-08,https://shakespeareandco.princeton.edu/members/sperry/,Mrs. Sperry,"Sperry, Mrs.",,,3 months,92,1,,1933-06-07,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Mrs Sperry Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/b214a6c1-6d56-48f7-a451-c5fa3f845e0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/77%2F93%2Fe5%2F7793e5a2db2141fb837b383ddf7ce6e4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1933-03-09,1933-03-23,https://shakespeareandco.princeton.edu/members/bowman-j-m/,J. M. Bowman,"Bowman, J. M.",16.00,50.00,2 weeks,14,,,1933-03-09,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1933-03-09,1933-03-09,https://shakespeareandco.princeton.edu/members/audry/,Colette Audry,"Audry, Colette",,,,,,,,30.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-03-09,1933-03-16,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/chambers-oxford-book-sixteenth/,The Oxford Book of Sixteenth Century Verse,,"Chambers, E. K.",1932,,Lending Library Card,"Sylvia Beach, Aline Prot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/15a376bb-405b-4488-b789-1559abbe3fb2/manifest,https://iiif-cloud.princeton.edu/iiif/2/3d%2F96%2F3a%2F3d963a0b51aa48cbbb2e5dba5f22c789%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-03-09,1933-03-16,https://shakespeareandco.princeton.edu/members/tony-mayer/,Thérèse Tony-Mayer,"Tony-Mayer, Thérèse",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/laski-democracy-crisis/,Democracy in Crisis,,"Laski, Harold Joseph",1933,,Lending Library Card,"Sylvia Beach, Thérèse Tony-Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/27246b4c-7d99-4dca-b874-ab90bd542cfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2Fa0%2Fff%2F50a0ff19abc240c680a6a33baf060b76%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-03-09,1933-03-16,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/wells-tono-bungay/,Tono-Bungay,,"Wells, H. G.",1909,,Lending Library Card,"Sylvia Beach, Aline Prot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/15a376bb-405b-4488-b789-1559abbe3fb2/manifest,https://iiif-cloud.princeton.edu/iiif/2/3d%2F96%2F3a%2F3d963a0b51aa48cbbb2e5dba5f22c789%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-03-10,1933-03-22,https://shakespeareandco.princeton.edu/members/leyris-pierre/,Pierre Leyris,"Leyris, Pierre",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/melville-pierre-ambiguities/,"Pierre; Or, the Ambiguities",,"Melville, Herman",1852,,Lending Library Card,"Sylvia Beach, Pierre Leyris Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6c75c34b-de6f-4465-baee-8f7cd76f5c87/manifest,https://iiif-cloud.princeton.edu/iiif/2/59%2F6b%2F87%2F596b87dc20b44bfab1f842c6ded18105%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1933-03-10,1933-04-10,https://shakespeareandco.princeton.edu/members/bullinger-yvonne/,Yvonne Bullinger,"Bullinger, Yvonne",12.00,30.00,1 month,31,1,Student,1933-03-10,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1933-03-11,1933-04-11,https://shakespeareandco.princeton.edu/members/armistead/,Armistead,Armistead,25.00,,1 month,31,,,1933-03-17,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1933-03-11,1933-04-15,https://shakespeareandco.princeton.edu/members/vogue-de/,Countess de VoguΓ©,"de VoguΓ©, Countess",12.00,50.00,5 weeks,35,2,,1933-04-08,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, La Comtesse de Vogue Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/4a9b4f25-ef3e-4b7d-9d28-cc9f2c070d68/manifest,;https://iiif-cloud.princeton.edu/iiif/2/2b%2Ffd%2F2e%2F2bfd2e2420b84fbba1b3e805c78012a7%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-03-11,1933-03-14,https://shakespeareandco.princeton.edu/members/sze/,Mai-mai Sze / Miss Maimie Sze,"Sze, Mai-mai",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/hemingway-death-afternoon/,Death in the Afternoon,,"Hemingway, Ernest",1932,,Lending Library Card,"Sylvia Beach, Maimie Sze Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ccb78f76-864b-41be-a9cc-55811b1bc004/manifest,https://iiif.princeton.edu/loris/figgy_prod/17%2F30%2F59%2F173059f7f01240b88a238894bd910ef5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-03-11,1933-03-15,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/hurst-back-street/,Back Street,,"Hurst, Fannie",1931,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/3c%2Fae%2F90%2F3cae90f9e6eb4bbb95bb9fe5328f52a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-03-11,1933-03-17,https://shakespeareandco.princeton.edu/members/engel/,FrΓ©dΓ©ric Engel,"Engel, FrΓ©dΓ©ric",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/wilde-importance-earnest-trivial/,The Importance of Being Earnest: A Trivial Comedy for Serious People,,"Wilde, Oscar",1899,,Lending Library Card,"Sylvia Beach, FrΓ©dΓ©ric Engel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6a49c133-b554-4182-bb70-0f83038e4b2d/manifest,https://iiif.princeton.edu/loris/figgy_prod/95%2F44%2Fe1%2F9544e16985f0476d9ab700ee6a6038dd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1933-03-11,1933-04-11,https://shakespeareandco.princeton.edu/members/filipovicz/,Filipovicz,Filipovicz,12.00,,1 month,31,,,1933-03-08,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1933-03-11,1933-04-11,https://shakespeareandco.princeton.edu/members/lescure/,Lescure,Lescure,12.00,,1 month,31,,,1933-03-10,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1933-03-11,1934-03-11,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",240.00,,1 year,365,,,1933-03-11,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,;https://iiif-cloud.princeton.edu/iiif/2/30%2F13%2F8a%2F30138a0365434ba8855aaeac38b08618%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1933-03-11,1933-06-11,https://shakespeareandco.princeton.edu/members/engel/,FrΓ©dΓ©ric Engel,"Engel, FrΓ©dΓ©ric",30.00,30.00,3 months,92,1,Student,1933-03-11,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, FrΓ©dΓ©ric Engel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/6a49c133-b554-4182-bb70-0f83038e4b2d/manifest,;https://iiif.princeton.edu/loris/figgy_prod/95%2F44%2Fe1%2F9544e16985f0476d9ab700ee6a6038dd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Separate Payment,1933-03-11,1933-03-11,https://shakespeareandco.princeton.edu/members/bowman-j-m/,J. M. Bowman,"Bowman, J. M.",,150.00,,,,,1933-03-11,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Crossed out,1933-03-11,,https://shakespeareandco.princeton.edu/members/engel/,FrΓ©dΓ©ric Engel,"Engel, FrΓ©dΓ©ric",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/wilde-poems-fairy-tales/,The Poems and Fairy Tales of Oscar Wilde,,"Wilde, Oscar",1920,,Lending Library Card,"Sylvia Beach, FrΓ©dΓ©ric Engel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6a49c133-b554-4182-bb70-0f83038e4b2d/manifest,https://iiif.princeton.edu/loris/figgy_prod/95%2F44%2Fe1%2F9544e16985f0476d9ab700ee6a6038dd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-03-13,1933-04-08,https://shakespeareandco.princeton.edu/members/franchot/,Stanislas Pascal Franchot,"Franchot, Stanislas Pascal",,,,,,,,,Returned,26,,,https://shakespeareandco.princeton.edu/books/history-american-people/,History of the American People,Vol. 1,,,Unidentified. Likely Woodrow Wilson's 5 volume *A History of the American People* (1902).,Lending Library Card,"Sylvia Beach, Stanislas Pascal Franchot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1d769df8-a15b-427e-a8aa-96a1e3ff030e/manifest,https://iiif.princeton.edu/loris/figgy_prod/7c%2F55%2Fd6%2F7c55d6d0ba9c410999ce6eaefa80429d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1933-03-13,,https://shakespeareandco.princeton.edu/members/launay/,Launay,Launay,,15.00,,,,Other,1933-03-13,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1933-03-14,1933-04-14,https://shakespeareandco.princeton.edu/members/genevrier/,Genevrier,Genevrier,12.00,30.00,1 month,31,1,,1933-03-14,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-03-14,1933-03-18,https://shakespeareandco.princeton.edu/members/sze/,Mai-mai Sze / Miss Maimie Sze,"Sze, Mai-mai",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/butts-armed-madness/,Armed with Madness,,"Butts, Mary",1928,,Lending Library Card,"Sylvia Beach, Maimie Sze Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ccb78f76-864b-41be-a9cc-55811b1bc004/manifest,https://iiif.princeton.edu/loris/figgy_prod/17%2F30%2F59%2F173059f7f01240b88a238894bd910ef5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-03-15,1933-03-22,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/beach-twentieth-century-novel/,The Twentieth Century Novel: Studies in Technique,,"Beach, Joseph",1932,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/3c%2Fae%2F90%2F3cae90f9e6eb4bbb95bb9fe5328f52a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-03-16,1933-04-06,https://shakespeareandco.princeton.edu/members/tony-mayer/,Thérèse Tony-Mayer,"Tony-Mayer, Thérèse",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/richardson-dawns-left-hand/,Dawn's Left Hand (Pilgrimage 10),,"Richardson, Dorothy M.",1931,,Lending Library Card,"Sylvia Beach, Thérèse Tony-Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/27246b4c-7d99-4dca-b874-ab90bd542cfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2Fa0%2Fff%2F50a0ff19abc240c680a6a33baf060b76%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-03-16,1933-03-16,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",,,,,,,,60.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-03-17,1933-04-01,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/lawrence-rainbow/,The Rainbow,,"Lawrence, D. H.",1915,,Lending Library Card,"Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest,https://iiif.princeton.edu/loris/figgy_prod/31%2Fba%2F2d%2F31ba2d65ea7d4de790412954d08eaa1c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-03-17,1933-03-17,https://shakespeareandco.princeton.edu/members/bowman-j-m/,J. M. Bowman,"Bowman, J. M.",,,,,,,,150.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-03-17,1933-03-22,https://shakespeareandco.princeton.edu/members/engel/,FrΓ©dΓ©ric Engel,"Engel, FrΓ©dΓ©ric",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/wilde-salome/,SalomΓ©,,"Wilde, Oscar",1891,,Lending Library Card,"Sylvia Beach, FrΓ©dΓ©ric Engel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6a49c133-b554-4182-bb70-0f83038e4b2d/manifest,https://iiif.princeton.edu/loris/figgy_prod/95%2F44%2Fe1%2F9544e16985f0476d9ab700ee6a6038dd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-03-18,1933-03-20,https://shakespeareandco.princeton.edu/members/sze/,Mai-mai Sze / Miss Maimie Sze,"Sze, Mai-mai",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/lewis-ann-vickers/,Ann Vickers,,"Lewis, Sinclair",1933,,Lending Library Card,"Sylvia Beach, Maimie Sze Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ccb78f76-864b-41be-a9cc-55811b1bc004/manifest,https://iiif.princeton.edu/loris/figgy_prod/17%2F30%2F59%2F173059f7f01240b88a238894bd910ef5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-03-18,1933-03-18,https://shakespeareandco.princeton.edu/members/tanner-3/,Tanner,Tanner,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-03-18,1933-03-20,https://shakespeareandco.princeton.edu/members/sze/,Mai-mai Sze / Miss Maimie Sze,"Sze, Mai-mai",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/wassermann-bula-matari-stanley/,"Bula Matari: Stanley, Conqueror of a Continent",,"Wassermann, Jakob",1933,,Lending Library Card,"Sylvia Beach, Maimie Sze Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ccb78f76-864b-41be-a9cc-55811b1bc004/manifest,https://iiif.princeton.edu/loris/figgy_prod/17%2F30%2F59%2F173059f7f01240b88a238894bd910ef5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-03-18,1933-03-18,https://shakespeareandco.princeton.edu/members/wrenn-pw/,P. W. Wrenn,"Wrenn, P. W.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Separate Payment,1933-03-18,1933-03-18,https://shakespeareandco.princeton.edu/members/bowman-j-m/,J. M. Bowman,"Bowman, J. M.",,100.00,,,,,1933-03-18,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-03-20,1933-03-25,https://shakespeareandco.princeton.edu/members/sze/,Mai-mai Sze / Miss Maimie Sze,"Sze, Mai-mai",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/crane-pocahontas/,Pocahontas,,"Crane, Nathalia",1930,,Lending Library Card,"Sylvia Beach, Maimie Sze Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ccb78f76-864b-41be-a9cc-55811b1bc004/manifest,https://iiif.princeton.edu/loris/figgy_prod/17%2F30%2F59%2F173059f7f01240b88a238894bd910ef5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1933-03-21,1933-04-21,https://shakespeareandco.princeton.edu/members/de-roos-elisabeth/;https://shakespeareandco.princeton.edu/members/perron-eddy/,Elisabeth de Roos / Mrs. du Perron;E. du Perron / Eddy du Perron,"de Roos, Elisabeth;du Perron, Eddy",25.00,,1 month,31,,,1933-03-21,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1933-03-21,1933-03-21,https://shakespeareandco.princeton.edu/members/villeneuve/,Villeneuve,Villeneuve,,,,,,,,30.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-03-22,1933-03-24,https://shakespeareandco.princeton.edu/members/leyris-pierre/,Pierre Leyris,"Leyris, Pierre",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/hemingway-death-afternoon/,Death in the Afternoon,,"Hemingway, Ernest",1932,,Lending Library Card,"Sylvia Beach, Pierre Leyris Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6c75c34b-de6f-4465-baee-8f7cd76f5c87/manifest,https://iiif-cloud.princeton.edu/iiif/2/59%2F6b%2F87%2F596b87dc20b44bfab1f842c6ded18105%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1933-03-22,1933-04-22,https://shakespeareandco.princeton.edu/members/metcalf/,Metcalf,Metcalf,40.00,,1 month,31,,,1933-03-18,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-03-22,1933-03-27,https://shakespeareandco.princeton.edu/members/engel/,FrΓ©dΓ©ric Engel,"Engel, FrΓ©dΓ©ric",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/life-oscar-wilde/,Life of Oscar Wilde,,,,Unidentified. Either Robert Harborough Sherard's [*The Life of Oscar Wilde*](https://shakespeareandco.princeton.edu/books/sherard-life-oscar-wilde/) (1906) or Frank Harris's [*Oscar Wilde: His Life and Confessions*](https://shakespeareandco.princeton.edu/books/harris-oscar-wilde-life/) (1916).,Lending Library Card,"Sylvia Beach, FrΓ©dΓ©ric Engel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6a49c133-b554-4182-bb70-0f83038e4b2d/manifest,https://iiif.princeton.edu/loris/figgy_prod/95%2F44%2Fe1%2F9544e16985f0476d9ab700ee6a6038dd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-03-22,1933-03-27,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/glasgow-sheltered-life/,The Sheltered Life,,"Glasgow, Ellen",1932,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/3c%2Fae%2F90%2F3cae90f9e6eb4bbb95bb9fe5328f52a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1933-03-24,1933-03-24,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,,,62.50,FRF,https://shakespeareandco.princeton.edu/books/macleish-conquistador/,Conquistador,,"MacLeish, Archibald",1933,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/0c%2F3b%2Ff9%2F0c3bf972534f427892366fdb0d1e498e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-03-24,1933-04-08,https://shakespeareandco.princeton.edu/members/franchot/,Stanislas Pascal Franchot,"Franchot, Stanislas Pascal",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/bryce-american-commonwealth/,The American Commonwealth,Vol. 1,"Bryce, James",1888,,Lending Library Card,"Sylvia Beach, Stanislas Pascal Franchot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1d769df8-a15b-427e-a8aa-96a1e3ff030e/manifest,https://iiif.princeton.edu/loris/figgy_prod/7c%2F55%2Fd6%2F7c55d6d0ba9c410999ce6eaefa80429d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1933-03-24,1933-04-07,https://shakespeareandco.princeton.edu/members/parsons/,Parsons,Parsons,6.00,,2 weeks,14,,Student,1933-03-24,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Purchase,1933-03-24,1933-03-24,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,,,3.00,FRF,https://shakespeareandco.princeton.edu/books/grigson-new-verse/,New Verse,,,,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/19%2Fd6%2F77%2F19d6775df9374e48a47bd74873380d58%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-03-24,1933-03-27,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/mcalmon-hasty-bunch/,A Hasty Bunch,,"McAlmon, Robert",1921,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/b3%2F88%2F85%2Fb38885c606214804a0b750495aa0797c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-03-24,1933-03-24,https://shakespeareandco.princeton.edu/members/parsons/,Parsons,Parsons,,,,,,,,30.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Purchase,1933-03-24,1933-03-24,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,,,6.00,FRF,https://shakespeareandco.princeton.edu/books/croly-new-republic/,The New Republic,,,,"Antoinette Bernheim's lending library card includes the following notation next to her borrow on March 1, 1939: 39/10/2. There is no issue of *The New Republic* on that date.",Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/19%2Fd6%2F77%2F19d6775df9374e48a47bd74873380d58%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-03-24,1933-04-03,https://shakespeareandco.princeton.edu/members/leyris-pierre/,Pierre Leyris,"Leyris, Pierre",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/viva/,Viva,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Pierre Leyris Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6c75c34b-de6f-4465-baee-8f7cd76f5c87/manifest,https://iiif-cloud.princeton.edu/iiif/2/59%2F6b%2F87%2F596b87dc20b44bfab1f842c6ded18105%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-03-25,1933-04-06,https://shakespeareandco.princeton.edu/members/sze/,Mai-mai Sze / Miss Maimie Sze,"Sze, Mai-mai",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/holtby-mandoa-mandoa/,"Mandoa, Mandoa!",,"Holtby, Winifred",1933,,Lending Library Card,"Sylvia Beach, Maimie Sze Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ccb78f76-864b-41be-a9cc-55811b1bc004/manifest,https://iiif.princeton.edu/loris/figgy_prod/17%2F30%2F59%2F173059f7f01240b88a238894bd910ef5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1933-03-25,,https://shakespeareandco.princeton.edu/members/rao/,Raja Rao,"Rao, Raja",,36.00,,,,,1933-03-25,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Purchase,1933-03-25,1933-03-25,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,,,10.00,FRF,https://shakespeareandco.princeton.edu/books/dickens-life-adventures-martin/,The Life and Adventures of Martin Chuzzlewit,,"Dickens, Charles",1844,,Lending Library Card,"Sylvia Beach, James Joyce Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/60df1b72-de14-4053-ac2b-b16671872306/manifest,https://iiif.princeton.edu/loris/figgy_prod/bc%2Fbc%2F66%2Fbcbc66ffbe6d414db058f3691cca7ef5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-03-27,1933-04-03,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/faulkner-light-august/,Light in August,,"Faulkner, William",1932,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/3c%2Fae%2F90%2F3cae90f9e6eb4bbb95bb9fe5328f52a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-03-27,1933-03-31,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/dos-passos-one-mans-initiation/,One Man's Initiation β 1917,,"Dos Passos, John",1917,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/b3%2F88%2F85%2Fb38885c606214804a0b750495aa0797c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-03-27,1933-04-11,https://shakespeareandco.princeton.edu/members/engel/,FrΓ©dΓ©ric Engel,"Engel, FrΓ©dΓ©ric",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/simonds-can-america-stay/,Can America Stay at Home?,,"Simonds, Frank H.",1932,,Lending Library Card,"Sylvia Beach, FrΓ©dΓ©ric Engel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6a49c133-b554-4182-bb70-0f83038e4b2d/manifest,https://iiif.princeton.edu/loris/figgy_prod/95%2F44%2Fe1%2F9544e16985f0476d9ab700ee6a6038dd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Separate Payment,1933-03-27,1933-03-27,https://shakespeareandco.princeton.edu/members/yellen/,Yellen,Yellen,,150.00,,,,,1933-03-27,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1933-03-27,1933-03-27,https://shakespeareandco.princeton.edu/members/launay/,Launay,Launay,,,,,,,,15.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1933-03-27,1933-03-27,https://shakespeareandco.princeton.edu/members/bowman-j-m/,J. M. Bowman,"Bowman, J. M.",,,,,,,,150.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-03-28,1933-03-31,https://shakespeareandco.princeton.edu/members/duff-donald/,Donald Duff,"Duff, Donald",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/ackerley-hindoo-holiday/,Hindoo Holiday,,"Ackerley, J. R.",1932,,Lending Library Card,"Sylvia Beach, Donald Duff Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c9f19d83-d075-4536-b1fd-fe2a86bdf975/manifest,https://iiif.princeton.edu/loris/figgy_prod/78%2Fdb%2Fe7%2F78dbe79a69114bcfaa5e54cf08f016e6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-03-28,1933-03-28,https://shakespeareandco.princeton.edu/members/rochemont-2/,Mme de Rochemont,"de Rochemont, Mme",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1933-03-28,1933-03-28,https://shakespeareandco.princeton.edu/members/sard/,Sard,Sard,,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-03-29,1933-04-01,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/omalley-peking-picnic/,Peking Picnic: A Novel,,"Bridge, Ann",1932,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/ce%2F3a%2F4d%2Fce3a4d52aa5246f0a0e70b81193ae8d1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Generic,1933-03-29,,https://shakespeareandco.princeton.edu/members/bird/,William Bird,"Bird, William",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/bird-practical-guide-french/,A Practical Guide to French Wines,,"Bird, William",1922,,Lending Library Card,"Sylvia Beach, William Bird Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/aa03b834-76da-49a8-8892-986cb1722aa0/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2F4f%2F7b%2Fcb4f7bd88a004b6c831eea87710dd9de%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-03-30,1933-03-30,https://shakespeareandco.princeton.edu/members/bauvoir/,Bauvoir,Bauvoir,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1933-03-30,1933-03-30,https://shakespeareandco.princeton.edu/members/poingt/,Poingt,Poingt,,,,,,,,30.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Purchase,1933-03-30,1933-03-30,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,,,36.00,FRF,https://shakespeareandco.princeton.edu/books/yeats-poems/,Poems,,"Yeats, William Butler",,Unidentified edition or editions.,Lending Library Card,"Sylvia Beach, James Joyce Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/60df1b72-de14-4053-ac2b-b16671872306/manifest,https://iiif.princeton.edu/loris/figgy_prod/bc%2Fbc%2F66%2Fbcbc66ffbe6d414db058f3691cca7ef5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1933-03-30,1933-03-30,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,,,27.00,FRF,https://shakespeareandco.princeton.edu/books/joyce-portrait-artist-young/,A Portrait of the Artist as a Young Man,,"Joyce, James",1916,,Lending Library Card,"Sylvia Beach, James Joyce Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/60df1b72-de14-4053-ac2b-b16671872306/manifest,https://iiif.princeton.edu/loris/figgy_prod/bc%2Fbc%2F66%2Fbcbc66ffbe6d414db058f3691cca7ef5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-03-31,1933-03-31,https://shakespeareandco.princeton.edu/members/yellen/,Yellen,Yellen,,,,,,,,150.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-03-31,1933-05-03,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,Returned,33,,,https://shakespeareandco.princeton.edu/books/freud-dream-psychology/,Dream Psychology: Psychoanalysis for Beginners,,"Freud, Sigmund",1920,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/b3%2F88%2F85%2Fb38885c606214804a0b750495aa0797c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-03-31,,https://shakespeareandco.princeton.edu/members/boscq-marie/,Marie Boscq / Bosq,"Boscq, Marie",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/strachey-eminent-victorians/,Eminent Victorians,,"Strachey, Giles Lytton",1918,,Lending Library Card,"Sylvia Beach, Marie Boscq Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/11480fae-3477-40c8-be7d-484c91023da7/manifest,https://iiif.princeton.edu/loris/figgy_prod/9b%2F07%2Fe2%2F9b07e236b5ce465a9fef365511bf55e8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-03-31,1933-04-03,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/mannin-venetian-blinds/,Venetian Blinds,,"Mannin, Ethel",1933,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/b3%2F88%2F85%2Fb38885c606214804a0b750495aa0797c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-03-31,1933-04-03,https://shakespeareandco.princeton.edu/members/duff-donald/,Donald Duff,"Duff, Donald",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/crane-pocahontas/,Pocahontas,,"Crane, Nathalia",1930,,Lending Library Card,"Sylvia Beach, Donald Duff Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c9f19d83-d075-4536-b1fd-fe2a86bdf975/manifest,https://iiif.princeton.edu/loris/figgy_prod/78%2Fdb%2Fe7%2F78dbe79a69114bcfaa5e54cf08f016e6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-04-01,1933-04-24,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/aldington-men-enemies/,All Men Are Enemies: A Romance,,"Aldington, Richard",1933,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/ce%2F3a%2F4d%2Fce3a4d52aa5246f0a0e70b81193ae8d1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-04-01,1933-04-12,https://shakespeareandco.princeton.edu/members/engel/,FrΓ©dΓ©ric Engel,"Engel, FrΓ©dΓ©ric",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/buck-good-earth/,The Good Earth,,"Buck, Pearl S.",1931,,Lending Library Card,"Sylvia Beach, FrΓ©dΓ©ric Engel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6a49c133-b554-4182-bb70-0f83038e4b2d/manifest,https://iiif.princeton.edu/loris/figgy_prod/95%2F44%2Fe1%2F9544e16985f0476d9ab700ee6a6038dd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-04-01,1933-04-07,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/lewis-babbitt/,Babbitt,,"Lewis, Sinclair",1922,,Lending Library Card,"Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest,https://iiif.princeton.edu/loris/figgy_prod/31%2Fba%2F2d%2F31ba2d65ea7d4de790412954d08eaa1c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1933-04-02,1933-05-02,https://shakespeareandco.princeton.edu/members/franchot/,Stanislas Pascal Franchot,"Franchot, Stanislas Pascal",12.00,,1 month,30,1,,1933-04-12,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Stanislas Pascal Franchot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/1d769df8-a15b-427e-a8aa-96a1e3ff030e/manifest,;https://iiif.princeton.edu/loris/figgy_prod/7c%2F55%2Fd6%2F7c55d6d0ba9c410999ce6eaefa80429d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1933-04-02,1933-05-02,https://shakespeareandco.princeton.edu/members/kohlberg/,Kohlberg,Kohlberg,12.00,,1 month,30,,,1933-03-27,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1933-04-03,1933-04-03,https://shakespeareandco.princeton.edu/members/leyris-pierre/,Pierre Leyris,"Leyris, Pierre",,,,,,,,70.00,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Pierre Leyris Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/6c75c34b-de6f-4465-baee-8f7cd76f5c87/manifest,;https://iiif-cloud.princeton.edu/iiif/2/59%2F6b%2F87%2F596b87dc20b44bfab1f842c6ded18105%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-04-03,1933-04-07,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/mannin-venetian-blinds/,Venetian Blinds,,"Mannin, Ethel",1933,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/3c%2Fae%2F90%2F3cae90f9e6eb4bbb95bb9fe5328f52a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-04-03,1933-05-03,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,Returned,30,,,https://shakespeareandco.princeton.edu/books/quennell-superficial-journey-tokyo/,A Superficial Journey Through Tokyo and Peking,,"Quennell, Peter",1932,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/b3%2F88%2F85%2Fb38885c606214804a0b750495aa0797c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1933-04-03,1933-04-03,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,,,12.00,FRF,https://shakespeareandco.princeton.edu/books/parker-laments-living/,Laments for the Living,,"Parker, Dorothy",1930,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/e0%2Fe7%2Fab%2Fe0e7abbc278c479ea60884b471709177%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-04-03,1933-04-07,https://shakespeareandco.princeton.edu/members/duff-donald/,Donald Duff,"Duff, Donald",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/austin-earth-horizon/,Earth Horizon,,"Austin, Mary Hunter",1932,,Lending Library Card,"Sylvia Beach, Donald Duff Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c9f19d83-d075-4536-b1fd-fe2a86bdf975/manifest,https://iiif.princeton.edu/loris/figgy_prod/78%2Fdb%2Fe7%2F78dbe79a69114bcfaa5e54cf08f016e6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-04-04,1933-04-04,https://shakespeareandco.princeton.edu/members/gatchell/,Gatchell,Gatchell,,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1933-04-04,1933-04-04,https://shakespeareandco.princeton.edu/members/guillois/,Guillois,Guillois,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1933-04-04,1933-06-04,https://shakespeareandco.princeton.edu/members/guillois/,Guillois,Guillois,24.00,30.00,2 months,61,1,Student,1933-04-04,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-04-06,1933-04-20,https://shakespeareandco.princeton.edu/members/tony-mayer/,Thérèse Tony-Mayer,"Tony-Mayer, Thérèse",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/hemingway-farewell-arms/,A Farewell to Arms,,"Hemingway, Ernest",1929,,Lending Library Card,"Sylvia Beach, Thérèse Tony-Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/27246b4c-7d99-4dca-b874-ab90bd542cfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2Fa0%2Fff%2F50a0ff19abc240c680a6a33baf060b76%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-04-06,1933-04-27,https://shakespeareandco.princeton.edu/members/sze/,Mai-mai Sze / Miss Maimie Sze,"Sze, Mai-mai",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/seabrook-jungle-ways/,Jungle Ways,,"Seabrook, William",1931,,Lending Library Card,"Sylvia Beach, Maimie Sze Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ccb78f76-864b-41be-a9cc-55811b1bc004/manifest,https://iiif.princeton.edu/loris/figgy_prod/17%2F30%2F59%2F173059f7f01240b88a238894bd910ef5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1933-04-07,1933-05-07,https://shakespeareandco.princeton.edu/members/levison/,Mrs. I. Levison,"Levison, Mrs. I.",20.00,,1 month,30,1,,1933-04-07,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-04-07,1933-05-08,https://shakespeareandco.princeton.edu/members/dalsace/,Mme Dalsace,"Dalsace, Mme",,,,,,,,,Returned,31,,,https://shakespeareandco.princeton.edu/books/richardson-dawns-left-hand/,Dawn's Left Hand (Pilgrimage 10),,"Richardson, Dorothy M.",1931,,Lending Library Card,"Sylvia Beach, Mme Dalsace Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd1b74e4-14f3-4828-998c-eb51b7df62c3/manifest,https://iiif.princeton.edu/loris/figgy_prod/76%2F3e%2F35%2F763e357532a14aec802ff30208c63814%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1933-04-07,1933-07-07,https://shakespeareandco.princeton.edu/members/dalsace/,Mme Dalsace,"Dalsace, Mme",50.00,,3 months,91,2,,1933-04-07,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Mme Dalsace Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/cd1b74e4-14f3-4828-998c-eb51b7df62c3/manifest,;https://iiif.princeton.edu/loris/figgy_prod/76%2F3e%2F35%2F763e357532a14aec802ff30208c63814%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1933-04-07,1933-07-07,https://shakespeareandco.princeton.edu/members/lazard/,Dr. Lazard,"Lazard, Dr.",100.00,,3 months,91,2,,1933-04-07,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-04-07,1933-04-10,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/luhan-lorenzo-taos/,Lorenzo in Taos,,"Luhan, Mabel Dodge",1932,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/3c%2Fae%2F90%2F3cae90f9e6eb4bbb95bb9fe5328f52a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-04-07,1933-04-24,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/lawrence-rainbow/,The Rainbow,,"Lawrence, D. H.",1915,,Lending Library Card,"Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest,https://iiif.princeton.edu/loris/figgy_prod/31%2Fba%2F2d%2F31ba2d65ea7d4de790412954d08eaa1c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-04-08,1933-04-19,https://shakespeareandco.princeton.edu/members/vogue-de/,Countess de VoguΓ©,"de VoguΓ©, Countess",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/coppard-clorinda-walks-heaven/,Clorinda Walks in Heaven,,"Coppard, A. E.",1922,,Lending Library Card,"Sylvia Beach, La Comtesse de Vogue Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4a9b4f25-ef3e-4b7d-9d28-cc9f2c070d68/manifest,https://iiif-cloud.princeton.edu/iiif/2/2b%2Ffd%2F2e%2F2bfd2e2420b84fbba1b3e805c78012a7%2Fintermediate_file/full/full/0/default.jpg
+Separate Payment,1933-04-08,1933-04-08,https://shakespeareandco.princeton.edu/members/fontron/,Fontron,Fontron,,50.00,,,,,1933-04-08,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-04-08,1933-05-16,https://shakespeareandco.princeton.edu/members/franchot/,Stanislas Pascal Franchot,"Franchot, Stanislas Pascal",,,,,,,,,Returned,38,,,https://shakespeareandco.princeton.edu/books/ladd-franklin-color-color-theories/,Color and Color Theories,,"Ladd-Franklin, Christine",1932,,Lending Library Card,"Sylvia Beach, Stanislas Pascal Franchot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1d769df8-a15b-427e-a8aa-96a1e3ff030e/manifest,https://iiif.princeton.edu/loris/figgy_prod/7c%2F55%2Fd6%2F7c55d6d0ba9c410999ce6eaefa80429d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-04-08,1933-04-15,https://shakespeareandco.princeton.edu/members/vogue-de/,Countess de VoguΓ©,"de VoguΓ©, Countess",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/wylie-venetian-glass-nephew/,The Venetian Glass Nephew,,"Wylie, Elinor",1925,,Lending Library Card,"Sylvia Beach, La Comtesse de Vogue Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4a9b4f25-ef3e-4b7d-9d28-cc9f2c070d68/manifest,https://iiif-cloud.princeton.edu/iiif/2/2b%2Ffd%2F2e%2F2bfd2e2420b84fbba1b3e805c78012a7%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1933-04-10,1933-05-10,https://shakespeareandco.princeton.edu/members/shayerovitch/,Janine Shayerovitch,"Shayerovitch, Janine",25.00,,1 month,30,1,,1933-04-10,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Janine Shayerovitch Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/0c52076e-a64c-4b22-86fd-80ca61562ca0/manifest,;https://iiif.princeton.edu/loris/figgy_prod/ae%2F8d%2F51%2Fae8d51fe7bbd4a03b017515e5d3d4284%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-04-10,1933-04-18,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/leavis-fiction-reading-public/,Fiction and the Reading Public,,"Leavis, Q. D.",1932,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/3c%2Fae%2F90%2F3cae90f9e6eb4bbb95bb9fe5328f52a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1933-04-11,1933-05-11,https://shakespeareandco.princeton.edu/members/armistead/,Armistead,Armistead,15.00,,1 month,30,,,1933-03-24,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1933-04-11,1933-04-11,https://shakespeareandco.princeton.edu/members/fontron/,Fontron,Fontron,,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1933-04-12,1933-04-12,https://shakespeareandco.princeton.edu/members/hayes-5/,Mrs. Hayes,"Hayes, Mrs.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-04-12,1933-04-21,https://shakespeareandco.princeton.edu/members/shayerovitch/,Janine Shayerovitch,"Shayerovitch, Janine",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/lawrence-letters-h-lawrence/,The Letters of D. H. Lawrence,,"Lawrence, D. H.",1932,,Lending Library Card,"Sylvia Beach, Janine Shayerovitch Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0c52076e-a64c-4b22-86fd-80ca61562ca0/manifest,https://iiif.princeton.edu/loris/figgy_prod/ae%2F8d%2F51%2Fae8d51fe7bbd4a03b017515e5d3d4284%2Fintermediate_file.jp2/full/full/0/default.jpg
+Separate Payment,1933-04-12,1933-04-12,https://shakespeareandco.princeton.edu/members/shayerovitch/,Janine Shayerovitch,"Shayerovitch, Janine",,50.00,,,,,1933-04-12,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-04-12,1933-04-26,https://shakespeareandco.princeton.edu/members/engel/,FrΓ©dΓ©ric Engel,"Engel, FrΓ©dΓ©ric",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/ford-return-yesterday/,To Return to Yesterday: Reminiscences 1894 βΒ 1914,,"Ford, Ford Madox",1931,,Lending Library Card,"Sylvia Beach, FrΓ©dΓ©ric Engel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6a49c133-b554-4182-bb70-0f83038e4b2d/manifest,https://iiif.princeton.edu/loris/figgy_prod/95%2F44%2Fe1%2F9544e16985f0476d9ab700ee6a6038dd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-04-12,1933-04-13,https://shakespeareandco.princeton.edu/members/engel/,FrΓ©dΓ©ric Engel,"Engel, FrΓ©dΓ©ric",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/anthony-ballyhoo/,Ballyhoo,"Vol. 4, no. 3, Apr 1933",,,,Lending Library Card,"Sylvia Beach, FrΓ©dΓ©ric Engel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6a49c133-b554-4182-bb70-0f83038e4b2d/manifest,https://iiif.princeton.edu/loris/figgy_prod/95%2F44%2Fe1%2F9544e16985f0476d9ab700ee6a6038dd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1933-04-13,1933-05-13,https://shakespeareandco.princeton.edu/members/kann/,Kann,Kann,25.00,30.00,1 month,30,1,Student,1933-04-13,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1933-04-14,1934-04-14,https://shakespeareandco.princeton.edu/members/boscq-marie/,Marie Boscq / Bosq,"Boscq, Marie",100.00,,1 year,365,1,,1933-05-15,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Marie Boscq Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/11480fae-3477-40c8-be7d-484c91023da7/manifest,;https://iiif.princeton.edu/loris/figgy_prod/9b%2F07%2Fe2%2F9b07e236b5ce465a9fef365511bf55e8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1933-04-14,1933-04-14,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,,,62.50,FRF,https://shakespeareandco.princeton.edu/books/macleish-conquistador/,Conquistador,,"MacLeish, Archibald",1933,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/0c%2F3b%2Ff9%2F0c3bf972534f427892366fdb0d1e498e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1933-04-14,1933-05-14,https://shakespeareandco.princeton.edu/members/fitzgerald-9/,Fitzgerald,Fitzgerald,40.00,,1 month,30,2,,1933-04-26,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1933-04-15,1933-05-15,https://shakespeareandco.princeton.edu/members/vogue-de/,Countess de VoguΓ©,"de VoguΓ©, Countess",40.00,,1 month,30,2,,1933-04-19,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, La Comtesse de Vogue Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/4a9b4f25-ef3e-4b7d-9d28-cc9f2c070d68/manifest,;https://iiif-cloud.princeton.edu/iiif/2/02%2Ff7%2Fa3%2F02f7a35ff53d487ba3f79efaed7fe14e%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1933-04-15,1933-04-15,https://shakespeareandco.princeton.edu/members/duff-donald/,Donald Duff,"Duff, Donald",,,,,,,,,,,20.00,FRF,https://shakespeareandco.princeton.edu/books/lawrence-plumed-serpent/,The Plumed Serpent,,"Lawrence, D. H.",1926,,Lending Library Card,"Sylvia Beach, Donald Duff Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c9f19d83-d075-4536-b1fd-fe2a86bdf975/manifest,https://iiif.princeton.edu/loris/figgy_prod/af%2Ffc%2Fe7%2Faffce74530c34da7a547365bad376892%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1933-04-17,1933-05-17,https://shakespeareandco.princeton.edu/members/olin/,Olin,Olin,12.00,,1 month,30,1,Student,1933-04-15,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1933-04-18,1933-06-18,https://shakespeareandco.princeton.edu/members/brossay-anne-du/,Anne du Brossay,"du Brossay, Anne",20.00,30.00,2 months,61,1,,1933-04-18,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1933-04-18,1933-04-18,https://shakespeareandco.princeton.edu/members/briffault/,Robert Briffault,"Briffault, Robert",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1933-04-18,1933-04-21,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/powys-white-paternoster-stories/,The White Paternoster and Other Stories,,"Powys, Theodore Francis",1930,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/3c%2Fae%2F90%2F3cae90f9e6eb4bbb95bb9fe5328f52a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-04-19,1933-04-27,https://shakespeareandco.princeton.edu/members/vogue-de/,Countess de VoguΓ©,"de VoguΓ©, Countess",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/donnelly-mustard-seed-pungent/,Mustard Seed: Some Pungent Paragraphs,,"Donnelly, Francis P.",1914,,Lending Library Card,"Sylvia Beach, La Comtesse de Vogue Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4a9b4f25-ef3e-4b7d-9d28-cc9f2c070d68/manifest,https://iiif-cloud.princeton.edu/iiif/2/02%2Ff7%2Fa3%2F02f7a35ff53d487ba3f79efaed7fe14e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-04-19,1933-04-20,https://shakespeareandco.princeton.edu/members/vogue-de/,Countess de VoguΓ©,"de VoguΓ©, Countess",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/thompson-hounds-spring/,The Hounds of Spring,,"Thompson, Sylvia",1926,,Lending Library Card,"Sylvia Beach, La Comtesse de Vogue Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4a9b4f25-ef3e-4b7d-9d28-cc9f2c070d68/manifest,https://iiif-cloud.princeton.edu/iiif/2/02%2Ff7%2Fa3%2F02f7a35ff53d487ba3f79efaed7fe14e%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1933-04-20,1933-05-20,https://shakespeareandco.princeton.edu/members/metcalf/,Metcalf,Metcalf,25.00,,1 month,30,1,,1933-04-20,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1933-04-20,1933-06-20,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",24.00,,2 months,61,1,,1933-04-24,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest,;https://iiif.princeton.edu/loris/figgy_prod/31%2Fba%2F2d%2F31ba2d65ea7d4de790412954d08eaa1c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-04-20,1933-04-20,https://shakespeareandco.princeton.edu/members/metcalf/,Metcalf,Metcalf,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1933-04-21,1933-06-21,https://shakespeareandco.princeton.edu/members/antheil-elizabeth-boske/,BΓΆske (Markus) Antheil / Mrs. Antheil,"Antheil, BΓΆske",20.00,,2 months,61,1,,1933-04-21,,,,,,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-04-21,1933-04-24,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/lewisohn-people/,This People,,"Lewisohn, Ludwig",1933,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/3c%2Fae%2F90%2F3cae90f9e6eb4bbb95bb9fe5328f52a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-04-21,1933-04-26,https://shakespeareandco.princeton.edu/members/shayerovitch/,Janine Shayerovitch,"Shayerovitch, Janine",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/lawrence-sons-lovers/,Sons and Lovers,,"Lawrence, D. H.",1913,,Lending Library Card,"Sylvia Beach, Janine Shayerovitch Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0c52076e-a64c-4b22-86fd-80ca61562ca0/manifest,https://iiif.princeton.edu/loris/figgy_prod/ae%2F8d%2F51%2Fae8d51fe7bbd4a03b017515e5d3d4284%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1933-04-21,1933-05-21,https://shakespeareandco.princeton.edu/members/perdereau/,Perdereau,Perdereau,25.00,,1 month,30,1,,1933-04-21,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1933-04-21,1933-07-21,https://shakespeareandco.princeton.edu/members/sanderson/,Sanderson,Sanderson,65.00,50.00,3 months,91,1,,1933-04-21,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1933-04-21,1933-04-21,https://shakespeareandco.princeton.edu/members/munro-meeda/,"Mary Franklin ""Meeda"" (Child) Munro","Monro, Meeda",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1933-04-21,1933-05-21,https://shakespeareandco.princeton.edu/members/lacoste/,Lacoste,Lacoste,12.00,30.00,1 month,30,1,Student,1933-04-21,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1933-04-22,1933-04-22,https://shakespeareandco.princeton.edu/members/filipovicz/,Filipovicz,Filipovicz,,,,,,,,30.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1933-04-22,1933-04-22,https://shakespeareandco.princeton.edu/members/yellowlees/,Yellowlees,Yellowlees,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-04-24,1933-05-04,https://shakespeareandco.princeton.edu/members/plummer-dorothy/,Dorothy Plummer,"Plummer, Dorothy",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/lawrence-rainbow/,The Rainbow,,"Lawrence, D. H.",1915,,Lending Library Card,"Sylvia Beach, Dorothy Plummer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5f53ce0-8ea6-4d1f-b36b-f6e5321bab4c/manifest,https://iiif.princeton.edu/loris/figgy_prod/a1%2F20%2F86%2Fa120869f9753422d95807c64cfe30599%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-04-24,1933-05-09,https://shakespeareandco.princeton.edu/members/bremond-helene/,Helene BrΓ©mond,"BrΓ©mond, Helene",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/lawrence-lovely-lady/,The Lovely Lady,,"Lawrence, D. H.",1932,,Lending Library Card,"Sylvia Beach, Helene Bremond Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton",https://figgy.princeton.edu/concern/scanned_resources/e80e6684-f19c-4875-9d2c-0c07f75a2634/manifest,https://iiif.princeton.edu/loris/figgy_prod/ce%2F3a%2F4d%2Fce3a4d52aa5246f0a0e70b81193ae8d1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-04-24,1933-05-04,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/maugham-narrow-corner/,The Narrow Corner,,"Maugham, W. Somerset",1932,,Lending Library Card,"Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest,https://iiif.princeton.edu/loris/figgy_prod/31%2Fba%2F2d%2F31ba2d65ea7d4de790412954d08eaa1c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1933-04-24,,https://shakespeareandco.princeton.edu/members/vulliet/,Vulliet,Vulliet,,30.00,,,,,1933-04-24,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-04-25,,https://shakespeareandco.princeton.edu/members/dalsace/,Mme Dalsace,"Dalsace, Mme",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/powys-dorothy-richardson/,Dorothy M. Richardson,,"Powys, John Cowper",1931,,Lending Library Card,"Sylvia Beach, Mme Dalsace Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd1b74e4-14f3-4828-998c-eb51b7df62c3/manifest,https://iiif.princeton.edu/loris/figgy_prod/76%2F3e%2F35%2F763e357532a14aec802ff30208c63814%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1933-04-25,1933-04-25,https://shakespeareandco.princeton.edu/members/joyce-stanislaus/,Stanislaus Joyce,"Joyce, Stanislaus",,,,,,,,,,,200.00,FRF,https://shakespeareandco.princeton.edu/books/hughes-joyce-book/,The Joyce Book,,,1933,,Lending Library Card,"Sylvia Beach, Stanislaus Joyce Lending Library Card, Box 43, Sylvia Beach Papers, Department of Rare Books and Special Collections, Princeton University",https://figgy.princeton.edu/concern/scanned_resources/8b65bc91-1dac-404e-a3e0-07945cd6c177/manifest,https://iiif.princeton.edu/loris/figgy_prod/d5%2F6c%2F01%2Fd56c01c002124549b6f5d5af3bcf1a08%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-04-25,1933-04-26,https://shakespeareandco.princeton.edu/members/duff-donald/,Donald Duff,"Duff, Donald",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/lowry-ultramarine/,Ultramarine,,"Lowry, Malcolm",1933,,Lending Library Card,"Sylvia Beach, Donald Duff Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c9f19d83-d075-4536-b1fd-fe2a86bdf975/manifest,https://iiif.princeton.edu/loris/figgy_prod/af%2Ffc%2Fe7%2Faffce74530c34da7a547365bad376892%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-04-25,,https://shakespeareandco.princeton.edu/members/dalsace/,Mme Dalsace,"Dalsace, Mme",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/murry-adelphi/,The Adelphi,"Vol. 1, no. 11, Apr 1924",,,,Lending Library Card,"Sylvia Beach, Mme Dalsace Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd1b74e4-14f3-4828-998c-eb51b7df62c3/manifest,https://iiif.princeton.edu/loris/figgy_prod/76%2F3e%2F35%2F763e357532a14aec802ff30208c63814%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1933-04-25,1933-05-25,https://shakespeareandco.princeton.edu/members/bullinger-yvonne/,Yvonne Bullinger,"Bullinger, Yvonne",12.00,,1 month,30,1,,1933-04-25,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-04-26,1933-05-09,https://shakespeareandco.princeton.edu/members/engel/,FrΓ©dΓ©ric Engel,"Engel, FrΓ©dΓ©ric",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/lewisohn-case-mr-crump/,The Case of Mr. Crump,,"Lewisohn, Ludwig",1926,,Lending Library Card,"Sylvia Beach, FrΓ©dΓ©ric Engel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6a49c133-b554-4182-bb70-0f83038e4b2d/manifest,https://iiif.princeton.edu/loris/figgy_prod/95%2F44%2Fe1%2F9544e16985f0476d9ab700ee6a6038dd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-04-27,1933-04-27,https://shakespeareandco.princeton.edu/members/sze/,Mai-mai Sze / Miss Maimie Sze,"Sze, Mai-mai",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/lawrence-lady-chatterleys-lover/,Lady Chatterley's Lover,,"Lawrence, D. H.",1928,,Lending Library Card,"Sylvia Beach, Maimie Sze Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ccb78f76-864b-41be-a9cc-55811b1bc004/manifest,https://iiif.princeton.edu/loris/figgy_prod/17%2F30%2F59%2F173059f7f01240b88a238894bd910ef5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-04-27,1933-05-01,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/collins-facts-fiction/,The Facts of Fiction,,"Collins, Norman",1932,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/3c%2Fae%2F90%2F3cae90f9e6eb4bbb95bb9fe5328f52a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-04-27,1933-05-02,https://shakespeareandco.princeton.edu/members/sze/,Mai-mai Sze / Miss Maimie Sze,"Sze, Mai-mai",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/buck-case-foreign-missions/,Is There a Case for Foreign Missions?,,"Buck, Pearl S.",1932,,Lending Library Card,"Sylvia Beach, Maimie Sze Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ccb78f76-864b-41be-a9cc-55811b1bc004/manifest,https://iiif.princeton.edu/loris/figgy_prod/17%2F30%2F59%2F173059f7f01240b88a238894bd910ef5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-04-27,1933-05-05,https://shakespeareandco.princeton.edu/members/vogue-de/,Countess de VoguΓ©,"de VoguΓ©, Countess",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/powys-mr-taskers-gods/,Mr. Tasker's Gods,,"Powys, Theodore Francis",1925,,Lending Library Card,"Sylvia Beach, La Comtesse de Vogue Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4a9b4f25-ef3e-4b7d-9d28-cc9f2c070d68/manifest,https://iiif-cloud.princeton.edu/iiif/2/02%2Ff7%2Fa3%2F02f7a35ff53d487ba3f79efaed7fe14e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-04-27,1933-05-15,https://shakespeareandco.princeton.edu/members/vogue-de/,Countess de VoguΓ©,"de VoguΓ©, Countess",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/bierce-can-things/,Can Such Things Be?,,"Bierce, Ambrose Gwinnett",1893,,Lending Library Card,"Sylvia Beach, La Comtesse de Vogue Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4a9b4f25-ef3e-4b7d-9d28-cc9f2c070d68/manifest,https://iiif-cloud.princeton.edu/iiif/2/02%2Ff7%2Fa3%2F02f7a35ff53d487ba3f79efaed7fe14e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-04-28,1933-05-11,https://shakespeareandco.princeton.edu/members/bidoire-boulenger/,Miss Boulenger / Mme Bidoire,"Bidoire, Mme",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/williamson-gold-falcon-haggard/,The Gold Falcon or the Haggard of Love,,"Williamson, Henry",1933,,Lending Library Card;Lending Library Card,"Sylvia Beach, Boulenger Bidoire Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Boulenger Bidoire Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7f3ef4f0-6ce0-43d1-b96a-1328f891536c/manifest;https://figgy.princeton.edu/concern/scanned_resources/7f3ef4f0-6ce0-43d1-b96a-1328f891536c/manifest,https://iiif-cloud.princeton.edu/iiif/2/9e%2F43%2F49%2F9e43495bc0ee4fa2b0fd028ced999c26%2Fintermediate_file/full/full/0/default.jpg;https://iiif-cloud.princeton.edu/iiif/2/06%2Fe5%2F48%2F06e548926d5b4ecb8353ccb4162827fe%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-04-28,,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/de-kruif-men-death/,Men against Death,,"de Kruif, Paul",1932,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/62%2F77%2F6f%2F62776f401c1744f3b61c996bf9ac6f1c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1933-04-28,1933-07-28,https://shakespeareandco.princeton.edu/members/bidoire-boulenger/,Miss Boulenger / Mme Bidoire,"Bidoire, Mme",30.00,,3 months,91,1,,1933-04-28,,,,,FRF,,,,,,,Logbook;Lending Library Card;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Boulenger Bidoire Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Boulenger Bidoire Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/7f3ef4f0-6ce0-43d1-b96a-1328f891536c/manifest;https://figgy.princeton.edu/concern/scanned_resources/7f3ef4f0-6ce0-43d1-b96a-1328f891536c/manifest,;https://iiif-cloud.princeton.edu/iiif/2/9e%2F43%2F49%2F9e43495bc0ee4fa2b0fd028ced999c26%2Fintermediate_file/full/full/0/default.jpg;https://iiif-cloud.princeton.edu/iiif/2/06%2Fe5%2F48%2F06e548926d5b4ecb8353ccb4162827fe%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1933-04-28,1933-04-28,https://shakespeareandco.princeton.edu/members/bagger-2/,Bagger,Bagger,,,,,,,,30.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1933-04-29,1933-04-29,https://shakespeareandco.princeton.edu/members/horschitz-horst/,Annemarie (Rosenthal) Horschitz-Horst,"Horschitz-Horst, Annemarie",,,,,,,,60.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-04-29,1933-05-10,https://shakespeareandco.princeton.edu/members/shayerovitch/,Janine Shayerovitch,"Shayerovitch, Janine",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/lawrence-plumed-serpent/,The Plumed Serpent,,"Lawrence, D. H.",1926,,Lending Library Card,"Sylvia Beach, Janine Shayerovitch Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0c52076e-a64c-4b22-86fd-80ca61562ca0/manifest,https://iiif.princeton.edu/loris/figgy_prod/ae%2F8d%2F51%2Fae8d51fe7bbd4a03b017515e5d3d4284%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-05-01,1933-05-08,https://shakespeareandco.princeton.edu/members/boscq-marie/,Marie Boscq / Bosq,"Boscq, Marie",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/dane-regiment-women/,Regiment of Women,,"Dane, Clemence",1917,,Lending Library Card,"Sylvia Beach, Marie Boscq Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/11480fae-3477-40c8-be7d-484c91023da7/manifest,https://iiif.princeton.edu/loris/figgy_prod/9b%2F07%2Fe2%2F9b07e236b5ce465a9fef365511bf55e8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1933-05-01,1933-06-01,https://shakespeareandco.princeton.edu/members/ralle/,Ralle,Ralle,25.00,,1 month,31,1,,1933-05-01,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Purchase,1933-05-01,1933-05-01,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,,,4.50,FRF,https://shakespeareandco.princeton.edu/books/joyce-anna-livia-plurabelle/,Anna Livia Plurabelle,,"Joyce, James",1930,"Likely the Faber & Faber edition of *Anna Livia Plurabelle: Fragment of Work in Progress* (1930). Jacques Mercanton, however, likely purchases the Crosby Gaige edition of [*Anna Livia Plurabelle*](http://www.riverrun.org.uk/jj/ALP.pdf) (1928).",Lending Library Card,"Sylvia Beach, James Joyce Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/60df1b72-de14-4053-ac2b-b16671872306/manifest,https://iiif.princeton.edu/loris/figgy_prod/bc%2Fbc%2F66%2Fbcbc66ffbe6d414db058f3691cca7ef5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-05-01,1933-05-08,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/forster-room-view/,A Room with a View,,"Forster, E. M.",,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/3c%2Fae%2F90%2F3cae90f9e6eb4bbb95bb9fe5328f52a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1933-05-01,1933-06-01,https://shakespeareandco.princeton.edu/members/tuttle-stephen-d/,Stephen D. Tuttle,"Tuttle, Stephen D.",12.00,30.00,1 month,31,1,,1933-05-01,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Stephen D. Tuttle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/f1653918-3f2b-4e88-bd27-4e3c4d83a47d/manifest,;https://iiif-cloud.princeton.edu/iiif/2/22%2Fc7%2Fad%2F22c7ada1283f41688dda37e8f338af51%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-05-01,1933-05-06,https://shakespeareandco.princeton.edu/members/tuttle-stephen-d/,Stephen D. Tuttle,"Tuttle, Stephen D.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/sitwell-collected-poems-edith/,The Collected Poems of Edith Sitwell,,"Sitwell, Edith",1930,,Lending Library Card,"Sylvia Beach, Stephen D. Tuttle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f1653918-3f2b-4e88-bd27-4e3c4d83a47d/manifest,https://iiif-cloud.princeton.edu/iiif/2/22%2Fc7%2Fad%2F22c7ada1283f41688dda37e8f338af51%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1933-05-02,1933-06-02,https://shakespeareandco.princeton.edu/members/franchot/,Stanislas Pascal Franchot,"Franchot, Stanislas Pascal",12.00,,1 month,31,1,,1933-05-12,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Stanislas Pascal Franchot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/1d769df8-a15b-427e-a8aa-96a1e3ff030e/manifest,;https://iiif.princeton.edu/loris/figgy_prod/7c%2F55%2Fd6%2F7c55d6d0ba9c410999ce6eaefa80429d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-05-02,1933-05-12,https://shakespeareandco.princeton.edu/members/sze/,Mai-mai Sze / Miss Maimie Sze,"Sze, Mai-mai",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/mackworth-world/,This Was My World,,"Mackworth, Margaret Haig Thomas, Viscountess Rhondda",1933,,Lending Library Card,"Sylvia Beach, Maimie Sze Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ccb78f76-864b-41be-a9cc-55811b1bc004/manifest,https://iiif.princeton.edu/loris/figgy_prod/17%2F30%2F59%2F173059f7f01240b88a238894bd910ef5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1933-05-02,1933-06-02,https://shakespeareandco.princeton.edu/members/kohlberg/,Kohlberg,Kohlberg,12.00,,1 month,31,,,1933-04-24,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-05-03,1933-05-22,https://shakespeareandco.princeton.edu/members/tony-mayer/,Thérèse Tony-Mayer,"Tony-Mayer, Thérèse",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/morgan-fountain/,The Fountain,,"Morgan, Charles",1932,,Lending Library Card,"Sylvia Beach, Thérèse Tony-Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/27246b4c-7d99-4dca-b874-ab90bd542cfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2Fa0%2Fff%2F50a0ff19abc240c680a6a33baf060b76%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1933-05-03,1933-05-03,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,,,50.00,FRF,https://shakespeareandco.princeton.edu/books/daniel-boone/,Daniel Boone,,,,"Unidentified. Reuben Gold Thwaites's *Daniel Boone* (1902), Steward Edward White's *Daniel Boone: Wilderness Scout* (1923), or Lucile Gulliver's *Daniel Boone* (1928), etc.",Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/0c%2F3b%2Ff9%2F0c3bf972534f427892366fdb0d1e498e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1933-05-03,1933-08-03,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",65.00,,3 months,92,1,,1933-05-03,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,;https://iiif.princeton.edu/loris/figgy_prod/b3%2F88%2F85%2Fb38885c606214804a0b750495aa0797c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1933-05-03,1933-06-03,https://shakespeareandco.princeton.edu/members/pfeiffer/,Pfeiffer,Pfeiffer,40.00,,1 month,31,2,,1933-04-26,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-05-03,1933-05-15,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/trotsky-history-russian-revolution/,History of the Russian Revolution,Vol. 1 The Overthrow of Tzarism,"Trotsky, Leon",1932,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/b3%2F88%2F85%2Fb38885c606214804a0b750495aa0797c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1933-05-04,1933-05-18,https://shakespeareandco.princeton.edu/members/allespach/,Jean Allespach,"Allespach, Jean",15.00,,2 weeks,14,,,1933-05-04,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-05-04,1933-05-10,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/pirandello-three-plays/,Three Plays,,"Pirandello, Luigi",1922,,Lending Library Card,"Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest,https://iiif.princeton.edu/loris/figgy_prod/31%2Fba%2F2d%2F31ba2d65ea7d4de790412954d08eaa1c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-05-05,1933-05-15,https://shakespeareandco.princeton.edu/members/vogue-de/,Countess de VoguΓ©,"de VoguΓ©, Countess",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/oflaherty-spring-sowing/,Spring Sowing,,"O'Flaherty, Liam",1924,,Lending Library Card,"Sylvia Beach, La Comtesse de Vogue Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4a9b4f25-ef3e-4b7d-9d28-cc9f2c070d68/manifest,https://iiif-cloud.princeton.edu/iiif/2/02%2Ff7%2Fa3%2F02f7a35ff53d487ba3f79efaed7fe14e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-05-06,1933-05-13,https://shakespeareandco.princeton.edu/members/tuttle-stephen-d/,Stephen D. Tuttle,"Tuttle, Stephen D.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/dos-passos-three-soldiers/,Three Soldiers,,"Dos Passos, John",1921,,Lending Library Card,"Sylvia Beach, Stephen D. Tuttle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f1653918-3f2b-4e88-bd27-4e3c4d83a47d/manifest,https://iiif-cloud.princeton.edu/iiif/2/22%2Fc7%2Fad%2F22c7ada1283f41688dda37e8f338af51%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-05-06,1933-05-15,https://shakespeareandco.princeton.edu/members/plummer-dorothy/,Dorothy Plummer,"Plummer, Dorothy",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/hemingway-death-afternoon/,Death in the Afternoon,,"Hemingway, Ernest",1932,,Lending Library Card,"Sylvia Beach, Dorothy Plummer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5f53ce0-8ea6-4d1f-b36b-f6e5321bab4c/manifest,https://iiif.princeton.edu/loris/figgy_prod/a1%2F20%2F86%2Fa120869f9753422d95807c64cfe30599%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-05-08,1933-05-16,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/selected-essays/,Selected Essays,,,,"Unidentified. Likely T. S. Eliot's [*Selected Essays, 1917β1932*](https://shakespeareandco.princeton.edu/books/eliot-selected-essays-1917/) (1932).",Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/3c%2Fae%2F90%2F3cae90f9e6eb4bbb95bb9fe5328f52a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1933-05-08,1933-05-08,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,,,14.00,FRF,https://shakespeareandco.princeton.edu/books/chaucer-complete-works-geoffrey-chaucer-2/,The Complete Works of Geoffrey Chaucer,,"Chaucer, Geoffrey",1925,From the Oxford Standard Authors series.,Lending Library Card,"Sylvia Beach, James Joyce Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/60df1b72-de14-4053-ac2b-b16671872306/manifest,https://iiif.princeton.edu/loris/figgy_prod/bc%2Fbc%2F66%2Fbcbc66ffbe6d414db058f3691cca7ef5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-05-08,1933-05-15,https://shakespeareandco.princeton.edu/members/boscq-marie/,Marie Boscq / Bosq,"Boscq, Marie",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/strachey-elizabeth-essex-tragic/,Elizabeth and Essex: A Tragic History,,"Strachey, Giles Lytton",1928,,Lending Library Card,"Sylvia Beach, Marie Boscq Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/11480fae-3477-40c8-be7d-484c91023da7/manifest,https://iiif.princeton.edu/loris/figgy_prod/9b%2F07%2Fe2%2F9b07e236b5ce465a9fef365511bf55e8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1933-05-08,,https://shakespeareandco.princeton.edu/members/viguie/,ViguiΓ©,ViguiΓ©,,40.00,,,,Day By Day,1933-05-08,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1933-05-09,1933-05-09,https://shakespeareandco.princeton.edu/members/bruce-patrick-henry/,Patrick Henry Bruce / P. H. Bruce,"Bruce, Patrick Henry",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1933-05-10,1933-05-15,https://shakespeareandco.princeton.edu/members/shayerovitch/,Janine Shayerovitch,"Shayerovitch, Janine",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/maugham-narrow-corner/,The Narrow Corner,,"Maugham, W. Somerset",1932,,Lending Library Card,"Sylvia Beach, Janine Shayerovitch Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0c52076e-a64c-4b22-86fd-80ca61562ca0/manifest,https://iiif.princeton.edu/loris/figgy_prod/ae%2F8d%2F51%2Fae8d51fe7bbd4a03b017515e5d3d4284%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-05-10,1933-05-17,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/willis-brontes/,The BrontΓ«s,,"Willis, Irene Cooper",1933,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/29%2Fa8%2F35%2F29a835271ffd4913977d6dfcc4d5747f%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-05-10,1933-05-17,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/mannin-venetian-blinds/,Venetian Blinds,,"Mannin, Ethel",1933,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/29%2Fa8%2F35%2F29a835271ffd4913977d6dfcc4d5747f%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-05-10,1933-05-19,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/faulkner-light-august/,Light in August,,"Faulkner, William",1932,,Lending Library Card,"Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest,https://iiif.princeton.edu/loris/figgy_prod/31%2Fba%2F2d%2F31ba2d65ea7d4de790412954d08eaa1c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-05-11,1933-05-26,https://shakespeareandco.princeton.edu/members/perkins/,Mrs. Perkins,"Perkins, Mrs.",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/adams-march-democracy-history/,March of Democracy: A History of the United States,,"Adams, James Truslow",1933,,Lending Library Card,"Sylvia Beach, Perkins Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c711b33a-cb94-478e-8090-0a62744bb3e3/manifest,https://iiif.princeton.edu/loris/figgy_prod/f1%2F08%2Fc6%2Ff108c6dd36e64848b0483f72d1a49844%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-05-11,1933-05-11,https://shakespeareandco.princeton.edu/members/vulliet/,Vulliet,Vulliet,,,,,,,,30.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1933-05-11,,https://shakespeareandco.princeton.edu/members/friedmann/,Friedmann,Friedmann,,28.00,,,,Day By Day,1933-05-11,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-05-11,1933-05-13,https://shakespeareandco.princeton.edu/members/bidoire-boulenger/,Miss Boulenger / Mme Bidoire,"Bidoire, Mme",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/lawrence-lovely-lady/,The Lovely Lady,,"Lawrence, D. H.",1932,,Lending Library Card;Lending Library Card,"Sylvia Beach, Boulenger Bidoire Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Boulenger Bidoire Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7f3ef4f0-6ce0-43d1-b96a-1328f891536c/manifest;https://figgy.princeton.edu/concern/scanned_resources/7f3ef4f0-6ce0-43d1-b96a-1328f891536c/manifest,https://iiif-cloud.princeton.edu/iiif/2/9e%2F43%2F49%2F9e43495bc0ee4fa2b0fd028ced999c26%2Fintermediate_file/full/full/0/default.jpg;https://iiif-cloud.princeton.edu/iiif/2/06%2Fe5%2F48%2F06e548926d5b4ecb8353ccb4162827fe%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1933-05-11,1933-05-25,https://shakespeareandco.princeton.edu/members/fisher-5/,Fisher,Fisher,25.00,50.00,2 weeks,14,2,,1933-05-11,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1933-05-11,1934-05-11,https://shakespeareandco.princeton.edu/members/perkins/,Mrs. Perkins,"Perkins, Mrs.",175.00,50.00,1 year,365,1,,1933-05-11,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Perkins Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/c711b33a-cb94-478e-8090-0a62744bb3e3/manifest,;https://iiif.princeton.edu/loris/figgy_prod/f1%2F08%2Fc6%2Ff108c6dd36e64848b0483f72d1a49844%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1933-05-12,1933-06-12,https://shakespeareandco.princeton.edu/members/hughes-3/,Hughes,Hughes,12.00,50.00,1 month,31,1,,1933-05-12,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-05-12,1933-05-24,https://shakespeareandco.princeton.edu/members/sze/,Mai-mai Sze / Miss Maimie Sze,"Sze, Mai-mai",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/mannin-venetian-blinds/,Venetian Blinds,,"Mannin, Ethel",1933,,Lending Library Card,"Sylvia Beach, Maimie Sze Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/ccb78f76-864b-41be-a9cc-55811b1bc004/manifest,https://iiif.princeton.edu/loris/figgy_prod/17%2F30%2F59%2F173059f7f01240b88a238894bd910ef5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-05-12,1933-06,https://shakespeareandco.princeton.edu/members/franchot/,Stanislas Pascal Franchot,"Franchot, Stanislas Pascal",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/bible/,The Bible,,,,,Lending Library Card,"Sylvia Beach, Stanislas Pascal Franchot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1d769df8-a15b-427e-a8aa-96a1e3ff030e/manifest,https://iiif.princeton.edu/loris/figgy_prod/7c%2F55%2Fd6%2F7c55d6d0ba9c410999ce6eaefa80429d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1933-05-12,1933-06-12,https://shakespeareandco.princeton.edu/members/shayerovitch/,Janine Shayerovitch,"Shayerovitch, Janine",25.00,,1 month,31,,,1933-05-15,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Janine Shayerovitch Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/0c52076e-a64c-4b22-86fd-80ca61562ca0/manifest,;https://iiif.princeton.edu/loris/figgy_prod/ae%2F8d%2F51%2Fae8d51fe7bbd4a03b017515e5d3d4284%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-05-13,1933-05-13,https://shakespeareandco.princeton.edu/members/guillois/,Guillois,Guillois,,,,,,,,30.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-05-13,1933-05-18,https://shakespeareandco.princeton.edu/members/bidoire-boulenger/,Miss Boulenger / Mme Bidoire,"Bidoire, Mme",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/davies-red-hills/,The Red Hills,,"Davies, Rhys",1932,,Lending Library Card;Lending Library Card,"Sylvia Beach, Boulenger Bidoire Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Boulenger Bidoire Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7f3ef4f0-6ce0-43d1-b96a-1328f891536c/manifest;https://figgy.princeton.edu/concern/scanned_resources/7f3ef4f0-6ce0-43d1-b96a-1328f891536c/manifest,https://iiif-cloud.princeton.edu/iiif/2/9e%2F43%2F49%2F9e43495bc0ee4fa2b0fd028ced999c26%2Fintermediate_file/full/full/0/default.jpg;https://iiif-cloud.princeton.edu/iiif/2/06%2Fe5%2F48%2F06e548926d5b4ecb8353ccb4162827fe%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1933-05-13,1933-05-13,https://shakespeareandco.princeton.edu/members/tanner-3/,Tanner,Tanner,,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-05-13,1933-06-08,https://shakespeareandco.princeton.edu/members/tuttle-stephen-d/,Stephen D. Tuttle,"Tuttle, Stephen D.",,,,,,,,,Returned,26,,,https://shakespeareandco.princeton.edu/books/ben-jonson/,Ben Jonson,,,,"Unidentified edition. N. E. Mayer borrows volume 1, Stanislas Pascal Franchot borrows volume 3, Irene Wissotzky borrows volumes 1β3, and Francoise de Marcilly borrows volume 2.",Lending Library Card,"Sylvia Beach, Stephen D. Tuttle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f1653918-3f2b-4e88-bd27-4e3c4d83a47d/manifest,https://iiif-cloud.princeton.edu/iiif/2/22%2Fc7%2Fad%2F22c7ada1283f41688dda37e8f338af51%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-05-13,1933-05-29,https://shakespeareandco.princeton.edu/members/bidoire-boulenger/,Miss Boulenger / Mme Bidoire,"Bidoire, Mme",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/sinclair-sylvias-marriage-novel/,Sylvia's Marriage: A Novel,,"Sinclair, Upton",1914,,Lending Library Card;Lending Library Card,"Sylvia Beach, Boulenger Bidoire Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Boulenger Bidoire Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7f3ef4f0-6ce0-43d1-b96a-1328f891536c/manifest;https://figgy.princeton.edu/concern/scanned_resources/7f3ef4f0-6ce0-43d1-b96a-1328f891536c/manifest,https://iiif-cloud.princeton.edu/iiif/2/9e%2F43%2F49%2F9e43495bc0ee4fa2b0fd028ced999c26%2Fintermediate_file/full/full/0/default.jpg;https://iiif-cloud.princeton.edu/iiif/2/06%2Fe5%2F48%2F06e548926d5b4ecb8353ccb4162827fe%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1933-05-14,1933-06-14,https://shakespeareandco.princeton.edu/members/fitzgerald-9/,Fitzgerald,Fitzgerald,40.00,,1 month,31,2,,1933-05-13,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-05-15,1933-05-19,https://shakespeareandco.princeton.edu/members/shayerovitch/,Janine Shayerovitch,"Shayerovitch, Janine",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/sugimoto-daughter-samurai/,"A Daughter of the Samurai: How a Daughter of Feudal Japan, Living Hundreds of Years in One Generation, Became a Modern American",,"Sugimoto, Etsuko",1925,,Lending Library Card,"Sylvia Beach, Janine Shayerovitch Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0c52076e-a64c-4b22-86fd-80ca61562ca0/manifest,https://iiif.princeton.edu/loris/figgy_prod/ae%2F8d%2F51%2Fae8d51fe7bbd4a03b017515e5d3d4284%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-05-15,1933-05-22,https://shakespeareandco.princeton.edu/members/boscq-marie/,Marie Boscq / Bosq,"Boscq, Marie",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/lewis-ann-vickers/,Ann Vickers,,"Lewis, Sinclair",1933,,Lending Library Card,"Sylvia Beach, Marie Boscq Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/11480fae-3477-40c8-be7d-484c91023da7/manifest,https://iiif.princeton.edu/loris/figgy_prod/9b%2F07%2Fe2%2F9b07e236b5ce465a9fef365511bf55e8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-05-15,1933-06-06,https://shakespeareandco.princeton.edu/members/plummer-dorothy/,Dorothy Plummer,"Plummer, Dorothy",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/mansfield-letters-katherine-mansfield/,The Letters of Katherine Mansfield,Vol. 1,"Mansfield, Katherine",1928,,Lending Library Card,"Sylvia Beach, Dorothy Plummer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5f53ce0-8ea6-4d1f-b36b-f6e5321bab4c/manifest,https://iiif.princeton.edu/loris/figgy_prod/a1%2F20%2F86%2Fa120869f9753422d95807c64cfe30599%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-05-15,1933-05-15,https://shakespeareandco.princeton.edu/members/vogue-de/,Countess de VoguΓ©,"de VoguΓ©, Countess",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1933-05-15,1933-06-15,https://shakespeareandco.princeton.edu/members/genevrier/,Genevrier,Genevrier,12.00,30.00,1 month,31,1,Student,1933-05-15,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Purchase,1933-05-16,1933-05-16,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,,,90.00,FRF,https://shakespeareandco.princeton.edu/books/trotsky-history-russian-revolution/,History of the Russian Revolution,Vol. 1 The Overthrow of Tzarism,"Trotsky, Leon",1932,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/e0%2Fe7%2Fab%2Fe0e7abbc278c479ea60884b471709177%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-05-16,1933-05-23,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/leon-livingstones-novel-contemporary/,Livingstones: A Novel of Contemporary Life,,"LeΓ³n, Derrick",1933,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/3c%2Fae%2F90%2F3cae90f9e6eb4bbb95bb9fe5328f52a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-05-16,1933-05-29,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/van-vechten-firecrackers-realistic-novel/,Firecrackers: A Realistic Novel,,"Van Vechten, Carl",1925,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/b3%2F88%2F85%2Fb38885c606214804a0b750495aa0797c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-05-16,1933-05-16,https://shakespeareandco.princeton.edu/members/allespach/,Jean Allespach,"Allespach, Jean",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1933-05-16,1933-05-16,https://shakespeareandco.princeton.edu/members/levy-6/,LΓ©vy,LΓ©vy,,,,,,,,30.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1933-05-17,1933-06-17,https://shakespeareandco.princeton.edu/members/coy-florence/,Florence Coy,"Coy, Florence",22.50,50.00,1 month,31,1,,1933-05-17,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1933-05-17,1933-07-01,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,45,,,https://shakespeareandco.princeton.edu/books/roberts-new-signatures-poems/,New Signatures: Poems by Several Hands,,,1932,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/29%2Fa8%2F35%2F29a835271ffd4913977d6dfcc4d5747f%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-05-17,1933-06-24,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,38,,,https://shakespeareandco.princeton.edu/books/luhan-background-intimate-memories/,Background (Intimate Memories 1),,"Luhan, Mabel Dodge",1933,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/29%2Fa8%2F35%2F29a835271ffd4913977d6dfcc4d5747f%2Fintermediate_file/full/full/0/default.jpg
+Separate Payment,1933-05-17,1933-05-17,https://shakespeareandco.princeton.edu/members/frank-3/,Frank,Frank,,20.00,,,,,1933-05-17,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-05-18,1933-05-18,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/laski-stands-socialism-today/,Where Stands Socialism Today?,,"Laski, Harold Joseph;Cripps, Stafford;Dalton, Hugh;Rowse, A. L.;Ratcliffe, S. K.;Shaw, George Bernard",1933,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/62%2F77%2F6f%2F62776f401c1744f3b61c996bf9ac6f1c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1933-05-18,1933-06-18,https://shakespeareandco.princeton.edu/members/olin/,Olin,Olin,12.00,,1 month,31,1,,1933-05-18,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1933-05-18,1933-05-18,https://shakespeareandco.princeton.edu/members/audry/,Colette Audry,"Audry, Colette",,,,,,,,30.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1933-05-19,1933-05-24,https://shakespeareandco.princeton.edu/members/shayerovitch/,Janine Shayerovitch,"Shayerovitch, Janine",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/carr-romantic-exiles-nineteenth/,The Romantic Exiles: A Nineteenth-Century Portrait Gallery,,"Carr, Edward Hallett",1933,,Lending Library Card,"Sylvia Beach, Janine Shayerovitch Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0c52076e-a64c-4b22-86fd-80ca61562ca0/manifest,https://iiif.princeton.edu/loris/figgy_prod/ae%2F8d%2F51%2Fae8d51fe7bbd4a03b017515e5d3d4284%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-05-19,1933-05-19,https://shakespeareandco.princeton.edu/members/friedmann/,Friedmann,Friedmann,,,,,,,,28.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-05-19,1933-05-27,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/wolfe-happy-though-human/,How to Be Happy though Human,,"Wolfe, Walter BΓ©ran",1931,,Lending Library Card,"Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest,https://iiif.princeton.edu/loris/figgy_prod/31%2Fba%2F2d%2F31ba2d65ea7d4de790412954d08eaa1c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-05-20,1933-05-24,https://shakespeareandco.princeton.edu/members/paul-dubois/,Louis Paul-Dubois,"Paul-Dubois, Louis",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/exagmination-round-factification/,Our Exagmination Round His Factification for Incamination of Work in Progress,,"Beckett, Samuel;Brion, Marcel;Budgen, Frank;Gilbert, Stuart;Jolas, Eugene;Llona, Victor;McAlmon, Robert;MacGreevy, Thomas;Paul, Elliot;Rodker, John;Sage, Robert D.;Williams, William Carlos;Slingsby, G. V. L.;Dixon, Vladimir",1929,,Lending Library Card,"Sylvia Beach, Louis Paul-Dubois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a5425c0b-233e-443e-a90e-1107459a225d/manifest,https://iiif.princeton.edu/loris/figgy_prod/98%2F5d%2F0f%2F985d0f9a26da49a98b98a5ec936437c6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-05-20,1933-05-27,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/lawrence-lovely-lady/,The Lovely Lady,,"Lawrence, D. H.",1932,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/29%2Fa8%2F35%2F29a835271ffd4913977d6dfcc4d5747f%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-05-20,1933-05-27,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/waddell-peter-abelard-novel/,Peter Abelard: A Novel,,"Waddell, Helen",1933,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/29%2Fa8%2F35%2F29a835271ffd4913977d6dfcc4d5747f%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-05-20,1933-05-24,https://shakespeareandco.princeton.edu/members/paul-dubois/,Louis Paul-Dubois,"Paul-Dubois, Louis",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/stephens-etched-moonlight/,Etched in Moonlight,,"Stephens, James",1928,,Lending Library Card,"Sylvia Beach, Louis Paul-Dubois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a5425c0b-233e-443e-a90e-1107459a225d/manifest,https://iiif.princeton.edu/loris/figgy_prod/98%2F5d%2F0f%2F985d0f9a26da49a98b98a5ec936437c6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Crossed out,1933-05-20,,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/hamilton-modern-france-seen/,Modern France as Seen by an Englishwoman,,"Hamilton, Cicely",1933,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/29%2Fa8%2F35%2F29a835271ffd4913977d6dfcc4d5747f%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1933-05-20,1933-06-20,https://shakespeareandco.princeton.edu/members/paul-dubois/,Louis Paul-Dubois,"Paul-Dubois, Louis",20.00,50.00,1 month,31,2,,1933-05-20,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Louis Paul-Dubois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/a5425c0b-233e-443e-a90e-1107459a225d/manifest,;https://iiif.princeton.edu/loris/figgy_prod/98%2F5d%2F0f%2F985d0f9a26da49a98b98a5ec936437c6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-05-22,1933-05-22,https://shakespeareandco.princeton.edu/members/charmant/,Charmant,Charmant,,,,,,,,30.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1933-05-22,1933-05-22,https://shakespeareandco.princeton.edu/members/fisher-5/,Fisher,Fisher,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Crossed out,1933-05-22,,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/lawrence-letters-h-lawrence/,The Letters of D. H. Lawrence,,"Lawrence, D. H.",1932,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/62%2F77%2F6f%2F62776f401c1744f3b61c996bf9ac6f1c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-05-22,1933-05-24,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/lewis-ann-vickers/,Ann Vickers,,"Lewis, Sinclair",1933,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/62%2F77%2F6f%2F62776f401c1744f3b61c996bf9ac6f1c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-05-22,1933-05-22,https://shakespeareandco.princeton.edu/members/lacoste/,Lacoste,Lacoste,,,,,,,,30.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-05-23,,https://shakespeareandco.princeton.edu/members/engel/,FrΓ©dΓ©ric Engel,"Engel, FrΓ©dΓ©ric",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/leacock-nonsense-novels/,Nonsense Novels,,"Leacock, Stephen",1920,,Lending Library Card,"Sylvia Beach, FrΓ©dΓ©ric Engel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6a49c133-b554-4182-bb70-0f83038e4b2d/manifest,https://iiif.princeton.edu/loris/figgy_prod/95%2F44%2Fe1%2F9544e16985f0476d9ab700ee6a6038dd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-05-23,1933-05-26,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/forster-angels-fear-tread/,Where Angels Fear to Tread,,"Forster, E. M.",1905,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/3c%2Fae%2F90%2F3cae90f9e6eb4bbb95bb9fe5328f52a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-05-24,1933-05-30,https://shakespeareandco.princeton.edu/members/paul-dubois/,Louis Paul-Dubois,"Paul-Dubois, Louis",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/corkery-hounds-banba/,The Hounds of Banba,,"Corkery, Daniel",1921,,Lending Library Card,"Sylvia Beach, Louis Paul-Dubois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a5425c0b-233e-443e-a90e-1107459a225d/manifest,https://iiif.princeton.edu/loris/figgy_prod/98%2F5d%2F0f%2F985d0f9a26da49a98b98a5ec936437c6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-05-24,1933-05-24,https://shakespeareandco.princeton.edu/members/sze/,Mai-mai Sze / Miss Maimie Sze,"Sze, Mai-mai",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Maimie Sze Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/ccb78f76-864b-41be-a9cc-55811b1bc004/manifest,;https://iiif.princeton.edu/loris/figgy_prod/17%2F30%2F59%2F173059f7f01240b88a238894bd910ef5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-05-24,1933-05-30,https://shakespeareandco.princeton.edu/members/shayerovitch/,Janine Shayerovitch,"Shayerovitch, Janine",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/dostoyevsky-idiot/,The Idiot,,"Dostoyevsky, Fyodor",1874,,Lending Library Card,"Sylvia Beach, Janine Shayerovitch Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0c52076e-a64c-4b22-86fd-80ca61562ca0/manifest,https://iiif.princeton.edu/loris/figgy_prod/ae%2F8d%2F51%2Fae8d51fe7bbd4a03b017515e5d3d4284%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1933-05-24,,https://shakespeareandco.princeton.edu/members/pettit/,Pettit,Pettit,,30.00,,,,Day By Day,1933-05-24,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-05-24,1933-05-30,https://shakespeareandco.princeton.edu/members/paul-dubois/,Louis Paul-Dubois,"Paul-Dubois, Louis",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/gilbert-james-joyces-ulysses/,James Joyce's Ulysses: A Study,,"Gilbert, Stuart",1930,,Lending Library Card,"Sylvia Beach, Louis Paul-Dubois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a5425c0b-233e-443e-a90e-1107459a225d/manifest,https://iiif.princeton.edu/loris/figgy_prod/98%2F5d%2F0f%2F985d0f9a26da49a98b98a5ec936437c6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1933-05-25,1933-06-25,https://shakespeareandco.princeton.edu/members/page-4/,Page,Page,20.00,,1 month,31,2,,1933-05-06,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1933-05-26,1933-05-26,https://shakespeareandco.princeton.edu/members/van-altena-5/,van Altena,van Altena,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-05-26,1933-06-08,https://shakespeareandco.princeton.edu/members/boscq-marie/,Marie Boscq / Bosq,"Boscq, Marie",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/hughes-tom-browns-school/,Tom Brown's School Days,,"Hughes, Thomas",1857,,Lending Library Card,"Sylvia Beach, Marie Boscq Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/11480fae-3477-40c8-be7d-484c91023da7/manifest,https://iiif.princeton.edu/loris/figgy_prod/9b%2F07%2Fe2%2F9b07e236b5ce465a9fef365511bf55e8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-05-26,1933-06-01,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/cozzens-cure-flesh/,A Cure of Flesh,,"Cozzens, James Gould",1933,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/3c%2Fae%2F90%2F3cae90f9e6eb4bbb95bb9fe5328f52a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-05-26,1933-05-26,https://shakespeareandco.princeton.edu/members/frank-3/,Frank,Frank,,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-05-26,1933-05-31,https://shakespeareandco.princeton.edu/members/perkins/,Mrs. Perkins,"Perkins, Mrs.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/ringel-america-americans-see/,America as Americans See It,,"Ringel, Fred J.",1932,,Lending Library Card,"Sylvia Beach, Perkins Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c711b33a-cb94-478e-8090-0a62744bb3e3/manifest,https://iiif.princeton.edu/loris/figgy_prod/f1%2F08%2Fc6%2Ff108c6dd36e64848b0483f72d1a49844%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-05-27,1933-06-10,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/russell-conquest-happiness/,The Conquest of Happiness,,"Russell, Bertrand",1930,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/29%2Fa8%2F35%2F29a835271ffd4913977d6dfcc4d5747f%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-05-27,1933-06-03,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/lawrence-escaped-cock/,The Escaped Cock / The Man Who Died,,"Lawrence, D. H.",1929,The Caresse Crosby activities are for the Black Sun Press edition of *The Escaped Cock.*,Lending Library Card,"Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest,https://iiif.princeton.edu/loris/figgy_prod/31%2Fba%2F2d%2F31ba2d65ea7d4de790412954d08eaa1c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-05-27,1933-06-10,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/strachey-books-characters-french/,"Books and Characters, French and English",,"Strachey, Giles Lytton",1922,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/29%2Fa8%2F35%2F29a835271ffd4913977d6dfcc4d5747f%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1933-05-27,1933-05-27,https://shakespeareandco.princeton.edu/members/pettit/,Pettit,Pettit,,,,,,,,30.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1933-05-27,1933-05-27,https://shakespeareandco.princeton.edu/members/graff/,Graff,Graff,,,,,,,,30.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-05-29,1933-06-13,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/jackson-europe-since-war/,Europe since the War: A Sketch of Political Development 1918 β 1932,,"Jackson, J. Hampden",1933,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/b3%2F88%2F85%2Fb38885c606214804a0b750495aa0797c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-05-29,1933-06-22,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,Returned,24,,,https://shakespeareandco.princeton.edu/books/laski-democracy-crisis/,Democracy in Crisis,,"Laski, Harold Joseph",1933,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/b3%2F88%2F85%2Fb38885c606214804a0b750495aa0797c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-05-30,1933-06-02,https://shakespeareandco.princeton.edu/members/paul-dubois/,Louis Paul-Dubois,"Paul-Dubois, Louis",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/corkery-threshold-quiet/,The Threshold of Quiet,,"Corkery, Daniel",1917,,Lending Library Card,"Sylvia Beach, Louis Paul-Dubois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a5425c0b-233e-443e-a90e-1107459a225d/manifest,https://iiif.princeton.edu/loris/figgy_prod/98%2F5d%2F0f%2F985d0f9a26da49a98b98a5ec936437c6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-05-30,1933-07-07,https://shakespeareandco.princeton.edu/members/shayerovitch/,Janine Shayerovitch,"Shayerovitch, Janine",,,,,,,,,Returned,38,,,https://shakespeareandco.princeton.edu/books/harris-human-merchandise-study/,Human Merchandise: A Study in the International Traffic in Women,,"Harris, H. Wilson",1928,,Lending Library Card,"Sylvia Beach, Janine Shayerovitch Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0c52076e-a64c-4b22-86fd-80ca61562ca0/manifest,https://iiif.princeton.edu/loris/figgy_prod/ae%2F8d%2F51%2Fae8d51fe7bbd4a03b017515e5d3d4284%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-05-30,1933-06-16,https://shakespeareandco.princeton.edu/members/tony-mayer/,Thérèse Tony-Mayer,"Tony-Mayer, Thérèse",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/sitwell-collected-poems-edith/,The Collected Poems of Edith Sitwell,,"Sitwell, Edith",1930,,Lending Library Card,"Sylvia Beach, Thérèse Tony-Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/27246b4c-7d99-4dca-b874-ab90bd542cfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2Fa0%2Fff%2F50a0ff19abc240c680a6a33baf060b76%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-05-30,1933-06-02,https://shakespeareandco.princeton.edu/members/paul-dubois/,Louis Paul-Dubois,"Paul-Dubois, Louis",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/wilson-axels-castle-study/,Axel's Castle: A Study in the Imaginative Literature of 1870 β 1930,,"Wilson, Edmund",1931,,Lending Library Card,"Sylvia Beach, Louis Paul-Dubois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a5425c0b-233e-443e-a90e-1107459a225d/manifest,https://iiif.princeton.edu/loris/figgy_prod/98%2F5d%2F0f%2F985d0f9a26da49a98b98a5ec936437c6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1933-05-30,1933-06-30,https://shakespeareandco.princeton.edu/members/de-roos-elisabeth/;https://shakespeareandco.princeton.edu/members/perron-eddy/,Elisabeth de Roos / Mrs. du Perron;E. du Perron / Eddy du Perron,"de Roos, Elisabeth;du Perron, Eddy",25.00,,1 month,31,,,1933-05-30,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Generic,1933-05-31,,https://shakespeareandco.princeton.edu/members/perkins/,Mrs. Perkins,"Perkins, Mrs.",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/douglas-credit-power-democracy/,Credit-Power and Democracy,,"Douglas, C. H.",1920,,Lending Library Card,"Sylvia Beach, Perkins Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c711b33a-cb94-478e-8090-0a62744bb3e3/manifest,https://iiif.princeton.edu/loris/figgy_prod/f1%2F08%2Fc6%2Ff108c6dd36e64848b0483f72d1a49844%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1933-05-31,1933-06-14,https://shakespeareandco.princeton.edu/members/mcculloch/,McCulloch,McCulloch,12.00,60.00,2 weeks,14,2,,1933-05-31,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1933-05-31,1933-06-30,https://shakespeareandco.princeton.edu/members/curran-3/,M. T. Curran,"Curran, M. T.",12.00,30.00,1 month,30,1,,1933-05-31,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1933-06-01,1934-06-01,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",157.00,30.00,1 year,365,1,,1933-06-01,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,;https://iiif.princeton.edu/loris/figgy_prod/3c%2Fae%2F90%2F3cae90f9e6eb4bbb95bb9fe5328f52a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-06-01,1933-06-10,https://shakespeareandco.princeton.edu/members/bidoire-boulenger/,Miss Boulenger / Mme Bidoire,"Bidoire, Mme",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/lindsey-companionate-marriage/,The Companionate Marriage,,"Lindsey, Ben B.;Evans, Wainwright",1927,,Lending Library Card;Lending Library Card,"Sylvia Beach, Boulenger Bidoire Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Boulenger Bidoire Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7f3ef4f0-6ce0-43d1-b96a-1328f891536c/manifest;https://figgy.princeton.edu/concern/scanned_resources/7f3ef4f0-6ce0-43d1-b96a-1328f891536c/manifest,https://iiif-cloud.princeton.edu/iiif/2/9e%2F43%2F49%2F9e43495bc0ee4fa2b0fd028ced999c26%2Fintermediate_file/full/full/0/default.jpg;https://iiif-cloud.princeton.edu/iiif/2/06%2Fe5%2F48%2F06e548926d5b4ecb8353ccb4162827fe%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-06-01,1933-06-06,https://shakespeareandco.princeton.edu/members/bidoire-boulenger/,Miss Boulenger / Mme Bidoire,"Bidoire, Mme",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/lumpkin-make-bread/,To Make My Bread,,"Lumpkin, Grace",1932,,Lending Library Card;Lending Library Card,"Sylvia Beach, Boulenger Bidoire Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Boulenger Bidoire Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7f3ef4f0-6ce0-43d1-b96a-1328f891536c/manifest;https://figgy.princeton.edu/concern/scanned_resources/7f3ef4f0-6ce0-43d1-b96a-1328f891536c/manifest,https://iiif-cloud.princeton.edu/iiif/2/9e%2F43%2F49%2F9e43495bc0ee4fa2b0fd028ced999c26%2Fintermediate_file/full/full/0/default.jpg;https://iiif-cloud.princeton.edu/iiif/2/06%2Fe5%2F48%2F06e548926d5b4ecb8353ccb4162827fe%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1933-06-01,1933-06-01,https://shakespeareandco.princeton.edu/members/poingt/,Poingt,Poingt,,,,,,,,60.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1933-06-01,1933-06-01,https://shakespeareandco.princeton.edu/members/yellen/,Yellen,Yellen,,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-06-01,1933-06-08,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/aldington-men-enemies/,All Men Are Enemies: A Romance,,"Aldington, Richard",1933,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/3c%2Fae%2F90%2F3cae90f9e6eb4bbb95bb9fe5328f52a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-06-02,1933-06-03,https://shakespeareandco.princeton.edu/members/paul-dubois/,Louis Paul-Dubois,"Paul-Dubois, Louis",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/oflaherty-martyr/,The Martyr,,"O'Flaherty, Liam",1933,,Lending Library Card,"Sylvia Beach, Louis Paul-Dubois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a5425c0b-233e-443e-a90e-1107459a225d/manifest,https://iiif.princeton.edu/loris/figgy_prod/98%2F5d%2F0f%2F985d0f9a26da49a98b98a5ec936437c6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1933-06-02,1933-07-02,https://shakespeareandco.princeton.edu/members/kohlberg/,Kohlberg,Kohlberg,12.00,,1 month,30,,,1933-05-29,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-06-02,1933-06-06,https://shakespeareandco.princeton.edu/members/paul-dubois/,Louis Paul-Dubois,"Paul-Dubois, Louis",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/oflaherty-two-years/,Two Years,,"O'Flaherty, Liam",1930,,Lending Library Card,"Sylvia Beach, Louis Paul-Dubois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a5425c0b-233e-443e-a90e-1107459a225d/manifest,https://iiif.princeton.edu/loris/figgy_prod/98%2F5d%2F0f%2F985d0f9a26da49a98b98a5ec936437c6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-06-02,1933-06-02,https://shakespeareandco.princeton.edu/members/lescure/,Lescure,Lescure,,,,,,,,30.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-06-03,1933-06-06,https://shakespeareandco.princeton.edu/members/paul-dubois/,Louis Paul-Dubois,"Paul-Dubois, Louis",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/damon-odyssey-dublin-2/,The Odyssey in Dublin,,"Damon, S. Foster",1929,An separate printing of Damon's article from [*Hound & Horn*](https://shakespeareandco.princeton.edu/books/kirstein-hound-horn/) 3.1 (1929).,Lending Library Card,"Sylvia Beach, Louis Paul-Dubois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a5425c0b-233e-443e-a90e-1107459a225d/manifest,https://iiif.princeton.edu/loris/figgy_prod/98%2F5d%2F0f%2F985d0f9a26da49a98b98a5ec936437c6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-06-03,1933-06-06,https://shakespeareandco.princeton.edu/members/paul-dubois/,Louis Paul-Dubois,"Paul-Dubois, Louis",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/curtius-james-joyce-und/,James Joyce und sein Ulysses,,"Curtius, Ernst Robert",1928,,Lending Library Card,"Sylvia Beach, Louis Paul-Dubois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a5425c0b-233e-443e-a90e-1107459a225d/manifest,https://iiif.princeton.edu/loris/figgy_prod/98%2F5d%2F0f%2F985d0f9a26da49a98b98a5ec936437c6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-06-03,1933-06-06,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/oflaherty-martyr/,The Martyr,,"O'Flaherty, Liam",1933,,Lending Library Card,"Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest,https://iiif.princeton.edu/loris/figgy_prod/31%2Fba%2F2d%2F31ba2d65ea7d4de790412954d08eaa1c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-06-03,1933-06-19,https://shakespeareandco.princeton.edu/members/duff-donald/,Donald Duff,"Duff, Donald",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/whitehead-adventures-ideas/,Adventures of Ideas,,"Whitehead, Alfred North",1933,,Lending Library Card,"Sylvia Beach, Donald Duff Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c9f19d83-d075-4536-b1fd-fe2a86bdf975/manifest,https://iiif.princeton.edu/loris/figgy_prod/af%2Ffc%2Fe7%2Faffce74530c34da7a547365bad376892%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-06-03,1933-06-03,https://shakespeareandco.princeton.edu/members/ralle/,Ralle,Ralle,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1933-06-06,1933-06-06,https://shakespeareandco.princeton.edu/members/mengin/,Mengin,Mengin,,,,,,,,30.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-06-06,1933-06-15,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/lawrence-collected-poems-h/,The Collected Poems of D. H. Lawrence,Vol. 2 Unrhyming Poems,"Lawrence, D. H.",1928,,Lending Library Card,"Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest,https://iiif.princeton.edu/loris/figgy_prod/ca%2F92%2Fec%2Fca92ecaecbc9473d8d06858505d8dc37%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-06-06,1933-06-06,https://shakespeareandco.princeton.edu/members/frank-3/,Frank,Frank,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-06-06,1933-06-07,https://shakespeareandco.princeton.edu/members/paul-dubois/,Louis Paul-Dubois,"Paul-Dubois, Louis",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/oflaherty-assassin/,The Assassin,,"O'Flaherty, Liam",1928,,Lending Library Card,"Sylvia Beach, Louis Paul-Dubois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a5425c0b-233e-443e-a90e-1107459a225d/manifest,https://iiif.princeton.edu/loris/figgy_prod/98%2F5d%2F0f%2F985d0f9a26da49a98b98a5ec936437c6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-06-06,1933-06-07,https://shakespeareandco.princeton.edu/members/paul-dubois/,Louis Paul-Dubois,"Paul-Dubois, Louis",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/jordan-smith-strange-altars-book/,On Strange Altars: A Book of Enthusiasms,,"Jordan-Smith, Paul",1924,,Lending Library Card,"Sylvia Beach, Louis Paul-Dubois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a5425c0b-233e-443e-a90e-1107459a225d/manifest,https://iiif.princeton.edu/loris/figgy_prod/98%2F5d%2F0f%2F985d0f9a26da49a98b98a5ec936437c6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-06-07,1933-06-07,https://shakespeareandco.princeton.edu/members/lister/,Lister,Lister,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1933-06-07,1933-06-07,https://shakespeareandco.princeton.edu/members/hughes-3/,Hughes,Hughes,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1933-06-07,1933-06-07,https://shakespeareandco.princeton.edu/members/bullinger-yvonne/,Yvonne Bullinger,"Bullinger, Yvonne",,,,,,,,30.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1933-06-07,1933-06-07,https://shakespeareandco.princeton.edu/members/tuttle-stephen-d/,Stephen D. Tuttle,"Tuttle, Stephen D.",,,,,,,,30.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1933-06-07,1933-06-07,https://shakespeareandco.princeton.edu/members/berry/,Claudine Berry,"Berry, Claudine",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1933-06-07,1933-06-09,https://shakespeareandco.princeton.edu/members/paul-dubois/,Louis Paul-Dubois,"Paul-Dubois, Louis",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/oflaherty-puritan/,The Puritan,,"O'Flaherty, Liam",1932,,Lending Library Card,"Sylvia Beach, Louis Paul-Dubois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a5425c0b-233e-443e-a90e-1107459a225d/manifest,https://iiif.princeton.edu/loris/figgy_prod/98%2F5d%2F0f%2F985d0f9a26da49a98b98a5ec936437c6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-06-07,1933-06-09,https://shakespeareandco.princeton.edu/members/paul-dubois/,Louis Paul-Dubois,"Paul-Dubois, Louis",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/oflaherty-spring-sowing/,Spring Sowing,,"O'Flaherty, Liam",1924,,Lending Library Card,"Sylvia Beach, Louis Paul-Dubois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a5425c0b-233e-443e-a90e-1107459a225d/manifest,https://iiif.princeton.edu/loris/figgy_prod/98%2F5d%2F0f%2F985d0f9a26da49a98b98a5ec936437c6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-06-08,1933-06-14,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/wharton-human-nature/,Human Nature,,"Wharton, Edith",1933,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/3c%2Fae%2F90%2F3cae90f9e6eb4bbb95bb9fe5328f52a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-06-08,1933-06-22,https://shakespeareandco.princeton.edu/members/boscq-marie/,Marie Boscq / Bosq,"Boscq, Marie",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/swords-ploughshares/,Swords and Ploughshares,,,,"Unidentified. Lucia Ames Mead's *Swords and Ploughshares: Or, the Supplanting of the System of War by the System of Law* (1912) or John Drinkwater's *Swords and Ploughshares* (1915).",Lending Library Card,"Sylvia Beach, Marie Boscq Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/11480fae-3477-40c8-be7d-484c91023da7/manifest,https://iiif.princeton.edu/loris/figgy_prod/9b%2F07%2Fe2%2F9b07e236b5ce465a9fef365511bf55e8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Separate Payment,1933-06-09,1933-06-09,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",,16.00,,,,,1933-06-09,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-06-09,1933-06-10,https://shakespeareandco.princeton.edu/members/paul-dubois/,Louis Paul-Dubois,"Paul-Dubois, Louis",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/oflaherty-black-soul/,The Black Soul,,"O'Flaherty, Liam",1924,,Lending Library Card,"Sylvia Beach, Louis Paul-Dubois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a5425c0b-233e-443e-a90e-1107459a225d/manifest,https://iiif.princeton.edu/loris/figgy_prod/98%2F5d%2F0f%2F985d0f9a26da49a98b98a5ec936437c6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-06-09,1933-06-09,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",,,,,,,,16.00,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest,;https://iiif.princeton.edu/loris/figgy_prod/31%2Fba%2F2d%2F31ba2d65ea7d4de790412954d08eaa1c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-06-09,1933-06-10,https://shakespeareandco.princeton.edu/members/paul-dubois/,Louis Paul-Dubois,"Paul-Dubois, Louis",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/oflaherty-thy-neighbours-wife/,Thy Neighbour's Wife,,"O'Flaherty, Liam",1923,,Lending Library Card,"Sylvia Beach, Louis Paul-Dubois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a5425c0b-233e-443e-a90e-1107459a225d/manifest,https://iiif.princeton.edu/loris/figgy_prod/98%2F5d%2F0f%2F985d0f9a26da49a98b98a5ec936437c6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-06-10,1933-06-10,https://shakespeareandco.princeton.edu/members/stock-3/,Stock,Stock,,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-06-10,1933-06-12,https://shakespeareandco.princeton.edu/members/paul-dubois/,Louis Paul-Dubois,"Paul-Dubois, Louis",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/joyce-anna-livia-plurabelle/,Anna Livia Plurabelle,,"Joyce, James",1930,"Likely the Faber & Faber edition of *Anna Livia Plurabelle: Fragment of Work in Progress* (1930). Jacques Mercanton, however, likely purchases the Crosby Gaige edition of [*Anna Livia Plurabelle*](http://www.riverrun.org.uk/jj/ALP.pdf) (1928).",Lending Library Card,"Sylvia Beach, Louis Paul-Dubois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a5425c0b-233e-443e-a90e-1107459a225d/manifest,https://iiif.princeton.edu/loris/figgy_prod/98%2F5d%2F0f%2F985d0f9a26da49a98b98a5ec936437c6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-06-10,1933-06-12,https://shakespeareandco.princeton.edu/members/paul-dubois/,Louis Paul-Dubois,"Paul-Dubois, Louis",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/oflaherty-house-gold/,The House of Gold,,"O'Flaherty, Liam",1929,,Lending Library Card,"Sylvia Beach, Louis Paul-Dubois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a5425c0b-233e-443e-a90e-1107459a225d/manifest,https://iiif.princeton.edu/loris/figgy_prod/98%2F5d%2F0f%2F985d0f9a26da49a98b98a5ec936437c6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-06-10,1933-07-18,https://shakespeareandco.princeton.edu/members/bidoire-boulenger/,Miss Boulenger / Mme Bidoire,"Bidoire, Mme",,,,,,,,,Returned,38,,,https://shakespeareandco.princeton.edu/books/de-la-mare-edge-short-stories/,On the Edge: Short Stories,,"De la Mare, Walter",1930,,Lending Library Card;Lending Library Card,"Sylvia Beach, Boulenger Bidoire Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Boulenger Bidoire Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7f3ef4f0-6ce0-43d1-b96a-1328f891536c/manifest;https://figgy.princeton.edu/concern/scanned_resources/7f3ef4f0-6ce0-43d1-b96a-1328f891536c/manifest,https://iiif-cloud.princeton.edu/iiif/2/9e%2F43%2F49%2F9e43495bc0ee4fa2b0fd028ced999c26%2Fintermediate_file/full/full/0/default.jpg;https://iiif-cloud.princeton.edu/iiif/2/06%2Fe5%2F48%2F06e548926d5b4ecb8353ccb4162827fe%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1933-06-10,1933-06-17,https://shakespeareandco.princeton.edu/members/pinkham/,Pinkham,Pinkham,,50.00,1 week,7,,,1933-06-10,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-06-12,1933-06-14,https://shakespeareandco.princeton.edu/members/paul-dubois/,Louis Paul-Dubois,"Paul-Dubois, Louis",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/joyce-work-progress/,Work in Progress,,"Joyce, James",,Unidentified edition. Early versions of Joyce's [*Finnegans Wake*](https://shakespeareandco.princeton.edu/books/joyce-finnegans-wake/) (1939). Likely a collection of offprints from [*transition*](https://shakespeareandco.princeton.edu/books/jolas-transition/). Sylvia Beach's personal library includes a [bound copy of offprints](https://catalog.princeton.edu/catalog/2943072). See also [*Fragments from Work in Progress*](https://shakespeareandco.princeton.edu/books/joyce-fragments-work-progress/).,Lending Library Card,"Sylvia Beach, Louis Paul-Dubois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a5425c0b-233e-443e-a90e-1107459a225d/manifest,https://iiif.princeton.edu/loris/figgy_prod/98%2F5d%2F0f%2F985d0f9a26da49a98b98a5ec936437c6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-06-12,1933-06-14,https://shakespeareandco.princeton.edu/members/paul-dubois/,Louis Paul-Dubois,"Paul-Dubois, Louis",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/corkery-stormy-hills/,The Stormy Hills,,"Corkery, Daniel",1929,,Lending Library Card,"Sylvia Beach, Louis Paul-Dubois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a5425c0b-233e-443e-a90e-1107459a225d/manifest,https://iiif.princeton.edu/loris/figgy_prod/98%2F5d%2F0f%2F985d0f9a26da49a98b98a5ec936437c6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-06-12,1933-06-19,https://shakespeareandco.princeton.edu/members/dennis-holly/,Holly (Beach) Dennis / Miss Holly Beach / Mrs. Frederic Dennis,"Dennis, Holly",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/wilder-long-christmas-dinner/,The Long Christmas Dinner: And Other Plays in One Act,,"Wilder, Thornton",1931,,Lending Library Card,"Sylvia Beach, Mrs Frederic Dennis Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e0f0b413-503d-4a43-8794-097eb6420dd3/manifest,https://iiif.princeton.edu/loris/figgy_prod/05%2Fc1%2F88%2F05c1885a9904486c86048e7cce4750c1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1933-06-12,1934-03-01,https://shakespeareandco.princeton.edu/members/shayerovitch/,Janine Shayerovitch,"Shayerovitch, Janine",50.00,,"8 months, 17 days",262,,,1934-03-02,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Janine Shayerovitch Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/0c52076e-a64c-4b22-86fd-80ca61562ca0/manifest,;https://iiif.princeton.edu/loris/figgy_prod/ae%2F8d%2F51%2Fae8d51fe7bbd4a03b017515e5d3d4284%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-06-12,1933-06-19,https://shakespeareandco.princeton.edu/members/dennis-holly/,Holly (Beach) Dennis / Miss Holly Beach / Mrs. Frederic Dennis,"Dennis, Holly",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/hall-master-house/,The Master of the House,,"Hall, Radclyffe",1932,,Lending Library Card,"Sylvia Beach, Mrs Frederic Dennis Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e0f0b413-503d-4a43-8794-097eb6420dd3/manifest,https://iiif.princeton.edu/loris/figgy_prod/05%2Fc1%2F88%2F05c1885a9904486c86048e7cce4750c1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-06-12,1933-06-12,https://shakespeareandco.princeton.edu/members/senior/,Senior,Senior,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-06-13,1933-07-05,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/burnham-symposium-critical-review/,The Symposium: A Critical Review,,,,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/b3%2F88%2F85%2Fb38885c606214804a0b750495aa0797c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-06-13,1933-06-22,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/criterion/,The Criterion,,,,"Renamed *The New Criterion* from January 1926 to January 1927, and *The Monthly Criterion* from May 1927 to March 1928.",Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/b3%2F88%2F85%2Fb38885c606214804a0b750495aa0797c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-06-14,1933-06-19,https://shakespeareandco.princeton.edu/members/frieseke-frances/,Frances Frieseke,"Frieseke, Frances",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/rittenhouse-little-book-modern/,The Little Book of Modern Verse: A Selection from the Work of Contemporaneous American Poets,,,1913,,Lending Library Card,"Sylvia Beach, Frances Frieseke Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4b91effa-eb31-42f8-8230-f4bc65b94161/manifest,https://iiif.princeton.edu/loris/figgy_prod/b6%2F50%2F81%2Fb65081e7dce147ef8961ad23054e067f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-06-14,1933-06-16,https://shakespeareandco.princeton.edu/members/paul-dubois/,Louis Paul-Dubois,"Paul-Dubois, Louis",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/colum-castle-conquer/,Castle Conquer,,"Colum, Padraic",1923,,Lending Library Card,"Sylvia Beach, Louis Paul-Dubois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a5425c0b-233e-443e-a90e-1107459a225d/manifest,https://iiif.princeton.edu/loris/figgy_prod/98%2F5d%2F0f%2F985d0f9a26da49a98b98a5ec936437c6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-06-14,1933-07-18,https://shakespeareandco.princeton.edu/members/frieseke-frances/,Frances Frieseke,"Frieseke, Frances",,,,,,,,,Returned,34,,,https://shakespeareandco.princeton.edu/books/rittenhouse-second-book-modern/,The Second Book of Modern Verse,,,1919,,Lending Library Card,"Sylvia Beach, Frances Frieseke Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4b91effa-eb31-42f8-8230-f4bc65b94161/manifest,https://iiif.princeton.edu/loris/figgy_prod/b6%2F50%2F81%2Fb65081e7dce147ef8961ad23054e067f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-06-14,1933-06-16,https://shakespeareandco.princeton.edu/members/paul-dubois/,Louis Paul-Dubois,"Paul-Dubois, Louis",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/corkery-munster-twilight/,A Munster Twilight,,"Corkery, Daniel",1917,,Lending Library Card,"Sylvia Beach, Louis Paul-Dubois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a5425c0b-233e-443e-a90e-1107459a225d/manifest,https://iiif.princeton.edu/loris/figgy_prod/98%2F5d%2F0f%2F985d0f9a26da49a98b98a5ec936437c6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-06-14,1933-06-14,https://shakespeareandco.princeton.edu/members/brossay-anne-du/,Anne du Brossay,"du Brossay, Anne",,,,,,,,30.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1933-06-14,1933-06-14,https://shakespeareandco.princeton.edu/members/genevrier/,Genevrier,Genevrier,,,,,,,,30.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1933-06-14,1933-06-14,https://shakespeareandco.princeton.edu/members/olin/,Olin,Olin,,,,,,,,30.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-06-14,1933-06-22,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/anderson-beyond-desire/,Beyond Desire,,"Anderson, Sherwood",1932,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/3c%2Fae%2F90%2F3cae90f9e6eb4bbb95bb9fe5328f52a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-06-14,1933-06-14,https://shakespeareandco.princeton.edu/members/fisher-5/,Fisher,Fisher,,,,,,,,60.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1933-06-14,1933-09-14,https://shakespeareandco.princeton.edu/members/frieseke-frances/,Frances Frieseke,"Frieseke, Frances",30.00,,3 months,92,1,,1933-06-14,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Frances Frieseke Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/4b91effa-eb31-42f8-8230-f4bc65b94161/manifest,;https://iiif.princeton.edu/loris/figgy_prod/b6%2F50%2F81%2Fb65081e7dce147ef8961ad23054e067f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-06-14,1933-06-14,https://shakespeareandco.princeton.edu/members/chang-c-t/,C. T. Chang,"Chang, C. T.",,,,,,,,15.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1933-06-15,1933-07-15,https://shakespeareandco.princeton.edu/members/fitzgerald-9/,Fitzgerald,Fitzgerald,40.00,,1 month,30,2,,1933-06-15,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1933-06-15,1933-07-15,https://shakespeareandco.princeton.edu/members/stock-3/,Stock,Stock,12.00,,1 month,30,1,,1933-06-14,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1933-06-15,,https://shakespeareandco.princeton.edu/members/dherbais-de-thun/,Marie-Valerie d'Herbais de Thun,"d'Herbais de Thun, Marie-Valerie",,37.50,,,,Day By Day,1933-06-15,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1933-06-15,1933-06-15,https://shakespeareandco.princeton.edu/members/morton/,Morton,Morton,,,,,,,,60.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-06-16,1933-06-17,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/luhan-background-intimate-memories/,Background (Intimate Memories 1),,"Luhan, Mabel Dodge",1933,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/62%2F77%2F6f%2F62776f401c1744f3b61c996bf9ac6f1c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-06-16,1933-06-16,https://shakespeareandco.princeton.edu/members/paul-dubois/,Louis Paul-Dubois,"Paul-Dubois, Louis",,,,,,,,60.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1933-06-16,1933-07-16,https://shakespeareandco.princeton.edu/members/nimr/,Nimr,Nimr,12.00,,1 month,30,1,,1933-06-03,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-06-16,1933-07-19,https://shakespeareandco.princeton.edu/members/tony-mayer/,ThΓ©rΓ¨se Tony-Mayer,"Tony-Mayer, ThΓ©rΓ¨se",,,,,,,,,Returned,33,,,https://shakespeareandco.princeton.edu/books/murasaki-shikibu-tale-genji/,The Tale of Genji,,Murasaki Shikibu,,Unidentified volume of the six-volume *The Tale of Genji* (trans. 1925 β 1933).,Lending Library Card,"Sylvia Beach, ThΓ©rΓ¨se Tony-Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/27246b4c-7d99-4dca-b874-ab90bd542cfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2Fa0%2Fff%2F50a0ff19abc240c680a6a33baf060b76%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-06-17,1933-06-19,https://shakespeareandco.princeton.edu/members/stein-leo/,Leo Stein,"Stein, Leo",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/hindus-great-offensive/,The Great Offensive,,"Hindus, Maurice Gerschon",1933,,Lending Library Card,"Sylvia Beach, Leo Stein Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8493520c-be69-47f1-b159-262f4b8c0e04/manifest,https://iiif.princeton.edu/loris/figgy_prod/62%2F77%2F6f%2F62776f401c1744f3b61c996bf9ac6f1c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-06-17,1933-06-17,https://shakespeareandco.princeton.edu/members/pinkham/,Pinkham,Pinkham,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1933-06-17,1933-06-17,https://shakespeareandco.princeton.edu/members/coy-florence/,Florence Coy,"Coy, Florence",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Purchase,1933-06-17,1933-06-17,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,,,14.00,FRF,https://shakespeareandco.princeton.edu/books/pound-abc-economics/,The ABC of Economics,,"Pound, Ezra",1933,,Lending Library Card,"Sylvia Beach, James Joyce Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/60df1b72-de14-4053-ac2b-b16671872306/manifest,https://iiif.princeton.edu/loris/figgy_prod/3f%2F05%2Fc4%2F3f05c4ba4908479ead76b36736bb9d19%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1933-06-18,1933-07-18,https://shakespeareandco.princeton.edu/members/brossay-anne-du/,Anne du Brossay,"du Brossay, Anne",12.00,,1 month,30,1,,1933-06-14,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1933-06-18,1933-07-18,https://shakespeareandco.princeton.edu/members/yellen/,Yellen,Yellen,20.00,,1 month,30,2,,1933-05-22,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-06-19,1933-07-03,https://shakespeareandco.princeton.edu/members/dennis-holly/,Holly (Beach) Dennis / Miss Holly Beach / Mrs. Frederic Dennis,"Dennis, Holly",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/ringel-america-americans-see/,America as Americans See It,,"Ringel, Fred J.",1932,,Lending Library Card,"Sylvia Beach, Mrs Frederic Dennis Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e0f0b413-503d-4a43-8794-097eb6420dd3/manifest,https://iiif.princeton.edu/loris/figgy_prod/05%2Fc1%2F88%2F05c1885a9904486c86048e7cce4750c1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1933-06-19,1933-06-19,https://shakespeareandco.princeton.edu/members/franchot/,Stanislas Pascal Franchot,"Franchot, Stanislas Pascal",,,,,,,,,,,30.00,FRF,https://shakespeareandco.princeton.edu/books/nordau-degeneration/,Degeneration,,"Nordau, Max",1892,,Lending Library Card,"Sylvia Beach, Stanislas Pascal Franchot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1d769df8-a15b-427e-a8aa-96a1e3ff030e/manifest,https://iiif.princeton.edu/loris/figgy_prod/7c%2F55%2Fd6%2F7c55d6d0ba9c410999ce6eaefa80429d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-06-19,1933-07-03,https://shakespeareandco.princeton.edu/members/dennis-holly/,Holly (Beach) Dennis / Miss Holly Beach / Mrs. Frederic Dennis,"Dennis, Holly",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/eliot-poems/,Poems,,"Eliot, T. S.",,"Unidentified edition or editions. Monique de Vigan borrowed Eliot's *Poems, 1909 β 1925* (1925).",Lending Library Card,"Sylvia Beach, Mrs Frederic Dennis Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e0f0b413-503d-4a43-8794-097eb6420dd3/manifest,https://iiif.princeton.edu/loris/figgy_prod/05%2Fc1%2F88%2F05c1885a9904486c86048e7cce4750c1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-06-19,1933-06-26,https://shakespeareandco.princeton.edu/members/porter-katherine-anne/,Katherine Anne Porter / Mrs. Katherine Anne Pressly,"Porter, Katherine Anne",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/crane-pocahontas/,Pocahontas,,"Crane, Nathalia",1930,,Lending Library Card,"Sylvia Beach, Katherine Anne Porter Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e929ad7e-7cda-422b-9107-310e3c4feb78/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2F92%2F2f%2F65922f21f3c04f138bd8795721ba9fd6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1933-06-19,1933-06-26,https://shakespeareandco.princeton.edu/members/marret/,Marret,Marret,3.00,,1 week,7,,,1933-06-19,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-06-19,1933-06,https://shakespeareandco.princeton.edu/members/franchot/,Stanislas Pascal Franchot,"Franchot, Stanislas Pascal",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/gray-grays-anatomy/,Gray's Anatomy,,"Gray, Henry",1858,,Lending Library Card,"Sylvia Beach, Stanislas Pascal Franchot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1d769df8-a15b-427e-a8aa-96a1e3ff030e/manifest,https://iiif.princeton.edu/loris/figgy_prod/7c%2F55%2Fd6%2F7c55d6d0ba9c410999ce6eaefa80429d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-06-19,1933-06-26,https://shakespeareandco.princeton.edu/members/porter-katherine-anne/,Katherine Anne Porter / Mrs. Katherine Anne Pressly,"Porter, Katherine Anne",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/luhan-lorenzo-taos/,Lorenzo in Taos,,"Luhan, Mabel Dodge",1932,,Lending Library Card,"Sylvia Beach, Katherine Anne Porter Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e929ad7e-7cda-422b-9107-310e3c4feb78/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2F92%2F2f%2F65922f21f3c04f138bd8795721ba9fd6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-06-19,1933-06-19,https://shakespeareandco.princeton.edu/members/marret/,Marret,Marret,,,,,,,,30.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1933-06-19,1933-06-19,https://shakespeareandco.princeton.edu/members/yellen/,Yellen,Yellen,,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-06-19,1933-10-25,https://shakespeareandco.princeton.edu/members/tony-mayer/,ThΓ©rΓ¨se Tony-Mayer,"Tony-Mayer, ThΓ©rΓ¨se",,,,,,,,,Returned,128,,,https://shakespeareandco.princeton.edu/books/pepys-diary-samuel-pepys/,The Diary of Samuel Pepys,,"Pepys, Samuel",,"At least three editions of Pepys's *Diary* circulated in the lending library. John Murray borrowed volumes 1β3 of an unspecified edition; Dorothee Chareau borrowed volumes 4β6 from the Bell edition, edited by Henry B. Wheatley; Maximilien Vox borrowed the single-volume Globe edition, edited by G. Gregory Smith; HΓ©lΓ¨ne de Wendel borrowed the single-volume Globe edition and volumes 2β3 of the Bell edition; Guillaume Lerolle borrowed volumes 1β2 of the Bell edition; and Monique de Vigan borrowed the Newnes edition, edited by Lord Braybrooke.",Lending Library Card,"Sylvia Beach, ThΓ©rΓ¨se Tony-Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/27246b4c-7d99-4dca-b874-ab90bd542cfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2Fa0%2Fff%2F50a0ff19abc240c680a6a33baf060b76%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-06-19,1933-06-26,https://shakespeareandco.princeton.edu/members/porter-katherine-anne/,Katherine Anne Porter / Mrs. Katherine Anne Pressly,"Porter, Katherine Anne",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/hemingway-death-afternoon/,Death in the Afternoon,,"Hemingway, Ernest",1932,,Lending Library Card,"Sylvia Beach, Katherine Anne Porter Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e929ad7e-7cda-422b-9107-310e3c4feb78/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2F92%2F2f%2F65922f21f3c04f138bd8795721ba9fd6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1933-06-19,1933-07-19,https://shakespeareandco.princeton.edu/members/franchot/,Stanislas Pascal Franchot,"Franchot, Stanislas Pascal",12.00,,1 month,30,,,1933-06-19,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Stanislas Pascal Franchot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/1d769df8-a15b-427e-a8aa-96a1e3ff030e/manifest,;https://iiif.princeton.edu/loris/figgy_prod/7c%2F55%2Fd6%2F7c55d6d0ba9c410999ce6eaefa80429d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-06-20,1933-06-20,https://shakespeareandco.princeton.edu/members/dherbais-de-thun/,Marie-Valerie d'Herbais de Thun,"d'Herbais de Thun, Marie-Valerie",,,,,,,,37.50,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Purchase,1933-06-20,1933-06-20,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,,,14.00,FRF,https://shakespeareandco.princeton.edu/books/pound-abc-economics/,The ABC of Economics,,"Pound, Ezra",1933,,Lending Library Card,"Sylvia Beach, James Joyce Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/60df1b72-de14-4053-ac2b-b16671872306/manifest,https://iiif.princeton.edu/loris/figgy_prod/3f%2F05%2Fc4%2F3f05c4ba4908479ead76b36736bb9d19%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1933-06-20,,https://shakespeareandco.princeton.edu/members/dherbais-de-thun/,Marie-Valerie d'Herbais de Thun,"d'Herbais de Thun, Marie-Valerie",8.00,,,,,,1933-06-20,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-06-20,1933-06-29,https://shakespeareandco.princeton.edu/members/perkins/,Mrs. Perkins,"Perkins, Mrs.",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/adams-march-democracy-history/,March of Democracy: A History of the United States,Vol. 2 A Half Century of Expansion,"Adams, James Truslow",1933,,Lending Library Card,"Sylvia Beach, Perkins Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c711b33a-cb94-478e-8090-0a62744bb3e3/manifest,https://iiif.princeton.edu/loris/figgy_prod/f1%2F08%2Fc6%2Ff108c6dd36e64848b0483f72d1a49844%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-06-20,1933-06-20,https://shakespeareandco.princeton.edu/members/yellen/,Yellen,Yellen,,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Purchase,1933-06-22,1933-06-22,https://shakespeareandco.princeton.edu/members/duff-donald/,Donald Duff,"Duff, Donald",,,,,,,,,,,20.00,FRF,https://shakespeareandco.princeton.edu/books/hughes-high-wind-jamaica/,A High Wind in Jamaica,,"Hughes, Richard",1929,,Lending Library Card,"Sylvia Beach, Donald Duff Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c9f19d83-d075-4536-b1fd-fe2a86bdf975/manifest,https://iiif.princeton.edu/loris/figgy_prod/af%2Ffc%2Fe7%2Faffce74530c34da7a547365bad376892%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1933-06-22,,https://shakespeareandco.princeton.edu/members/horensztejn/,Horensztejn,Horensztejn,6.50,,,,,,1933-06-22,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-06-22,1933-06-26,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/lumpkin-make-bread/,To Make My Bread,,"Lumpkin, Grace",1932,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/3c%2Fae%2F90%2F3cae90f9e6eb4bbb95bb9fe5328f52a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-06-22,1933-07-05,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/criterion/,The Criterion,"Vol. 12, no. 48, Apr 1933",,,"Renamed *The New Criterion* from January 1926 to January 1927, and *The Monthly Criterion* from May 1927 to March 1928.",Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/b3%2F88%2F85%2Fb38885c606214804a0b750495aa0797c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-06-22,1933-06-22,https://shakespeareandco.princeton.edu/members/horensztejn/,Horensztejn,Horensztejn,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-06-22,1933-07-05,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/forster-angels-fear-tread/,Where Angels Fear to Tread,,"Forster, E. M.",1905,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/b3%2F88%2F85%2Fb38885c606214804a0b750495aa0797c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1933-06-22,1933-06-22,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,,,6.00,FRF,https://shakespeareandco.princeton.edu/books/criterion/,The Criterion,,,,"Renamed *The New Criterion* from January 1926 to January 1927, and *The Monthly Criterion* from May 1927 to March 1928.",Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/e0%2Fe7%2Fab%2Fe0e7abbc278c479ea60884b471709177%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1933-06-22,1933-06-22,https://shakespeareandco.princeton.edu/members/roditi-georges/,Georges Roditi,"Roditi, Georges",,,,,,,,,,,19.50,FRF,https://shakespeareandco.princeton.edu/books/henderson-foundations-worlds-new/,Foundations for the World's New Age of Plenty,,"Henderson, Fred",1933,,Lending Library Card,"Sylvia Beach, Georges Roditi Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/40f31028-742e-4808-bd49-8ba2c8a43e89/manifest,https://iiif.princeton.edu/loris/figgy_prod/9e%2F1c%2F7f%2F9e1c7fbd264b44a49385b479c38bbf44%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-06-23,1933-06-23,https://shakespeareandco.princeton.edu/members/gadban/,Gadban,Gadban,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Crossed out,1933-06-25,,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/obrien-best-short-stories-1931/,The Best Short Stories 1931: And the Yearbook of the American Short Story,,,1931,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2Ff1%2Ffc%2F5ef1fc21a2be4ee7a21be500c8143229%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-06-26,1933-07-03,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/luhan-background-intimate-memories/,Background (Intimate Memories 1),,"Luhan, Mabel Dodge",1933,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/3c%2Fae%2F90%2F3cae90f9e6eb4bbb95bb9fe5328f52a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-06-26,1933-06-26,https://shakespeareandco.princeton.edu/members/owens/,Owens,Owens,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1933-06-26,1933-06-26,https://shakespeareandco.princeton.edu/members/metcalf-thomas/,Mrs. Thomas Metcalf,"Metcalf, Mrs. Thomas",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Mrs. Thomas Metcalf's lending library card is part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Reimbursement,1933-06-26,1933-06-26,https://shakespeareandco.princeton.edu/members/kohlberg/,Kohlberg,Kohlberg,,,,,,,,30.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1933-06-27,1933-07-27,https://shakespeareandco.princeton.edu/members/perdereau/,Perdereau,Perdereau,25.00,,1 month,30,1,,1933-06-16,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1933-06-27,1933-07-27,https://shakespeareandco.princeton.edu/members/birstein/,A. K. Birstein,"Birstein, A. K.",12.00,30.00,1 month,30,1,,1933-06-27,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Purchase,1933-06-27,1933-06-27,https://shakespeareandco.princeton.edu/members/roditi-georges/,Georges Roditi,"Roditi, Georges",,,,,,,,,,,15.00,FRF,https://shakespeareandco.princeton.edu/books/framework-ordered-society/,The Framework of an Ordered Society,,"Salter, Arthur",1933,,Lending Library Card,"Sylvia Beach, Georges Roditi Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/40f31028-742e-4808-bd49-8ba2c8a43e89/manifest,https://iiif.princeton.edu/loris/figgy_prod/9e%2F1c%2F7f%2F9e1c7fbd264b44a49385b479c38bbf44%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-06-28,1933-07-06,https://shakespeareandco.princeton.edu/members/boscq-marie/,Marie Boscq / Bosq,"Boscq, Marie",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/hemingway-sun-also-rises/,The Sun Also Rises,,"Hemingway, Ernest",1926,,Lending Library Card,"Sylvia Beach, Marie Boscq Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/11480fae-3477-40c8-be7d-484c91023da7/manifest,https://iiif.princeton.edu/loris/figgy_prod/9b%2F07%2Fe2%2F9b07e236b5ce465a9fef365511bf55e8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1933-06-28,,https://shakespeareandco.princeton.edu/members/delano-agnes/,Agnes DeLano,"DeLano, Agnes",,60.00,,,,Day By Day,1933-06-28,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1933-06-30,1933-07-30,https://shakespeareandco.princeton.edu/members/deknatel2/,Deknatel,Deknatel,10.00,,1 month,30,1,,1933-06-30,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1933-06-30,1933-06-30,https://shakespeareandco.princeton.edu/members/curran-3/,M. T. Curran,"Curran, M. T.",,,,,,,,30.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1933-06-30,1933-06-30,https://shakespeareandco.princeton.edu/members/delano-agnes/,Agnes DeLano,"DeLano, Agnes",,,,,,,,60.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Purchase,1933-06-30,1933-06-30,https://shakespeareandco.princeton.edu/members/duff-donald/,Donald Duff,"Duff, Donald",,,,,,,,,,,72.00,FRF,https://shakespeareandco.princeton.edu/books/laws-regarding-practice/,Laws Regarding Practice of Medicine in USA and Abroad,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Donald Duff Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c9f19d83-d075-4536-b1fd-fe2a86bdf975/manifest,https://iiif.princeton.edu/loris/figgy_prod/af%2Ffc%2Fe7%2Faffce74530c34da7a547365bad376892%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-07-01,1933-07-01,https://shakespeareandco.princeton.edu/members/berger-suzanne/,Suzanne Berger,"Berger, Suzanne",,,,,,,,30.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1933-07-01,1933-07-01,https://shakespeareandco.princeton.edu/members/rainy/,Rainy,Rainy,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1933-07-01,1933-07-01,https://shakespeareandco.princeton.edu/members/metcalf/,Metcalf,Metcalf,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-07-01,1933-07-08,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/hindus-great-offensive/,The Great Offensive,,"Hindus, Maurice Gerschon",1933,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/29%2Fa8%2F35%2F29a835271ffd4913977d6dfcc4d5747f%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-07-01,1933-07-08,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/jeffers-roan-stallion-tamar/,"Roan Stallion, Tamar, and Other Poems",,"Jeffers, Robinson",1925,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/29%2Fa8%2F35%2F29a835271ffd4913977d6dfcc4d5747f%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-07-03,1933-07-06,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/hergesheimer-tropical-winter/,Tropical Winter,,"Hergesheimer, Joseph",1933,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/3c%2Fae%2F90%2F3cae90f9e6eb4bbb95bb9fe5328f52a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-07-03,1933-07-03,https://shakespeareandco.princeton.edu/members/poingt/,Poingt,Poingt,,,,,,,,30.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-07-03,1933-07-27,https://shakespeareandco.princeton.edu/members/dennis-holly/,Holly (Beach) Dennis / Miss Holly Beach / Mrs. Frederic Dennis,"Dennis, Holly",,,,,,,,,Returned,24,,,https://shakespeareandco.princeton.edu/books/aldington-men-enemies/,All Men Are Enemies: A Romance,,"Aldington, Richard",1933,,Lending Library Card,"Sylvia Beach, Mrs Frederic Dennis Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e0f0b413-503d-4a43-8794-097eb6420dd3/manifest,https://iiif.princeton.edu/loris/figgy_prod/05%2Fc1%2F88%2F05c1885a9904486c86048e7cce4750c1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-07-03,1933-08-28,https://shakespeareandco.princeton.edu/members/dennis-holly/,Holly (Beach) Dennis / Miss Holly Beach / Mrs. Frederic Dennis,"Dennis, Holly",,,,,,,,,Returned,56,,,https://shakespeareandco.princeton.edu/books/alder-life-mean/,What Life Should Mean to You,,"Alder, Alfred",1931,,Lending Library Card,"Sylvia Beach, Mrs Frederic Dennis Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e0f0b413-503d-4a43-8794-097eb6420dd3/manifest,https://iiif.princeton.edu/loris/figgy_prod/05%2Fc1%2F88%2F05c1885a9904486c86048e7cce4750c1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-07-03,1933-07-27,https://shakespeareandco.princeton.edu/members/dennis-holly/,Holly (Beach) Dennis / Miss Holly Beach / Mrs. Frederic Dennis,"Dennis, Holly",,,,,,,,,Returned,24,,,https://shakespeareandco.princeton.edu/books/millin-rhodes/,Rhodes,,"Millin, Sarah Gertrude",1933,,Lending Library Card,"Sylvia Beach, Mrs Frederic Dennis Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e0f0b413-503d-4a43-8794-097eb6420dd3/manifest,https://iiif.princeton.edu/loris/figgy_prod/05%2Fc1%2F88%2F05c1885a9904486c86048e7cce4750c1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-07-03,1933-07-03,https://shakespeareandco.princeton.edu/members/fitzgerald-9/,Fitzgerald,Fitzgerald,,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-07-04,1933-10-23,https://shakespeareandco.princeton.edu/members/jolas-maria/,Maria McDonald Jolas / Miss Maria McDonald / Mrs. Eugene Jolas,"Jolas, Maria",,,,,,,,,Returned,111,,,https://shakespeareandco.princeton.edu/books/ouspensky-tertium-organum-third/,Tertium Organum: The Third Canon of Thought: A Key to the Enigmas of the World,,"Ouspensky, Pyotr Demianovich",1914,,Lending Library Card,"Sylvia Beach, Mrs Eugene Jolas Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/896eee0c-590b-4007-b96e-996face8c57a/manifest,https://iiif.princeton.edu/loris/figgy_prod/17%2F1a%2F8a%2F171a8a48c9fd48ce8fa0799b666cbf87%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1933-07-04,1933-10-04,https://shakespeareandco.princeton.edu/members/tim/,Tim,Tim,65.00,25.00,3 months,92,1,,1933-07-04,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1933-07-04,1933-08-04,https://shakespeareandco.princeton.edu/members/derevianko/,A. Derevianko,"Derevianko, A.",12.00,30.00,1 month,31,1,,1933-07-04,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1933-07-06,1933-07-15,https://shakespeareandco.princeton.edu/members/boscq-marie/,Marie Boscq / Bosq,"Boscq, Marie",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/faulkner-soldiers-pay/,Soldiers' Pay,,"Faulkner, William",1926,,Lending Library Card,"Sylvia Beach, Marie Boscq Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/11480fae-3477-40c8-be7d-484c91023da7/manifest,https://iiif.princeton.edu/loris/figgy_prod/9b%2F07%2Fe2%2F9b07e236b5ce465a9fef365511bf55e8%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-07-06,1933-07-13,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/lockhart-memoirs-british-agent/,Memoirs of a British Agent,,"Lockhart, Robert Hamilton Bruce",1932,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/3c%2Fae%2F90%2F3cae90f9e6eb4bbb95bb9fe5328f52a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1933-07-07,1933-08-07,https://shakespeareandco.princeton.edu/members/duffus/,M. Duffus,"Duffus, M.",12.00,30.00,1 month,31,1,,1933-07-07,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1933-07-07,1933-07-12,https://shakespeareandco.princeton.edu/members/oconor/,Roderic O'Conor,"O'Conor, Roderic",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/fay-original-letters-india/,Original Letters from India (1779 β 1815),,"Fay, Eliza",1925,,Lending Library Card,"Sylvia Beach, Roderic O'Conor Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e223c4e2-8c75-4909-97cb-3da6c6badc40/manifest,https://iiif.princeton.edu/loris/figgy_prod/66%2F14%2F11%2F6614118d54e84e049e9cc3500bd2c859%2Fintermediate_file.jp2/full/full/0/default.jpg
+Separate Payment,1933-07-07,1933-07-07,https://shakespeareandco.princeton.edu/members/deknatel2/,Deknatel,Deknatel,15.00,,,,,,1933-07-07,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-07-07,1934-03-01,https://shakespeareandco.princeton.edu/members/shayerovitch/,Janine Shayerovitch,"Shayerovitch, Janine",,,,,,,,,Returned,237,,,https://shakespeareandco.princeton.edu/books/flexner-prostitution-europe/,Prostitution in Europe,,"Flexner, Abraham",1919,,Lending Library Card,"Sylvia Beach, Janine Shayerovitch Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0c52076e-a64c-4b22-86fd-80ca61562ca0/manifest,https://iiif.princeton.edu/loris/figgy_prod/ae%2F8d%2F51%2Fae8d51fe7bbd4a03b017515e5d3d4284%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1933-07-07,1933-10-07,https://shakespeareandco.princeton.edu/members/oconor/,Roderic O'Conor,"O'Conor, Roderic",100.00,,3 months,92,2,,1933-07-07,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Roderic O'Conor Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/e223c4e2-8c75-4909-97cb-3da6c6badc40/manifest,;https://iiif.princeton.edu/loris/figgy_prod/66%2F14%2F11%2F6614118d54e84e049e9cc3500bd2c859%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-07-07,1933-07-12,https://shakespeareandco.princeton.edu/members/oconor/,Roderic O'Conor,"O'Conor, Roderic",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/cronin-hatters-castle/,Hatter's Castle,,"Cronin, A. J.",1932,,Lending Library Card,"Sylvia Beach, Roderic O'Conor Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e223c4e2-8c75-4909-97cb-3da6c6badc40/manifest,https://iiif.princeton.edu/loris/figgy_prod/66%2F14%2F11%2F6614118d54e84e049e9cc3500bd2c859%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1933-07-08,1933-08-08,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",12.00,30.00,1 month,31,1,,1933-07-08,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-07-08,1933-07-25,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/faulkner-sanctuary/,Sanctuary,,"Faulkner, William",1931,"Caresse Crosby sold a copy of the Black Sun Press edition of *Sanctuary* to Shakespeare and Company on Feb. 17, 1932.",Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/29%2Fa8%2F35%2F29a835271ffd4913977d6dfcc4d5747f%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1933-07-08,1933-07-08,https://shakespeareandco.princeton.edu/members/heaton-2/,Heaton,Heaton,,,,,,,,30.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-07-08,1933-07-25,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/housman-last-poems/,Last Poems,,"Housman, A. E.",1922,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/29%2Fa8%2F35%2F29a835271ffd4913977d6dfcc4d5747f%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1933-07-11,1933-07-11,https://shakespeareandco.princeton.edu/members/stock-3/,Stock,Stock,,,,,,,,30.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1933-07-11,1933-07-11,https://shakespeareandco.princeton.edu/members/sanderson/,Sanderson,Sanderson,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Separate Payment,1933-07-12,1933-07-12,https://shakespeareandco.princeton.edu/members/raphael-a/,A. Raphael,"Raphael, A.",,1.00,,,,,1933-07-12,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1933-07-12,1933-07-12,https://shakespeareandco.princeton.edu/members/stone-4/,Stone,Stone,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-07-12,1933-07-28,https://shakespeareandco.princeton.edu/members/oconor/,Roderic O'Conor,"O'Conor, Roderic",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/luhan-lorenzo-taos/,Lorenzo in Taos,,"Luhan, Mabel Dodge",1932,,Lending Library Card,"Sylvia Beach, Roderic O'Conor Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e223c4e2-8c75-4909-97cb-3da6c6badc40/manifest,https://iiif.princeton.edu/loris/figgy_prod/66%2F14%2F11%2F6614118d54e84e049e9cc3500bd2c859%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-07-12,1933-07-28,https://shakespeareandco.princeton.edu/members/oconor/,Roderic O'Conor,"O'Conor, Roderic",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/tilly-memoirs-comte-alexandre/,Memoirs of the Comte Alexandre de Tilly,,"Tilly, Alexandre de",1933,,Lending Library Card,"Sylvia Beach, Roderic O'Conor Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e223c4e2-8c75-4909-97cb-3da6c6badc40/manifest,https://iiif.princeton.edu/loris/figgy_prod/66%2F14%2F11%2F6614118d54e84e049e9cc3500bd2c859%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-07-13,1933-07-19,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/werfel-hidden-child/,The Hidden Child,,"Werfel, Franz",1931,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/3c%2Fae%2F90%2F3cae90f9e6eb4bbb95bb9fe5328f52a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-07-13,1933-07-13,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-07-13,1933-07-29,https://shakespeareandco.princeton.edu/members/plummer-dorothy/,Dorothy Plummer,"Plummer, Dorothy",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/lehmann-invitation-waltz/,Invitation to the Waltz,,"Lehmann, Rosamond",1932,,Lending Library Card,"Sylvia Beach, Dorothy Plummer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5f53ce0-8ea6-4d1f-b36b-f6e5321bab4c/manifest,https://iiif.princeton.edu/loris/figgy_prod/a1%2F20%2F86%2Fa120869f9753422d95807c64cfe30599%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1933-07-15,1933-08-15,https://shakespeareandco.princeton.edu/members/barton/,Richard Barton,"Barton, Richard",40.00,100.00,1 month,31,2,,1933-07-15,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1933-07-16,1933-07-16,https://shakespeareandco.princeton.edu/members/derevianko/,A. Derevianko,"Derevianko, A.",,,,,,,,30.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1933-07-16,1933-08-16,https://shakespeareandco.princeton.edu/members/nimr/,Nimr,Nimr,12.00,,1 month,31,1,,1933-06-29,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1933-07-17,1933-07-17,https://shakespeareandco.princeton.edu/members/prunette/,Prunette,Prunette,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-07-18,1933-09-04,https://shakespeareandco.princeton.edu/members/frieseke-frances/,Frances Frieseke,"Frieseke, Frances",,,,,,,,,Returned,48,,,https://shakespeareandco.princeton.edu/books/meynell-poems/,Poems,,"Meynell, Alice Christiana Thompson",,Either Alice Meynell's *Poems* (1913) or *Poems of Alice Meynell* (1923).,Lending Library Card,"Sylvia Beach, Frances Frieseke Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4b91effa-eb31-42f8-8230-f4bc65b94161/manifest,https://iiif.princeton.edu/loris/figgy_prod/b6%2F50%2F81%2Fb65081e7dce147ef8961ad23054e067f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-07-18,1933-09-13,https://shakespeareandco.princeton.edu/members/bidoire-boulenger/,Miss Boulenger / Mme Bidoire,"Bidoire, Mme",,,,,,,,,Returned,57,,,https://shakespeareandco.princeton.edu/books/frank-dark-mother/,The Dark Mother,,"Frank, Waldo",1920,,Lending Library Card;Lending Library Card,"Sylvia Beach, Boulenger Bidoire Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Boulenger Bidoire Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7f3ef4f0-6ce0-43d1-b96a-1328f891536c/manifest;https://figgy.princeton.edu/concern/scanned_resources/7f3ef4f0-6ce0-43d1-b96a-1328f891536c/manifest,https://iiif-cloud.princeton.edu/iiif/2/9e%2F43%2F49%2F9e43495bc0ee4fa2b0fd028ced999c26%2Fintermediate_file/full/full/0/default.jpg;https://iiif-cloud.princeton.edu/iiif/2/06%2Fe5%2F48%2F06e548926d5b4ecb8353ccb4162827fe%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-07-18,,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/martin-new-statesman-nation/,The New Statesman and Nation,,,,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/29%2Fa8%2F35%2F29a835271ffd4913977d6dfcc4d5747f%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-07-19,1933-08-08,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/mann-death-venice/,Death in Venice,,"Mann, Thomas",1925,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/3c%2Fae%2F90%2F3cae90f9e6eb4bbb95bb9fe5328f52a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-07-19,1933-08-08,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/sinclair-belfry/,The Belfry,,"Sinclair, May",1916,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/3c%2Fae%2F90%2F3cae90f9e6eb4bbb95bb9fe5328f52a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-07-19,1933-08-08,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/james-portrait-lady/,The Portrait of a Lady,,"James, Henry",1881,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/3c%2Fae%2F90%2F3cae90f9e6eb4bbb95bb9fe5328f52a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-07-20,1933-07-20,https://shakespeareandco.princeton.edu/members/mcculloch/,McCulloch,McCulloch,,,,,,,,30.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-07-21,,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/martin-new-statesman-nation/,The New Statesman and Nation,,,,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/29%2Fa8%2F35%2F29a835271ffd4913977d6dfcc4d5747f%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-07-23,,https://shakespeareandco.princeton.edu/members/plummer-dorothy/,Dorothy Plummer,"Plummer, Dorothy",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/bromfield-modern-hero/,A Modern Hero,,"Bromfield, Louis",1932,,Lending Library Card,"Sylvia Beach, Dorothy Plummer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5f53ce0-8ea6-4d1f-b36b-f6e5321bab4c/manifest,https://iiif.princeton.edu/loris/figgy_prod/a1%2F20%2F86%2Fa120869f9753422d95807c64cfe30599%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-07-24,1933-07-24,https://shakespeareandco.princeton.edu/members/birstein/,A. K. Birstein,"Birstein, A. K.",,,,,,,,30.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Purchase,1933-07-25,1933-07-25,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,,,38.30,FRF,https://shakespeareandco.princeton.edu/books/wordsworth-prelude/,The Prelude,,"Wordsworth, William",,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/29%2Fa8%2F35%2F29a835271ffd4913977d6dfcc4d5747f%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1933-07-25,1933-07-25,https://shakespeareandco.princeton.edu/members/raphael-a/,A. Raphael,"Raphael, A.",,,,,,,,30.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-07-25,1933-08-21,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,27,,,https://shakespeareandco.princeton.edu/books/dos-passos-1919/,1919,,"Dos Passos, John",1932,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/29%2Fa8%2F35%2F29a835271ffd4913977d6dfcc4d5747f%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-07-25,1933-08-21,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,27,,,https://shakespeareandco.princeton.edu/books/mottram-spanish-farm-trilogy/,"The Spanish Farm Trilogy, 1914 β 1918",,"Mottram, R. H.",1927,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/29%2Fa8%2F35%2F29a835271ffd4913977d6dfcc4d5747f%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1933-07-26,1933-07-26,https://shakespeareandco.princeton.edu/members/lutter/,Lutter,Lutter,,,,,,,,30.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1933-07-26,1933-07-26,https://shakespeareandco.princeton.edu/members/douglas-2/,Douglas,Douglas,,,,,,,,30.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-07-26,1933-09-04,https://shakespeareandco.princeton.edu/members/dennis-holly/,Holly (Beach) Dennis / Miss Holly Beach / Mrs. Frederic Dennis,"Dennis, Holly",,,,,,,,,Returned,40,,,https://shakespeareandco.princeton.edu/books/woolf-common-reader/,The Common Reader,,"Woolf, Virginia",1925,,Lending Library Card,"Sylvia Beach, Mrs Frederic Dennis Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e0f0b413-503d-4a43-8794-097eb6420dd3/manifest,https://iiif.princeton.edu/loris/figgy_prod/05%2Fc1%2F88%2F05c1885a9904486c86048e7cce4750c1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-07-27,1933-07-27,https://shakespeareandco.princeton.edu/members/hoopes/,Hoopes,Hoopes,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1933-07-28,1933-07-28,https://shakespeareandco.princeton.edu/members/de-roos-elisabeth/;https://shakespeareandco.princeton.edu/members/perron-eddy/,Elisabeth de Roos / Mrs. du Perron;E. du Perron / Eddy du Perron,"de Roos, Elisabeth;du Perron, Eddy",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1933-07-28,,https://shakespeareandco.princeton.edu/members/atkinson-4/,Ida Atkinson,"Atkinson, Ida",,50.00,,,1,,1933-07-28,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1933-07-28,1933-07-28,https://shakespeareandco.princeton.edu/members/raphael-a/,A. Raphael,"Raphael, A.",,,,,,,,30.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-07-28,1933-08-08,https://shakespeareandco.princeton.edu/members/oconor/,Roderic O'Conor,"O'Conor, Roderic",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/kennedy-bulls-eye/,Bull's Eye,,"Kennedy, Milward",1933,,Lending Library Card,"Sylvia Beach, Roderic O'Conor Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e223c4e2-8c75-4909-97cb-3da6c6badc40/manifest,https://iiif.princeton.edu/loris/figgy_prod/66%2F14%2F11%2F6614118d54e84e049e9cc3500bd2c859%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-07-28,1933-08-08,https://shakespeareandco.princeton.edu/members/oconor/,Roderic O'Conor,"O'Conor, Roderic",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/terry-ellen-terrys-memoirs/,Ellen Terry's Memoirs,,"Terry, Ellen",1932,,Lending Library Card,"Sylvia Beach, Roderic O'Conor Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e223c4e2-8c75-4909-97cb-3da6c6badc40/manifest,https://iiif.princeton.edu/loris/figgy_prod/66%2F14%2F11%2F6614118d54e84e049e9cc3500bd2c859%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-07-29,1933-07-31,https://shakespeareandco.princeton.edu/members/porter-katherine-anne/,Katherine Anne Porter / Mrs. Katherine Anne Pressly,"Porter, Katherine Anne",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/luhan-background-intimate-memories/,Background (Intimate Memories 1),,"Luhan, Mabel Dodge",1933,,Lending Library Card,"Sylvia Beach, Katherine Anne Porter Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e929ad7e-7cda-422b-9107-310e3c4feb78/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2F92%2F2f%2F65922f21f3c04f138bd8795721ba9fd6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-07-29,1933-07-31,https://shakespeareandco.princeton.edu/members/porter-katherine-anne/,Katherine Anne Porter / Mrs. Katherine Anne Pressly,"Porter, Katherine Anne",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/woolf-common-reader/,The Common Reader,,"Woolf, Virginia",1925,,Lending Library Card,"Sylvia Beach, Katherine Anne Porter Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e929ad7e-7cda-422b-9107-310e3c4feb78/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2F92%2F2f%2F65922f21f3c04f138bd8795721ba9fd6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-07-29,1933-07-31,https://shakespeareandco.princeton.edu/members/porter-katherine-anne/,Katherine Anne Porter / Mrs. Katherine Anne Pressly,"Porter, Katherine Anne",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/carswell-savage-pilgrimage-narrative/,The Savage Pilgrimage: A Narrative of D. H. Lawrence,,"Carswell, Catherine",1932,,Lending Library Card,"Sylvia Beach, Katherine Anne Porter Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e929ad7e-7cda-422b-9107-310e3c4feb78/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2F92%2F2f%2F65922f21f3c04f138bd8795721ba9fd6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-08-01,1933-08-01,https://shakespeareandco.princeton.edu/members/yardley/,Yardley,Yardley,,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1933-08-01,1933-09-01,https://shakespeareandco.princeton.edu/members/burdick-c-k/,C. K. Burdick,"Burdick, C. K.",25.00,50.00,1 month,31,1,,1933-08-01,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1933-08-01,1933-08-01,https://shakespeareandco.princeton.edu/members/barton/,Richard Barton,"Barton, Richard",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1933-08-03,1933-09-03,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",25.00,,1 month,31,1,,1933-07-13,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1933-08-05,1933-09-05,https://shakespeareandco.princeton.edu/members/armistead/,Armistead,Armistead,25.00,,1 month,31,1,,1933-08-04,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-08-08,1933-09-20,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,43,,,https://shakespeareandco.princeton.edu/books/doblin-berlin-alexanderplatz/,Berlin Alexanderplatz,,"DoΜblin, Alfred",1931,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/3c%2Fae%2F90%2F3cae90f9e6eb4bbb95bb9fe5328f52a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-08-08,1933-09-20,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,43,,,https://shakespeareandco.princeton.edu/books/dahlberg-bottom-dogs/,Bottom Dogs,,"Dahlberg, Edward",1929,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/3c%2Fae%2F90%2F3cae90f9e6eb4bbb95bb9fe5328f52a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-08-08,1933-09-20,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,43,,,https://shakespeareandco.princeton.edu/books/de-kruif-men-death/,Men against Death,,"de Kruif, Paul",1932,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/3c%2Fae%2F90%2F3cae90f9e6eb4bbb95bb9fe5328f52a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-08-08,1933-09-20,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,43,,,https://shakespeareandco.princeton.edu/books/dreiser-american-tragedy/,An American Tragedy,,"Dreiser, Theodore",1925,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/3c%2Fae%2F90%2F3cae90f9e6eb4bbb95bb9fe5328f52a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-08-08,1933-08-22,https://shakespeareandco.princeton.edu/members/oconor/,Roderic O'Conor,"O'Conor, Roderic",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/strahan-meriwether-mystery/,The Meriwether Mystery,,"Strahan, Kay Cleaver",1932,,Lending Library Card,"Sylvia Beach, Roderic O'Conor Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e223c4e2-8c75-4909-97cb-3da6c6badc40/manifest,https://iiif.princeton.edu/loris/figgy_prod/66%2F14%2F11%2F6614118d54e84e049e9cc3500bd2c859%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-08-08,1933-08-22,https://shakespeareandco.princeton.edu/members/oconor/,Roderic O'Conor,"O'Conor, Roderic",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/forster-longest-journey/,The Longest Journey,,"Forster, E. M.",1907,,Lending Library Card,"Sylvia Beach, Roderic O'Conor Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e223c4e2-8c75-4909-97cb-3da6c6badc40/manifest,https://iiif.princeton.edu/loris/figgy_prod/66%2F14%2F11%2F6614118d54e84e049e9cc3500bd2c859%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-08-08,1933-08-08,https://shakespeareandco.princeton.edu/members/atkinson-4/,Ida Atkinson,"Atkinson, Ida",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Renewal,1933-08-08,1933-09-08,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",12.00,,1 month,31,1,,1933-08-07,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1933-08-10,1933-09-10,https://shakespeareandco.princeton.edu/members/burr-k/,K. Burr,"Burr, K.",20.00,30.00,1 month,31,2,,1933-08-10,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1933-08-17,,https://shakespeareandco.princeton.edu/members/mackinnon/,Mackinnon,Mackinnon,,50.00,,,,Day By Day,1933-08-17,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Supplement,1933-08-18,1933-09-09,https://shakespeareandco.princeton.edu/members/horn/,Horn,Horn,2.00,50.00,22 days,22,1,,1933-08-18,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-08-21,1933-09-11,https://shakespeareandco.princeton.edu/members/dennis-holly/,Holly (Beach) Dennis / Miss Holly Beach / Mrs. Frederic Dennis,"Dennis, Holly",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/rinehart-album/,The Album,,"Rinehart, Mary Roberts",1933,,Lending Library Card,"Sylvia Beach, Mrs Frederic Dennis Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e0f0b413-503d-4a43-8794-097eb6420dd3/manifest,https://iiif.princeton.edu/loris/figgy_prod/05%2Fc1%2F88%2F05c1885a9904486c86048e7cce4750c1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-08-21,1933-10-05,https://shakespeareandco.princeton.edu/members/dennis-holly/,Holly (Beach) Dennis / Miss Holly Beach / Mrs. Frederic Dennis,"Dennis, Holly",,,,,,,,,Returned,45,,,https://shakespeareandco.princeton.edu/books/jackson-europe-since-war/,Europe since the War: A Sketch of Political Development 1918 β 1932,,"Jackson, J. Hampden",1933,,Lending Library Card,"Sylvia Beach, Mrs Frederic Dennis Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e0f0b413-503d-4a43-8794-097eb6420dd3/manifest,https://iiif.princeton.edu/loris/figgy_prod/05%2Fc1%2F88%2F05c1885a9904486c86048e7cce4750c1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-08-21,1933-08-21,https://shakespeareandco.princeton.edu/members/horn/,Horn,Horn,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-08-21,1933-09-05,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/priestley-angel-pavement/,Angel Pavement,,"Priestley, J. B.",1930,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/29%2Fa8%2F35%2F29a835271ffd4913977d6dfcc4d5747f%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-08-21,1933-09-05,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/cather-shadows-rock/,Shadows on the Rock,,"Cather, Willa",1931,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/29%2Fa8%2F35%2F29a835271ffd4913977d6dfcc4d5747f%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1933-08-21,1933-08-21,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,,,3.05,FRF,https://shakespeareandco.princeton.edu/books/martin-new-statesman-nation/,The New Statesman and Nation,,,,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/29%2Fa8%2F35%2F29a835271ffd4913977d6dfcc4d5747f%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1933-08-21,,https://shakespeareandco.princeton.edu/members/nouquier/,Nouquier,Nouquier,,30.00,,,,Day By Day,1933-08-21,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1933-08-21,1933-09-21,https://shakespeareandco.princeton.edu/members/carter-e-c/,E. C. Carter,"Carter, E. C.",12.00,,1 month,31,1,,1933-08-21,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Crossed out,1933-08-21,,https://shakespeareandco.princeton.edu/members/dennis-holly/,Holly (Beach) Dennis / Miss Holly Beach / Mrs. Frederic Dennis,"Dennis, Holly",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/adams-mont-saint-michel/,Mont-Saint-Michel and Chartres,,"Adams, Henry",1904,,Lending Library Card,"Sylvia Beach, Mrs Frederic Dennis Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e0f0b413-503d-4a43-8794-097eb6420dd3/manifest,https://iiif.princeton.edu/loris/figgy_prod/05%2Fc1%2F88%2F05c1885a9904486c86048e7cce4750c1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-08-22,1933-09-27,https://shakespeareandco.princeton.edu/members/oconor/,Roderic O'Conor,"O'Conor, Roderic",,,,,,,,,Returned,36,,,https://shakespeareandco.princeton.edu/books/iles-fact-murder-story/,Before the Fact: A Murder Story for Ladies,,"Iles, Francis",1932,,Lending Library Card,"Sylvia Beach, Roderic O'Conor Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e223c4e2-8c75-4909-97cb-3da6c6badc40/manifest,https://iiif.princeton.edu/loris/figgy_prod/66%2F14%2F11%2F6614118d54e84e049e9cc3500bd2c859%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-08-22,1933-09-27,https://shakespeareandco.princeton.edu/members/oconor/,Roderic O'Conor,"O'Conor, Roderic",,,,,,,,,Returned,36,,,https://shakespeareandco.princeton.edu/books/mackail-ian-felicity/,Ian and Felicity,,"Mackail, Denis",1932,,Lending Library Card,"Sylvia Beach, Roderic O'Conor Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e223c4e2-8c75-4909-97cb-3da6c6badc40/manifest,https://iiif.princeton.edu/loris/figgy_prod/66%2F14%2F11%2F6614118d54e84e049e9cc3500bd2c859%2Fintermediate_file.jp2/full/full/0/default.jpg
+Request,1933-08-23,,https://shakespeareandco.princeton.edu/members/porter-katherine-anne/,Katherine Anne Porter / Mrs. Katherine Anne Pressly,"Porter, Katherine Anne",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/feiling-england-tudors-stuarts/,"England under the Tudors and Stuarts, 1485 β 1688",,"Feiling, Keith",1927,,Lending Library Card,"Sylvia Beach, Katherine Anne Porter Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e929ad7e-7cda-422b-9107-310e3c4feb78/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2F92%2F2f%2F65922f21f3c04f138bd8795721ba9fd6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-08-23,1933-08-29,https://shakespeareandco.princeton.edu/members/porter-katherine-anne/,Katherine Anne Porter / Mrs. Katherine Anne Pressly,"Porter, Katherine Anne",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/barton-sober-truth-collection/,"Sober Truth: A Collection of Nineteenth-Century Episodes, Fantastic, Grotesque and Mysterious",,,1930,,Lending Library Card,"Sylvia Beach, Katherine Anne Porter Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e929ad7e-7cda-422b-9107-310e3c4feb78/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2F92%2F2f%2F65922f21f3c04f138bd8795721ba9fd6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Request,1933-08-23,,https://shakespeareandco.princeton.edu/members/porter-katherine-anne/,Katherine Anne Porter / Mrs. Katherine Anne Pressly,"Porter, Katherine Anne",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/spanish-inquisition/,Spanish Inquisition,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Katherine Anne Porter Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e929ad7e-7cda-422b-9107-310e3c4feb78/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2F92%2F2f%2F65922f21f3c04f138bd8795721ba9fd6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1933-08-23,1933-09-06,https://shakespeareandco.princeton.edu/members/reed-4/,Reed,Reed,12.50,50.00,2 weeks,14,1,,1933-08-23,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-08-23,1933-08-29,https://shakespeareandco.princeton.edu/members/porter-katherine-anne/,Katherine Anne Porter / Mrs. Katherine Anne Pressly,"Porter, Katherine Anne",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/alexander-pope/,Alexander Pope,,,,Unidentified. By or about Alexander Pope. Likely Leslie Stephen's [*Alexander Pope*](https://shakespeareandco.princeton.edu/books/stephen-alexander-pope/) (1880) or Edith Sitwell's [*Alexander Pope*](https://shakespeareandco.princeton.edu/books/sitwell-alexander-pope/) (1930).,Lending Library Card,"Sylvia Beach, Katherine Anne Porter Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e929ad7e-7cda-422b-9107-310e3c4feb78/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2F92%2F2f%2F65922f21f3c04f138bd8795721ba9fd6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Request,1933-08-23,,https://shakespeareandco.princeton.edu/members/porter-katherine-anne/,Katherine Anne Porter / Mrs. Katherine Anne Pressly,"Porter, Katherine Anne",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/mediaeval-england/,Mediaeval England,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Katherine Anne Porter Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e929ad7e-7cda-422b-9107-310e3c4feb78/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2F92%2F2f%2F65922f21f3c04f138bd8795721ba9fd6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-08-23,1933-08-29,https://shakespeareandco.princeton.edu/members/porter-katherine-anne/,Katherine Anne Porter / Mrs. Katherine Anne Pressly,"Porter, Katherine Anne",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/sitwell-dumb-animal-stories/,Dumb-Animal and Other Stories,,"Sitwell, Osbert",1930,,Lending Library Card,"Sylvia Beach, Katherine Anne Porter Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e929ad7e-7cda-422b-9107-310e3c4feb78/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2F92%2F2f%2F65922f21f3c04f138bd8795721ba9fd6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-08-24,1933-08-24,https://shakespeareandco.princeton.edu/members/burdick-c-k/,C. K. Burdick,"Burdick, C. K.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1933-08-25,,https://shakespeareandco.princeton.edu/members/green-7/,Green,Green,,25.00,,,,Day By Day,1933-08-25,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1933-08-26,1933-08-26,https://shakespeareandco.princeton.edu/members/mackinnon/,Mackinnon,Mackinnon,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1933-08-28,1933-08-28,https://shakespeareandco.princeton.edu/members/scammell/,Scammell,Scammell,,,,,,,,30.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1933-08-28,1933-08-28,https://shakespeareandco.princeton.edu/members/green-7/,Green,Green,,,,,,,,25.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-08-28,1933-08-30,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/connington-tragedy-ravensthorpe/,The Tragedy at Ravensthorpe,,"Connington, J. J.",1927,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/26%2F41%2F4f%2F26414fa5907b409db286adabe4e9330c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-08-28,1933-09-05,https://shakespeareandco.princeton.edu/members/plummer-dorothy/,Dorothy Plummer,"Plummer, Dorothy",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/woolf-waves/,The Waves,,"Woolf, Virginia",1931,,Lending Library Card,"Sylvia Beach, Dorothy Plummer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5f53ce0-8ea6-4d1f-b36b-f6e5321bab4c/manifest,https://iiif.princeton.edu/loris/figgy_prod/a1%2F20%2F86%2Fa120869f9753422d95807c64cfe30599%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-08-29,1933-08-29,https://shakespeareandco.princeton.edu/members/horn/,Horn,Horn,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-08-30,1933-08-31,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/garnett-capajon-fifty-four/,Capajon: Fifty-Four Short Stories Published 1921 β 1933,,,1933,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/26%2F41%2F4f%2F26414fa5907b409db286adabe4e9330c%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1933-08-30,1933-09-30,https://shakespeareandco.princeton.edu/members/curran-elizabeth/,Elizabeth Curran,"Curran, Elizabeth",12.00,,1 month,31,1,,1933-08-30,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1933-08-31,1933-09-02,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/thackeray-wolves-lamb/,The Wolves and the Lamb,,"Thackeray, William Makepeace",1854,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/26%2F41%2F4f%2F26414fa5907b409db286adabe4e9330c%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1933-09-01,1933-09-01,https://shakespeareandco.princeton.edu/members/levison/,Mrs. I. Levison,"Levison, Mrs. I.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1933-09-01,1933-09-01,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",,,,,,,,30.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-09-02,1933-09-05,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/fitzgerald-great-gatsby/,The Great Gatsby,,"Fitzgerald, F. Scott",1925,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/26%2F41%2F4f%2F26414fa5907b409db286adabe4e9330c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-09-04,1933-09-15,https://shakespeareandco.princeton.edu/members/porter-katherine-anne/,Katherine Anne Porter / Mrs. Katherine Anne Pressly,"Porter, Katherine Anne",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/strachey-books-characters-french/,"Books and Characters, French and English",,"Strachey, Giles Lytton",1922,,Lending Library Card,"Sylvia Beach, Katherine Anne Porter Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e929ad7e-7cda-422b-9107-310e3c4feb78/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2F92%2F2f%2F65922f21f3c04f138bd8795721ba9fd6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-09-04,1933-09-25,https://shakespeareandco.princeton.edu/members/frieseke-frances/,Frances Frieseke,"Frieseke, Frances",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/millay-harp-weaver-poems/,The Harp-Weaver and Other Poems,,"Millay, Edna St. Vincent",1923,,Lending Library Card,"Sylvia Beach, Frances Frieseke Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4b91effa-eb31-42f8-8230-f4bc65b94161/manifest,https://iiif.princeton.edu/loris/figgy_prod/b6%2F50%2F81%2Fb65081e7dce147ef8961ad23054e067f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-09-05,1933-09-11,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/walpole-vanessa/,Vanessa,,"Walpole, Hugh",1933,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/26%2F41%2F4f%2F26414fa5907b409db286adabe4e9330c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-09-05,1933-09-13,https://shakespeareandco.princeton.edu/members/plummer-dorothy/,Dorothy Plummer,"Plummer, Dorothy",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/woolf-orlando-biography/,Orlando: A Biography,,"Woolf, Virginia",1928,,Lending Library Card,"Sylvia Beach, Dorothy Plummer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5f53ce0-8ea6-4d1f-b36b-f6e5321bab4c/manifest,https://iiif.princeton.edu/loris/figgy_prod/a1%2F20%2F86%2Fa120869f9753422d95807c64cfe30599%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-09-08,1933-09-11,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/kennedy-bulls-eye/,Bull's Eye,,"Kennedy, Milward",1933,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/81%2F7c%2F1a%2F817c1a5913254b87a059a8ad642320e7%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-09-08,1933-09-11,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/carr-romantic-exiles-nineteenth/,The Romantic Exiles: A Nineteenth-Century Portrait Gallery,,"Carr, Edward Hallett",1933,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/81%2F7c%2F1a%2F817c1a5913254b87a059a8ad642320e7%2Fintermediate_file/full/full/0/default.jpg
+Generic,1933-09-08,,https://shakespeareandco.princeton.edu/members/dennis-holly/,Holly (Beach) Dennis / Miss Holly Beach / Mrs. Frederic Dennis,"Dennis, Holly",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/larousse/,Larousse Dictionary,,,,"Sylvia Beach sent a Larousse dictionary to her sister, Holly (Beach) Dennis.",Lending Library Card,"Sylvia Beach, Mrs Frederic Dennis Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e0f0b413-503d-4a43-8794-097eb6420dd3/manifest,https://iiif.princeton.edu/loris/figgy_prod/05%2Fc1%2F88%2F05c1885a9904486c86048e7cce4750c1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1933-09-08,1933-12-08,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",90.00,,3 months,91,2,,1933-09-08,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,;https://iiif-cloud.princeton.edu/iiif/2/81%2F7c%2F1a%2F817c1a5913254b87a059a8ad642320e7%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-09-08,1933-09-16,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/atherton-adventures-novelist/,Adventures of a Novelist,,"Atherton, Gertrude Franklin Horn",1932,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/81%2F7c%2F1a%2F817c1a5913254b87a059a8ad642320e7%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-09-08,1933-09-18,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/boleslavski-lances-fires-moscow/,Lances Down: Between the Fires in Moscow,,"Boleslavski, Richard",1933,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/81%2F7c%2F1a%2F817c1a5913254b87a059a8ad642320e7%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-09-11,1933-09-13,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/eberhart-white-cockatoo/,The White Cockatoo,,"Eberhart, Mignon Good",1933,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/81%2F7c%2F1a%2F817c1a5913254b87a059a8ad642320e7%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-09-11,1933-09-13,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/buck-first-wife-stories/,The First Wife and Other Stories,,"Buck, Pearl S.",1933,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/26%2F41%2F4f%2F26414fa5907b409db286adabe4e9330c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-09-11,1933-09-13,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/croly-new-republic/,The New Republic,,,,"Antoinette Bernheim's lending library card includes the following notation next to her borrow on March 1, 1939: 39/10/2. There is no issue of *The New Republic* on that date.",Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/81%2F7c%2F1a%2F817c1a5913254b87a059a8ad642320e7%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-09-11,1933-09-13,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/mackworth-time-tide/,Time and Tide,,,,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/81%2F7c%2F1a%2F817c1a5913254b87a059a8ad642320e7%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-09-11,1933-09-13,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/croly-new-republic/,The New Republic,,,,"Antoinette Bernheim's lending library card includes the following notation next to her borrow on March 1, 1939: 39/10/2. There is no issue of *The New Republic* on that date.",Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/81%2F7c%2F1a%2F817c1a5913254b87a059a8ad642320e7%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-09-11,1933-09-18,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/walpole-vanessa/,Vanessa,,"Walpole, Hugh",1933,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/81%2F7c%2F1a%2F817c1a5913254b87a059a8ad642320e7%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1933-09-11,1933-10-11,https://shakespeareandco.princeton.edu/members/shefrin/,Shefrin,Shefrin,12.00,60.00,1 month,30,1,,1933-09-11,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1933-09-12,1933-09-12,https://shakespeareandco.princeton.edu/members/horn/,Horn,Horn,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1933-09-13,1934-09-13,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",175.00,,1 year,365,1,,1933-09-13,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,;https://iiif-cloud.princeton.edu/iiif/2/e6%2F43%2F11%2Fe643111d618f45aeb8829844d126a6c8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-09-13,1933-09-14,https://shakespeareandco.princeton.edu/members/picard-pierre/,Pierre Picard,"Picard, Pierre",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/mansfield-bliss-short-stories/,Bliss and Other Stories,,"Mansfield, Katherine",1920,,Lending Library Card,"Sylvia Beach, Pierre Picard Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eaa0240e-06e3-4b29-8f66-3d0257e7cba6/manifest,https://iiif.princeton.edu/loris/figgy_prod/60%2F13%2F47%2F60134785709d4e2ea7e44f3fe4d0ffc6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-09-13,1933-09-27,https://shakespeareandco.princeton.edu/members/plummer-dorothy/,Dorothy Plummer,"Plummer, Dorothy",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/linklater-juan-america/,Juan in America,,"Linklater, Eric",1931,,Lending Library Card,"Sylvia Beach, Dorothy Plummer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5f53ce0-8ea6-4d1f-b36b-f6e5321bab4c/manifest,https://iiif.princeton.edu/loris/figgy_prod/a1%2F20%2F86%2Fa120869f9753422d95807c64cfe30599%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-09-13,1933-09-18,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/buchan-prince-captivity/,A Prince of the Captivity,,"Buchan, John",1933,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/26%2F41%2F4f%2F26414fa5907b409db286adabe4e9330c%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1933-09-13,1933-10-13,https://shakespeareandco.princeton.edu/members/picard-pierre/,Pierre Picard,"Picard, Pierre",12.00,30.00,1 month,30,1,,1933-09-13,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Pierre Picard Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/eaa0240e-06e3-4b29-8f66-3d0257e7cba6/manifest,;https://iiif.princeton.edu/loris/figgy_prod/60%2F13%2F47%2F60134785709d4e2ea7e44f3fe4d0ffc6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-09-14,1933-10-03,https://shakespeareandco.princeton.edu/members/picard-pierre/,Pierre Picard,"Picard, Pierre",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/lehmann-dusty-answer/,Dusty Answer,,"Lehmann, Rosamond",1927,,Lending Library Card,"Sylvia Beach, Pierre Picard Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eaa0240e-06e3-4b29-8f66-3d0257e7cba6/manifest,https://iiif.princeton.edu/loris/figgy_prod/60%2F13%2F47%2F60134785709d4e2ea7e44f3fe4d0ffc6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-09-16,1933-09-18,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/strahan-meriwether-mystery/,The Meriwether Mystery,,"Strahan, Kay Cleaver",1932,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/81%2F7c%2F1a%2F817c1a5913254b87a059a8ad642320e7%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-09-16,1933-10-05,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/house-intimate-papers-colonel/,The Intimate Papers of Colonel House,2 vols.,"House, Edward M.",1926,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/81%2F7c%2F1a%2F817c1a5913254b87a059a8ad642320e7%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-09-16,,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/van-vechten-merry-go-round/,The Merry-Go-Round,,"Van Vechten, Carl",1918,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/12%2F8c%2F4f%2F128c4f1d37b747b4b6abfaed7a09f71d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1933-09-16,1933-10-16,https://shakespeareandco.princeton.edu/members/luckman/,Luckman,Luckman,25.00,,1 month,30,1,,1933-09-16,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-09-16,1933-09-21,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/ertz-galaxy/,The Galaxy,,"Ertz, Susan",1929,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/12%2F8c%2F4f%2F128c4f1d37b747b4b6abfaed7a09f71d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-09-18,1933-09-22,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/martin-new-statesman-nation/,The New Statesman and Nation,,,,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/81%2F7c%2F1a%2F817c1a5913254b87a059a8ad642320e7%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-09-18,1933-09-22,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/mackworth-time-tide/,Time and Tide,,,,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/81%2F7c%2F1a%2F817c1a5913254b87a059a8ad642320e7%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-09-18,1933-09-22,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/mackworth-time-tide/,Time and Tide,,,,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/81%2F7c%2F1a%2F817c1a5913254b87a059a8ad642320e7%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-09-18,1933-09-20,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/fletcher-green-rope/,The Green Rope,,"Fletcher, Joseph Smith",1927,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/26%2F41%2F4f%2F26414fa5907b409db286adabe4e9330c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-09-20,1933-09-21,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/tomlinson-gallions-reach/,Gallions Reach,,"Tomlinson, H. M.",1927,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/26%2F41%2F4f%2F26414fa5907b409db286adabe4e9330c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-09-20,1933-09-25,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/webb-gone-earth/,Gone to Earth,,"Webb, Mary",1917,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e3%2Fa3%2F2f%2Fe3a32f3f58b84d669bc3710140acb7d5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-09-21,1933-09-27,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/mackenzie-extraordinary-women-theme/,Extraordinary Women: Theme and Variations,,"Mackenzie, Compton",1928,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/12%2F8c%2F4f%2F128c4f1d37b747b4b6abfaed7a09f71d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-09-21,1933-09-25,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/ford-rash-act/,The Rash Act,,"Ford, Ford Madox",1933,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/26%2F41%2F4f%2F26414fa5907b409db286adabe4e9330c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-09-21,1933-09-27,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/bennett-accident/,Accident,,"Bennett, Arnold",1929,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/12%2F8c%2F4f%2F128c4f1d37b747b4b6abfaed7a09f71d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-09-22,1933-10-10,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/dreiser-tragic-america/,Tragic America,,"Dreiser, Theodore",1931,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/81%2F7c%2F1a%2F817c1a5913254b87a059a8ad642320e7%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-09-25,1933-10-02,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/hurst-imitation-life/,Imitation of Life: A Novel,,"Hurst, Fannie",1933,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e3%2Fa3%2F2f%2Fe3a32f3f58b84d669bc3710140acb7d5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-09-25,1933-09-25,https://shakespeareandco.princeton.edu/members/coles-2/,Mrs. Coles,"Coles, Mrs.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-09-26,1933-10-21,https://shakespeareandco.princeton.edu/members/denis-graterolle/,Elisabeth Denis-Graterolle / Mme Maurice Denis,"Denis-Graterolle, Elisabeth",,,,,,,,,Returned,25,,,https://shakespeareandco.princeton.edu/books/browning-ring-book/,The Ring and the Book,,"Browning, Robert",1868,,Lending Library Card,"Sylvia Beach, Elisabeth Denis-Graterolle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/964dbe97-240c-4e59-a8ca-c43f25875149/manifest,https://iiif.princeton.edu/loris/figgy_prod/01%2F85%2F35%2F0185352ce4a645fb9698d1bbb7b51071%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1933-09-26,1934-03-26,https://shakespeareandco.princeton.edu/members/denis-graterolle/,Elisabeth Denis-Graterolle / Mme Maurice Denis,"Denis-Graterolle, Elisabeth",90.00,,6 months,181,2,,1933-09-26,,,,,FRF,,,,,,,Logbook;Lending Library Card;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Elisabeth Denis-Graterolle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/964dbe97-240c-4e59-a8ca-c43f25875149/manifest;,;https://iiif.princeton.edu/loris/figgy_prod/01%2F85%2F35%2F0185352ce4a645fb9698d1bbb7b51071%2Fintermediate_file.jp2/full/full/0/default.jpg;
+Borrow,1933-09-26,1933-10-21,https://shakespeareandco.princeton.edu/members/denis-graterolle/,Elisabeth Denis-Graterolle / Mme Maurice Denis,"Denis-Graterolle, Elisabeth",,,,,,,,,Returned,25,,,https://shakespeareandco.princeton.edu/books/browning-poems-plays-robert/,The Poems and Plays of Robert Browning,Vol. 2 1844β1864,"Browning, Robert",1906,From the Everyman's Library series.,Lending Library Card,"Sylvia Beach, Elisabeth Denis-Graterolle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/964dbe97-240c-4e59-a8ca-c43f25875149/manifest,https://iiif.princeton.edu/loris/figgy_prod/01%2F85%2F35%2F0185352ce4a645fb9698d1bbb7b51071%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-09-27,1933-09-30,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/arnold-happened-andals/,What Happened at Andals?,,"Arnold, John",1929,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/12%2F8c%2F4f%2F128c4f1d37b747b4b6abfaed7a09f71d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-09-27,1933-10-11,https://shakespeareandco.princeton.edu/members/plummer-dorothy/,Dorothy Plummer,"Plummer, Dorothy",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/munthe-story-san-michele/,The Story of San Michele,,"Munthe, Axel",1930,,Lending Library Card,"Sylvia Beach, Dorothy Plummer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5f53ce0-8ea6-4d1f-b36b-f6e5321bab4c/manifest,https://iiif.princeton.edu/loris/figgy_prod/a1%2F20%2F86%2Fa120869f9753422d95807c64cfe30599%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-09-27,1933-10-07,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/chambers-dark-star/,The Dark Star,,"Chambers, R. W.",1917,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/12%2F8c%2F4f%2F128c4f1d37b747b4b6abfaed7a09f71d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1933-09-29,1933-10-29,https://shakespeareandco.princeton.edu/members/perdereau/,Perdereau,Perdereau,25.00,,1 month,30,1,,1933-09-25,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-09-30,1933-10-07,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/rinehart-strange-adventure/,This Strange Adventure,,"Rinehart, Mary Roberts",1929,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/12%2F8c%2F4f%2F128c4f1d37b747b4b6abfaed7a09f71d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-10-02,1933-10-09,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/asquith-memories/,More Memories,,"Asquith, Margot",1933,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e3%2Fa3%2F2f%2Fe3a32f3f58b84d669bc3710140acb7d5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-10-03,1933-10-10,https://shakespeareandco.princeton.edu/members/picard-pierre/,Pierre Picard,"Picard, Pierre",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/tagore-gitanjali/,Gitanjali,,"Tagore, Rabindranath",1912,,Lending Library Card,"Sylvia Beach, Pierre Picard Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eaa0240e-06e3-4b29-8f66-3d0257e7cba6/manifest,https://iiif.princeton.edu/loris/figgy_prod/60%2F13%2F47%2F60134785709d4e2ea7e44f3fe4d0ffc6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Separate Payment,1933-10-03,1933-10-03,https://shakespeareandco.princeton.edu/members/prindiville/,Prindiville,Prindiville,25.00,15.00,,,,,1933-10-03,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1933-10-04,1933-10-04,https://shakespeareandco.princeton.edu/members/luckman/,Luckman,Luckman,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1933-10-04,,https://shakespeareandco.princeton.edu/members/camden/,Camden,Camden,,12.00,,,,Other,1933-10-04,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-10-05,1933-10-06,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/joyce-exiles/,Exiles,,"Joyce, James",1918,,Lending Library Card,"Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest,https://iiif.princeton.edu/loris/figgy_prod/e6%2Ffe%2F17%2Fe6fe1798c3664003ba0f3ec37c1b076a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1933-10-05,1934-04-05,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",50.00,30.00,6 months,182,1,,1933-10-05,,,,,FRF,,,,,,,Lending Library Card;Logbook,"Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest;,https://iiif.princeton.edu/loris/figgy_prod/e6%2Ffe%2F17%2Fe6fe1798c3664003ba0f3ec37c1b076a%2Fintermediate_file.jp2/full/full/0/default.jpg;
+Subscription,1933-10-05,1934-01-05,https://shakespeareandco.princeton.edu/members/meyer-florence/,Florence Meyer,"Meyer, Florence",,,3 months,92,2,,1933-10-05,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Florence Meyer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd3b6930-a7f4-40e5-88ad-1a27c20d35f1/manifest,https://iiif.princeton.edu/loris/figgy_prod/ce%2F38%2Fc0%2Fce38c07006f54cd5b453f4e61d7f497a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-10-05,1933-10-07,https://shakespeareandco.princeton.edu/members/meyer-florence/,Florence Meyer,"Meyer, Florence",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/faulkner-lay-dying/,As I Lay Dying,,"Faulkner, William",1930,,Lending Library Card,"Sylvia Beach, Florence Meyer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd3b6930-a7f4-40e5-88ad-1a27c20d35f1/manifest,https://iiif.princeton.edu/loris/figgy_prod/ce%2F38%2Fc0%2Fce38c07006f54cd5b453f4e61d7f497a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-10-05,1933-10-10,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/nichols-cry-havoc/,Cry Havoc!,,"Nichols, Beverley",1933,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/81%2F7c%2F1a%2F817c1a5913254b87a059a8ad642320e7%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-10-06,1933-10-09,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/moore-confessions-young-man/,The Confessions of a Young Man,,"Moore, George",1886,,Lending Library Card,"Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest,https://iiif.princeton.edu/loris/figgy_prod/e6%2Ffe%2F17%2Fe6fe1798c3664003ba0f3ec37c1b076a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-10-07,1933-10-16,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/trites-paterfamilias/,Paterfamilias,,"Trites, W. B.",1929,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/12%2F8c%2F4f%2F128c4f1d37b747b4b6abfaed7a09f71d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-10-07,1933-10-13,https://shakespeareandco.princeton.edu/members/porter-katherine-anne/,Katherine Anne Porter / Mrs. Katherine Anne Pressly,"Porter, Katherine Anne",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/waddell-peter-abelard-novel/,Peter Abelard: A Novel,,"Waddell, Helen",1933,,Lending Library Card,"Sylvia Beach, Katherine Anne Porter Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e929ad7e-7cda-422b-9107-310e3c4feb78/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2F92%2F2f%2F65922f21f3c04f138bd8795721ba9fd6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-10-07,1933-10-13,https://shakespeareandco.princeton.edu/members/porter-katherine-anne/,Katherine Anne Porter / Mrs. Katherine Anne Pressly,"Porter, Katherine Anne",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/ford-return-yesterday/,To Return to Yesterday: Reminiscences 1894 βΒ 1914,,"Ford, Ford Madox",1931,,Lending Library Card,"Sylvia Beach, Katherine Anne Porter Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e929ad7e-7cda-422b-9107-310e3c4feb78/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2F92%2F2f%2F65922f21f3c04f138bd8795721ba9fd6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1933-10-07,,https://shakespeareandco.princeton.edu/members/valensa/,Valensa,Valensa,,50.00,,,,Day By Day,1933-10-07,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-10-07,1933-10-21,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/linklater-juan-america/,Juan in America,,"Linklater, Eric",1931,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/29%2Fa8%2F35%2F29a835271ffd4913977d6dfcc4d5747f%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-10-07,1933-10-12,https://shakespeareandco.princeton.edu/members/meyer-florence/,Florence Meyer,"Meyer, Florence",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/faulkner-sound-fury/,The Sound and the Fury,,"Faulkner, William",1929,,Lending Library Card,"Sylvia Beach, Florence Meyer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd3b6930-a7f4-40e5-88ad-1a27c20d35f1/manifest,https://iiif.princeton.edu/loris/figgy_prod/ce%2F38%2Fc0%2Fce38c07006f54cd5b453f4e61d7f497a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-10-07,1933-10-16,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/rinehart-lost-ecstasy-novel/,Lost Ecstasy: A Novel,,"Rinehart, Mary Roberts",1927,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/12%2F8c%2F4f%2F128c4f1d37b747b4b6abfaed7a09f71d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-10-07,1933-10-28,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/rohmer-sleeps/,She Who Sleeps,,"Rohmer, Sax",1928,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/12%2F8c%2F4f%2F128c4f1d37b747b4b6abfaed7a09f71d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-10-09,1933-10-12,https://shakespeareandco.princeton.edu/members/gascoyne/,David Gascoyne,"Gascoyne, David",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/jolas-transition/,transition,"no. 15, 1929",,,,Lending Library Card,"Sylvia Beach, David Gascoyne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fac349a1-bb75-4f88-9991-ea5d50cd2885/manifest,https://iiif.princeton.edu/loris/figgy_prod/35%2F56%2F12%2F355612893e9f4744b78054a75f5edaa9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-10-09,1933-10-12,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/hemingway-farewell-arms/,A Farewell to Arms,,"Hemingway, Ernest",1929,,Lending Library Card,"Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest,https://iiif.princeton.edu/loris/figgy_prod/e6%2Ffe%2F17%2Fe6fe1798c3664003ba0f3ec37c1b076a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-10-09,1933-10-11,https://shakespeareandco.princeton.edu/members/gascoyne/,David Gascoyne,"Gascoyne, David",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/jolas-transition/,transition,"Vol. 1, bound volume 1927",,,,Lending Library Card,"Sylvia Beach, David Gascoyne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fac349a1-bb75-4f88-9991-ea5d50cd2885/manifest,https://iiif.princeton.edu/loris/figgy_prod/35%2F56%2F12%2F355612893e9f4744b78054a75f5edaa9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1933-10-09,1933-11-09,https://shakespeareandco.princeton.edu/members/gascoyne/,David Gascoyne,"Gascoyne, David",22.50,50.00,1 month,31,1,,1933-10-09,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, David Gascoyne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/fac349a1-bb75-4f88-9991-ea5d50cd2885/manifest,;https://iiif.princeton.edu/loris/figgy_prod/35%2F56%2F12%2F355612893e9f4744b78054a75f5edaa9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1933-10-09,1933-11-09,https://shakespeareandco.princeton.edu/members/boisse-de-black/,J. Boisse de Black,"Boisse de Black, J.",12.00,30.00,1 month,31,1,,1933-10-09,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1933-10-09,1933-10-12,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/woolf-flush-biography/,Flush: A Biography,,"Woolf, Virginia",1933,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e3%2Fa3%2F2f%2Fe3a32f3f58b84d669bc3710140acb7d5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1933-10-10,1934-01-10,https://shakespeareandco.princeton.edu/members/chaliapin-marina/,Marina Chaliapin,"Chaliapin, Marina",65.00,50.00,3 months,92,1,,1933-10-10,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1933-10-10,1933-10-19,https://shakespeareandco.princeton.edu/members/picard-pierre/,Pierre Picard,"Picard, Pierre",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/tagore-gardener/,The Gardener,,"Tagore, Rabindranath",1913,,Lending Library Card,"Sylvia Beach, Pierre Picard Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eaa0240e-06e3-4b29-8f66-3d0257e7cba6/manifest,https://iiif.princeton.edu/loris/figgy_prod/60%2F13%2F47%2F60134785709d4e2ea7e44f3fe4d0ffc6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-10-10,1933-10-11,https://shakespeareandco.princeton.edu/members/langlois/,Mme Langlois,"Langlois, Mme",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/stein-autobiography-alice-b/,The Autobiography of Alice B. Toklas,,"Stein, Gertrude",1933,,Lending Library Card,"Sylvia Beach, Langlois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9c0d7729-d40a-4a6c-beed-0a13c1b0a497/manifest,https://iiif.princeton.edu/loris/figgy_prod/4d%2F6c%2Ff0%2F4d6cf0a99e5c4c57acac794cadaaa8a6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-10-10,1933-10-21,https://shakespeareandco.princeton.edu/members/denis-graterolle/,Elisabeth Denis-Graterolle / Mme Maurice Denis,"Denis-Graterolle, Elisabeth",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/lawrence-etruscan-places/,Etruscan Places,,"Lawrence, D. H.",1932,,Lending Library Card,"Sylvia Beach, Elisabeth Denis-Graterolle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/964dbe97-240c-4e59-a8ca-c43f25875149/manifest,https://iiif.princeton.edu/loris/figgy_prod/01%2F85%2F35%2F0185352ce4a645fb9698d1bbb7b51071%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1933-10-10,,https://shakespeareandco.princeton.edu/members/langlois/,Mme Langlois,"Langlois, Mme",,,,,,Day By Day,1933-10-10,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Langlois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9c0d7729-d40a-4a6c-beed-0a13c1b0a497/manifest,https://iiif.princeton.edu/loris/figgy_prod/4d%2F6c%2Ff0%2F4d6cf0a99e5c4c57acac794cadaaa8a6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-10-10,1933-10-13,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/glenn-east-eden/,East of Eden,,"Glenn, Isa",1932,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/81%2F7c%2F1a%2F817c1a5913254b87a059a8ad642320e7%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-10-10,1933-10-19,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/bromfield-farm/,The Farm,,"Bromfield, Louis",1933,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/81%2F7c%2F1a%2F817c1a5913254b87a059a8ad642320e7%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1933-10-11,1934-04-11,https://shakespeareandco.princeton.edu/members/buisson-destenay/,Mlle Buisson-Destenay,"Buisson-Destenay, Mlle",50.00,30.00,6 months,182,1,,1933-10-11,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1933-10-11,1933-10-25,https://shakespeareandco.princeton.edu/members/plummer-dorothy/,Dorothy Plummer,"Plummer, Dorothy",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/hemingway-farewell-arms/,A Farewell to Arms,,"Hemingway, Ernest",1929,,Lending Library Card,"Sylvia Beach, Dorothy Plummer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5f53ce0-8ea6-4d1f-b36b-f6e5321bab4c/manifest,https://iiif.princeton.edu/loris/figgy_prod/a1%2F20%2F86%2Fa120869f9753422d95807c64cfe30599%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1933-10-11,1933-10-11,https://shakespeareandco.princeton.edu/members/gillet-louis/,Louis Gillet,"Gillet, Louis",,,,,,,,,,,15.50,FRF,https://shakespeareandco.princeton.edu/books/campbell-adamastor-poems/,Adamastor: Poems,,"Campbell, Roy",1930,,Lending Library Card,"Sylvia Beach, Louis Gillet Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/059a38e2-2b13-4c5c-b116-b978abc5de0c/manifest,https://iiif.princeton.edu/loris/figgy_prod/f5%2F5d%2F86%2Ff55d8687ab804f2fbe9123c7158d2f09%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1933-10-11,1933-10-11,https://shakespeareandco.princeton.edu/members/gillet-louis/,Louis Gillet,"Gillet, Louis",,,,,,,,,,,32.50,FRF,https://shakespeareandco.princeton.edu/books/woolf-flush-biography/,Flush: A Biography,,"Woolf, Virginia",1933,,Lending Library Card,"Sylvia Beach, Louis Gillet Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/059a38e2-2b13-4c5c-b116-b978abc5de0c/manifest,https://iiif.princeton.edu/loris/figgy_prod/f5%2F5d%2F86%2Ff55d8687ab804f2fbe9123c7158d2f09%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1933-10-11,1933-10-11,https://shakespeareandco.princeton.edu/members/gillet-louis/,Louis Gillet,"Gillet, Louis",,,,,,,,,,,37.50,FRF,https://shakespeareandco.princeton.edu/books/pound-draft-xxx-cantos/,A Draft of XXX Cantos,,"Pound, Ezra",1930,,Lending Library Card,"Sylvia Beach, Louis Gillet Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/059a38e2-2b13-4c5c-b116-b978abc5de0c/manifest,https://iiif.princeton.edu/loris/figgy_prod/f5%2F5d%2F86%2Ff55d8687ab804f2fbe9123c7158d2f09%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1933-10-11,1933-10-11,https://shakespeareandco.princeton.edu/members/gillet-louis/,Louis Gillet,"Gillet, Louis",,,,,,,,,,,3.00,FRF,https://shakespeareandco.princeton.edu/books/grigson-new-verse/,New Verse,,,,,Lending Library Card,"Sylvia Beach, Louis Gillet Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/059a38e2-2b13-4c5c-b116-b978abc5de0c/manifest,https://iiif.princeton.edu/loris/figgy_prod/f5%2F5d%2F86%2Ff55d8687ab804f2fbe9123c7158d2f09%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1933-10-11,1933-10-11,https://shakespeareandco.princeton.edu/members/gillet-louis/,Louis Gillet,"Gillet, Louis",,,,,,,,,,,26.00,FRF,https://shakespeareandco.princeton.edu/books/a-e-avatars-futurist-fantasy/,The Avatars: A Futurist Fantasy,,Γ,1933,,Lending Library Card,"Sylvia Beach, Louis Gillet Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/059a38e2-2b13-4c5c-b116-b978abc5de0c/manifest,https://iiif.princeton.edu/loris/figgy_prod/f5%2F5d%2F86%2Ff55d8687ab804f2fbe9123c7158d2f09%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1933-10-11,1933-10-11,https://shakespeareandco.princeton.edu/members/gillet-louis/,Louis Gillet,"Gillet, Louis",,,,,,,,,,,26.00,FRF,https://shakespeareandco.princeton.edu/books/mansfield-poems/,Poems,,"Mansfield, Katherine",1923,,Lending Library Card,"Sylvia Beach, Louis Gillet Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/059a38e2-2b13-4c5c-b116-b978abc5de0c/manifest,https://iiif.princeton.edu/loris/figgy_prod/f5%2F5d%2F86%2Ff55d8687ab804f2fbe9123c7158d2f09%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1933-10-11,1933-10-11,https://shakespeareandco.princeton.edu/members/gillet-louis/,Louis Gillet,"Gillet, Louis",,,,,,,,,,,15.50,FRF,https://shakespeareandco.princeton.edu/books/pound-selected-poems/,Selected Poems,,"Pound, Ezra",1928,,Lending Library Card,"Sylvia Beach, Louis Gillet Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/059a38e2-2b13-4c5c-b116-b978abc5de0c/manifest,https://iiif.princeton.edu/loris/figgy_prod/f5%2F5d%2F86%2Ff55d8687ab804f2fbe9123c7158d2f09%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-10-11,1933-10-25,https://shakespeareandco.princeton.edu/members/plummer-dorothy/,Dorothy Plummer,"Plummer, Dorothy",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/faulkner-sanctuary/,Sanctuary,,"Faulkner, William",1931,"Caresse Crosby sold a copy of the Black Sun Press edition of *Sanctuary* to Shakespeare and Company on Feb. 17, 1932.",Lending Library Card,"Sylvia Beach, Dorothy Plummer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5f53ce0-8ea6-4d1f-b36b-f6e5321bab4c/manifest,https://iiif.princeton.edu/loris/figgy_prod/a1%2F20%2F86%2Fa120869f9753422d95807c64cfe30599%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-10-12,1933-10-17,https://shakespeareandco.princeton.edu/members/connolly-cyril/,Cyril Connolly,"Connolly, Cyril",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/smith-andy-gump/,Andy Gump,,"Smith, Sidney",1924,,Lending Library Card,"Sylvia Beach, Cyril Connolly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/001b27cc-7d4a-44d1-9129-c2d3dd9b178a/manifest,https://iiif.princeton.edu/loris/figgy_prod/6d%2F70%2Fb8%2F6d70b8ea023d4971b118a554c81508a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1933-10-12,1933-11-12,https://shakespeareandco.princeton.edu/members/connolly-cyril/,Cyril Connolly,"Connolly, Cyril",65.00,,1 month,31,3,,1933-10-12,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Cyril Connolly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/001b27cc-7d4a-44d1-9129-c2d3dd9b178a/manifest,;https://iiif.princeton.edu/loris/figgy_prod/6d%2F70%2Fb8%2F6d70b8ea023d4971b118a554c81508a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-10-12,1933-10-19,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/guedalla-queen-mr-gladstone/,The Queen and Mr. Gladstone,Vol. 1,"Guedalla, Phillip",1933,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e3%2Fa3%2F2f%2Fe3a32f3f58b84d669bc3710140acb7d5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-10-12,1933-10-27,https://shakespeareandco.princeton.edu/members/meyer-florence/,Florence Meyer,"Meyer, Florence",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/trotsky-history-russian-revolution/,History of the Russian Revolution,Vol. 1 The Overthrow of Tzarism,"Trotsky, Leon",1932,,Lending Library Card,"Sylvia Beach, Florence Meyer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd3b6930-a7f4-40e5-88ad-1a27c20d35f1/manifest,https://iiif.princeton.edu/loris/figgy_prod/ce%2F38%2Fc0%2Fce38c07006f54cd5b453f4e61d7f497a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1933-10-12,1933-10-12,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,,,12.00,FRF,https://shakespeareandco.princeton.edu/books/leavis-scrutiny-quarterly-review/,Scrutiny: A Quarterly Review,"Vol. 2, no. 2, Sep, 1933",,,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/e0%2Fe7%2Fab%2Fe0e7abbc278c479ea60884b471709177%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-10-12,1933-10-17,https://shakespeareandco.princeton.edu/members/connolly-cyril/,Cyril Connolly,"Connolly, Cyril",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/hemingway-death-afternoon/,Death in the Afternoon,,"Hemingway, Ernest",1932,,Lending Library Card,"Sylvia Beach, Cyril Connolly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/001b27cc-7d4a-44d1-9129-c2d3dd9b178a/manifest,https://iiif.princeton.edu/loris/figgy_prod/6d%2F70%2Fb8%2F6d70b8ea023d4971b118a554c81508a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-10-12,1933-10-13,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/huxley-crome-yellow/,Crome Yellow,,"Huxley, Aldous",1921,,Lending Library Card,"Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest,https://iiif.princeton.edu/loris/figgy_prod/e6%2Ffe%2F17%2Fe6fe1798c3664003ba0f3ec37c1b076a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-10-12,1933-10-25,https://shakespeareandco.princeton.edu/members/connolly-cyril/,Cyril Connolly,"Connolly, Cyril",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/maugham-human-bondage/,Of Human Bondage,,"Maugham, W. Somerset",1915,,Lending Library Card,"Sylvia Beach, Cyril Connolly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/001b27cc-7d4a-44d1-9129-c2d3dd9b178a/manifest,https://iiif.princeton.edu/loris/figgy_prod/6d%2F70%2Fb8%2F6d70b8ea023d4971b118a554c81508a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-10-12,1933-10-17,https://shakespeareandco.princeton.edu/members/connolly-cyril/,Cyril Connolly,"Connolly, Cyril",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/monnier-fableaux/,Fableaux,,"Monnier, Adrienne",1932,,Lending Library Card,"Sylvia Beach, Cyril Connolly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/001b27cc-7d4a-44d1-9129-c2d3dd9b178a/manifest,https://iiif.princeton.edu/loris/figgy_prod/6d%2F70%2Fb8%2F6d70b8ea023d4971b118a554c81508a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-10-12,1933-10-27,https://shakespeareandco.princeton.edu/members/meyer-florence/,Florence Meyer,"Meyer, Florence",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/dane-broome-stages/,Broome Stages,,"Dane, Clemence",1931,,Lending Library Card,"Sylvia Beach, Florence Meyer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd3b6930-a7f4-40e5-88ad-1a27c20d35f1/manifest,https://iiif.princeton.edu/loris/figgy_prod/ce%2F38%2Fc0%2Fce38c07006f54cd5b453f4e61d7f497a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-10-12,1933-10-14,https://shakespeareandco.princeton.edu/members/gascoyne/,David Gascoyne,"Gascoyne, David",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/stein-geography-plays/,Geography and Plays,,"Stein, Gertrude",1922,,Lending Library Card,"Sylvia Beach, David Gascoyne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fac349a1-bb75-4f88-9991-ea5d50cd2885/manifest,https://iiif.princeton.edu/loris/figgy_prod/35%2F56%2F12%2F355612893e9f4744b78054a75f5edaa9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-10-13,1933-10-14,https://shakespeareandco.princeton.edu/members/porter-katherine-anne/,Katherine Anne Porter / Mrs. Katherine Anne Pressly,"Porter, Katherine Anne",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/croly-new-republic/,The New Republic,,,,"Antoinette Bernheim's lending library card includes the following notation next to her borrow on March 1, 1939: 39/10/2. There is no issue of *The New Republic* on that date.",Lending Library Card,"Sylvia Beach, Katherine Anne Porter Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e929ad7e-7cda-422b-9107-310e3c4feb78/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2F92%2F2f%2F65922f21f3c04f138bd8795721ba9fd6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-10-13,1933-10-18,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/williams-clock-ticks/,The Clock Ticks On,,"Williams, Valentine",1933,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/81%2F7c%2F1a%2F817c1a5913254b87a059a8ad642320e7%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-10-13,1933-10-18,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/mackworth-world/,This Was My World,,"Mackworth, Margaret Haig Thomas, Viscountess Rhondda",1933,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/81%2F7c%2F1a%2F817c1a5913254b87a059a8ad642320e7%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1933-10-13,1933-11-13,https://shakespeareandco.princeton.edu/members/picard-pierre/,Pierre Picard,"Picard, Pierre",12.00,,1 month,31,1,,1933-10-10,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Pierre Picard Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/eaa0240e-06e3-4b29-8f66-3d0257e7cba6/manifest,;https://iiif.princeton.edu/loris/figgy_prod/60%2F13%2F47%2F60134785709d4e2ea7e44f3fe4d0ffc6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-10-13,1933-10-14,https://shakespeareandco.princeton.edu/members/porter-katherine-anne/,Katherine Anne Porter / Mrs. Katherine Anne Pressly,"Porter, Katherine Anne",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/stein-autobiography-alice-b/,The Autobiography of Alice B. Toklas,,"Stein, Gertrude",1933,,Lending Library Card,"Sylvia Beach, Katherine Anne Porter Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e929ad7e-7cda-422b-9107-310e3c4feb78/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2F92%2F2f%2F65922f21f3c04f138bd8795721ba9fd6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-10-13,1933-10-14,https://shakespeareandco.princeton.edu/members/porter-katherine-anne/,Katherine Anne Porter / Mrs. Katherine Anne Pressly,"Porter, Katherine Anne",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/croly-new-republic/,The New Republic,,,,"Antoinette Bernheim's lending library card includes the following notation next to her borrow on March 1, 1939: 39/10/2. There is no issue of *The New Republic* on that date.",Lending Library Card,"Sylvia Beach, Katherine Anne Porter Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e929ad7e-7cda-422b-9107-310e3c4feb78/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2F92%2F2f%2F65922f21f3c04f138bd8795721ba9fd6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-10-13,1933-10-14,https://shakespeareandco.princeton.edu/members/porter-katherine-anne/,Katherine Anne Porter / Mrs. Katherine Anne Pressly,"Porter, Katherine Anne",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/wrench-spectator/,The Spectator,,,,,Lending Library Card,"Sylvia Beach, Katherine Anne Porter Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e929ad7e-7cda-422b-9107-310e3c4feb78/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2F92%2F2f%2F65922f21f3c04f138bd8795721ba9fd6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-10-13,1933-10-13,https://shakespeareandco.princeton.edu/members/horn/,Horn,Horn,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-10-13,1933-10-16,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/brittain-testament-youth/,Testament of Youth,,"Brittain, Vera",1933,,Lending Library Card,"Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest,https://iiif.princeton.edu/loris/figgy_prod/e6%2Ffe%2F17%2Fe6fe1798c3664003ba0f3ec37c1b076a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-10-14,1933-10-17,https://shakespeareandco.princeton.edu/members/gascoyne/,David Gascoyne,"Gascoyne, David",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/radiguet-devil-flesh/,The Devil in the Flesh,,"Radiguet, Raymond",1923,,Lending Library Card,"Sylvia Beach, David Gascoyne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fac349a1-bb75-4f88-9991-ea5d50cd2885/manifest,https://iiif.princeton.edu/loris/figgy_prod/35%2F56%2F12%2F355612893e9f4744b78054a75f5edaa9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-10-14,1933-10-21,https://shakespeareandco.princeton.edu/members/porter-katherine-anne/,Katherine Anne Porter / Mrs. Katherine Anne Pressly,"Porter, Katherine Anne",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/brett-lawrence-brett-friendship/,Lawrence and Brett: A Friendship,,"Brett, Dorothy",1933,,Lending Library Card,"Sylvia Beach, Katherine Anne Porter Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e929ad7e-7cda-422b-9107-310e3c4feb78/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2F92%2F2f%2F65922f21f3c04f138bd8795721ba9fd6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-10-14,1933-10-21,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/roberts-new-country-prose/,New Country: Prose and Poetry by the Authors of New Signatures,,,1933,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/29%2Fa8%2F35%2F29a835271ffd4913977d6dfcc4d5747f%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1933-10-14,1933-10-14,https://shakespeareandco.princeton.edu/members/gascoyne/,David Gascoyne,"Gascoyne, David",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/huysmans-grain/,Against the Grain,,"Huysmans, Joris-Karl",1922,,Lending Library Card,"Sylvia Beach, David Gascoyne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fac349a1-bb75-4f88-9991-ea5d50cd2885/manifest,https://iiif.princeton.edu/loris/figgy_prod/35%2F56%2F12%2F355612893e9f4744b78054a75f5edaa9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-10-16,1933-10-19,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/russell-education-social-order/,Education and the Social Order,,"Russell, Bertrand",1932,,Lending Library Card,"Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest,https://iiif.princeton.edu/loris/figgy_prod/e6%2Ffe%2F17%2Fe6fe1798c3664003ba0f3ec37c1b076a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-10-16,1933-10-28,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/wodehouse-summer-lightning/,Summer Lightning,,"Wodehouse, P. G.",1929,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/12%2F8c%2F4f%2F128c4f1d37b747b4b6abfaed7a09f71d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-10-17,1933-10-25,https://shakespeareandco.princeton.edu/members/connolly-cyril/,Cyril Connolly,"Connolly, Cyril",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/firbank-inclinations/,Inclinations,,"Firbank, Ronald",1916,,Lending Library Card,"Sylvia Beach, Cyril Connolly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/001b27cc-7d4a-44d1-9129-c2d3dd9b178a/manifest,https://iiif.princeton.edu/loris/figgy_prod/6d%2F70%2Fb8%2F6d70b8ea023d4971b118a554c81508a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-10-17,1933-10-25,https://shakespeareandco.princeton.edu/members/connolly-cyril/,Cyril Connolly,"Connolly, Cyril",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/west-miss-lonelyhearts/,Miss Lonelyhearts,,"West, Nathanael",1933,,Lending Library Card,"Sylvia Beach, Cyril Connolly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/001b27cc-7d4a-44d1-9129-c2d3dd9b178a/manifest,https://iiif.princeton.edu/loris/figgy_prod/6d%2F70%2Fb8%2F6d70b8ea023d4971b118a554c81508a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-10-17,1933-10-20,https://shakespeareandco.princeton.edu/members/gascoyne/,David Gascoyne,"Gascoyne, David",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/putnam-european-caravan/,The European Caravan,,"Putnam, Samuel",1931,,Lending Library Card,"Sylvia Beach, David Gascoyne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fac349a1-bb75-4f88-9991-ea5d50cd2885/manifest,https://iiif.princeton.edu/loris/figgy_prod/35%2F56%2F12%2F355612893e9f4744b78054a75f5edaa9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1933-10-18,1934-04-18,https://shakespeareandco.princeton.edu/members/deknatel2/,Deknatel,Deknatel,50.00,,6 months,182,1,,1933-10-18,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-10-18,1933-11-21,https://shakespeareandco.princeton.edu/members/pfeiffer-virginia/,Virginia Pfeiffer,"Pfeiffer, Virginia",,,,,,,,,Returned,34,,,https://shakespeareandco.princeton.edu/books/ackerley-hindoo-holiday/,Hindoo Holiday,,"Ackerley, J. R.",1932,,Lending Library Card,"Sylvia Beach, Virginia Pfeiffer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5f9e74fc-c06a-4c36-a2d1-878b8fce2cd2/manifest,https://iiif.princeton.edu/loris/figgy_prod/ba%2F1f%2F7c%2Fba1f7c825222455eb1f26f27993510fa%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-10-18,1933-10-24,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/sullivan-grace-god/,But for the Grace of God,,"Sullivan, J. W. N.",1932,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/81%2F7c%2F1a%2F817c1a5913254b87a059a8ad642320e7%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-10-18,1933-11-07,https://shakespeareandco.princeton.edu/members/pfeiffer-virginia/,Virginia Pfeiffer,"Pfeiffer, Virginia",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/smith-famous-trials-history/,Famous Trials of History,,"Smith, F. E., Earl of Birkenhead",1926,,Lending Library Card,"Sylvia Beach, Virginia Pfeiffer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5f9e74fc-c06a-4c36-a2d1-878b8fce2cd2/manifest,https://iiif.princeton.edu/loris/figgy_prod/ba%2F1f%2F7c%2Fba1f7c825222455eb1f26f27993510fa%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1933-10-18,1934-04-18,https://shakespeareandco.princeton.edu/members/gilbert-3/,Gilbert,Gilbert,100.00,50.00,6 months,182,1,,1933-10-18,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-10-18,1933-10-25,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/hindus-great-offensive/,The Great Offensive,,"Hindus, Maurice Gerschon",1933,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/81%2F7c%2F1a%2F817c1a5913254b87a059a8ad642320e7%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1933-10-18,1933-11-18,https://shakespeareandco.princeton.edu/members/pfeiffer-virginia/,Virginia Pfeiffer,"Pfeiffer, Virginia",40.00,,1 month,31,2,,1933-10-18,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Virginia Pfeiffer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/5f9e74fc-c06a-4c36-a2d1-878b8fce2cd2/manifest,;https://iiif.princeton.edu/loris/figgy_prod/ba%2F1f%2F7c%2Fba1f7c825222455eb1f26f27993510fa%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1933-10-19,1934-01-19,https://shakespeareandco.princeton.edu/members/tuttle-stephen-d/,Stephen D. Tuttle,"Tuttle, Stephen D.",30.00,30.00,3 months,92,1,,1933-10-19,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Stephen D. Tuttle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/f1653918-3f2b-4e88-bd27-4e3c4d83a47d/manifest,;https://iiif-cloud.princeton.edu/iiif/2/65%2Fdf%2Ff8%2F65dff8cf663e4eceb54c65b53cccaf7e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-10-19,1933-10-25,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/nichols-cry-havoc/,Cry Havoc!,,"Nichols, Beverley",1933,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e3%2Fa3%2F2f%2Fe3a32f3f58b84d669bc3710140acb7d5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Separate Payment,1933-10-19,1933-10-19,https://shakespeareandco.princeton.edu/members/gilbert-3/,Gilbert,Gilbert,,10.00,,,,,1933-10-19,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-10-19,1933-10-21,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/smith-beginning-origin-civilization/,In the Beginning: The Origin of Civilization,,"Smith, Grafton Elliot",1928,,Lending Library Card,"Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest,https://iiif.princeton.edu/loris/figgy_prod/e6%2Ffe%2F17%2Fe6fe1798c3664003ba0f3ec37c1b076a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-10-19,1933-10-25,https://shakespeareandco.princeton.edu/members/tuttle-stephen-d/,Stephen D. Tuttle,"Tuttle, Stephen D.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/fielding-history-tom-jones/,"The History of Tom Jones, a Foundling",Vol. 2,"Fielding, Henry",1749,,Lending Library Card,"Sylvia Beach, Stephen D. Tuttle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f1653918-3f2b-4e88-bd27-4e3c4d83a47d/manifest,https://iiif-cloud.princeton.edu/iiif/2/65%2Fdf%2Ff8%2F65dff8cf663e4eceb54c65b53cccaf7e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-10-19,1933-10-30,https://shakespeareandco.princeton.edu/members/picard-pierre/,Pierre Picard,"Picard, Pierre",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/tagore-sadhana-realisation-life/,SΔdhanΔ: The Realisation of Life,,"Tagore, Rabindranath",1913,,Lending Library Card,"Sylvia Beach, Pierre Picard Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eaa0240e-06e3-4b29-8f66-3d0257e7cba6/manifest,https://iiif.princeton.edu/loris/figgy_prod/60%2F13%2F47%2F60134785709d4e2ea7e44f3fe4d0ffc6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-10-20,1933-10-21,https://shakespeareandco.princeton.edu/members/gascoyne/,David Gascoyne,"Gascoyne, David",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/jolas-transition/,transition,"no. 14, Fall 1928",,,,Lending Library Card,"Sylvia Beach, David Gascoyne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fac349a1-bb75-4f88-9991-ea5d50cd2885/manifest,https://iiif.princeton.edu/loris/figgy_prod/35%2F56%2F12%2F355612893e9f4744b78054a75f5edaa9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-10-20,1933-10-25,https://shakespeareandco.princeton.edu/members/gascoyne/,David Gascoyne,"Gascoyne, David",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/jolas-transition/,transition,"no. 12, 1928",,,,Lending Library Card,"Sylvia Beach, David Gascoyne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fac349a1-bb75-4f88-9991-ea5d50cd2885/manifest,https://iiif.princeton.edu/loris/figgy_prod/35%2F56%2F12%2F355612893e9f4744b78054a75f5edaa9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-10-20,1933-10-21,https://shakespeareandco.princeton.edu/members/gascoyne/,David Gascoyne,"Gascoyne, David",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/jolas-transition/,transition,"no. 13, Summer 1928",,,,Lending Library Card,"Sylvia Beach, David Gascoyne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fac349a1-bb75-4f88-9991-ea5d50cd2885/manifest,https://iiif.princeton.edu/loris/figgy_prod/35%2F56%2F12%2F355612893e9f4744b78054a75f5edaa9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-10-21,1933-10-28,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/lawrence-love-among-haystacks/,Love among the Haystacks,,"Lawrence, D. H.",1930,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/29%2Fa8%2F35%2F29a835271ffd4913977d6dfcc4d5747f%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-10-21,1933-10-28,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/mantz-life-katherine-mansfield/,The Life of Katherine Mansfield,,"Mantz, Ruth Elvish;Murry, John Middleton",1933,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/29%2Fa8%2F35%2F29a835271ffd4913977d6dfcc4d5747f%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-10-21,1933-11-07,https://shakespeareandco.princeton.edu/members/denis-graterolle/,Elisabeth Denis-Graterolle / Mme Maurice Denis,"Denis-Graterolle, Elisabeth",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/milton/,Milton,,,,Unidentified. By or about Milton. Mme Mazon borrows volume 1.,Lending Library Card,"Sylvia Beach, Elisabeth Denis-Graterolle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/964dbe97-240c-4e59-a8ca-c43f25875149/manifest,https://iiif.princeton.edu/loris/figgy_prod/01%2F85%2F35%2F0185352ce4a645fb9698d1bbb7b51071%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-10-21,1933-10-24,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/aldington-men-enemies/,All Men Are Enemies: A Romance,,"Aldington, Richard",1933,,Lending Library Card,"Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest,https://iiif.princeton.edu/loris/figgy_prod/e6%2Ffe%2F17%2Fe6fe1798c3664003ba0f3ec37c1b076a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-10-23,1933-10-28,https://shakespeareandco.princeton.edu/members/gascoyne/,David Gascoyne,"Gascoyne, David",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/boyle-year-last/,Year before Last,,"Boyle, Kay",1932,,Lending Library Card,"Sylvia Beach, David Gascoyne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fac349a1-bb75-4f88-9991-ea5d50cd2885/manifest,https://iiif.princeton.edu/loris/figgy_prod/35%2F56%2F12%2F355612893e9f4744b78054a75f5edaa9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-10-23,1933-10-26,https://shakespeareandco.princeton.edu/members/gascoyne/,David Gascoyne,"Gascoyne, David",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/cummings-eimi/,EIMI,,"Cummings, E. E.",1933,,Lending Library Card,"Sylvia Beach, David Gascoyne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fac349a1-bb75-4f88-9991-ea5d50cd2885/manifest,https://iiif.princeton.edu/loris/figgy_prod/35%2F56%2F12%2F355612893e9f4744b78054a75f5edaa9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Supplement,1933-10-23,1933-12-23,https://shakespeareandco.princeton.edu/members/carter-e-c/,E. C. Carter,"Carter, E. C.",13.30,,2 months,61,1,,1933-10-23,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-10-24,1933-10-31,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/famous-plays-1933/,Famous Plays of 1933,,"Daviot, Gordon;Williams, Emlyn;Armstrong, Anthony;Chetham-Strode, Warren;Howard, Sidney Coe;Kaufman, George S.;Ryskind, Morrie",1933,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/81%2F7c%2F1a%2F817c1a5913254b87a059a8ad642320e7%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-10-24,,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/steffens-autobiography-lincoln-steffens/,The Autobiography of Lincoln Steffens,2 vols.,"Steffens, Lincoln",1931,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/81%2F7c%2F1a%2F817c1a5913254b87a059a8ad642320e7%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-10-24,1933-10-25,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/hindus-great-offensive/,The Great Offensive,,"Hindus, Maurice Gerschon",1933,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/3c%2Faa%2F4f%2F3caa4f8e37954ba7a197d68f47529504%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-10-24,1933-10-28,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/hamnett-laughing-torso/,Laughing Torso,,"Hamnett, Nina",1932,,Lending Library Card,"Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest,https://iiif.princeton.edu/loris/figgy_prod/e6%2Ffe%2F17%2Fe6fe1798c3664003ba0f3ec37c1b076a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-10-25,1933-11-04,https://shakespeareandco.princeton.edu/members/tuttle-stephen-d/,Stephen D. Tuttle,"Tuttle, Stephen D.",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/reed-early-tudor-drama/,"Early Tudor Drama: Medwall, the Rastells, Heywood, and the More Circle",,"Reed, Arthur William",1926,,Lending Library Card,"Sylvia Beach, Stephen D. Tuttle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f1653918-3f2b-4e88-bd27-4e3c4d83a47d/manifest,https://iiif-cloud.princeton.edu/iiif/2/65%2Fdf%2Ff8%2F65dff8cf663e4eceb54c65b53cccaf7e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-10-25,1933-11-06,https://shakespeareandco.princeton.edu/members/tony-mayer/,Thérèse Tony-Mayer,"Tony-Mayer, Thérèse",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/richardson-pointed-roofs/,Pointed Roofs (Pilgrimage 1),,"Richardson, Dorothy M.",1915,,Lending Library Card,"Sylvia Beach, Thérèse Tony-Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/27246b4c-7d99-4dca-b874-ab90bd542cfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2Fa0%2Fff%2F50a0ff19abc240c680a6a33baf060b76%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-10-25,1933-11-02,https://shakespeareandco.princeton.edu/members/connolly-cyril/,Cyril Connolly,"Connolly, Cyril",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/lawrence-virgin-gipsy/,The Virgin and the Gipsy,,"Lawrence, D. H.",1930,,Lending Library Card,"Sylvia Beach, Cyril Connolly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/001b27cc-7d4a-44d1-9129-c2d3dd9b178a/manifest,https://iiif.princeton.edu/loris/figgy_prod/6d%2F70%2Fb8%2F6d70b8ea023d4971b118a554c81508a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1933-10-25,1934-01-25,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",50.00,60.00,3 months,92,2,,1933-10-25,,,,,FRF,,,,,,,Lending Library Card;Logbook,"Sylvia Beach, Aline Prot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",https://figgy.princeton.edu/concern/scanned_resources/15a376bb-405b-4488-b789-1559abbe3fb2/manifest;,https://iiif-cloud.princeton.edu/iiif/2/cd%2Fb9%2F8d%2Fcdb98d69d2914c9a86733742b9a595f2%2Fintermediate_file/full/full/0/default.jpg;
+Borrow,1933-10-25,1933-11-10,https://shakespeareandco.princeton.edu/members/plummer-dorothy/,Dorothy Plummer,"Plummer, Dorothy",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/russell-education-social-order/,Education and the Social Order,,"Russell, Bertrand",1932,,Lending Library Card,"Sylvia Beach, Dorothy Plummer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5f53ce0-8ea6-4d1f-b36b-f6e5321bab4c/manifest,https://iiif.princeton.edu/loris/figgy_prod/a1%2F20%2F86%2Fa120869f9753422d95807c64cfe30599%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-10-25,1933-10-30,https://shakespeareandco.princeton.edu/members/connolly-cyril/,Cyril Connolly,"Connolly, Cyril",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/rinehart-album/,The Album,,"Rinehart, Mary Roberts",1933,,Lending Library Card,"Sylvia Beach, Cyril Connolly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/001b27cc-7d4a-44d1-9129-c2d3dd9b178a/manifest,https://iiif.princeton.edu/loris/figgy_prod/6d%2F70%2Fb8%2F6d70b8ea023d4971b118a554c81508a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-10-25,1933-10-31,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/van-dine-dragon-murder-case/,The Dragon Murder Case,,"Van Dine, S. S.",1933,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/3c%2Faa%2F4f%2F3caa4f8e37954ba7a197d68f47529504%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-10-25,1933-11-09,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/wells-way-world-going/,Way the World Is Going,,"Wells, H. G.",1928,,Lending Library Card,"Sylvia Beach, Aline Prot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/15a376bb-405b-4488-b789-1559abbe3fb2/manifest,https://iiif-cloud.princeton.edu/iiif/2/cd%2Fb9%2F8d%2Fcdb98d69d2914c9a86733742b9a595f2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-10-25,1933-11-02,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/glover-morning-pride/,Morning Pride,,"Glover, Halcott",1933,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e3%2Fa3%2F2f%2Fe3a32f3f58b84d669bc3710140acb7d5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-10-25,1933-11-09,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/webb-gone-earth/,Gone to Earth,,"Webb, Mary",1917,,Lending Library Card,"Sylvia Beach, Aline Prot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/15a376bb-405b-4488-b789-1559abbe3fb2/manifest,https://iiif-cloud.princeton.edu/iiif/2/cd%2Fb9%2F8d%2Fcdb98d69d2914c9a86733742b9a595f2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-10-26,1933-10-30,https://shakespeareandco.princeton.edu/members/gascoyne/,David Gascoyne,"Gascoyne, David",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/crane-bridge/,The Bridge,,"Crane, Hart",1930,,Lending Library Card,"Sylvia Beach, David Gascoyne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fac349a1-bb75-4f88-9991-ea5d50cd2885/manifest,https://iiif.princeton.edu/loris/figgy_prod/35%2F56%2F12%2F355612893e9f4744b78054a75f5edaa9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1933-10-26,1934-04-26,https://shakespeareandco.princeton.edu/members/tony-mayer/,ThΓ©rΓ¨se Tony-Mayer,"Tony-Mayer, ThΓ©rΓ¨se",90.00,,6 months,182,1,,1933-10-26,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, ThΓ©rΓ¨se Tony-Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/27246b4c-7d99-4dca-b874-ab90bd542cfa/manifest,;https://iiif.princeton.edu/loris/figgy_prod/50%2Fa0%2Fff%2F50a0ff19abc240c680a6a33baf060b76%2Fintermediate_file.jp2/full/full/0/default.jpg
+Crossed out,1933-10-27,,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/young-house-water/,The House under the Water,,"Young, Francis Brett",1933,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/cb%2F34%2Fa0%2Fcb34a06754bc48edade768f52aa21e25%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1933-10-27,1933-10-27,https://shakespeareandco.princeton.edu/members/wendel/,Hélène de Wendel / Comtesse de Noailles,"de Wendel, Hélène",,,,,,,,,,,30.00,FRF,https://shakespeareandco.princeton.edu/books/kipling-kim/,Kim,,"Kipling, Rudyard",1901,,Lending Library Card,"Sylvia Beach, Madame Hélène Wendel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c70e230a-8313-4c53-9939-22beb5f809b6/manifest,https://iiif-cloud.princeton.edu/iiif/2/e4%2Fa9%2Fdf%2Fe4a9df1cda094e20805c5905f19a68f0%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-10-28,1933-11-04,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/priestley-wonder-hero/,Wonder Hero,,"Priestley, J. B.",1933,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/58%2F45%2F77%2F58457700c8f84cf7be6a477c1713a40b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-10-28,1933-11-03,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/cather-shadows-rock/,Shadows on the Rock,,"Cather, Willa",1931,,Lending Library Card,"Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest,https://iiif.princeton.edu/loris/figgy_prod/e6%2Ffe%2F17%2Fe6fe1798c3664003ba0f3ec37c1b076a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-10-28,1933-11-04,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/monroe-poets-art/,Poets and Their Art,,"Monroe, Harriet",1926,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/58%2F45%2F77%2F58457700c8f84cf7be6a477c1713a40b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-10-28,1933-10-30,https://shakespeareandco.princeton.edu/members/gascoyne/,David Gascoyne,"Gascoyne, David",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/stein-autobiography-alice-b/,The Autobiography of Alice B. Toklas,,"Stein, Gertrude",1933,,Lending Library Card,"Sylvia Beach, David Gascoyne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fac349a1-bb75-4f88-9991-ea5d50cd2885/manifest,https://iiif.princeton.edu/loris/figgy_prod/35%2F56%2F12%2F355612893e9f4744b78054a75f5edaa9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1933-10-28,1933-11-28,https://shakespeareandco.princeton.edu/members/claudius/,Agnes Claudius,"Claudius, Agnes",12.00,30.00,1 month,31,1,,1933-10-28,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Agnes Claudius Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/18a9262d-8ea3-4d0c-9b36-8a1c638950fa/manifest,;https://iiif.princeton.edu/loris/figgy_prod/23%2Fbb%2Fbd%2F23bbbd657cc64aeaa1cf1b3dc4210522%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-10-28,1933-11-15,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/streets/,Streets,,,,Unidentified. Possibly Archibald Macleish's [*Streets in the Moon*](https://shakespeareandco.princeton.edu/books/macleish-streets-moon/) (1926).,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/12%2F8c%2F4f%2F128c4f1d37b747b4b6abfaed7a09f71d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-10-28,1933-11-08,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/galsworthy-beyond/,Beyond,,"Galsworthy, John",1917,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/12%2F8c%2F4f%2F128c4f1d37b747b4b6abfaed7a09f71d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-10-28,1933-11-07,https://shakespeareandco.princeton.edu/members/claudius/,Agnes Claudius,"Claudius, Agnes",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/lewis-paleface-philosophy-melting/,"Paleface: The Philosophy of the ""Melting-Pot""",,"Lewis, Wyndham",1929,,Lending Library Card,"Sylvia Beach, Agnes Claudius Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18a9262d-8ea3-4d0c-9b36-8a1c638950fa/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2Fbb%2Fbd%2F23bbbd657cc64aeaa1cf1b3dc4210522%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1933-10-29,1933-11-29,https://shakespeareandco.princeton.edu/members/perdereau/,Perdereau,Perdereau,25.00,,1 month,31,1,,1933-10-21,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1933-10-30,1933-11-30,https://shakespeareandco.princeton.edu/members/howard-6/,Howard,Howard,20.00,,1 month,31,2,,1933-10-25,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-10-30,1933-10-31,https://shakespeareandco.princeton.edu/members/gascoyne/,David Gascoyne,"Gascoyne, David",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/woolf-flush-biography/,Flush: A Biography,,"Woolf, Virginia",1933,,Lending Library Card,"Sylvia Beach, David Gascoyne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fac349a1-bb75-4f88-9991-ea5d50cd2885/manifest,https://iiif.princeton.edu/loris/figgy_prod/35%2F56%2F12%2F355612893e9f4744b78054a75f5edaa9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-10-30,1933-11-13,https://shakespeareandco.princeton.edu/members/picard-pierre/,Pierre Picard,"Picard, Pierre",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/tagore-king-dark-chamber/,The King of the Dark Chamber,,"Tagore, Rabindranath",1910,,Lending Library Card,"Sylvia Beach, Pierre Picard Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eaa0240e-06e3-4b29-8f66-3d0257e7cba6/manifest,https://iiif.princeton.edu/loris/figgy_prod/60%2F13%2F47%2F60134785709d4e2ea7e44f3fe4d0ffc6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-10-30,1933-11-02,https://shakespeareandco.princeton.edu/members/connolly-cyril/,Cyril Connolly,"Connolly, Cyril",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/burney-evelina-history-young/,"Evelina: Or, the History of a Young Lady's Entrance into the World",,"Burney, Fanny",1778,,Lending Library Card,"Sylvia Beach, Cyril Connolly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/001b27cc-7d4a-44d1-9129-c2d3dd9b178a/manifest,https://iiif.princeton.edu/loris/figgy_prod/6d%2F70%2Fb8%2F6d70b8ea023d4971b118a554c81508a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1933-10-30,1934-04-30,https://shakespeareandco.princeton.edu/members/laporte/,Madeleine Laporte,"Laporte, Madeleine",50.00,30.00,6 months,182,1,,1933-10-30,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Madeleine Laporte Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/94901174-ece6-4f4f-8f56-7c5154efb578/manifest,;https://iiif.princeton.edu/loris/figgy_prod/43%2F64%2F29%2F4364295feed0416c9ba5417c5b15481f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-10-30,1933-11-09,https://shakespeareandco.princeton.edu/members/laporte/,Madeleine Laporte,"Laporte, Madeleine",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/jeffers-roan-stallion-tamar/,"Roan Stallion, Tamar, and Other Poems",,"Jeffers, Robinson",1925,,Lending Library Card,"Sylvia Beach, Madeleine Laporte Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/94901174-ece6-4f4f-8f56-7c5154efb578/manifest,https://iiif.princeton.edu/loris/figgy_prod/43%2F64%2F29%2F4364295feed0416c9ba5417c5b15481f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-10-31,1933-11-04,https://shakespeareandco.princeton.edu/members/meyer-florence/,Florence Meyer,"Meyer, Florence",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/maeterlinck-life-bee/,The Life of the Bee,,"Maeterlinck, Maurice",1901,,Lending Library Card,"Sylvia Beach, Florence Meyer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd3b6930-a7f4-40e5-88ad-1a27c20d35f1/manifest,https://iiif.princeton.edu/loris/figgy_prod/ce%2F38%2Fc0%2Fce38c07006f54cd5b453f4e61d7f497a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-10-31,1933-11-04,https://shakespeareandco.princeton.edu/members/meyer-florence/,Florence Meyer,"Meyer, Florence",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/radiguet-devil-flesh/,The Devil in the Flesh,,"Radiguet, Raymond",1923,,Lending Library Card,"Sylvia Beach, Florence Meyer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd3b6930-a7f4-40e5-88ad-1a27c20d35f1/manifest,https://iiif.princeton.edu/loris/figgy_prod/ce%2F38%2Fc0%2Fce38c07006f54cd5b453f4e61d7f497a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-10-31,1933-11-04,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/views-reviews/,Views and Reviews,,,,"Unidentified. Henry James's *Views and Reviews* (1908), William Ernest Henley's *Views and Reviews: Essays in Appreciation* (1921), or Havelock Ellis's *Views and Reviews: A Selection of Uncollected Articles* (1932).",Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/3c%2Faa%2F4f%2F3caa4f8e37954ba7a197d68f47529504%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-10-31,1933-11-02,https://shakespeareandco.princeton.edu/members/camille-georgette/,Georgette Camille,"Camille, Georgette",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/benson-goodbye-stranger/,"Goodbye, Stranger",,"Benson, Stella",1926,,Lending Library Card,"Sylvia Beach, Georgette Camille Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/68b3a985-6d7b-43e1-b3d9-c5053eabaa71/manifest,https://iiif.princeton.edu/loris/figgy_prod/0e%2F55%2Ff1%2F0e55f1bfaaf045eabd5200ab1a6f66a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1933-10-31,,https://shakespeareandco.princeton.edu/members/camille-georgette/,Georgette Camille,"Camille, Georgette",,30.00,,,,Free,1933-10-31,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Georgette Camille Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/68b3a985-6d7b-43e1-b3d9-c5053eabaa71/manifest,;https://iiif.princeton.edu/loris/figgy_prod/0e%2F55%2Ff1%2F0e55f1bfaaf045eabd5200ab1a6f66a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-10-31,1933-11-02,https://shakespeareandco.princeton.edu/members/gascoyne/,David Gascoyne,"Gascoyne, David",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/hemingway-winner-take-nothing/,Winner Take Nothing,,"Hemingway, Ernest",1933,,Lending Library Card,"Sylvia Beach, David Gascoyne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fac349a1-bb75-4f88-9991-ea5d50cd2885/manifest,https://iiif.princeton.edu/loris/figgy_prod/35%2F56%2F12%2F355612893e9f4744b78054a75f5edaa9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-10-31,1933-11-02,https://shakespeareandco.princeton.edu/members/gascoyne/,David Gascoyne,"Gascoyne, David",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/stein-geography-plays/,Geography and Plays,,"Stein, Gertrude",1922,,Lending Library Card,"Sylvia Beach, David Gascoyne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fac349a1-bb75-4f88-9991-ea5d50cd2885/manifest,https://iiif.princeton.edu/loris/figgy_prod/35%2F56%2F12%2F355612893e9f4744b78054a75f5edaa9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-10-31,1933-10-31,https://shakespeareandco.princeton.edu/members/burr-k/,K. Burr,"Burr, K.",,,,,,,,60.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Separate Payment,1933-10-31,1933-10-31,https://shakespeareandco.princeton.edu/members/meyer-florence/,Florence Meyer,"Meyer, Florence",65.00,100.00,,,,,1933-10-31,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Florence Meyer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/cd3b6930-a7f4-40e5-88ad-1a27c20d35f1/manifest,;https://iiif.princeton.edu/loris/figgy_prod/ce%2F38%2Fc0%2Fce38c07006f54cd5b453f4e61d7f497a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1933-11-02,1933-11-02,https://shakespeareandco.princeton.edu/members/gascoyne/,David Gascoyne,"Gascoyne, David",,,,,,,,,,,3.50,FRF,https://shakespeareandco.princeton.edu/books/surrealism-2/,Surrealism,,,,"Unidentified. Peter Neagoe's pamphlet ""What Is Surrealism?"" (1932) or the pamphlet for Julien Levy's exhibition, ""SurrΓ©alisme"" (1932).",Lending Library Card,"Sylvia Beach, David Gascoyne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fac349a1-bb75-4f88-9991-ea5d50cd2885/manifest,https://iiif.princeton.edu/loris/figgy_prod/83%2F48%2Fbe%2F8348bef7a41748528af2dcd59ac1d781%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-11-02,1933-11-02,https://shakespeareandco.princeton.edu/members/camille-georgette/,Georgette Camille,"Camille, Georgette",,,,,,,,30.00,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Georgette Camille Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/68b3a985-6d7b-43e1-b3d9-c5053eabaa71/manifest,;https://iiif.princeton.edu/loris/figgy_prod/0e%2F55%2Ff1%2F0e55f1bfaaf045eabd5200ab1a6f66a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-02,1933-11-18,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/dickens-great-expectations/,Great Expectations,,"Dickens, Charles",1861,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e3%2Fa3%2F2f%2Fe3a32f3f58b84d669bc3710140acb7d5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-11-02,1933-11-02,https://shakespeareandco.princeton.edu/members/prindiville/,Prindiville,Prindiville,,,,,,,,75.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-11-02,1933-11-03,https://shakespeareandco.princeton.edu/members/porter-katherine-anne/,Katherine Anne Porter / Mrs. Katherine Anne Pressly,"Porter, Katherine Anne",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/mcalmon-distinguished-air-grim/,Distinguished Air: Grim Fairy Tales,,"McAlmon, Robert",1925,,Lending Library Card,"Sylvia Beach, Katherine Anne Porter Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e929ad7e-7cda-422b-9107-310e3c4feb78/manifest,https://iiif.princeton.edu/loris/figgy_prod/40%2F3f%2F06%2F403f063d4e9442229355a1cc3b19535c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-02,1933-11-03,https://shakespeareandco.princeton.edu/members/porter-katherine-anne/,Katherine Anne Porter / Mrs. Katherine Anne Pressly,"Porter, Katherine Anne",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/mcalmon-post-adolescence-selection/,Post-Adolescence: A Selection of Short Fiction,,"McAlmon, Robert",1923,,Lending Library Card,"Sylvia Beach, Katherine Anne Porter Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e929ad7e-7cda-422b-9107-310e3c4feb78/manifest,https://iiif.princeton.edu/loris/figgy_prod/40%2F3f%2F06%2F403f063d4e9442229355a1cc3b19535c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-02,1933-11-03,https://shakespeareandco.princeton.edu/members/porter-katherine-anne/,Katherine Anne Porter / Mrs. Katherine Anne Pressly,"Porter, Katherine Anne",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/mcalmon-companion-volume/,A Companion Volume,,"McAlmon, Robert",1923,,Lending Library Card,"Sylvia Beach, Katherine Anne Porter Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e929ad7e-7cda-422b-9107-310e3c4feb78/manifest,https://iiif.princeton.edu/loris/figgy_prod/40%2F3f%2F06%2F403f063d4e9442229355a1cc3b19535c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-02,1933-11-03,https://shakespeareandco.princeton.edu/members/porter-katherine-anne/,Katherine Anne Porter / Mrs. Katherine Anne Pressly,"Porter, Katherine Anne",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/criterion/,The Criterion,"Vol. 13, no. 50, Oct 1933",,,"Renamed *The New Criterion* from January 1926 to January 1927, and *The Monthly Criterion* from May 1927 to March 1928.",Lending Library Card,"Sylvia Beach, Katherine Anne Porter Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e929ad7e-7cda-422b-9107-310e3c4feb78/manifest,https://iiif.princeton.edu/loris/figgy_prod/40%2F3f%2F06%2F403f063d4e9442229355a1cc3b19535c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-02,1933-11-09,https://shakespeareandco.princeton.edu/members/connolly-cyril/,Cyril Connolly,"Connolly, Cyril",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/lewis-filibusters-barbary/,Filibusters in Barbary,,"Lewis, Wyndham",1932,,Lending Library Card,"Sylvia Beach, Cyril Connolly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/001b27cc-7d4a-44d1-9129-c2d3dd9b178a/manifest,https://iiif.princeton.edu/loris/figgy_prod/6d%2F70%2Fb8%2F6d70b8ea023d4971b118a554c81508a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-02,1933-11-09,https://shakespeareandco.princeton.edu/members/connolly-cyril/,Cyril Connolly,"Connolly, Cyril",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/kennedy-bulls-eye/,Bull's Eye,,"Kennedy, Milward",1933,,Lending Library Card,"Sylvia Beach, Cyril Connolly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/001b27cc-7d4a-44d1-9129-c2d3dd9b178a/manifest,https://iiif.princeton.edu/loris/figgy_prod/6d%2F70%2Fb8%2F6d70b8ea023d4971b118a554c81508a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-02,1933-11-19,https://shakespeareandco.princeton.edu/members/connolly-cyril/,Cyril Connolly,"Connolly, Cyril",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/roberts-new-country-prose/,New Country: Prose and Poetry by the Authors of New Signatures,,,1933,,Lending Library Card,"Sylvia Beach, Cyril Connolly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/001b27cc-7d4a-44d1-9129-c2d3dd9b178a/manifest,https://iiif.princeton.edu/loris/figgy_prod/6d%2F70%2Fb8%2F6d70b8ea023d4971b118a554c81508a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1933-11-02,1933-11-02,https://shakespeareandco.princeton.edu/members/gascoyne/,David Gascoyne,"Gascoyne, David",,,,,,,,,,,3.50,FRF,https://shakespeareandco.princeton.edu/books/surrealism-2/,Surrealism,,,,"Unidentified. Peter Neagoe's pamphlet ""What Is Surrealism?"" (1932) or the pamphlet for Julien Levy's exhibition, ""SurrΓ©alisme"" (1932).",Lending Library Card,"Sylvia Beach, David Gascoyne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fac349a1-bb75-4f88-9991-ea5d50cd2885/manifest,https://iiif.princeton.edu/loris/figgy_prod/83%2F48%2Fbe%2F8348bef7a41748528af2dcd59ac1d781%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-02,1933-11-04,https://shakespeareandco.princeton.edu/members/gascoyne/,David Gascoyne,"Gascoyne, David",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/riding-anarchism-enough/,Anarchism Is Not Enough,,"Riding, Laura",1928,,Lending Library Card,"Sylvia Beach, David Gascoyne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fac349a1-bb75-4f88-9991-ea5d50cd2885/manifest,https://iiif.princeton.edu/loris/figgy_prod/35%2F56%2F12%2F355612893e9f4744b78054a75f5edaa9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-02,1933-11-06,https://shakespeareandco.princeton.edu/members/gascoyne/,David Gascoyne,"Gascoyne, David",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/richardson-honeycomb-pilgrimage-3/,Honeycomb (Pilgrimage 3),,"Richardson, Dorothy M.",1917,,Lending Library Card,"Sylvia Beach, David Gascoyne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fac349a1-bb75-4f88-9991-ea5d50cd2885/manifest,https://iiif.princeton.edu/loris/figgy_prod/35%2F56%2F12%2F355612893e9f4744b78054a75f5edaa9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-03,1933-11,https://shakespeareandco.princeton.edu/members/porter-katherine-anne/,Katherine Anne Porter / Mrs. Katherine Anne Pressly,"Porter, Katherine Anne",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/west-miss-lonelyhearts/,Miss Lonelyhearts,,"West, Nathanael",1933,,Lending Library Card,"Sylvia Beach, Katherine Anne Porter Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e929ad7e-7cda-422b-9107-310e3c4feb78/manifest,https://iiif.princeton.edu/loris/figgy_prod/40%2F3f%2F06%2F403f063d4e9442229355a1cc3b19535c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1933-11-03,1933-11-03,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,,,50.00,FRF,https://shakespeareandco.princeton.edu/books/ford-young-evil/,The Young and the Evil,,"Ford, Charles Henri;Tyler, Parker",1933,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/e0%2Fe7%2Fab%2Fe0e7abbc278c479ea60884b471709177%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-03,1933-11-10,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/montague-rough-justice/,Rough Justice,,"Montague, C. E.",1926,,Lending Library Card,"Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest,https://iiif.princeton.edu/loris/figgy_prod/e6%2Ffe%2F17%2Fe6fe1798c3664003ba0f3ec37c1b076a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-04,1933-11-06,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/keynes-economic-consequences-peace/,The Economic Consequences of the Peace,,"Keynes, John Maynard",1919,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/3c%2Faa%2F4f%2F3caa4f8e37954ba7a197d68f47529504%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-11-04,,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/keynes-short-view-russia/,A Short View of Russia,,"Keynes, John Maynard",1925,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/3c%2Faa%2F4f%2F3caa4f8e37954ba7a197d68f47529504%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-11-04,1933-11-16,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/keynes-revision-treaty/,A Revision of the Treaty,,"Keynes, John Maynard",1922,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/3c%2Faa%2F4f%2F3caa4f8e37954ba7a197d68f47529504%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-11-04,1933-11-10,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/yeats-brown-escape-book-escapes/,Escape: A Book of Escapes of All Kinds,,,1933,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/3c%2Faa%2F4f%2F3caa4f8e37954ba7a197d68f47529504%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1933-11-04,1933-11-04,https://shakespeareandco.princeton.edu/members/poulin/,Poulin,Poulin,,,,,,,,30.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1933-11-04,1933-11-04,https://shakespeareandco.princeton.edu/members/stein-irwin/,Irwin Stein,"Stein, Irwin",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-11-04,1933-11-06,https://shakespeareandco.princeton.edu/members/gascoyne/,David Gascoyne,"Gascoyne, David",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/cocteau-thomas-impostor/,Thomas the Impostor,,"Cocteau, Jean",1925,,Lending Library Card,"Sylvia Beach, David Gascoyne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fac349a1-bb75-4f88-9991-ea5d50cd2885/manifest,https://iiif.princeton.edu/loris/figgy_prod/35%2F56%2F12%2F355612893e9f4744b78054a75f5edaa9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-04,1933-11-20,https://shakespeareandco.princeton.edu/members/meyer-florence/,Florence Meyer,"Meyer, Florence",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/williams-american-grain/,In the American Grain,,"Williams, William Carlos",1925,,Lending Library Card,"Sylvia Beach, Florence Meyer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd3b6930-a7f4-40e5-88ad-1a27c20d35f1/manifest,https://iiif.princeton.edu/loris/figgy_prod/ce%2F38%2Fc0%2Fce38c07006f54cd5b453f4e61d7f497a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-04,1933-11-20,https://shakespeareandco.princeton.edu/members/meyer-florence/,Florence Meyer,"Meyer, Florence",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/frazier-golden-bough-study/,The Golden Bough: A Study in Comparative Religion,,"Frazer, James George",1890,,Lending Library Card,"Sylvia Beach, Florence Meyer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd3b6930-a7f4-40e5-88ad-1a27c20d35f1/manifest,https://iiif.princeton.edu/loris/figgy_prod/ce%2F38%2Fc0%2Fce38c07006f54cd5b453f4e61d7f497a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-04,1933-11-19,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/lewis-old-gang-new/,The Old Gang and the New,,"Lewis, Wyndham",1933,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/58%2F45%2F77%2F58457700c8f84cf7be6a477c1713a40b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-11-04,1933-11-19,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/mackenzie-literature-time/,Literature in My Time,,"Mackenzie, Compton",1933,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/58%2F45%2F77%2F58457700c8f84cf7be6a477c1713a40b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-11-04,1933-11-06,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/keynes-end-laissez/,The End of Laissez-Faire,,"Keynes, John Maynard",1926,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/3c%2Faa%2F4f%2F3caa4f8e37954ba7a197d68f47529504%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-11-04,1933-11-09,https://shakespeareandco.princeton.edu/members/tuttle-stephen-d/,Stephen D. Tuttle,"Tuttle, Stephen D.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/hemingway-farewell-arms/,A Farewell to Arms,,"Hemingway, Ernest",1929,,Lending Library Card,"Sylvia Beach, Stephen D. Tuttle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f1653918-3f2b-4e88-bd27-4e3c4d83a47d/manifest,https://iiif-cloud.princeton.edu/iiif/2/65%2Fdf%2Ff8%2F65dff8cf663e4eceb54c65b53cccaf7e%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1933-11-04,1933-11-04,https://shakespeareandco.princeton.edu/members/gascoyne/,David Gascoyne,"Gascoyne, David",,,,,,,,,,,14.00,FRF,https://shakespeareandco.princeton.edu/books/aragon-red-front/,The Red Front,,"Aragon, Louis",1933,,Lending Library Card,"Sylvia Beach, David Gascoyne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fac349a1-bb75-4f88-9991-ea5d50cd2885/manifest,https://iiif.princeton.edu/loris/figgy_prod/83%2F48%2Fbe%2F8348bef7a41748528af2dcd59ac1d781%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-06,1933-11-21,https://shakespeareandco.princeton.edu/members/tony-mayer/,Thérèse Tony-Mayer,"Tony-Mayer, Thérèse",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/richardson-backwater-pilgrimage-2/,Backwater (Pilgrimage 2),,"Richardson, Dorothy M.",1916,,Lending Library Card,"Sylvia Beach, Thérèse Tony-Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/27246b4c-7d99-4dca-b874-ab90bd542cfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2Fa0%2Fff%2F50a0ff19abc240c680a6a33baf060b76%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-11-06,1933-11-06,https://shakespeareandco.princeton.edu/members/boisse-de-black/,J. Boisse de Black,"Boisse de Black, J.",,,,,,,,30.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1933-11-06,1933-11-10,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/christie-thirteen-dinner/,Thirteen at Dinner,,"Christie, Agatha",1933,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/3c%2Faa%2F4f%2F3caa4f8e37954ba7a197d68f47529504%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-11-06,1933-11-08,https://shakespeareandco.princeton.edu/members/gascoyne/,David Gascoyne,"Gascoyne, David",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/stevens-harmonium/,Harmonium,,"Stevens, Wallace",1923,,Lending Library Card,"Sylvia Beach, David Gascoyne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fac349a1-bb75-4f88-9991-ea5d50cd2885/manifest,https://iiif.princeton.edu/loris/figgy_prod/35%2F56%2F12%2F355612893e9f4744b78054a75f5edaa9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-06,1933-11-08,https://shakespeareandco.princeton.edu/members/gascoyne/,David Gascoyne,"Gascoyne, David",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/jolas-transition/,transition,"no. 5 β 8, bound volume 1927",,,,Lending Library Card,"Sylvia Beach, David Gascoyne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fac349a1-bb75-4f88-9991-ea5d50cd2885/manifest,https://iiif.princeton.edu/loris/figgy_prod/35%2F56%2F12%2F355612893e9f4744b78054a75f5edaa9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-07,1933-12-05,https://shakespeareandco.princeton.edu/members/denis-graterolle/,Elisabeth Denis-Graterolle / Mme Maurice Denis,"Denis-Graterolle, Elisabeth",,,,,,,,,Returned,28,,,https://shakespeareandco.princeton.edu/books/swinburne/,Swinburne,,,,"Unidentified. By or about Swinburne. Fernand Colens borrowed volumes 1 and 2, and Ella Cassaigne borrowed volume 1.",Lending Library Card,"Sylvia Beach, Elisabeth Denis-Graterolle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/964dbe97-240c-4e59-a8ca-c43f25875149/manifest,https://iiif.princeton.edu/loris/figgy_prod/01%2F85%2F35%2F0185352ce4a645fb9698d1bbb7b51071%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-07,1933-11-17,https://shakespeareandco.princeton.edu/members/laporte/,Madeleine Laporte,"Laporte, Madeleine",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/cestre-introduction-edwin-arlington/,An Introduction to Edwin Arlington Robinson,,"Cestre, Charles",1930,,Lending Library Card,"Sylvia Beach, Madeleine Laporte Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/94901174-ece6-4f4f-8f56-7c5154efb578/manifest,https://iiif.princeton.edu/loris/figgy_prod/43%2F64%2F29%2F4364295feed0416c9ba5417c5b15481f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-07,1933-11-21,https://shakespeareandco.princeton.edu/members/pfeiffer-virginia/,Virginia Pfeiffer,"Pfeiffer, Virginia",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/hyslop-great-abnormals/,The Great Abnormals,,"Hyslop, Theo B.",1925,,Lending Library Card,"Sylvia Beach, Virginia Pfeiffer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5f9e74fc-c06a-4c36-a2d1-878b8fce2cd2/manifest,https://iiif.princeton.edu/loris/figgy_prod/ba%2F1f%2F7c%2Fba1f7c825222455eb1f26f27993510fa%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-07,1933-12-05,https://shakespeareandco.princeton.edu/members/denis-graterolle/,Elisabeth Denis-Graterolle / Mme Maurice Denis,"Denis-Graterolle, Elisabeth",,,,,,,,,Returned,28,,,https://shakespeareandco.princeton.edu/books/bulwer/,Bulwer,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Elisabeth Denis-Graterolle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/964dbe97-240c-4e59-a8ca-c43f25875149/manifest,https://iiif.princeton.edu/loris/figgy_prod/01%2F85%2F35%2F0185352ce4a645fb9698d1bbb7b51071%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1933-11-07,1934-02-07,https://shakespeareandco.princeton.edu/members/geoffroy-3/,Geoffroy,Geoffroy,30.00,,3 months,92,1,,1933-11-07,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1933-11-07,1933-11-07,https://shakespeareandco.princeton.edu/members/aubert/,Mme Aubert,"Aubert, Mme",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1933-11-07,1933-11-13,https://shakespeareandco.princeton.edu/members/claudius/,Agnes Claudius,"Claudius, Agnes",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/tomlinson-snows-helicon/,The Snows of Helicon,,"Tomlinson, H. M.",1933,,Lending Library Card,"Sylvia Beach, Agnes Claudius Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18a9262d-8ea3-4d0c-9b36-8a1c638950fa/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2Fbb%2Fbd%2F23bbbd657cc64aeaa1cf1b3dc4210522%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-08,1933-11-10,https://shakespeareandco.princeton.edu/members/gascoyne/,David Gascoyne,"Gascoyne, David",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/loeb-broom/,Broom,Dec 1922,,,,Lending Library Card,"Sylvia Beach, David Gascoyne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fac349a1-bb75-4f88-9991-ea5d50cd2885/manifest,https://iiif.princeton.edu/loris/figgy_prod/8a%2F0c%2F9c%2F8a0c9c4958a2405a95f7994f29f4e4b7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-08,1933-11-10,https://shakespeareandco.princeton.edu/members/gascoyne/,David Gascoyne,"Gascoyne, David",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/loeb-broom/,Broom,Oct 1922,,,,Lending Library Card,"Sylvia Beach, David Gascoyne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fac349a1-bb75-4f88-9991-ea5d50cd2885/manifest,https://iiif.princeton.edu/loris/figgy_prod/8a%2F0c%2F9c%2F8a0c9c4958a2405a95f7994f29f4e4b7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-08,1933-11-10,https://shakespeareandco.princeton.edu/members/gascoyne/,David Gascoyne,"Gascoyne, David",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/loeb-broom/,Broom,Nov 1922,,,,Lending Library Card,"Sylvia Beach, David Gascoyne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fac349a1-bb75-4f88-9991-ea5d50cd2885/manifest,https://iiif.princeton.edu/loris/figgy_prod/8a%2F0c%2F9c%2F8a0c9c4958a2405a95f7994f29f4e4b7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-08,1933-11-22,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/sedgwick-dark-hester/,Dark Hester,,"Sedgwick, Anne Douglas",1929,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/12%2F8c%2F4f%2F128c4f1d37b747b4b6abfaed7a09f71d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-08,1933-11-10,https://shakespeareandco.princeton.edu/members/gascoyne/,David Gascoyne,"Gascoyne, David",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/loeb-broom/,Broom,Sep 1922,,,,Lending Library Card,"Sylvia Beach, David Gascoyne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fac349a1-bb75-4f88-9991-ea5d50cd2885/manifest,https://iiif.princeton.edu/loris/figgy_prod/8a%2F0c%2F9c%2F8a0c9c4958a2405a95f7994f29f4e4b7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-08,1933-11-13,https://shakespeareandco.princeton.edu/members/gascoyne/,David Gascoyne,"Gascoyne, David",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/richardson-tunnel-pilgrimage-4/,The Tunnel (Pilgrimage 4),,"Richardson, Dorothy M.",1919,,Lending Library Card,"Sylvia Beach, David Gascoyne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fac349a1-bb75-4f88-9991-ea5d50cd2885/manifest,https://iiif.princeton.edu/loris/figgy_prod/8a%2F0c%2F9c%2F8a0c9c4958a2405a95f7994f29f4e4b7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-09,1933-11-13,https://shakespeareandco.princeton.edu/members/tuttle-stephen-d/,Stephen D. Tuttle,"Tuttle, Stephen D.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/smollett-adventures-peregrine-pickle/,The Adventures of Peregrine Pickle,Vol. 1,"Smollett, Tobias",1751,,Lending Library Card,"Sylvia Beach, Stephen D. Tuttle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f1653918-3f2b-4e88-bd27-4e3c4d83a47d/manifest,https://iiif-cloud.princeton.edu/iiif/2/65%2Fdf%2Ff8%2F65dff8cf663e4eceb54c65b53cccaf7e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-11-09,1933-11-14,https://shakespeareandco.princeton.edu/members/connolly-cyril/,Cyril Connolly,"Connolly, Cyril",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/mackenzie-water-brain/,Water on the Brain,,"Mackenzie, Compton",1933,,Lending Library Card,"Sylvia Beach, Cyril Connolly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/001b27cc-7d4a-44d1-9129-c2d3dd9b178a/manifest,https://iiif.princeton.edu/loris/figgy_prod/6d%2F70%2Fb8%2F6d70b8ea023d4971b118a554c81508a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-09,1933-11-13,https://shakespeareandco.princeton.edu/members/connolly-cyril/,Cyril Connolly,"Connolly, Cyril",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/maugham-ah-king/,Ah King,,"Maugham, W. Somerset",1933,,Lending Library Card,"Sylvia Beach, Cyril Connolly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/001b27cc-7d4a-44d1-9129-c2d3dd9b178a/manifest,https://iiif.princeton.edu/loris/figgy_prod/6d%2F70%2Fb8%2F6d70b8ea023d4971b118a554c81508a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1933-11-09,1933-12-09,https://shakespeareandco.princeton.edu/members/gascoyne/,David Gascoyne,"Gascoyne, David",22.50,,1 month,30,1,,1933-11-13,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, David Gascoyne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/fac349a1-bb75-4f88-9991-ea5d50cd2885/manifest,;https://iiif.princeton.edu/loris/figgy_prod/8a%2F0c%2F9c%2F8a0c9c4958a2405a95f7994f29f4e4b7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-09,1933-11-24,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/aldington-death-hero/,Death of a Hero,,"Aldington, Richard",1929,,Lending Library Card,"Sylvia Beach, Aline Prot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/15a376bb-405b-4488-b789-1559abbe3fb2/manifest,https://iiif-cloud.princeton.edu/iiif/2/cd%2Fb9%2F8d%2Fcdb98d69d2914c9a86733742b9a595f2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-11-09,1933-11-20,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/meredith-egoist/,The Egoist,Vol. 1,"Meredith, George",1879,,Lending Library Card,"Sylvia Beach, Aline Prot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/15a376bb-405b-4488-b789-1559abbe3fb2/manifest,https://iiif-cloud.princeton.edu/iiif/2/cd%2Fb9%2F8d%2Fcdb98d69d2914c9a86733742b9a595f2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-11-10,1933-11-15,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/laski-democracy-crisis/,Democracy in Crisis,,"Laski, Harold Joseph",1933,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/3c%2Faa%2F4f%2F3caa4f8e37954ba7a197d68f47529504%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-11-10,1933-11-13,https://shakespeareandco.princeton.edu/members/paul-dubois/,Louis Paul-Dubois,"Paul-Dubois, Louis",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/oflaherty-went-russia/,I Went to Russia,,"O'Flaherty, Liam",1931,,Lending Library Card,"Sylvia Beach, Louis Paul-Dubois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a5425c0b-233e-443e-a90e-1107459a225d/manifest,https://iiif.princeton.edu/loris/figgy_prod/98%2F5d%2F0f%2F985d0f9a26da49a98b98a5ec936437c6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-10,1933-11-20,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/hindus-humanity-uprooted/,Humanity Uprooted,,"Hindus, Maurice Gerschon",1929,,Lending Library Card,"Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest,https://iiif.princeton.edu/loris/figgy_prod/e6%2Ffe%2F17%2Fe6fe1798c3664003ba0f3ec37c1b076a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-10,,https://shakespeareandco.princeton.edu/members/gascoyne/,David Gascoyne,"Gascoyne, David",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/barker-alanna-autumnal/,Alanna Autumnal,,"Barker, George",1933,,Lending Library Card,"Sylvia Beach, David Gascoyne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fac349a1-bb75-4f88-9991-ea5d50cd2885/manifest,https://iiif.princeton.edu/loris/figgy_prod/83%2F48%2Fbe%2F8348bef7a41748528af2dcd59ac1d781%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-10,1933-11-15,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/kennedy-bulls-eye/,Bull's Eye,,"Kennedy, Milward",1933,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/3c%2Faa%2F4f%2F3caa4f8e37954ba7a197d68f47529504%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-11-10,1933-11-18,https://shakespeareandco.princeton.edu/members/plummer-dorothy/,Dorothy Plummer,"Plummer, Dorothy",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/aldington-men-enemies/,All Men Are Enemies: A Romance,,"Aldington, Richard",1933,,Lending Library Card,"Sylvia Beach, Dorothy Plummer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5f53ce0-8ea6-4d1f-b36b-f6e5321bab4c/manifest,https://iiif.princeton.edu/loris/figgy_prod/a1%2F20%2F86%2Fa120869f9753422d95807c64cfe30599%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-10,1933-11-21,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/sitwell-discursions-travel-art/,Discursions on Travel Art and Life,,"Sitwell, Osbert",1925,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/6b%2F28%2Ff2%2F6b28f2d65a594edd95e0cb1837532f8d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-11-10,1933-11-15,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/west-miss-lonelyhearts/,Miss Lonelyhearts,,"West, Nathanael",1933,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/3c%2Faa%2F4f%2F3caa4f8e37954ba7a197d68f47529504%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-11-10,1933-11-21,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/barton-sober-truth-collection/,"Sober Truth: A Collection of Nineteenth-Century Episodes, Fantastic, Grotesque and Mysterious",,,1930,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/6b%2F28%2Ff2%2F6b28f2d65a594edd95e0cb1837532f8d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-11-10,1933-11-21,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/linklater-men-ness/,The Men of Ness,,"Linklater, Eric",1932,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/6b%2F28%2Ff2%2F6b28f2d65a594edd95e0cb1837532f8d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-11-10,1933-11-13,https://shakespeareandco.princeton.edu/members/perkins/,Mrs. Perkins,"Perkins, Mrs.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/stein-autobiography-alice-b/,The Autobiography of Alice B. Toklas,,"Stein, Gertrude",1933,,Lending Library Card,"Sylvia Beach, Perkins Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c711b33a-cb94-478e-8090-0a62744bb3e3/manifest,https://iiif.princeton.edu/loris/figgy_prod/f1%2F08%2Fc6%2Ff108c6dd36e64848b0483f72d1a49844%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1933-11-10,1934-02-10,https://shakespeareandco.princeton.edu/members/paul-dubois/,Louis Paul-Dubois,"Paul-Dubois, Louis",50.00,,3 months,92,1,,1933-11-10,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Louis Paul-Dubois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/a5425c0b-233e-443e-a90e-1107459a225d/manifest,;https://iiif.princeton.edu/loris/figgy_prod/98%2F5d%2F0f%2F985d0f9a26da49a98b98a5ec936437c6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-10,,https://shakespeareandco.princeton.edu/members/hemingway-ernest/,Ernest Hemingway,"Hemingway, Ernest",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/auden-orators/,The Orators,,"Auden, W. H.",1932,,Lending Library Card,"Sylvia Beach, Ernest Hemingway Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9af2d811-6084-4967-a4d7-5c0481658011/manifest,https://iiif-cloud.princeton.edu/iiif/2/6b%2F28%2Ff2%2F6b28f2d65a594edd95e0cb1837532f8d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-11-10,1933-11-13,https://shakespeareandco.princeton.edu/members/paul-dubois/,Louis Paul-Dubois,"Paul-Dubois, Louis",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/oflaherty-two-years/,Two Years,,"O'Flaherty, Liam",1930,,Lending Library Card,"Sylvia Beach, Louis Paul-Dubois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a5425c0b-233e-443e-a90e-1107459a225d/manifest,https://iiif.princeton.edu/loris/figgy_prod/98%2F5d%2F0f%2F985d0f9a26da49a98b98a5ec936437c6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1933-11-12,1933-12-12,https://shakespeareandco.princeton.edu/members/connolly-cyril/,Cyril Connolly,"Connolly, Cyril",65.00,,1 month,30,3,,1933-11-23,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Cyril Connolly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/001b27cc-7d4a-44d1-9129-c2d3dd9b178a/manifest,;https://iiif.princeton.edu/loris/figgy_prod/6d%2F70%2Fb8%2F6d70b8ea023d4971b118a554c81508a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-13,1933-11-23,https://shakespeareandco.princeton.edu/members/connolly-cyril/,Cyril Connolly,"Connolly, Cyril",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/lewis-main-street-story/,Main Street: The Story of Carol Kennicott,,"Lewis, Sinclair",1920,,Lending Library Card,"Sylvia Beach, Cyril Connolly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/001b27cc-7d4a-44d1-9129-c2d3dd9b178a/manifest,https://iiif.princeton.edu/loris/figgy_prod/6d%2F70%2Fb8%2F6d70b8ea023d4971b118a554c81508a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-13,1933-11-25,https://shakespeareandco.princeton.edu/members/tuttle-stephen-d/,Stephen D. Tuttle,"Tuttle, Stephen D.",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/skelton-complete-poems-john/,"The Complete Poems of John Skelton, Laureate",,"Skelton, John",1931,,Lending Library Card,"Sylvia Beach, Stephen D. Tuttle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f1653918-3f2b-4e88-bd27-4e3c4d83a47d/manifest,https://iiif-cloud.princeton.edu/iiif/2/65%2Fdf%2Ff8%2F65dff8cf663e4eceb54c65b53cccaf7e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-11-13,1933-11-17,https://shakespeareandco.princeton.edu/members/paul-dubois/,Louis Paul-Dubois,"Paul-Dubois, Louis",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/oflaherty-puritan/,The Puritan,,"O'Flaherty, Liam",1932,,Lending Library Card,"Sylvia Beach, Louis Paul-Dubois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a5425c0b-233e-443e-a90e-1107459a225d/manifest,https://iiif.princeton.edu/loris/figgy_prod/98%2F5d%2F0f%2F985d0f9a26da49a98b98a5ec936437c6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-13,1933-11-17,https://shakespeareandco.princeton.edu/members/paul-dubois/,Louis Paul-Dubois,"Paul-Dubois, Louis",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/oflaherty-assassin/,The Assassin,,"O'Flaherty, Liam",1928,,Lending Library Card,"Sylvia Beach, Louis Paul-Dubois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a5425c0b-233e-443e-a90e-1107459a225d/manifest,https://iiif.princeton.edu/loris/figgy_prod/98%2F5d%2F0f%2F985d0f9a26da49a98b98a5ec936437c6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-13,1933-11-17,https://shakespeareandco.princeton.edu/members/gascoyne/,David Gascoyne,"Gascoyne, David",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/sitwell-visit-gypsies/,The Visit of the Gypsies,,"Sitwell, Sacheverell",1929,,Lending Library Card,"Sylvia Beach, David Gascoyne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fac349a1-bb75-4f88-9991-ea5d50cd2885/manifest,https://iiif.princeton.edu/loris/figgy_prod/8a%2F0c%2F9c%2F8a0c9c4958a2405a95f7994f29f4e4b7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-13,1933-11-16,https://shakespeareandco.princeton.edu/members/clairin-pierre-eugene/,Pierre-Eugène Clairin,"Clairin, Pierre-Eugène",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/pater-imaginary-portraits/,Imaginary Portraits,,"Pater, Walter",1896,,Lending Library Card,"Sylvia Beach, Pierre Clairin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e63243a0-173f-4a2e-9310-fc058bd22a7a/manifest,https://iiif.princeton.edu/loris/figgy_prod/9d%2F11%2F52%2F9d1152c19ae64e75878253e7c1de9ef6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1933-11-13,1934-02-13,https://shakespeareandco.princeton.edu/members/clairin-pierre-eugene/,Pierre-EugΓ¨ne Clairin,"Clairin, Pierre-EugΓ¨ne",30.00,30.00,3 months,92,1,,1933-11-13,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Pierre Clairin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/e63243a0-173f-4a2e-9310-fc058bd22a7a/manifest,;https://iiif.princeton.edu/loris/figgy_prod/9d%2F11%2F52%2F9d1152c19ae64e75878253e7c1de9ef6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1933-11-13,1933-12-13,https://shakespeareandco.princeton.edu/members/choun/,Harold Choun,"Choun, Harold",25.00,50.00,1 month,30,1,,1933-11-13,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1933-11-13,1933-11-13,https://shakespeareandco.princeton.edu/members/horn/,Horn,Horn,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-11-13,1933-11-23,https://shakespeareandco.princeton.edu/members/claudius/,Agnes Claudius,"Claudius, Agnes",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/yeats-brown-escape-book-escapes/,Escape: A Book of Escapes of All Kinds,,,1933,,Lending Library Card,"Sylvia Beach, Agnes Claudius Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18a9262d-8ea3-4d0c-9b36-8a1c638950fa/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2Fbb%2Fbd%2F23bbbd657cc64aeaa1cf1b3dc4210522%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-13,,https://shakespeareandco.princeton.edu/members/connolly-cyril/,Cyril Connolly,"Connolly, Cyril",,,,,,,,,Missing,,,,https://shakespeareandco.princeton.edu/books/hergesheimer-tropical-winter/,Tropical Winter,,"Hergesheimer, Joseph",1933,,Lending Library Card,"Sylvia Beach, Cyril Connolly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/001b27cc-7d4a-44d1-9129-c2d3dd9b178a/manifest,https://iiif.princeton.edu/loris/figgy_prod/6d%2F70%2Fb8%2F6d70b8ea023d4971b118a554c81508a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1933-11-14,1933-12-14,https://shakespeareandco.princeton.edu/members/barnett/,Mrs. E. Barnett,"Barnett, Mrs. E.",25.00,50.00,1 month,30,1,,1933-11-14,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1933-11-14,1933-12-14,https://shakespeareandco.princeton.edu/members/daniels-marcel/,Marcel Daniels,"Daniels, Marcel",12.00,30.00,1 month,30,1,,1933-11-14,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1933-11-14,1933-11-14,https://shakespeareandco.princeton.edu/members/gascoyne/,David Gascoyne,"Gascoyne, David",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/jolas-transition/,transition,,,,,Lending Library Card,"Sylvia Beach, David Gascoyne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fac349a1-bb75-4f88-9991-ea5d50cd2885/manifest,https://iiif.princeton.edu/loris/figgy_prod/8a%2F0c%2F9c%2F8a0c9c4958a2405a95f7994f29f4e4b7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-15,1933-11-17,https://shakespeareandco.princeton.edu/members/bonnerot-louis/,Louis Bonnerot,"Bonnerot, Louis",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/leavis-scrutiny-quarterly-review/,Scrutiny: A Quarterly Review,,,,,Lending Library Card,"Sylvia Beach, Louis Bonnerot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c14cc736-079c-4403-9036-a2de4743414a/manifest,https://iiif.princeton.edu/loris/figgy_prod/02%2F5a%2F24%2F025a24f998344e51813e60cf8062c163%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-15,1933-11-24,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/woolf-intelligent-mans-way/,The Intelligent Man's Way to Prevent War,,,1933,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/3c%2Faa%2F4f%2F3caa4f8e37954ba7a197d68f47529504%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-11-15,1933-11-24,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/angell-chaos-control/,From Chaos to Control,,"Angell, Norman",1933,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/3c%2Faa%2F4f%2F3caa4f8e37954ba7a197d68f47529504%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-11-15,1933-11-21,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/glaspell-glory-conquered-story/,The Glory of the Conquered: The Story of a Great Love,,"Glaspell, Susan",1909,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/57%2Fd7%2Fed%2F57d7edebf111435d8d29597c65433a0a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-16,1933-11-30,https://shakespeareandco.princeton.edu/members/laporte/,Madeleine Laporte,"Laporte, Madeleine",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/chaucer-complete-works-geoffrey-chaucer/,The Complete Works of Geoffrey Chaucer,"Vol. 6 Introduction, Glossary, and Indexes","Chaucer, Geoffrey",1894,"Published by Clarendon Press, Oxford University Press.",Lending Library Card,"Sylvia Beach, Madeleine Laporte Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/94901174-ece6-4f4f-8f56-7c5154efb578/manifest,https://iiif.princeton.edu/loris/figgy_prod/43%2F64%2F29%2F4364295feed0416c9ba5417c5b15481f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1933-11-16,1934-02-16,https://shakespeareandco.princeton.edu/members/duffez/,S. Duffez,"Duffez, S.",30.00,30.00,3 months,92,1,,1933-11-16,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1933-11-16,1933-11-23,https://shakespeareandco.princeton.edu/members/connolly-cyril/,Cyril Connolly,"Connolly, Cyril",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/ringel-america-americans-see/,America as Americans See It,,"Ringel, Fred J.",1932,,Lending Library Card,"Sylvia Beach, Cyril Connolly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/001b27cc-7d4a-44d1-9129-c2d3dd9b178a/manifest,https://iiif.princeton.edu/loris/figgy_prod/6d%2F70%2Fb8%2F6d70b8ea023d4971b118a554c81508a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-16,1933-11-23,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/beith-second-spring/,No Second Spring,,"Beith, Janet",1933,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e3%2Fa3%2F2f%2Fe3a32f3f58b84d669bc3710140acb7d5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-16,1933-12-04,https://shakespeareandco.princeton.edu/members/clairin-pierre-eugene/,Pierre-Eugène Clairin,"Clairin, Pierre-Eugène",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/joyce-portrait-artist-young/,A Portrait of the Artist as a Young Man,,"Joyce, James",1916,,Lending Library Card,"Sylvia Beach, Pierre Clairin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e63243a0-173f-4a2e-9310-fc058bd22a7a/manifest,https://iiif.princeton.edu/loris/figgy_prod/9d%2F11%2F52%2F9d1152c19ae64e75878253e7c1de9ef6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1933-11-16,1934-05-16,https://shakespeareandco.princeton.edu/members/levy-simone/,Simone Levy,"Levy, Simone",50.00,30.00,6 months,181,1,,1933-11-16,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-11-17,1933-11-20,https://shakespeareandco.princeton.edu/members/paul-dubois/,Louis Paul-Dubois,"Paul-Dubois, Louis",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/oflaherty-martyr/,The Martyr,,"O'Flaherty, Liam",1933,,Lending Library Card,"Sylvia Beach, Louis Paul-Dubois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a5425c0b-233e-443e-a90e-1107459a225d/manifest,https://iiif.princeton.edu/loris/figgy_prod/98%2F5d%2F0f%2F985d0f9a26da49a98b98a5ec936437c6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-17,1933-11-17,https://shakespeareandco.princeton.edu/members/gascoyne/,David Gascoyne,"Gascoyne, David",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/eliot-use-poetry-use/,The Use of Poetry and the Use of Criticism: Studies in the Relation of Criticism to Poetry in England,,"Eliot, T. S.",1933,,Lending Library Card,"Sylvia Beach, David Gascoyne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fac349a1-bb75-4f88-9991-ea5d50cd2885/manifest,https://iiif.princeton.edu/loris/figgy_prod/8a%2F0c%2F9c%2F8a0c9c4958a2405a95f7994f29f4e4b7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-17,1933-11-21,https://shakespeareandco.princeton.edu/members/bonnerot-louis/,Louis Bonnerot,"Bonnerot, Louis",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/kirstein-hound-horn/,Hound & Horn,,,,,Lending Library Card,"Sylvia Beach, Louis Bonnerot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c14cc736-079c-4403-9036-a2de4743414a/manifest,https://iiif.princeton.edu/loris/figgy_prod/02%2F5a%2F24%2F025a24f998344e51813e60cf8062c163%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-17,1933-11-21,https://shakespeareandco.princeton.edu/members/perkins/,Mrs. Perkins,"Perkins, Mrs.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/hughes-high-wind-jamaica/,A High Wind in Jamaica,,"Hughes, Richard",1929,,Lending Library Card,"Sylvia Beach, Perkins Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c711b33a-cb94-478e-8090-0a62744bb3e3/manifest,https://iiif.princeton.edu/loris/figgy_prod/f1%2F08%2Fc6%2Ff108c6dd36e64848b0483f72d1a49844%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1933-11-17,,https://shakespeareandco.princeton.edu/members/collery/,M. Collery,"Collery, M.",,50.00,,,,Day By Day,1933-11-17,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1933-11-17,1933-11-20,https://shakespeareandco.princeton.edu/members/paul-dubois/,Louis Paul-Dubois,"Paul-Dubois, Louis",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/joyce-fragments-work-progress/,Fragments from Work in Progress,,"Joyce, James",,"Unidentified editions. Early versions of Joyce's [*Finnegans Wake*](https://shakespeareandco.princeton.edu/books/joyce-finnegans-wake/) (1939). Likely [*Tales Told of Shem and Shaun: Three Fragments from Work in Progress*](http://www.riverrun.org.uk/jj/Tales.pdf) (1929), *Two Tales of Shem and Shaun: Fragments from Work in Progress* (1932), or a collection of offprints from [*transition*](https://shakespeareandco.princeton.edu/books/jolas-transition/). Sylvia Beach's personal library includes a [bound copy of offprints](https://catalog.princeton.edu/catalog/2943072). See also [*Work in Progress*](https://shakespeareandco.princeton.edu/books/joyce-work-progress/).",Lending Library Card,"Sylvia Beach, Louis Paul-Dubois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a5425c0b-233e-443e-a90e-1107459a225d/manifest,https://iiif.princeton.edu/loris/figgy_prod/98%2F5d%2F0f%2F985d0f9a26da49a98b98a5ec936437c6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1933-11-18,1934-02-18,https://shakespeareandco.princeton.edu/members/fitzgerald-11/,Miss Fitzgerald,"Fitzgerald, Miss",30.00,30.00,3 months,92,1,,1933-11-18,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-11-18,1933-12-04,https://shakespeareandco.princeton.edu/members/plummer-dorothy/,Dorothy Plummer,"Plummer, Dorothy",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/shaw-saint-joan-chronicle/,Saint Joan: A Chronicle Play in Six Scenes and an Epilogue,,"Shaw, George Bernard",1924,,Lending Library Card,"Sylvia Beach, Dorothy Plummer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5f53ce0-8ea6-4d1f-b36b-f6e5321bab4c/manifest,https://iiif.princeton.edu/loris/figgy_prod/73%2F61%2F28%2F7361283a6eb946cbbb43d97ca38f1deb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-18,1933-12-01,https://shakespeareandco.princeton.edu/members/porter-katherine-anne/,Katherine Anne Porter / Mrs. Katherine Anne Pressly,"Porter, Katherine Anne",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/lewis-childermass/,The Childermass,,"Lewis, Wyndham",1928,,Lending Library Card,"Sylvia Beach, Katherine Anne Porter Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e929ad7e-7cda-422b-9107-310e3c4feb78/manifest,https://iiif.princeton.edu/loris/figgy_prod/40%2F3f%2F06%2F403f063d4e9442229355a1cc3b19535c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-18,1933-12-01,https://shakespeareandco.princeton.edu/members/porter-katherine-anne/,Katherine Anne Porter / Mrs. Katherine Anne Pressly,"Porter, Katherine Anne",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/ford-some-do-not/,Some Do Not... (Parade's End 1),,"Ford, Ford Madox",1924,,Lending Library Card,"Sylvia Beach, Katherine Anne Porter Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e929ad7e-7cda-422b-9107-310e3c4feb78/manifest,https://iiif.princeton.edu/loris/figgy_prod/40%2F3f%2F06%2F403f063d4e9442229355a1cc3b19535c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-18,1933-11-20,https://shakespeareandco.princeton.edu/members/gascoyne/,David Gascoyne,"Gascoyne, David",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/faulkner-13/,These 13,,"Faulkner, William",1931,,Lending Library Card,"Sylvia Beach, David Gascoyne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fac349a1-bb75-4f88-9991-ea5d50cd2885/manifest,https://iiif.princeton.edu/loris/figgy_prod/8a%2F0c%2F9c%2F8a0c9c4958a2405a95f7994f29f4e4b7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Crossed out,1933-11-19,,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/secret-lives/,Secret Lives,,,,Unidentified. E. F. Benson's *Secret Lives* (1932) or Richard Starr's *Secret Lives* (1936).,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2Ff1%2Ffc%2F5ef1fc21a2be4ee7a21be500c8143229%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-11-19,1933-11-25,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/yeats-winding-stair/,The Winding Stair,,"Yeats, William Butler",1929,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/58%2F45%2F77%2F58457700c8f84cf7be6a477c1713a40b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-11-19,1933-11-25,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/eliot-use-poetry-use/,The Use of Poetry and the Use of Criticism: Studies in the Relation of Criticism to Poetry in England,,"Eliot, T. S.",1933,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/58%2F45%2F77%2F58457700c8f84cf7be6a477c1713a40b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-11-20,1933-12-08,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/wells-new-machiavelli/,The New Machiavelli,,"Wells, H. G.",1910,,Lending Library Card,"Sylvia Beach, Aline Prot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/15a376bb-405b-4488-b789-1559abbe3fb2/manifest,https://iiif-cloud.princeton.edu/iiif/2/cd%2Fb9%2F8d%2Fcdb98d69d2914c9a86733742b9a595f2%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1933-11-20,1933-12-20,https://shakespeareandco.princeton.edu/members/heller/,Heller,Heller,22.50,7.50,1 month,30,,,1933-11-20,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1933-11-20,1933-12-20,https://shakespeareandco.princeton.edu/members/boden/,Pamela Boden,"Boden, Pamela",12.00,30.00,1 month,30,1,,1933-11-20,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1933-11-20,1933-11-20,https://shakespeareandco.princeton.edu/members/collery/,M. Collery,"Collery, M.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1933-11-20,1933-11-25,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/gascoyne-opening-day/,Opening Day,,"Gascoyne, David",1933,,Lending Library Card,"Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest,https://iiif.princeton.edu/loris/figgy_prod/e6%2Ffe%2F17%2Fe6fe1798c3664003ba0f3ec37c1b076a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-11-20,1933-11-20,https://shakespeareandco.princeton.edu/members/gascoyne/,David Gascoyne,"Gascoyne, David",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-11-20,1933-11-27,https://shakespeareandco.princeton.edu/members/paul-dubois/,Louis Paul-Dubois,"Paul-Dubois, Louis",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/malone-irish-drama/,The Irish Drama,,"Malone, Andrew E.",1929,,Lending Library Card,"Sylvia Beach, Louis Paul-Dubois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a5425c0b-233e-443e-a90e-1107459a225d/manifest,https://iiif.princeton.edu/loris/figgy_prod/fe%2Fed%2Fcc%2Ffeedcca8aab1457886de3a151d43553b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-21,1933-12-12,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/phillpotts-tryphena/,Tryphena,,"Phillpotts, Eden",1929,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/57%2Fd7%2Fed%2F57d7edebf111435d8d29597c65433a0a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-21,1933-11-22,https://shakespeareandco.princeton.edu/members/bonnerot-louis/,Louis Bonnerot,"Bonnerot, Louis",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/osullivan-dublin-magazine/,Dublin Magazine,,,,,Lending Library Card,"Sylvia Beach, Louis Bonnerot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c14cc736-079c-4403-9036-a2de4743414a/manifest,https://iiif.princeton.edu/loris/figgy_prod/02%2F5a%2F24%2F025a24f998344e51813e60cf8062c163%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1933-11-21,1933-12-21,https://shakespeareandco.princeton.edu/members/clairin-theresa/,Theresa (Shiff) Clairin,"Clairin, Theresa",20.00,,1 month,30,2,,1933-11-21,,,,,FRF,,,,,,,Logbook;Lending Library Card;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Theresa (Shiff) Clairin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/46a8350f-5226-4051-aa61-69eae1bf0e52/manifest;,;https://iiif.princeton.edu/loris/figgy_prod/cc%2Fe3%2F1c%2Fcce31c0673dd42298e6f80b831ad8557%2Fintermediate_file.jp2/full/full/0/default.jpg;
+Purchase,1933-11-21,1933-11-21,https://shakespeareandco.princeton.edu/members/massey/,Adelaide W. Massey / A. W. Massey,"Massey, Adelaide W.",,,,,,,,,,,80.00,FRF,https://shakespeareandco.princeton.edu/books/stein-autobiography-alice-b/,The Autobiography of Alice B. Toklas,,"Stein, Gertrude",1933,,Lending Library Card,"Sylvia Beach, A. W. Massey Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c4712c46-76f3-4581-99d6-d0ffd31b4138/manifest,https://iiif-cloud.princeton.edu/iiif/2/d2%2F82%2F21%2Fd282213c30fe4d538a93a97b987fb0cf%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-11-21,1933-11-26,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/thurlow-mating-cry/,The Mating Cry,,"Thurlow, John",1925,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/57%2Fd7%2Fed%2F57d7edebf111435d8d29597c65433a0a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-21,1933-12-05,https://shakespeareandco.princeton.edu/members/clairin-theresa/,Theresa (Shiff) Clairin,"Clairin, Theresa",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/baring-daphne-adeane/,Daphne Adeane,,"Baring, Maurice",1927,,Lending Library Card,"Sylvia Beach, Theresa (Shiff) Clairin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/46a8350f-5226-4051-aa61-69eae1bf0e52/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Fe3%2F1c%2Fcce31c0673dd42298e6f80b831ad8557%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-21,1933-12-05,https://shakespeareandco.princeton.edu/members/clairin-theresa/,Theresa (Shiff) Clairin,"Clairin, Theresa",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/webb-gone-earth/,Gone to Earth,,"Webb, Mary",1917,,Lending Library Card,"Sylvia Beach, Theresa (Shiff) Clairin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/46a8350f-5226-4051-aa61-69eae1bf0e52/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Fe3%2F1c%2Fcce31c0673dd42298e6f80b831ad8557%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-22,,https://shakespeareandco.princeton.edu/members/meyer-florence/,Florence Meyer,"Meyer, Florence",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/gide-counterfeiters/,The Counterfeiters,,"Gide, AndrΓ©",1927,,Lending Library Card,"Sylvia Beach, Florence Meyer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd3b6930-a7f4-40e5-88ad-1a27c20d35f1/manifest,https://iiif.princeton.edu/loris/figgy_prod/ce%2F38%2Fc0%2Fce38c07006f54cd5b453f4e61d7f497a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-22,1933-11-28,https://shakespeareandco.princeton.edu/members/meyer-florence/,Florence Meyer,"Meyer, Florence",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/merezhkovsky-napoleon/,Napoleon,,"Merezhkovsky, Dmitry",1928,,Lending Library Card,"Sylvia Beach, Florence Meyer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd3b6930-a7f4-40e5-88ad-1a27c20d35f1/manifest,https://iiif.princeton.edu/loris/figgy_prod/ce%2F38%2Fc0%2Fce38c07006f54cd5b453f4e61d7f497a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-11-22,1933-11-22,https://shakespeareandco.princeton.edu/members/howard-6/,Howard,Howard,,,,,,,,60.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Purchase,1933-11-23,1933-11-23,https://shakespeareandco.princeton.edu/members/gillet-louis/,Louis Gillet,"Gillet, Louis",,,,,,,,,,,36.55,FRF,https://shakespeareandco.princeton.edu/books/carroll-selection-letters-lewis/,A Selection from the Letters of Lewis Carroll (the Rev. Charles Lutwidge Dodgson) to His Child-Friends,,"Carroll, Lewis",1933,,Lending Library Card,"Sylvia Beach, Louis Gillet Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/059a38e2-2b13-4c5c-b116-b978abc5de0c/manifest,https://iiif.princeton.edu/loris/figgy_prod/f5%2F5d%2F86%2Ff55d8687ab804f2fbe9123c7158d2f09%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1933-11-23,1933-11-23,https://shakespeareandco.princeton.edu/members/gillet-louis/,Louis Gillet,"Gillet, Louis",,,,,,,,,,,33.00,FRF,https://shakespeareandco.princeton.edu/books/eliot-use-poetry-use/,The Use of Poetry and the Use of Criticism: Studies in the Relation of Criticism to Poetry in England,,"Eliot, T. S.",1933,,Lending Library Card,"Sylvia Beach, Louis Gillet Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/059a38e2-2b13-4c5c-b116-b978abc5de0c/manifest,https://iiif.princeton.edu/loris/figgy_prod/f5%2F5d%2F86%2Ff55d8687ab804f2fbe9123c7158d2f09%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-23,,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/guedalla-queen-mr-gladstone/,The Queen and Mr. Gladstone,Vol. 2,"Guedalla, Phillip",1933,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e3%2Fa3%2F2f%2Fe3a32f3f58b84d669bc3710140acb7d5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-23,1933-12-06,https://shakespeareandco.princeton.edu/members/connolly-cyril/,Cyril Connolly,"Connolly, Cyril",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/hergesheimer-san-cristobal-habana/,San Cristobal de la Habana,,"Hergesheimer, Joseph",1920,,Lending Library Card,"Sylvia Beach, Cyril Connolly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/001b27cc-7d4a-44d1-9129-c2d3dd9b178a/manifest,https://iiif.princeton.edu/loris/figgy_prod/6d%2F70%2Fb8%2F6d70b8ea023d4971b118a554c81508a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-23,1933-12-06,https://shakespeareandco.princeton.edu/members/connolly-cyril/,Cyril Connolly,"Connolly, Cyril",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/cronin-grand-canary/,Grand Canary,,"Cronin, A. J.",1933,,Lending Library Card,"Sylvia Beach, Cyril Connolly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/001b27cc-7d4a-44d1-9129-c2d3dd9b178a/manifest,https://iiif.princeton.edu/loris/figgy_prod/6d%2F70%2Fb8%2F6d70b8ea023d4971b118a554c81508a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-23,1933-12-06,https://shakespeareandco.princeton.edu/members/connolly-cyril/,Cyril Connolly,"Connolly, Cyril",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/boyle-first-lover-stories/,The First Lover and Other Stories,,"Boyle, Kay",1933,,Lending Library Card,"Sylvia Beach, Cyril Connolly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/001b27cc-7d4a-44d1-9129-c2d3dd9b178a/manifest,https://iiif.princeton.edu/loris/figgy_prod/6d%2F70%2Fb8%2F6d70b8ea023d4971b118a554c81508a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-23,1933-11-30,https://shakespeareandco.princeton.edu/members/claudius/,Agnes Claudius,"Claudius, Agnes",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/strachey-characters-commentaries/,Characters and Commentaries,,"Strachey, Giles Lytton",1933,,Lending Library Card,"Sylvia Beach, Agnes Claudius Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18a9262d-8ea3-4d0c-9b36-8a1c638950fa/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2Fbb%2Fbd%2F23bbbd657cc64aeaa1cf1b3dc4210522%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-24,1933-12-07,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/sugimoto-daughter-samurai/,"A Daughter of the Samurai: How a Daughter of Feudal Japan, Living Hundreds of Years in One Generation, Became a Modern American",,"Sugimoto, Etsuko",1925,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/3c%2Faa%2F4f%2F3caa4f8e37954ba7a197d68f47529504%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-11-24,1933-12-07,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/allen-anthony-adverse/,Anthony Adverse,,"Allen, Hervey",1933,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/3c%2Faa%2F4f%2F3caa4f8e37954ba7a197d68f47529504%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-11-24,1933-12-08,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/powys-wolf-solent/,Wolf Solent,,"Powys, John Cowper",1929,,Lending Library Card,"Sylvia Beach, Aline Prot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/15a376bb-405b-4488-b789-1559abbe3fb2/manifest,https://iiif-cloud.princeton.edu/iiif/2/cd%2Fb9%2F8d%2Fcdb98d69d2914c9a86733742b9a595f2%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1933-11-24,1933-11-24,https://shakespeareandco.princeton.edu/members/carll/,Mrs. D. S. Carll,"Carll, Mrs. D. S.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-11-25,1933-12-02,https://shakespeareandco.princeton.edu/members/tuttle-stephen-d/,Stephen D. Tuttle,"Tuttle, Stephen D.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/eliot-use-poetry-use/,The Use of Poetry and the Use of Criticism: Studies in the Relation of Criticism to Poetry in England,,"Eliot, T. S.",1933,,Lending Library Card,"Sylvia Beach, Stephen D. Tuttle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f1653918-3f2b-4e88-bd27-4e3c4d83a47d/manifest,https://iiif-cloud.princeton.edu/iiif/2/65%2Fdf%2Ff8%2F65dff8cf663e4eceb54c65b53cccaf7e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-11-25,1933-11-29,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/hindus-red-bread/,Red Bread,,"Hindus, Maurice Gerschon",1931,,Lending Library Card,"Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest,https://iiif.princeton.edu/loris/figgy_prod/e6%2Ffe%2F17%2Fe6fe1798c3664003ba0f3ec37c1b076a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-25,1933-11-27,https://shakespeareandco.princeton.edu/members/perkins/,Mrs. Perkins,"Perkins, Mrs.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/hemingway-winner-take-nothing/,Winner Take Nothing,,"Hemingway, Ernest",1933,,Lending Library Card,"Sylvia Beach, Perkins Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c711b33a-cb94-478e-8090-0a62744bb3e3/manifest,https://iiif.princeton.edu/loris/figgy_prod/f1%2F08%2Fc6%2Ff108c6dd36e64848b0483f72d1a49844%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-25,1933-12-02,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/auden-poems/,Poems,,"Auden, W. H.",,"Unidentified editions or editions: likely 1930, 1933, or 1934.",Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/58%2F45%2F77%2F58457700c8f84cf7be6a477c1713a40b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-11-25,1933-12-02,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/pound-draft-xxx-cantos/,A Draft of XXX Cantos,,"Pound, Ezra",1930,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/58%2F45%2F77%2F58457700c8f84cf7be6a477c1713a40b%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1933-11-25,,https://shakespeareandco.princeton.edu/members/yvonne-abelin/,Yvonne Abelin,"Abelin, Yvonne",,,,,,,1933-11-25,,,,,FRF,,,,,,,Address Book,"Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1933-11-25,1933-12-07,https://shakespeareandco.princeton.edu/members/tuttle-stephen-d/,Stephen D. Tuttle,"Tuttle, Stephen D.",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/latin-dictionary/,Latin Dictionary,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Stephen D. Tuttle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f1653918-3f2b-4e88-bd27-4e3c4d83a47d/manifest,https://iiif-cloud.princeton.edu/iiif/2/65%2Fdf%2Ff8%2F65dff8cf663e4eceb54c65b53cccaf7e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-11-26,1933-12-21,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,25,,,https://shakespeareandco.princeton.edu/books/delafield-women-like/,Women Are Like That,,"Delafield, E. M.",1929,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/57%2Fd7%2Fed%2F57d7edebf111435d8d29597c65433a0a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-27,1933-11-29,https://shakespeareandco.princeton.edu/members/bonnerot-louis/,Louis Bonnerot,"Bonnerot, Louis",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/times/,Times,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Louis Bonnerot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c14cc736-079c-4403-9036-a2de4743414a/manifest,https://iiif.princeton.edu/loris/figgy_prod/02%2F5a%2F24%2F025a24f998344e51813e60cf8062c163%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-27,1933-12-05,https://shakespeareandco.princeton.edu/members/paul-dubois/,Louis Paul-Dubois,"Paul-Dubois, Louis",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/boyd-irelands-literary-renaissance/,Ireland's Literary Renaissance,,"Boyd, Ernest Augustus",1916,,Lending Library Card,"Sylvia Beach, Louis Paul-Dubois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a5425c0b-233e-443e-a90e-1107459a225d/manifest,https://iiif.princeton.edu/loris/figgy_prod/fe%2Fed%2Fcc%2Ffeedcca8aab1457886de3a151d43553b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-27,1933-12-05,https://shakespeareandco.princeton.edu/members/paul-dubois/,Louis Paul-Dubois,"Paul-Dubois, Louis",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/gregory-irish-theatre-chapter/,Our Irish Theatre: A Chapter of Autobiography,,"Gregory, Lady",1913,,Lending Library Card,"Sylvia Beach, Louis Paul-Dubois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a5425c0b-233e-443e-a90e-1107459a225d/manifest,https://iiif.princeton.edu/loris/figgy_prod/fe%2Fed%2Fcc%2Ffeedcca8aab1457886de3a151d43553b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1933-11-28,1933-12-28,https://shakespeareandco.princeton.edu/members/claudius/,Agnes Claudius,"Claudius, Agnes",12.00,,1 month,30,1,,1933-11-30,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Agnes Claudius Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/18a9262d-8ea3-4d0c-9b36-8a1c638950fa/manifest,;https://iiif.princeton.edu/loris/figgy_prod/23%2Fbb%2Fbd%2F23bbbd657cc64aeaa1cf1b3dc4210522%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-29,1933-12-02,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/read-art-now-introduction/,Art Now: An Introduction to the Theory of Modern Painting and Sculpture,,"Read, Herbert",1933,,Lending Library Card,"Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest,https://iiif.princeton.edu/loris/figgy_prod/e6%2Ffe%2F17%2Fe6fe1798c3664003ba0f3ec37c1b076a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-29,1933-11-30,https://shakespeareandco.princeton.edu/members/bonnerot-louis/,Louis Bonnerot,"Bonnerot, Louis",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/osullivan-dublin-magazine/,Dublin Magazine,"Vol. 8, no. 1, Jan β Mar 1933",,,,Lending Library Card,"Sylvia Beach, Louis Bonnerot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c14cc736-079c-4403-9036-a2de4743414a/manifest,https://iiif.princeton.edu/loris/figgy_prod/02%2F5a%2F24%2F025a24f998344e51813e60cf8062c163%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-29,1933-11-30,https://shakespeareandco.princeton.edu/members/bonnerot-louis/,Louis Bonnerot,"Bonnerot, Louis",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/murry-adelphi/,The Adelphi,"Vol. 5, no. 5, Feb 1933",,,,Lending Library Card,"Sylvia Beach, Louis Bonnerot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c14cc736-079c-4403-9036-a2de4743414a/manifest,https://iiif.princeton.edu/loris/figgy_prod/02%2F5a%2F24%2F025a24f998344e51813e60cf8062c163%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-30,1933-12-08,https://shakespeareandco.princeton.edu/members/laporte/,Madeleine Laporte,"Laporte, Madeleine",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/goldsmith-poems-plays-oliver/,The Poems and Plays of Oliver Goldsmith,,"Goldsmith, Oliver",1891,,Lending Library Card,"Sylvia Beach, Madeleine Laporte Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/94901174-ece6-4f4f-8f56-7c5154efb578/manifest,https://iiif.princeton.edu/loris/figgy_prod/43%2F64%2F29%2F4364295feed0416c9ba5417c5b15481f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1933-11-30,1934-05-30,https://shakespeareandco.princeton.edu/members/shelley-dorothy/,Dorothy Shelley,"Shelley, Dorothy",90.00,60.00,6 months,181,2,,1933-11-30,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Dorothy Shelley Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/dcc58669-efb6-4ace-ab31-a1cb913f3692/manifest,;https://iiif.princeton.edu/loris/figgy_prod/6e%2F92%2F2e%2F6e922e058b7c4a56ac1215de11398cdd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1933-11-30,1933-12-30,https://shakespeareandco.princeton.edu/members/dillon/,George Dillon,"Dillon, George",,50.00,1 month,30,1,,1933-11-30,,,,,FRF,,,,,,,Logbook;Lending Library Card;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, George Dillon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/5e438ba5-07c0-492f-b5f5-b1755e934b4e/manifest;,;https://iiif.princeton.edu/loris/figgy_prod/1a%2F27%2F7a%2F1a277a85874341078252c5adc35380a1%2Fintermediate_file.jp2/full/full/0/default.jpg;
+Borrow,1933-11-30,1933-12-19,https://shakespeareandco.princeton.edu/members/shelley-dorothy/,Dorothy Shelley,"Shelley, Dorothy",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/whitman-leaves-grass/,Leaves of Grass,,"Whitman, Walt",,Unspecified edition.,Lending Library Card,"Sylvia Beach, Dorothy Shelley Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dcc58669-efb6-4ace-ab31-a1cb913f3692/manifest,https://iiif.princeton.edu/loris/figgy_prod/6e%2F92%2F2e%2F6e922e058b7c4a56ac1215de11398cdd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-30,1933-12-04,https://shakespeareandco.princeton.edu/members/shelley-dorothy/,Dorothy Shelley,"Shelley, Dorothy",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/mansfield-garden-party-stories/,The Garden Party and Other Stories,,"Mansfield, Katherine",1922,,Lending Library Card,"Sylvia Beach, Dorothy Shelley Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dcc58669-efb6-4ace-ab31-a1cb913f3692/manifest,https://iiif.princeton.edu/loris/figgy_prod/6e%2F92%2F2e%2F6e922e058b7c4a56ac1215de11398cdd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-30,1933-12-02,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/mackenzie-literature-time/,Literature in My Time,,"Mackenzie, Compton",1933,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e3%2Fa3%2F2f%2Fe3a32f3f58b84d669bc3710140acb7d5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-30,1933-12-01,https://shakespeareandco.princeton.edu/members/claudius/,Agnes Claudius,"Claudius, Agnes",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/delafield-gay-life/,Gay Life,,"Delafield, E. M.",1933,,Lending Library Card,"Sylvia Beach, Agnes Claudius Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18a9262d-8ea3-4d0c-9b36-8a1c638950fa/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2Fbb%2Fbd%2F23bbbd657cc64aeaa1cf1b3dc4210522%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-11-30,1933-12-02,https://shakespeareandco.princeton.edu/members/dillon/,George Dillon,"Dillon, George",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/jeffers-roan-stallion-tamar/,"Roan Stallion, Tamar, and Other Poems",,"Jeffers, Robinson",1925,,Lending Library Card,"Sylvia Beach, George Dillon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5e438ba5-07c0-492f-b5f5-b1755e934b4e/manifest,https://iiif.princeton.edu/loris/figgy_prod/1a%2F27%2F7a%2F1a277a85874341078252c5adc35380a1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-01,1933-12-09,https://shakespeareandco.princeton.edu/members/porter-katherine-anne/,Katherine Anne Porter / Mrs. Katherine Anne Pressly,"Porter, Katherine Anne",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/kirstein-hound-horn/,Hound & Horn,,,,,Lending Library Card,"Sylvia Beach, Katherine Anne Porter Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e929ad7e-7cda-422b-9107-310e3c4feb78/manifest,https://iiif.princeton.edu/loris/figgy_prod/40%2F3f%2F06%2F403f063d4e9442229355a1cc3b19535c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-01,1933-12-09,https://shakespeareandco.princeton.edu/members/porter-katherine-anne/,Katherine Anne Porter / Mrs. Katherine Anne Pressly,"Porter, Katherine Anne",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/boyle-year-last/,Year before Last,,"Boyle, Kay",1932,,Lending Library Card,"Sylvia Beach, Katherine Anne Porter Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e929ad7e-7cda-422b-9107-310e3c4feb78/manifest,https://iiif.princeton.edu/loris/figgy_prod/40%2F3f%2F06%2F403f063d4e9442229355a1cc3b19535c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1933-12-01,1934-01-01,https://shakespeareandco.princeton.edu/members/carbone/,Paule Carbone,"Carbone, Paule",12.00,30.00,1 month,31,1,,1933-12-01,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1933-12-02,1933-12-02,https://shakespeareandco.princeton.edu/members/sazerac-de-forge/,Sazerac de Forge,Sazerac de Forge,,,,,,,,30.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-12-02,1933-12-04,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/james-joyce/,James Joyce,,,,Unidentified. By or about Joyce.,Lending Library Card,"Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest,https://iiif.princeton.edu/loris/figgy_prod/e6%2Ffe%2F17%2Fe6fe1798c3664003ba0f3ec37c1b076a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-02,1933-12-04,https://shakespeareandco.princeton.edu/members/dillon/,George Dillon,"Dillon, George",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/chambers-oxford-book-sixteenth/,The Oxford Book of Sixteenth Century Verse,,"Chambers, E. K.",1932,,Lending Library Card,"Sylvia Beach, George Dillon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5e438ba5-07c0-492f-b5f5-b1755e934b4e/manifest,https://iiif.princeton.edu/loris/figgy_prod/1a%2F27%2F7a%2F1a277a85874341078252c5adc35380a1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-02,1933-12-09,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/lawrence-etruscan-places/,Etruscan Places,,"Lawrence, D. H.",1932,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/58%2F45%2F77%2F58457700c8f84cf7be6a477c1713a40b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-12-02,1933-12-09,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/hemingway-winner-take-nothing/,Winner Take Nothing,,"Hemingway, Ernest",1933,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/58%2F45%2F77%2F58457700c8f84cf7be6a477c1713a40b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-12-02,1933-12-11,https://shakespeareandco.princeton.edu/members/perkins/,Mrs. Perkins,"Perkins, Mrs.",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/west-miss-lonelyhearts/,Miss Lonelyhearts,,"West, Nathanael",1933,,Lending Library Card,"Sylvia Beach, Perkins Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c711b33a-cb94-478e-8090-0a62744bb3e3/manifest,https://iiif.princeton.edu/loris/figgy_prod/f1%2F08%2Fc6%2Ff108c6dd36e64848b0483f72d1a49844%2Fintermediate_file.jp2/full/full/0/default.jpg
+Separate Payment,1933-12-02,1933-12-02,https://shakespeareandco.princeton.edu/members/dillon/,George Dillon,"Dillon, George",25.00,,,,,,1933-12-02,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-12-02,1933-12-06,https://shakespeareandco.princeton.edu/members/claudius/,Agnes Claudius,"Claudius, Agnes",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/christie-thirteen-dinner/,Thirteen at Dinner,,"Christie, Agatha",1933,,Lending Library Card,"Sylvia Beach, Agnes Claudius Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18a9262d-8ea3-4d0c-9b36-8a1c638950fa/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2Fbb%2Fbd%2F23bbbd657cc64aeaa1cf1b3dc4210522%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-02,1933-12-05,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/delafield-gay-life/,Gay Life,,"Delafield, E. M.",1933,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e3%2Fa3%2F2f%2Fe3a32f3f58b84d669bc3710140acb7d5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-04,1933-12-06,https://shakespeareandco.princeton.edu/members/dillon/,George Dillon,"Dillon, George",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/hardy-collected-poems-thomas/,Collected Poems of Thomas Hardy,,"Hardy, Thomas",1919,,Lending Library Card,"Sylvia Beach, George Dillon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5e438ba5-07c0-492f-b5f5-b1755e934b4e/manifest,https://iiif.princeton.edu/loris/figgy_prod/1a%2F27%2F7a%2F1a277a85874341078252c5adc35380a1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-04,1933-12-18,https://shakespeareandco.princeton.edu/members/clairin-pierre-eugene/,Pierre-Eugène Clairin,"Clairin, Pierre-Eugène",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/gascoyne-opening-day/,Opening Day,,"Gascoyne, David",1933,,Lending Library Card,"Sylvia Beach, Pierre Clairin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e63243a0-173f-4a2e-9310-fc058bd22a7a/manifest,https://iiif.princeton.edu/loris/figgy_prod/9d%2F11%2F52%2F9d1152c19ae64e75878253e7c1de9ef6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-04,1933-12-23,https://shakespeareandco.princeton.edu/members/shelley-dorothy/,Dorothy Shelley,"Shelley, Dorothy",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/dreiser-american-tragedy/,An American Tragedy,,"Dreiser, Theodore",1925,,Lending Library Card,"Sylvia Beach, Dorothy Shelley Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dcc58669-efb6-4ace-ab31-a1cb913f3692/manifest,https://iiif.princeton.edu/loris/figgy_prod/6e%2F92%2F2e%2F6e922e058b7c4a56ac1215de11398cdd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-04,1933-12-15,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/warner-lolly-willowes/,Lolly Willowes,,"Warner, Sylvia Townsend",1926,,Lending Library Card,"Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest,https://iiif.princeton.edu/loris/figgy_prod/e6%2Ffe%2F17%2Fe6fe1798c3664003ba0f3ec37c1b076a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-04,,https://shakespeareandco.princeton.edu/members/meyer-florence/,Florence Meyer,"Meyer, Florence",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/hemingway-winner-take-nothing/,Winner Take Nothing,,"Hemingway, Ernest",1933,,Lending Library Card,"Sylvia Beach, Florence Meyer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd3b6930-a7f4-40e5-88ad-1a27c20d35f1/manifest,https://iiif.princeton.edu/loris/figgy_prod/ce%2F38%2Fc0%2Fce38c07006f54cd5b453f4e61d7f497a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-04,1933-12-20,https://shakespeareandco.princeton.edu/members/plummer-dorothy/,Dorothy Plummer,"Plummer, Dorothy",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/poe-tales-mystery-imagination/,Tales of Mystery and Imagination,,"Poe, Edgar Allan",,,Lending Library Card,"Sylvia Beach, Dorothy Plummer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5f53ce0-8ea6-4d1f-b36b-f6e5321bab4c/manifest,https://iiif.princeton.edu/loris/figgy_prod/73%2F61%2F28%2F7361283a6eb946cbbb43d97ca38f1deb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-04,1933-12-20,https://shakespeareandco.princeton.edu/members/tony-mayer/,Thérèse Tony-Mayer,"Tony-Mayer, Thérèse",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/richardson-honeycomb-pilgrimage-3/,Honeycomb (Pilgrimage 3),,"Richardson, Dorothy M.",1917,,Lending Library Card,"Sylvia Beach, Thérèse Tony-Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/27246b4c-7d99-4dca-b874-ab90bd542cfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2Fa0%2Fff%2F50a0ff19abc240c680a6a33baf060b76%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1933-12-04,1933-12-04,https://shakespeareandco.princeton.edu/members/roditi-georges/,Georges Roditi,"Roditi, Georges",,,,,,,,,,,25.58,FRF,https://shakespeareandco.princeton.edu/books/cole-everybody-wants-know-money/,What Everybody Wants to Know about Money: A Planned Outline of Monetary Problems by Nine Economists from Oxford,,,1933,,Lending Library Card,"Sylvia Beach, Georges Roditi Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/40f31028-742e-4808-bd49-8ba2c8a43e89/manifest,https://iiif.princeton.edu/loris/figgy_prod/9e%2F1c%2F7f%2F9e1c7fbd264b44a49385b479c38bbf44%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-05,1933-12-12,https://shakespeareandco.princeton.edu/members/maspero-clerc/;https://shakespeareandco.princeton.edu/members/maspero-henri/,Hélène Maspero-Clerc;Henri Maspero,"Maspero-Clerc, Hélène;Maspero, Henri",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/lawrence-sons-lovers/,Sons and Lovers,,"Lawrence, D. H.",1913,,Lending Library Card,"Sylvia Beach, Maspero Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/92dca37a-f412-4b18-90a3-d236d2b3fe20/manifest,https://iiif-cloud.princeton.edu/iiif/2/ea%2F4c%2F4a%2Fea4c4a2dc06f44aaa9c52db92681a7bb%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-12-05,1933-12-21,https://shakespeareandco.princeton.edu/members/clairin-theresa/,Theresa (Shiff) Clairin,"Clairin, Theresa",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/lehmann-dusty-answer/,Dusty Answer,,"Lehmann, Rosamond",1927,,Lending Library Card,"Sylvia Beach, Theresa (Shiff) Clairin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/46a8350f-5226-4051-aa61-69eae1bf0e52/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Fe3%2F1c%2Fcce31c0673dd42298e6f80b831ad8557%2Fintermediate_file.jp2/full/full/0/default.jpg
+Supplement,1933-12-05,1934-05-20,https://shakespeareandco.princeton.edu/members/heller/,Heller,Heller,27.50,22.50,"5 months, 15 days",166,,,1933-12-05,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1933-12-05,1934-03-05,https://shakespeareandco.princeton.edu/members/foret/,Mme de la Foret,"de la Foret, Mme",30.00,,3 months,90,1,,1933-12-05,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Madame de la Foret Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/6fc4cfdc-78bc-4f2f-9b2a-3d0e51291d39/manifest,;https://iiif.princeton.edu/loris/figgy_prod/9f%2Fbd%2Fc2%2F9fbdc20ad87d4ab394db6ce1b8a8309c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-05,1933-12-16,https://shakespeareandco.princeton.edu/members/paul-dubois/,Louis Paul-Dubois,"Paul-Dubois, Louis",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/colum-road-round-ireland/,The Road Round Ireland,,"Colum, Padraic",1926,,Lending Library Card,"Sylvia Beach, Louis Paul-Dubois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a5425c0b-233e-443e-a90e-1107459a225d/manifest,https://iiif.princeton.edu/loris/figgy_prod/fe%2Fed%2Fcc%2Ffeedcca8aab1457886de3a151d43553b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-05,1933-12-19,https://shakespeareandco.princeton.edu/members/foret/,Mme de la Foret,"de la Foret, Mme",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/lawrence-women-love/,Women in Love,,"Lawrence, D. H.",1920,,Lending Library Card,"Sylvia Beach, Madame de la Foret Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6fc4cfdc-78bc-4f2f-9b2a-3d0e51291d39/manifest,https://iiif.princeton.edu/loris/figgy_prod/9f%2Fbd%2Fc2%2F9fbdc20ad87d4ab394db6ce1b8a8309c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-05,1933-12-21,https://shakespeareandco.princeton.edu/members/clairin-theresa/,Theresa (Shiff) Clairin,"Clairin, Theresa",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/webb-seven-secret-love/,Seven for a Secret: A Love Story,,"Webb, Mary",1922,,Lending Library Card,"Sylvia Beach, Theresa (Shiff) Clairin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/46a8350f-5226-4051-aa61-69eae1bf0e52/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Fe3%2F1c%2Fcce31c0673dd42298e6f80b831ad8557%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-05,1933-12-16,https://shakespeareandco.princeton.edu/members/paul-dubois/,Louis Paul-Dubois,"Paul-Dubois, Louis",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/colum-three-plays-fiddlers/,"Three Plays: The Fiddler's House, The Land, Thomas Muskerry",,"Colum, Padraic",1916,,Lending Library Card,"Sylvia Beach, Louis Paul-Dubois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a5425c0b-233e-443e-a90e-1107459a225d/manifest,https://iiif.princeton.edu/loris/figgy_prod/fe%2Fed%2Fcc%2Ffeedcca8aab1457886de3a151d43553b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1933-12-05,1934-03-05,https://shakespeareandco.princeton.edu/members/poole-kitty-wickes/,Kitty (Wickes) Poole / Miss Kitty Wickes,"Wickes, Kitty",30.00,30.00,3 months,90,1,,1933-12-05,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Kitty Wickes Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/c05f1eb5-94d5-4b79-8165-35e4c6cf097e/manifest,;https://iiif.princeton.edu/loris/figgy_prod/5f%2F97%2F47%2F5f97477dc38444e5bc903ab1050a6923%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-05,1934-01-06,https://shakespeareandco.princeton.edu/members/denis-graterolle/,Elisabeth Denis-Graterolle / Mme Maurice Denis,"Denis-Graterolle, Elisabeth",,,,,,,,,Returned,32,,,https://shakespeareandco.princeton.edu/books/swinburne-letters-algernon-charles/,The Letters of Algernon Charles Swinburne,Vol. 1,"Swinburne, Algernon Charles",1919,,Lending Library Card,"Sylvia Beach, Elisabeth Denis-Graterolle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/964dbe97-240c-4e59-a8ca-c43f25875149/manifest,https://iiif.princeton.edu/loris/figgy_prod/01%2F85%2F35%2F0185352ce4a645fb9698d1bbb7b51071%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-05,1933-12-12,https://shakespeareandco.princeton.edu/members/poole-kitty-wickes/,Kitty (Wickes) Poole / Miss Kitty Wickes,"Wickes, Kitty",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/dickinson-selected-poems-emily/,Selected Poems of Emily Dickinson,,"Dickinson, Emily",1924,,Lending Library Card,"Sylvia Beach, Kitty Wickes Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c05f1eb5-94d5-4b79-8165-35e4c6cf097e/manifest,https://iiif.princeton.edu/loris/figgy_prod/5f%2F97%2F47%2F5f97477dc38444e5bc903ab1050a6923%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-05,,https://shakespeareandco.princeton.edu/members/denis-graterolle/,Elisabeth Denis-Graterolle / Mme Maurice Denis,"Denis-Graterolle, Elisabeth",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/woolf-flush-biography/,Flush: A Biography,,"Woolf, Virginia",1933,,Lending Library Card,"Sylvia Beach, Elisabeth Denis-Graterolle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/964dbe97-240c-4e59-a8ca-c43f25875149/manifest,https://iiif.princeton.edu/loris/figgy_prod/01%2F85%2F35%2F0185352ce4a645fb9698d1bbb7b51071%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1933-12-05,1934-06-05,https://shakespeareandco.princeton.edu/members/maspero-clerc/;https://shakespeareandco.princeton.edu/members/maspero-henri/,HΓ©lΓ¨ne Maspero-Clerc;Henri Maspero,"Maspero-Clerc, HΓ©lΓ¨ne;Maspero, Henri",50.00,,6 months,182,1,,1933-12-05,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Maspero Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/92dca37a-f412-4b18-90a3-d236d2b3fe20/manifest,;https://iiif-cloud.princeton.edu/iiif/2/ea%2F4c%2F4a%2Fea4c4a2dc06f44aaa9c52db92681a7bb%2Fintermediate_file/full/full/0/default.jpg
+Separate Payment,1933-12-05,1933-12-05,https://shakespeareandco.princeton.edu/members/geoffroy-3/,Geoffroy,Geoffroy,20.00,,,,,,1933-12-05,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1933-12-05,1934-01-05,https://shakespeareandco.princeton.edu/members/ferester/,Ferester,Ferester,12.00,30.00,1 month,31,1,,1933-12-05,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Crossed out,1933-12-05,,https://shakespeareandco.princeton.edu/members/clairin-theresa/,Theresa (Shiff) Clairin,"Clairin, Theresa",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/locke-fortunate-youth/,The Fortunate Youth,,"Locke, William John",1914,,Lending Library Card,"Sylvia Beach, Theresa (Shiff) Clairin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/46a8350f-5226-4051-aa61-69eae1bf0e52/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Fe3%2F1c%2Fcce31c0673dd42298e6f80b831ad8557%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-05,1933-12-07,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/fallada-little-man-now/,"Little Man, What Now?",,"Fallada, Hans",1933,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e3%2Fa3%2F2f%2Fe3a32f3f58b84d669bc3710140acb7d5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-06,,https://shakespeareandco.princeton.edu/members/claudius/,Agnes Claudius,"Claudius, Agnes",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/burnham-symposium-critical-review/,The Symposium: A Critical Review,"Vol. 4, no. 4, Oct 1933",,,,Lending Library Card,"Sylvia Beach, Agnes Claudius Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18a9262d-8ea3-4d0c-9b36-8a1c638950fa/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2Fbb%2Fbd%2F23bbbd657cc64aeaa1cf1b3dc4210522%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-06,,https://shakespeareandco.princeton.edu/members/gascoyne/,David Gascoyne,"Gascoyne, David",,,,,,,,,Bought,,,,https://shakespeareandco.princeton.edu/books/grigson-new-verse/,New Verse,,,,,Lending Library Card,"Sylvia Beach, David Gascoyne Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fac349a1-bb75-4f88-9991-ea5d50cd2885/manifest,https://iiif.princeton.edu/loris/figgy_prod/83%2F48%2Fbe%2F8348bef7a41748528af2dcd59ac1d781%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-06,1933-12-11,https://shakespeareandco.princeton.edu/members/guillemin-annie/,Annie Guillemin,"Guillemin, Annie",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/buck-good-earth/,The Good Earth,,"Buck, Pearl S.",1931,,Lending Library Card,"Sylvia Beach, Annie Guillemin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2d6019d9-34ed-4ca4-97a9-5fd05d8640a7/manifest,https://iiif.princeton.edu/loris/figgy_prod/8c%2Fbb%2Fe1%2F8cbbe1dd84b1489fa79f3b0b7d7b6e3f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-06,,https://shakespeareandco.princeton.edu/members/claudius/,Agnes Claudius,"Claudius, Agnes",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/burnham-symposium-critical-review/,The Symposium: A Critical Review,"Vol. 4, no. 3, Jul 1933",,,,Lending Library Card,"Sylvia Beach, Agnes Claudius Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18a9262d-8ea3-4d0c-9b36-8a1c638950fa/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2Fbb%2Fbd%2F23bbbd657cc64aeaa1cf1b3dc4210522%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1933-12-06,1934-06-06,https://shakespeareandco.princeton.edu/members/guillemin-annie/,Annie Guillemin,"Guillemin, Annie",50.00,30.00,6 months,182,1,,1933-12-06,,,,,FRF,,,,,,,Lending Library Card;Logbook,"Sylvia Beach, Annie Guillemin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",https://figgy.princeton.edu/concern/scanned_resources/2d6019d9-34ed-4ca4-97a9-5fd05d8640a7/manifest;,https://iiif.princeton.edu/loris/figgy_prod/8c%2Fbb%2Fe1%2F8cbbe1dd84b1489fa79f3b0b7d7b6e3f%2Fintermediate_file.jp2/full/full/0/default.jpg;
+Borrow,1933-12-06,1933-12-08,https://shakespeareandco.princeton.edu/members/dillon/,George Dillon,"Dillon, George",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/auden-poems/,Poems,,"Auden, W. H.",,"Unidentified editions or editions: likely 1930, 1933, or 1934.",Lending Library Card,"Sylvia Beach, George Dillon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5e438ba5-07c0-492f-b5f5-b1755e934b4e/manifest,https://iiif.princeton.edu/loris/figgy_prod/1a%2F27%2F7a%2F1a277a85874341078252c5adc35380a1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1933-12-06,1933-12-06,https://shakespeareandco.princeton.edu/members/roditi-georges/,Georges Roditi,"Roditi, Georges",,,,,,,,,,,28.80,FRF,https://shakespeareandco.princeton.edu/books/astor-planning-agriculture/,The Planning of Agriculture,,"Astor, Viscount;Murray, Keith A. H.",1933,,Lending Library Card,"Sylvia Beach, Georges Roditi Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/40f31028-742e-4808-bd49-8ba2c8a43e89/manifest,https://iiif.princeton.edu/loris/figgy_prod/9e%2F1c%2F7f%2F9e1c7fbd264b44a49385b479c38bbf44%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-07,1933-12-09,https://shakespeareandco.princeton.edu/members/bonnerot-louis/,Louis Bonnerot,"Bonnerot, Louis",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/grigson-new-verse/,New Verse,,,,,Lending Library Card,"Sylvia Beach, Louis Bonnerot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c14cc736-079c-4403-9036-a2de4743414a/manifest,https://iiif.princeton.edu/loris/figgy_prod/02%2F5a%2F24%2F025a24f998344e51813e60cf8062c163%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-07,1933-12-21,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/strachey-characters-commentaries/,Characters and Commentaries,,"Strachey, Giles Lytton",1933,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/3c%2Faa%2F4f%2F3caa4f8e37954ba7a197d68f47529504%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-12-07,1933-12-12,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/loder-death-thicket/,Death in the Thicket,,"Loder, Vernon",1932,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/3c%2Faa%2F4f%2F3caa4f8e37954ba7a197d68f47529504%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-12-07,1933-12-23,https://shakespeareandco.princeton.edu/members/tuttle-stephen-d/,Stephen D. Tuttle,"Tuttle, Stephen D.",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/keats-keats-poems/,Keats's Poems,,"Keats, John",,Catherine Yarrow borrowed the Oxford Standard Authors edition.,Lending Library Card,"Sylvia Beach, Stephen D. Tuttle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f1653918-3f2b-4e88-bd27-4e3c4d83a47d/manifest,https://iiif-cloud.princeton.edu/iiif/2/65%2Fdf%2Ff8%2F65dff8cf663e4eceb54c65b53cccaf7e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-12-07,1933-12-21,https://shakespeareandco.princeton.edu/members/boscq-marie/,Marie Boscq / Bosq,"Boscq, Marie",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/grahame-wind-willows/,The Wind in the Willows,,"Grahame, Kenneth",1908,,Lending Library Card,"Sylvia Beach, Marie Boscq Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/11480fae-3477-40c8-be7d-484c91023da7/manifest,https://iiif.princeton.edu/loris/figgy_prod/cd%2F75%2F98%2Fcd75980d3c3e4cb3ac5163e331e790db%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-07,1933-12-12,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/sayers-clouds-witness/,Clouds of Witness,,"Sayers, Dorothy L.",1926,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/3c%2Faa%2F4f%2F3caa4f8e37954ba7a197d68f47529504%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-12-07,1933-12-12,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/mackworth-world/,This Was My World,,"Mackworth, Margaret Haig Thomas, Viscountess Rhondda",1933,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e3%2Fa3%2F2f%2Fe3a32f3f58b84d669bc3710140acb7d5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-07,1933-12-12,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/connington-nemesis-raynham-parva/,Nemesis at Raynham Parva,,"Connington, J. J.",1929,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/3c%2Faa%2F4f%2F3caa4f8e37954ba7a197d68f47529504%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-12-08,1933-12-23,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/galsworthy-beyond/,Beyond,,"Galsworthy, John",1917,,Lending Library Card,"Sylvia Beach, Aline Prot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/15a376bb-405b-4488-b789-1559abbe3fb2/manifest,https://iiif-cloud.princeton.edu/iiif/2/cd%2Fb9%2F8d%2Fcdb98d69d2914c9a86733742b9a595f2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-12-08,1933-12-13,https://shakespeareandco.princeton.edu/members/laporte/,Madeleine Laporte,"Laporte, Madeleine",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/meredith-essay-comedy-uses/,An Essay on Comedy and the Uses of the Comic Spirit,,"Meredith, George",1897,,Lending Library Card,"Sylvia Beach, Madeleine Laporte Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/94901174-ece6-4f4f-8f56-7c5154efb578/manifest,https://iiif.princeton.edu/loris/figgy_prod/43%2F64%2F29%2F4364295feed0416c9ba5417c5b15481f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-08,1933-12-12,https://shakespeareandco.princeton.edu/members/dillon/,George Dillon,"Dillon, George",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/bowra-ancient-greek-literature/,Ancient Greek Literature,,"Bowra, C. M.",1933,,Lending Library Card,"Sylvia Beach, George Dillon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5e438ba5-07c0-492f-b5f5-b1755e934b4e/manifest,https://iiif.princeton.edu/loris/figgy_prod/1a%2F27%2F7a%2F1a277a85874341078252c5adc35380a1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-08,1933-12-15,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/galsworthy-island-pharisees/,The Island Pharisees,,"Galsworthy, John",1904,,Lending Library Card,"Sylvia Beach, Aline Prot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/15a376bb-405b-4488-b789-1559abbe3fb2/manifest,https://iiif-cloud.princeton.edu/iiif/2/cd%2Fb9%2F8d%2Fcdb98d69d2914c9a86733742b9a595f2%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1933-12-08,1934-01-08,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",40.00,,1 month,31,2,,1933-12-28,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,;https://iiif-cloud.princeton.edu/iiif/2/3c%2Faa%2F4f%2F3caa4f8e37954ba7a197d68f47529504%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-12-09,1933-12-16,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/spender-poems/,Poems,,"Spender, Stephen",1933,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/58%2F45%2F77%2F58457700c8f84cf7be6a477c1713a40b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-12-09,1934-01-06,https://shakespeareandco.princeton.edu/members/denis-graterolle/,Elisabeth Denis-Graterolle / Mme Maurice Denis,"Denis-Graterolle, Elisabeth",,,,,,,,,Returned,28,,,https://shakespeareandco.princeton.edu/books/strachey-eminent-victorians/,Eminent Victorians,,"Strachey, Giles Lytton",1918,,Lending Library Card,"Sylvia Beach, Elisabeth Denis-Graterolle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/964dbe97-240c-4e59-a8ca-c43f25875149/manifest,https://iiif.princeton.edu/loris/figgy_prod/01%2F85%2F35%2F0185352ce4a645fb9698d1bbb7b51071%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-09,1933-12-23,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/grierson-cross-currents-english/,"Cross Currents in English Literature of the XVIIth Century; Or, the World, the Flesh & the Spirit, Their Actions and Reactions",,"Grierson, H. J. C.",1929,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/58%2F45%2F77%2F58457700c8f84cf7be6a477c1713a40b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-12-10,1933-12-17,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/kennedy-long-time-ago/,A Long Time Ago,,"Kennedy, Margaret",1932,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/30%2F13%2F8a%2F30138a0365434ba8855aaeac38b08618%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-12-11,1933-12-19,https://shakespeareandco.princeton.edu/members/vieillard/,Gilbert Vieillard,"Vieillard, Gilbert",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/huxley-brave-new-world/,Brave New World,,"Huxley, Aldous",1932,,Lending Library Card,"Sylvia Beach, Gilbert Vieillard Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8cd1d6c8-5108-4d59-9706-8bca70405815/manifest,https://iiif.princeton.edu/loris/figgy_prod/e3%2F2e%2F71%2Fe32e712809fa44df9f8aa0175f1991db%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1933-12-11,1934-03-11,https://shakespeareandco.princeton.edu/members/vieillard/,Gilbert Vieillard,"Vieillard, Gilbert",30.00,60.00,3 months,90,1,,1933-12-11,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Gilbert Vieillard Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/8cd1d6c8-5108-4d59-9706-8bca70405815/manifest,;https://iiif.princeton.edu/loris/figgy_prod/e3%2F2e%2F71%2Fe32e712809fa44df9f8aa0175f1991db%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1933-12-11,1934-01-11,https://shakespeareandco.princeton.edu/members/dherbais-de-thun/,Marie-Valerie d'Herbais de Thun,"d'Herbais de Thun, Marie-Valerie",25.00,50.00,1 month,31,1,,1933-12-11,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Marie-Valerie Herbais de Thun Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/94cf6667-e6c3-451a-9da4-35a58d089850/manifest,;https://iiif.princeton.edu/loris/figgy_prod/38%2Ff0%2F98%2F38f09874f57345f4bf007e23065cb827%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-11,1933-12-18,https://shakespeareandco.princeton.edu/members/perkins/,Mrs. Perkins,"Perkins, Mrs.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/noth-berlin-tenement/,Berlin Tenement,,"Noth, Ernst Erich",1933,,Lending Library Card,"Sylvia Beach, Perkins Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c711b33a-cb94-478e-8090-0a62744bb3e3/manifest,https://iiif.princeton.edu/loris/figgy_prod/f1%2F08%2Fc6%2Ff108c6dd36e64848b0483f72d1a49844%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-12-11,1933-12-11,https://shakespeareandco.princeton.edu/members/choun/,Harold Choun,"Choun, Harold",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1933-12-11,1933-12-14,https://shakespeareandco.princeton.edu/members/claudius/,Agnes Claudius,"Claudius, Agnes",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/lawrence-sea-sardinia/,Sea and Sardinia,,"Lawrence, D. H.",1921,,Lending Library Card,"Sylvia Beach, Agnes Claudius Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18a9262d-8ea3-4d0c-9b36-8a1c638950fa/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2Fbb%2Fbd%2F23bbbd657cc64aeaa1cf1b3dc4210522%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-11,1933-12-18,https://shakespeareandco.princeton.edu/members/guillemin-annie/,Annie Guillemin,"Guillemin, Annie",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/benson-goodbye-stranger/,"Goodbye, Stranger",,"Benson, Stella",1926,,Lending Library Card,"Sylvia Beach, Annie Guillemin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2d6019d9-34ed-4ca4-97a9-5fd05d8640a7/manifest,https://iiif.princeton.edu/loris/figgy_prod/8c%2Fbb%2Fe1%2F8cbbe1dd84b1489fa79f3b0b7d7b6e3f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-11,1933-12-20,https://shakespeareandco.princeton.edu/members/dherbais-de-thun/,Marie-Valerie d'Herbais de Thun,"d'Herbais de Thun, Marie-Valerie",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/hooke-striplings/,Striplings,,"Hooke, Nina Warner",1933,,Lending Library Card,"Sylvia Beach, Marie-Valerie Herbais de Thun Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/94cf6667-e6c3-451a-9da4-35a58d089850/manifest,https://iiif.princeton.edu/loris/figgy_prod/38%2Ff0%2F98%2F38f09874f57345f4bf007e23065cb827%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1933-12-11,1934-01-11,https://shakespeareandco.princeton.edu/members/brown-12/,Arthur Brown,"Brown, Arthur",20.00,60.00,1 month,31,2,,1933-12-11,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1933-12-11,1933-12-11,https://shakespeareandco.princeton.edu/members/duffus/,M. Duffus,"Duffus, M.",,,,,,,,30.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1933-12-12,1933-12-14,https://shakespeareandco.princeton.edu/members/dillon/,George Dillon,"Dillon, George",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/eliot-use-poetry-use/,The Use of Poetry and the Use of Criticism: Studies in the Relation of Criticism to Poetry in England,,"Eliot, T. S.",1933,,Lending Library Card,"Sylvia Beach, George Dillon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5e438ba5-07c0-492f-b5f5-b1755e934b4e/manifest,https://iiif.princeton.edu/loris/figgy_prod/1a%2F27%2F7a%2F1a277a85874341078252c5adc35380a1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-12,1933-12-21,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/wallace-golden-hades/,The Golden Hades,,"Wallace, Edgar",1929,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/57%2Fd7%2Fed%2F57d7edebf111435d8d29597c65433a0a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-12,1934-01-05,https://shakespeareandco.princeton.edu/members/maspero-clerc/;https://shakespeareandco.princeton.edu/members/maspero-henri/,Hélène Maspero-Clerc;Henri Maspero,"Maspero-Clerc, Hélène;Maspero, Henri",,,,,,,,,Returned,24,,,https://shakespeareandco.princeton.edu/books/shakespeare-coriolanus/,Coriolanus,,"Shakespeare, William",,,Lending Library Card,"Sylvia Beach, Maspero Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/92dca37a-f412-4b18-90a3-d236d2b3fe20/manifest,https://iiif-cloud.princeton.edu/iiif/2/ea%2F4c%2F4a%2Fea4c4a2dc06f44aaa9c52db92681a7bb%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-12-12,1933-12-30,https://shakespeareandco.princeton.edu/members/maspero-clerc/;https://shakespeareandco.princeton.edu/members/maspero-henri/,Hélène Maspero-Clerc;Henri Maspero,"Maspero-Clerc, Hélène;Maspero, Henri",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/woolf-mrs-dalloway/,Mrs. Dalloway,,"Woolf, Virginia",1925,,Lending Library Card,"Sylvia Beach, Maspero Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/92dca37a-f412-4b18-90a3-d236d2b3fe20/manifest,https://iiif-cloud.princeton.edu/iiif/2/ea%2F4c%2F4a%2Fea4c4a2dc06f44aaa9c52db92681a7bb%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-12-12,1933-12-16,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/lewis-ann-vickers/,Ann Vickers,,"Lewis, Sinclair",1933,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e3%2Fa3%2F2f%2Fe3a32f3f58b84d669bc3710140acb7d5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-12,1933-12-14,https://shakespeareandco.princeton.edu/members/de-roos-elisabeth/;https://shakespeareandco.princeton.edu/members/perron-eddy/,Elisabeth de Roos / Mrs. du Perron;E. du Perron / Eddy du Perron,"de Roos, Elisabeth;du Perron, Eddy",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/stein-autobiography-alice-b/,The Autobiography of Alice B. Toklas,,"Stein, Gertrude",1933,,Lending Library Card,"The lending library card of Charles Edgar βEddyβ du Perron and Elisabeth de Roos is part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Borrow,1933-12-12,,https://shakespeareandco.princeton.edu/members/poole-kitty-wickes/,Kitty (Wickes) Poole / Miss Kitty Wickes,"Wickes, Kitty",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/wylie-collected-poems-elinor/,Collected Poems of Elinor Wylie,,"Wylie, Elinor",1932,,Lending Library Card,"Sylvia Beach, Kitty Wickes Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c05f1eb5-94d5-4b79-8165-35e4c6cf097e/manifest,https://iiif.princeton.edu/loris/figgy_prod/5f%2F97%2F47%2F5f97477dc38444e5bc903ab1050a6923%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1933-12-12,1934-01-12,https://shakespeareandco.princeton.edu/members/van-den-bergh/,Tamara van den Bergh,"van den Bergh, Tamara",12.00,10.00,1 month,31,2,,1933-12-12,,,,,FRF,,,,,,,Lending Library Card;Logbook,"Sylvia Beach, Miss Tamara van den Bergh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",https://figgy.princeton.edu/concern/scanned_resources/f3a52627-dc5d-410b-aa7f-9d39941f18e8/manifest;,https://iiif.princeton.edu/loris/figgy_prod/26%2F82%2Fd3%2F2682d3d4f21f436faeed49b64c3f403f%2Fintermediate_file.jp2/full/full/0/default.jpg;
+Subscription,1933-12-12,,https://shakespeareandco.princeton.edu/members/de-roos-elisabeth/;https://shakespeareandco.princeton.edu/members/perron-eddy/,Elisabeth de Roos / Mrs. du Perron;E. du Perron / Eddy du Perron,"de Roos, Elisabeth;du Perron, Eddy",,75.00,,,,Day By Day,1933-12-12,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;The lending library card of Charles Edgar βEddyβ du Perron and Elisabeth de Roos is part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Borrow,1933-12-12,1933-12-19,https://shakespeareandco.princeton.edu/members/van-den-bergh/,Tamara van den Bergh,"van den Bergh, Tamara",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/saintsbury-short-history-english/,A Short History of English Literature,,"Saintsbury, George",1898,,Lending Library Card,"Sylvia Beach, Miss Tamara van den Bergh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f3a52627-dc5d-410b-aa7f-9d39941f18e8/manifest,https://iiif.princeton.edu/loris/figgy_prod/26%2F82%2Fd3%2F2682d3d4f21f436faeed49b64c3f403f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-12,1933-12-15,https://shakespeareandco.princeton.edu/members/van-den-bergh/,Tamara van den Bergh,"van den Bergh, Tamara",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/woolf-room-ones/,A Room of One's Own,,"Woolf, Virginia",1929,,Lending Library Card,"Sylvia Beach, Miss Tamara van den Bergh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f3a52627-dc5d-410b-aa7f-9d39941f18e8/manifest,https://iiif.princeton.edu/loris/figgy_prod/26%2F82%2Fd3%2F2682d3d4f21f436faeed49b64c3f403f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-13,1933-12-22,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/ellis-study-british-genius/,A Study of British Genius,,"Ellis, Havelock",1904,,Lending Library Card,"Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest,https://iiif.princeton.edu/loris/figgy_prod/e6%2Ffe%2F17%2Fe6fe1798c3664003ba0f3ec37c1b076a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-13,1933-12-16,https://shakespeareandco.princeton.edu/members/bonnerot-louis/,Louis Bonnerot,"Bonnerot, Louis",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/osullivan-dublin-magazine/,Dublin Magazine,,,,,Lending Library Card,"Sylvia Beach, Louis Bonnerot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c14cc736-079c-4403-9036-a2de4743414a/manifest,https://iiif.princeton.edu/loris/figgy_prod/02%2F5a%2F24%2F025a24f998344e51813e60cf8062c163%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-12-14,1933-12-14,https://shakespeareandco.princeton.edu/members/de-roos-elisabeth/;https://shakespeareandco.princeton.edu/members/perron-eddy/,Elisabeth de Roos / Mrs. du Perron;E. du Perron / Eddy du Perron,"de Roos, Elisabeth;du Perron, Eddy",,,,,,,,75.00,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;The lending library card of Charles Edgar βEddyβ du Perron and Elisabeth de Roos is part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Borrow,1933-12-14,1933-12-21,https://shakespeareandco.princeton.edu/members/claudius/,Agnes Claudius,"Claudius, Agnes",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/douglas-siren-land/,Siren Land,,"Douglas, Norman",1911,,Lending Library Card,"Sylvia Beach, Agnes Claudius Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18a9262d-8ea3-4d0c-9b36-8a1c638950fa/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2Fbb%2Fbd%2F23bbbd657cc64aeaa1cf1b3dc4210522%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-14,1933-12-16,https://shakespeareandco.princeton.edu/members/dillon/,George Dillon,"Dillon, George",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/ogden-meaning-meaning-study/,The Meaning of Meaning: A Study of the Influence of Language upon Thought and of the Science of Symbolism,,"Ogden, C. K.;Richards, I. A.",1923,,Lending Library Card,"Sylvia Beach, George Dillon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5e438ba5-07c0-492f-b5f5-b1755e934b4e/manifest,https://iiif.princeton.edu/loris/figgy_prod/1a%2F27%2F7a%2F1a277a85874341078252c5adc35380a1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-12-14,1933-12-14,https://shakespeareandco.princeton.edu/members/daniels-marcel/,Marcel Daniels,"Daniels, Marcel",,,,,,,,75.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Subscription,1933-12-15,1934-06-15,https://shakespeareandco.princeton.edu/members/burt-maud/,Maud Burt,"Burt, Maud",90.00,,6 months,182,1,,1933-12-15,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Maud Burt Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/84402ab0-3135-4059-bd55-010e23394445/manifest,;https://iiif.princeton.edu/loris/figgy_prod/47%2F98%2F43%2F4798436b9f2b475e8d6f91a988ffe2ad%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-15,1933-12-21,https://shakespeareandco.princeton.edu/members/laporte/,Madeleine Laporte,"Laporte, Madeleine",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/carlyle-past-present/,Past and Present,,"Carlyle, Thomas",1843,,Lending Library Card,"Sylvia Beach, Madeleine Laporte Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/94901174-ece6-4f4f-8f56-7c5154efb578/manifest,https://iiif.princeton.edu/loris/figgy_prod/43%2F64%2F29%2F4364295feed0416c9ba5417c5b15481f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-15,1933-12-19,https://shakespeareandco.princeton.edu/members/van-den-bergh/,Tamara van den Bergh,"van den Bergh, Tamara",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/bradley-shakespearean-tragedy-lectures/,"Shakespearean Tragedy: Lectures on Hamlet, Othello, King Lear, Macbeth",,"Bradley, A. C.",1904,,Lending Library Card,"Sylvia Beach, Miss Tamara van den Bergh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f3a52627-dc5d-410b-aa7f-9d39941f18e8/manifest,https://iiif.princeton.edu/loris/figgy_prod/26%2F82%2Fd3%2F2682d3d4f21f436faeed49b64c3f403f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-15,1934-01-02,https://shakespeareandco.princeton.edu/members/burt-maud/,Maud Burt,"Burt, Maud",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/brittain-testament-youth/,Testament of Youth,,"Brittain, Vera",1933,,Lending Library Card,"Sylvia Beach, Maud Burt Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/84402ab0-3135-4059-bd55-010e23394445/manifest,https://iiif.princeton.edu/loris/figgy_prod/47%2F98%2F43%2F4798436b9f2b475e8d6f91a988ffe2ad%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-15,1933-12-19,https://shakespeareandco.princeton.edu/members/van-den-bergh/,Tamara van den Bergh,"van den Bergh, Tamara",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/shakespeare-fifteen-plays-shakespeare/,Fifteen Plays of Shakespeare,,"Shakespeare, William",1916,,Lending Library Card,"Sylvia Beach, Miss Tamara van den Bergh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f3a52627-dc5d-410b-aa7f-9d39941f18e8/manifest,https://iiif.princeton.edu/loris/figgy_prod/26%2F82%2Fd3%2F2682d3d4f21f436faeed49b64c3f403f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-15,1933-12-23,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/hergesheimer-cytherea/,Cytherea,,"Hergesheimer, Joseph",1921,,Lending Library Card,"Sylvia Beach, Aline Prot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/15a376bb-405b-4488-b789-1559abbe3fb2/manifest,https://iiif-cloud.princeton.edu/iiif/2/cd%2Fb9%2F8d%2Fcdb98d69d2914c9a86733742b9a595f2%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1933-12-16,1933-12-16,https://shakespeareandco.princeton.edu/members/massey/,Adelaide W. Massey / A. W. Massey,"Massey, Adelaide W.",,,,,,,,,,,1.00,FRF,https://shakespeareandco.princeton.edu/books/rothermere-daily-mail/,Daily Mail,,,,,Lending Library Card,"Sylvia Beach, A. W. Massey Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c4712c46-76f3-4581-99d6-d0ffd31b4138/manifest,https://iiif-cloud.princeton.edu/iiif/2/d2%2F82%2F21%2Fd282213c30fe4d538a93a97b987fb0cf%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1933-12-16,1933-12-16,https://shakespeareandco.princeton.edu/members/bonnerot-louis/,Louis Bonnerot,"Bonnerot, Louis",,,,,,,,,,,7.00,FRF,https://shakespeareandco.princeton.edu/books/wrench-spectator/,The Spectator,"Vol. 149, no. 5452, Dec 23, 1932",,,,Lending Library Card,"Sylvia Beach, Louis Bonnerot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c14cc736-079c-4403-9036-a2de4743414a/manifest,https://iiif.princeton.edu/loris/figgy_prod/02%2F5a%2F24%2F025a24f998344e51813e60cf8062c163%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-12-16,1933-12-16,https://shakespeareandco.princeton.edu/members/holderer/,M. Holderer,"Holderer, M.",,,,,,,,44.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Purchase,1933-12-16,1933-12-16,https://shakespeareandco.princeton.edu/members/massey/,Adelaide W. Massey / A. W. Massey,"Massey, Adelaide W.",,,,,,,,,,,10.00,FRF,https://shakespeareandco.princeton.edu/books/nursery-rhymes/,Nursery Rhymes,,,,Unidentified.,Lending Library Card,"Sylvia Beach, A. W. Massey Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c4712c46-76f3-4581-99d6-d0ffd31b4138/manifest,https://iiif-cloud.princeton.edu/iiif/2/d2%2F82%2F21%2Fd282213c30fe4d538a93a97b987fb0cf%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1933-12-16,1933-12-16,https://shakespeareandco.princeton.edu/members/massey/,Adelaide W. Massey / A. W. Massey,"Massey, Adelaide W.",,,,,,,,,,,12.00,FRF,https://shakespeareandco.princeton.edu/books/rothermere-daily-mail/,Daily Mail,,,,,Lending Library Card,"Sylvia Beach, A. W. Massey Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c4712c46-76f3-4581-99d6-d0ffd31b4138/manifest,https://iiif-cloud.princeton.edu/iiif/2/d2%2F82%2F21%2Fd282213c30fe4d538a93a97b987fb0cf%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-12-16,1933-12-22,https://shakespeareandco.princeton.edu/members/paul-dubois/,Louis Paul-Dubois,"Paul-Dubois, Louis",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/beach-twentieth-century-novel/,The Twentieth Century Novel: Studies in Technique,,"Beach, Joseph",1932,,Lending Library Card,"Sylvia Beach, Louis Paul-Dubois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a5425c0b-233e-443e-a90e-1107459a225d/manifest,https://iiif.princeton.edu/loris/figgy_prod/fe%2Fed%2Fcc%2Ffeedcca8aab1457886de3a151d43553b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-16,1933-12-18,https://shakespeareandco.princeton.edu/members/dillon/,George Dillon,"Dillon, George",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/eliot-selected-essays-1917/,"Selected Essays, 1917 β 1932",,"Eliot, T. S.",1932,,Lending Library Card,"Sylvia Beach, George Dillon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5e438ba5-07c0-492f-b5f5-b1755e934b4e/manifest,https://iiif.princeton.edu/loris/figgy_prod/1a%2F27%2F7a%2F1a277a85874341078252c5adc35380a1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-16,1933-12-23,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/eliot-use-poetry-use/,The Use of Poetry and the Use of Criticism: Studies in the Relation of Criticism to Poetry in England,,"Eliot, T. S.",1933,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/58%2F45%2F77%2F58457700c8f84cf7be6a477c1713a40b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-12-16,1933-12-22,https://shakespeareandco.princeton.edu/members/paul-dubois/,Louis Paul-Dubois,"Paul-Dubois, Louis",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/marble-study-modern-novel/,"A Study of the Modern Novel, British and American, Since 1900",,"Marble, Annie Russell",1928,,Lending Library Card,"Sylvia Beach, Louis Paul-Dubois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a5425c0b-233e-443e-a90e-1107459a225d/manifest,https://iiif.princeton.edu/loris/figgy_prod/fe%2Fed%2Fcc%2Ffeedcca8aab1457886de3a151d43553b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-16,1933-12-18,https://shakespeareandco.princeton.edu/members/bonnerot-louis/,Louis Bonnerot,"Bonnerot, Louis",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/times/,Times,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Louis Bonnerot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c14cc736-079c-4403-9036-a2de4743414a/manifest,https://iiif.princeton.edu/loris/figgy_prod/02%2F5a%2F24%2F025a24f998344e51813e60cf8062c163%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-16,1933-12-23,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/bromfield-farm/,The Farm,,"Bromfield, Louis",1933,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e3%2Fa3%2F2f%2Fe3a32f3f58b84d669bc3710140acb7d5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-17,1933-12-31,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/frank-rahab/,Rahab,,"Frank, Waldo",1922,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/30%2F13%2F8a%2F30138a0365434ba8855aaeac38b08618%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-12-17,1933-12-31,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/frank-new-years-eve/,New Year's Eve: A Play,,"Frank, Waldo",1929,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/30%2F13%2F8a%2F30138a0365434ba8855aaeac38b08618%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-12-18,1933-12-19,https://shakespeareandco.princeton.edu/members/clairin-pierre-eugene/,Pierre-Eugène Clairin,"Clairin, Pierre-Eugène",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/shakespeare-coriolanus/,Coriolanus,,"Shakespeare, William",,,Lending Library Card,"Sylvia Beach, Pierre Clairin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e63243a0-173f-4a2e-9310-fc058bd22a7a/manifest,https://iiif.princeton.edu/loris/figgy_prod/9d%2F11%2F52%2F9d1152c19ae64e75878253e7c1de9ef6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-18,1933-12-30,https://shakespeareandco.princeton.edu/members/clairin-pierre-eugene/,Pierre-Eugène Clairin,"Clairin, Pierre-Eugène",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/woolf-mrs-dalloway/,Mrs. Dalloway,,"Woolf, Virginia",1925,,Lending Library Card,"Sylvia Beach, Pierre Clairin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e63243a0-173f-4a2e-9310-fc058bd22a7a/manifest,https://iiif.princeton.edu/loris/figgy_prod/9d%2F11%2F52%2F9d1152c19ae64e75878253e7c1de9ef6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-18,1933-12-21,https://shakespeareandco.princeton.edu/members/claudius/,Agnes Claudius,"Claudius, Agnes",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/cross-yale-review/,Yale Review,,,,,Lending Library Card,"Sylvia Beach, Agnes Claudius Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18a9262d-8ea3-4d0c-9b36-8a1c638950fa/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2Fbb%2Fbd%2F23bbbd657cc64aeaa1cf1b3dc4210522%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-18,1933-12-23,https://shakespeareandco.princeton.edu/members/dillon/,George Dillon,"Dillon, George",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/babbitt-rousseau-romanticism/,Rousseau and Romanticism,,"Babbitt, Irving",1919,,Lending Library Card,"Sylvia Beach, George Dillon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5e438ba5-07c0-492f-b5f5-b1755e934b4e/manifest,https://iiif.princeton.edu/loris/figgy_prod/1a%2F27%2F7a%2F1a277a85874341078252c5adc35380a1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-18,1933-12-29,https://shakespeareandco.princeton.edu/members/guillemin-annie/,Annie Guillemin,"Guillemin, Annie",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/galsworthy-white-monkey/,The White Monkey (A Modern Comedy),,"Galsworthy, John",1924,,Lending Library Card,"Sylvia Beach, Annie Guillemin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2d6019d9-34ed-4ca4-97a9-5fd05d8640a7/manifest,https://iiif.princeton.edu/loris/figgy_prod/8c%2Fbb%2Fe1%2F8cbbe1dd84b1489fa79f3b0b7d7b6e3f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-19,1934-01-03,https://shakespeareandco.princeton.edu/members/van-den-bergh/,Tamara van den Bergh,"van den Bergh, Tamara",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/moore-esther-waters/,Esther Waters,,"Moore, George",1894,,Lending Library Card,"Sylvia Beach, Miss Tamara van den Bergh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f3a52627-dc5d-410b-aa7f-9d39941f18e8/manifest,https://iiif.princeton.edu/loris/figgy_prod/26%2F82%2Fd3%2F2682d3d4f21f436faeed49b64c3f403f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-12-19,1933-12-19,https://shakespeareandco.princeton.edu/members/vieillard/,Gilbert Vieillard,"Vieillard, Gilbert",,,,,,,,30.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-12-19,1934-01-03,https://shakespeareandco.princeton.edu/members/van-den-bergh/,Tamara van den Bergh,"van den Bergh, Tamara",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/wordsworth-wordsworths-poetical-works/,Wordsworth's Poetical Works,,"Wordsworth, William",,,Lending Library Card,"Sylvia Beach, Miss Tamara van den Bergh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f3a52627-dc5d-410b-aa7f-9d39941f18e8/manifest,https://iiif.princeton.edu/loris/figgy_prod/26%2F82%2Fd3%2F2682d3d4f21f436faeed49b64c3f403f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-19,1934-03-24,https://shakespeareandco.princeton.edu/members/chenneviere-andre/,André Chenneviere,"Chenneviere, André",,,,,,,,,Returned,95,,,https://shakespeareandco.princeton.edu/books/doumic-revue-mondes/,La revue des deux mondes,"Huitième période, Vol. 4, no. 4, Aug 15, 1931",,,,Lending Library Card,"Sylvia Beach, André Chenneviere Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98df0370-2f4d-4b36-99d8-b8d1fb791fa4/manifest,https://iiif.princeton.edu/loris/figgy_prod/ca%2Fc6%2F79%2Fcac679b474284c6ca62a9e6d983bdf67%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-19,1933-12-23,https://shakespeareandco.princeton.edu/members/shelley-dorothy/,Dorothy Shelley,"Shelley, Dorothy",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/hemingway-farewell-arms/,A Farewell to Arms,,"Hemingway, Ernest",1929,,Lending Library Card,"Sylvia Beach, Dorothy Shelley Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dcc58669-efb6-4ace-ab31-a1cb913f3692/manifest,https://iiif.princeton.edu/loris/figgy_prod/6e%2F92%2F2e%2F6e922e058b7c4a56ac1215de11398cdd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-19,1933-12-23,https://shakespeareandco.princeton.edu/members/meyer-florence/,Florence Meyer,"Meyer, Florence",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/dostoyevsky-possessed/,The Possessed,,"Dostoyevsky, Fyodor",1872,,Lending Library Card,"Sylvia Beach, Florence Meyer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd3b6930-a7f4-40e5-88ad-1a27c20d35f1/manifest,https://iiif.princeton.edu/loris/figgy_prod/ce%2F38%2Fc0%2Fce38c07006f54cd5b453f4e61d7f497a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-19,1933-12-26,https://shakespeareandco.princeton.edu/members/foret/,Mme de la Foret,"de la Foret, Mme",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/lawrence-sons-lovers/,Sons and Lovers,,"Lawrence, D. H.",1913,,Lending Library Card,"Sylvia Beach, Madame de la Foret Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6fc4cfdc-78bc-4f2f-9b2a-3d0e51291d39/manifest,https://iiif.princeton.edu/loris/figgy_prod/9f%2Fbd%2Fc2%2F9fbdc20ad87d4ab394db6ce1b8a8309c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-19,1933-12-23,https://shakespeareandco.princeton.edu/members/meyer-florence/,Florence Meyer,"Meyer, Florence",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/dostoyevsky-stavrogins-confession/,Stavrogin's Confession,,"Dostoyevsky, Fyodor",1922,,Lending Library Card,"Sylvia Beach, Florence Meyer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd3b6930-a7f4-40e5-88ad-1a27c20d35f1/manifest,https://iiif.princeton.edu/loris/figgy_prod/ce%2F38%2Fc0%2Fce38c07006f54cd5b453f4e61d7f497a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1933-12-19,,https://shakespeareandco.princeton.edu/members/chenneviere-andre/,AndrΓ© Chenneviere,"Chenneviere, AndrΓ©",,,,,,,1933-12-19,,,,,FRF,,,,,,,Lending Library Card;Address Book,"Sylvia Beach, AndrΓ© Chenneviere Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98df0370-2f4d-4b36-99d8-b8d1fb791fa4/manifest;,https://iiif.princeton.edu/loris/figgy_prod/ca%2Fc6%2F79%2Fcac679b474284c6ca62a9e6d983bdf67%2Fintermediate_file.jp2/full/full/0/default.jpg;
+Borrow,1933-12-20,1934-02-08,https://shakespeareandco.princeton.edu/members/tony-mayer/,Thérèse Tony-Mayer,"Tony-Mayer, Thérèse",,,,,,,,,Returned,50,,,https://shakespeareandco.princeton.edu/books/richardson-tunnel-pilgrimage-4/,The Tunnel (Pilgrimage 4),,"Richardson, Dorothy M.",1919,,Lending Library Card,"Sylvia Beach, Thérèse Tony-Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/27246b4c-7d99-4dca-b874-ab90bd542cfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2Fa0%2Fff%2F50a0ff19abc240c680a6a33baf060b76%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-20,1934-01-08,https://shakespeareandco.princeton.edu/members/dherbais-de-thun/,Marie-Valerie d'Herbais de Thun,"d'Herbais de Thun, Marie-Valerie",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/stern-little-red-horses/,Little Red Horses,,"Stern, G. B.",1932,,Lending Library Card,"Sylvia Beach, Marie-Valerie Herbais de Thun Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/94cf6667-e6c3-451a-9da4-35a58d089850/manifest,https://iiif.princeton.edu/loris/figgy_prod/38%2Ff0%2F98%2F38f09874f57345f4bf007e23065cb827%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-20,1934-01-08,https://shakespeareandco.princeton.edu/members/dherbais-de-thun/,Marie-Valerie d'Herbais de Thun,"d'Herbais de Thun, Marie-Valerie",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/stern-dark-gentleman/,The Dark Gentleman,,"Stern, G. B.",1927,,Lending Library Card,"Sylvia Beach, Marie-Valerie Herbais de Thun Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/94cf6667-e6c3-451a-9da4-35a58d089850/manifest,https://iiif.princeton.edu/loris/figgy_prod/38%2Ff0%2F98%2F38f09874f57345f4bf007e23065cb827%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-21,1934-01-05,https://shakespeareandco.princeton.edu/members/claudius/,Agnes Claudius,"Claudius, Agnes",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/golding-james-joyce/,James Joyce,,"Golding, Louis",1933,,Lending Library Card,"Sylvia Beach, Agnes Claudius Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18a9262d-8ea3-4d0c-9b36-8a1c638950fa/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2Fbb%2Fbd%2F23bbbd657cc64aeaa1cf1b3dc4210522%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-21,1934-01-05,https://shakespeareandco.princeton.edu/members/clairin-theresa/,Theresa (Shiff) Clairin,"Clairin, Theresa",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/webb-golden-arrow/,Golden Arrow,,"Webb, Mary",1916,,Lending Library Card,"Sylvia Beach, Theresa (Shiff) Clairin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/46a8350f-5226-4051-aa61-69eae1bf0e52/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Fe3%2F1c%2Fcce31c0673dd42298e6f80b831ad8557%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1933-12-21,1934-01-21,https://shakespeareandco.princeton.edu/members/clairin-theresa/,Theresa (Shiff) Clairin,"Clairin, Theresa",20.00,,1 month,31,2,,1933-12-21,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Theresa (Shiff) Clairin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/46a8350f-5226-4051-aa61-69eae1bf0e52/manifest,;https://iiif.princeton.edu/loris/figgy_prod/cc%2Fe3%2F1c%2Fcce31c0673dd42298e6f80b831ad8557%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-21,1934-01-05,https://shakespeareandco.princeton.edu/members/clairin-theresa/,Theresa (Shiff) Clairin,"Clairin, Theresa",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/gibbs-darkened-rooms/,Darkened Rooms,,"Gibbs, Philip",1929,,Lending Library Card,"Sylvia Beach, Theresa (Shiff) Clairin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/46a8350f-5226-4051-aa61-69eae1bf0e52/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Fe3%2F1c%2Fcce31c0673dd42298e6f80b831ad8557%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-21,,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/asch-three-cities-trilogy/,Three Cities: A Trilogy,,"Asch, Sholem",1933,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/3c%2Faa%2F4f%2F3caa4f8e37954ba7a197d68f47529504%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-12-21,1934-01-13,https://shakespeareandco.princeton.edu/members/laporte/,Madeleine Laporte,"Laporte, Madeleine",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/cestre-introduction-edwin-arlington/,An Introduction to Edwin Arlington Robinson,,"Cestre, Charles",1930,,Lending Library Card,"Sylvia Beach, Madeleine Laporte Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/94901174-ece6-4f4f-8f56-7c5154efb578/manifest,https://iiif.princeton.edu/loris/figgy_prod/43%2F64%2F29%2F4364295feed0416c9ba5417c5b15481f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1933-12-21,1934-01-21,https://shakespeareandco.princeton.edu/members/jones-14/,Jones,Jones,12.00,30.00,1 month,31,1,,1933-12-21,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1933-12-22,1934-01-05,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",25.00,,2 weeks,14,2,,1933-12-22,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,;https://iiif-cloud.princeton.edu/iiif/2/26%2F41%2F4f%2F26414fa5907b409db286adabe4e9330c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-12-22,1934-01-08,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/wilson-axels-castle-study/,Axel's Castle: A Study in the Imaginative Literature of 1870 β 1930,,"Wilson, Edmund",1931,,Lending Library Card,"Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest,https://iiif.princeton.edu/loris/figgy_prod/e6%2Ffe%2F17%2Fe6fe1798c3664003ba0f3ec37c1b076a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-22,1933-12-27,https://shakespeareandco.princeton.edu/members/paul-dubois/,Louis Paul-Dubois,"Paul-Dubois, Louis",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/ocasey-silver-tassie-tragi/,The Silver Tassie: A Tragi-Comedy in Four Acts,,"O'Casey, Sean",1928,,Lending Library Card,"Sylvia Beach, Louis Paul-Dubois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a5425c0b-233e-443e-a90e-1107459a225d/manifest,https://iiif.princeton.edu/loris/figgy_prod/fe%2Fed%2Fcc%2Ffeedcca8aab1457886de3a151d43553b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1933-12-23,1933-12-23,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,,,50.00,FRF,https://shakespeareandco.princeton.edu/books/boyle-gentlemen-address-privately/,"Gentlemen, I Address You Privately",,"Boyle, Kay",1933,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/e0%2Fe7%2Fab%2Fe0e7abbc278c479ea60884b471709177%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-23,1933-12-26,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/van-dine-dragon-murder-case/,The Dragon Murder Case,,"Van Dine, S. S.",1933,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/26%2F41%2F4f%2F26414fa5907b409db286adabe4e9330c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-12-23,1933-12-26,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/christie-thirteen-dinner/,Thirteen at Dinner,,"Christie, Agatha",1933,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/26%2F41%2F4f%2F26414fa5907b409db286adabe4e9330c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-12-23,1934-01-05,https://shakespeareandco.princeton.edu/members/dillon/,George Dillon,"Dillon, George",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/euripides-hippolytus/,Hippolytus,,Euripides,,,Lending Library Card,"Sylvia Beach, George Dillon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5e438ba5-07c0-492f-b5f5-b1755e934b4e/manifest,https://iiif.princeton.edu/loris/figgy_prod/1a%2F27%2F7a%2F1a277a85874341078252c5adc35380a1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-23,1933-12-26,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/tomlinson-snows-helicon/,The Snows of Helicon,,"Tomlinson, H. M.",1933,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e3%2Fa3%2F2f%2Fe3a32f3f58b84d669bc3710140acb7d5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-23,1934-01-06,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/strachey-characters-commentaries/,Characters and Commentaries,,"Strachey, Giles Lytton",1933,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/58%2F45%2F77%2F58457700c8f84cf7be6a477c1713a40b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-12-23,1934-01-06,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/huxley-jesting-pilate-diary/,Jesting Pilate: The Diary of a Journey,,"Huxley, Aldous",1926,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/58%2F45%2F77%2F58457700c8f84cf7be6a477c1713a40b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-12-23,1933-12-28,https://shakespeareandco.princeton.edu/members/tuttle-stephen-d/,Stephen D. Tuttle,"Tuttle, Stephen D.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/mann-buddenbrooks/,Buddenbrooks,Vol. 1,"Mann, Thomas",1924,,Lending Library Card,"Sylvia Beach, Stephen D. Tuttle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f1653918-3f2b-4e88-bd27-4e3c4d83a47d/manifest,https://iiif-cloud.princeton.edu/iiif/2/65%2Fdf%2Ff8%2F65dff8cf663e4eceb54c65b53cccaf7e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-12-23,1934-01-09,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/huxley-point-counter-point/,Point Counter Point,,"Huxley, Aldous",1928,,Lending Library Card,"Sylvia Beach, Aline Prot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/15a376bb-405b-4488-b789-1559abbe3fb2/manifest,https://iiif-cloud.princeton.edu/iiif/2/cd%2Fb9%2F8d%2Fcdb98d69d2914c9a86733742b9a595f2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-12-23,1934-01-09,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/wolfe-look-homeward-angel/,"Look Homeward, Angel",,"Wolfe, Thomas",1929,,Lending Library Card,"Sylvia Beach, Aline Prot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/15a376bb-405b-4488-b789-1559abbe3fb2/manifest,https://iiif-cloud.princeton.edu/iiif/2/cd%2Fb9%2F8d%2Fcdb98d69d2914c9a86733742b9a595f2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-12-23,1933-12-27,https://shakespeareandco.princeton.edu/members/shelley-dorothy/,Dorothy Shelley,"Shelley, Dorothy",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/alcott-little-women/,Little Women,,"Alcott, Louisa May",1868,,Lending Library Card,"Sylvia Beach, Dorothy Shelley Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dcc58669-efb6-4ace-ab31-a1cb913f3692/manifest,https://iiif.princeton.edu/loris/figgy_prod/6e%2F92%2F2e%2F6e922e058b7c4a56ac1215de11398cdd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-23,1933-12-27,https://shakespeareandco.princeton.edu/members/shelley-dorothy/,Dorothy Shelley,"Shelley, Dorothy",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/daddy-long-legs/,Daddy-Long-Legs,,"Webster, Jean",1912,,Lending Library Card,"Sylvia Beach, Dorothy Shelley Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dcc58669-efb6-4ace-ab31-a1cb913f3692/manifest,https://iiif.princeton.edu/loris/figgy_prod/6e%2F92%2F2e%2F6e922e058b7c4a56ac1215de11398cdd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-23,1934-01-09,https://shakespeareandco.princeton.edu/members/shelley-dorothy/,Dorothy Shelley,"Shelley, Dorothy",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/webb-precious-bane-novel/,Precious Bane: A Novel,,"Webb, Mary",1924,,Lending Library Card,"Sylvia Beach, Dorothy Shelley Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dcc58669-efb6-4ace-ab31-a1cb913f3692/manifest,https://iiif.princeton.edu/loris/figgy_prod/6e%2F92%2F2e%2F6e922e058b7c4a56ac1215de11398cdd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-26,1933-12-27,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/priestley-wonder-hero/,Wonder Hero,,"Priestley, J. B.",1933,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/26%2F41%2F4f%2F26414fa5907b409db286adabe4e9330c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-12-26,1934-01-08,https://shakespeareandco.princeton.edu/members/dherbais-de-thun/,Marie-Valerie d'Herbais de Thun,"d'Herbais de Thun, Marie-Valerie",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/stern-dark-gentleman/,The Dark Gentleman,,"Stern, G. B.",1927,,Lending Library Card,"Sylvia Beach, Marie-Valerie Herbais de Thun Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/94cf6667-e6c3-451a-9da4-35a58d089850/manifest,https://iiif.princeton.edu/loris/figgy_prod/38%2Ff0%2F98%2F38f09874f57345f4bf007e23065cb827%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-26,1934-01-08,https://shakespeareandco.princeton.edu/members/foret/,Mme de la Foret,"de la Foret, Mme",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/huxley-crome-yellow/,Crome Yellow,,"Huxley, Aldous",1921,,Lending Library Card,"Sylvia Beach, Madame de la Foret Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6fc4cfdc-78bc-4f2f-9b2a-3d0e51291d39/manifest,https://iiif.princeton.edu/loris/figgy_prod/9f%2Fbd%2Fc2%2F9fbdc20ad87d4ab394db6ce1b8a8309c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-26,1933-12-30,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/ford-nightingale/,It Was the Nightingale,,"Ford, Ford Madox",1933,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e3%2Fa3%2F2f%2Fe3a32f3f58b84d669bc3710140acb7d5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-26,1933-12-29,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/jameson-women-men/,Women against Men,,"Jameson, Storm",1933,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/26%2F41%2F4f%2F26414fa5907b409db286adabe4e9330c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-12-27,1934-01-06,https://shakespeareandco.princeton.edu/members/paul-dubois/,Louis Paul-Dubois,"Paul-Dubois, Louis",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/boyd-contemporary-drama-ireland/,The Contemporary Drama of Ireland,,"Boyd, Ernest Augustus",1917,,Lending Library Card,"Sylvia Beach, Louis Paul-Dubois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a5425c0b-233e-443e-a90e-1107459a225d/manifest,https://iiif.princeton.edu/loris/figgy_prod/fe%2Fed%2Fcc%2Ffeedcca8aab1457886de3a151d43553b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-27,1934-01-02,https://shakespeareandco.princeton.edu/members/shelley-dorothy/,Dorothy Shelley,"Shelley, Dorothy",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/ross-new-yorker/,The New Yorker,,,,,Lending Library Card,"Sylvia Beach, Dorothy Shelley Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dcc58669-efb6-4ace-ab31-a1cb913f3692/manifest,https://iiif.princeton.edu/loris/figgy_prod/6e%2F92%2F2e%2F6e922e058b7c4a56ac1215de11398cdd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-12-27,1933-12-27,https://shakespeareandco.princeton.edu/members/de-maso/,de MasΓ³,de MasΓ³,,,,,,,,30.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-12-27,1934-01-30,https://shakespeareandco.princeton.edu/members/meyer-florence/,Florence Meyer,"Meyer, Florence",,,,,,,,,Returned,34,,,https://shakespeareandco.princeton.edu/books/ludwig-napoleon/,Napoleon,,"Ludwig, Emil",1922,,Lending Library Card,"Sylvia Beach, Florence Meyer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd3b6930-a7f4-40e5-88ad-1a27c20d35f1/manifest,https://iiif.princeton.edu/loris/figgy_prod/ce%2F38%2Fc0%2Fce38c07006f54cd5b453f4e61d7f497a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-27,1934-01-03,https://shakespeareandco.princeton.edu/members/meyer-florence/,Florence Meyer,"Meyer, Florence",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/lawrence-etruscan-places/,Etruscan Places,,"Lawrence, D. H.",1932,,Lending Library Card,"Sylvia Beach, Florence Meyer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd3b6930-a7f4-40e5-88ad-1a27c20d35f1/manifest,https://iiif.princeton.edu/loris/figgy_prod/ce%2F38%2Fc0%2Fce38c07006f54cd5b453f4e61d7f497a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-27,1933-12-29,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/conroy-disinherited/,The Disinherited,,"Conroy, Jack",1933,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/26%2F41%2F4f%2F26414fa5907b409db286adabe4e9330c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-12-27,1934-01-02,https://shakespeareandco.princeton.edu/members/shelley-dorothy/,Dorothy Shelley,"Shelley, Dorothy",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/ross-new-yorker/,The New Yorker,,,,,Lending Library Card,"Sylvia Beach, Dorothy Shelley Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dcc58669-efb6-4ace-ab31-a1cb913f3692/manifest,https://iiif.princeton.edu/loris/figgy_prod/6e%2F92%2F2e%2F6e922e058b7c4a56ac1215de11398cdd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-27,1934-01-02,https://shakespeareandco.princeton.edu/members/shelley-dorothy/,Dorothy Shelley,"Shelley, Dorothy",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/twain-adventures-tom-sawyer/,The Adventures of Tom Sawyer,,"Twain, Mark",1876,,Lending Library Card,"Sylvia Beach, Dorothy Shelley Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dcc58669-efb6-4ace-ab31-a1cb913f3692/manifest,https://iiif.princeton.edu/loris/figgy_prod/6e%2F92%2F2e%2F6e922e058b7c4a56ac1215de11398cdd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-27,1934-01-02,https://shakespeareandco.princeton.edu/members/shelley-dorothy/,Dorothy Shelley,"Shelley, Dorothy",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/bulwer-lytton-rienzi-last-roman/,"Rienzi, the Last of the Roman Tribunes",,"Bulwer-Lytton, Edward",1835,,Lending Library Card,"Sylvia Beach, Dorothy Shelley Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dcc58669-efb6-4ace-ab31-a1cb913f3692/manifest,https://iiif.princeton.edu/loris/figgy_prod/6e%2F92%2F2e%2F6e922e058b7c4a56ac1215de11398cdd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-27,1933-12-29,https://shakespeareandco.princeton.edu/members/paul-dubois/,Louis Paul-Dubois,"Paul-Dubois, Louis",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/ocasey-within-gates-play/,Within the Gates: A Play of Four Scenes in a London Park,,"O'Casey, Sean",1933,,Lending Library Card,"Sylvia Beach, Louis Paul-Dubois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a5425c0b-233e-443e-a90e-1107459a225d/manifest,https://iiif.princeton.edu/loris/figgy_prod/fe%2Fed%2Fcc%2Ffeedcca8aab1457886de3a151d43553b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1933-12-27,1933-12-27,https://shakespeareandco.princeton.edu/members/wendel/,Hélène de Wendel / Comtesse de Noailles,"de Wendel, Hélène",,,,,,,,,,,20.00,FRF,https://shakespeareandco.princeton.edu/books/barbellion-journal-disappointed-man/,The Journal of a Disappointed Man,,"Barbellion, W. N. P.",1919,,Lending Library Card,"Sylvia Beach, Madame Hélène Wendel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c70e230a-8313-4c53-9939-22beb5f809b6/manifest,https://iiif-cloud.princeton.edu/iiif/2/e4%2Fa9%2Fdf%2Fe4a9df1cda094e20805c5905f19a68f0%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-12-27,1934-01-19,https://shakespeareandco.princeton.edu/members/boscq-marie/,Marie Boscq / Bosq,"Boscq, Marie",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/faulkner-lay-dying/,As I Lay Dying,,"Faulkner, William",1930,,Lending Library Card,"Sylvia Beach, Marie Boscq Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/11480fae-3477-40c8-be7d-484c91023da7/manifest,https://iiif.princeton.edu/loris/figgy_prod/cd%2F75%2F98%2Fcd75980d3c3e4cb3ac5163e331e790db%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-28,1934-01-04,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/fleming-variety-essays-stories/,Variety: Essays and Stories,,"Fleming, Peter",1933,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/3c%2Faa%2F4f%2F3caa4f8e37954ba7a197d68f47529504%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1933-12-28,1934-01-28,https://shakespeareandco.princeton.edu/members/claudius/,Agnes Claudius,"Claudius, Agnes",12.00,,1 month,31,1,,1933-12-28,,,,,FRF,,,,,,,Lending Library Card;Logbook,"Sylvia Beach, Agnes Claudius Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",https://figgy.princeton.edu/concern/scanned_resources/18a9262d-8ea3-4d0c-9b36-8a1c638950fa/manifest;,https://iiif.princeton.edu/loris/figgy_prod/23%2Fbb%2Fbd%2F23bbbd657cc64aeaa1cf1b3dc4210522%2Fintermediate_file.jp2/full/full/0/default.jpg;
+Borrow,1933-12-28,1933-12-29,https://shakespeareandco.princeton.edu/members/tuttle-stephen-d/,Stephen D. Tuttle,"Tuttle, Stephen D.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/mann-buddenbrooks/,Buddenbrooks,Vol. 2,"Mann, Thomas",1924,,Lending Library Card,"Sylvia Beach, Stephen D. Tuttle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f1653918-3f2b-4e88-bd27-4e3c4d83a47d/manifest,https://iiif-cloud.princeton.edu/iiif/2/65%2Fdf%2Ff8%2F65dff8cf663e4eceb54c65b53cccaf7e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-12-28,1934-01-15,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/goncharov-oblomov/,Oblomov,,"Goncharov, Ivan",1929,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/3c%2Faa%2F4f%2F3caa4f8e37954ba7a197d68f47529504%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-12-29,1934-01-06,https://shakespeareandco.princeton.edu/members/paul-dubois/,Louis Paul-Dubois,"Paul-Dubois, Louis",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/gregory-new-irish-comedies/,New Irish Comedies,,"Gregory, Lady",1923,,Lending Library Card,"Sylvia Beach, Louis Paul-Dubois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a5425c0b-233e-443e-a90e-1107459a225d/manifest,https://iiif.princeton.edu/loris/figgy_prod/fe%2Fed%2Fcc%2Ffeedcca8aab1457886de3a151d43553b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-29,1934-01-11,https://shakespeareandco.princeton.edu/members/guillemin-annie/,Annie Guillemin,"Guillemin, Annie",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/galsworthy-silver-spoon/,The Silver Spoon (A Modern Comedy),,"Galsworthy, John",1926,,Lending Library Card,"Sylvia Beach, Annie Guillemin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2d6019d9-34ed-4ca4-97a9-5fd05d8640a7/manifest,https://iiif.princeton.edu/loris/figgy_prod/8c%2Fbb%2Fe1%2F8cbbe1dd84b1489fa79f3b0b7d7b6e3f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-29,1933-12-30,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/macdonell-shakespeare-murders/,The Shakespeare Murders,,"Macdonell, A. G.",1933,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/26%2F41%2F4f%2F26414fa5907b409db286adabe4e9330c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-12-29,1933-12-30,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/moats-nice-girl-swears/,No Nice Girl Swears,,"Moats, Alice-Leone",1933,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/26%2F41%2F4f%2F26414fa5907b409db286adabe4e9330c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-12-29,1933-12-30,https://shakespeareandco.princeton.edu/members/tuttle-stephen-d/,Stephen D. Tuttle,"Tuttle, Stephen D.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/hemingway-winner-take-nothing/,Winner Take Nothing,,"Hemingway, Ernest",1933,,Lending Library Card,"Sylvia Beach, Stephen D. Tuttle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f1653918-3f2b-4e88-bd27-4e3c4d83a47d/manifest,https://iiif-cloud.princeton.edu/iiif/2/65%2Fdf%2Ff8%2F65dff8cf663e4eceb54c65b53cccaf7e%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1933-12-29,1934-01-29,https://shakespeareandco.princeton.edu/members/catel-jean/,Jean Catel,"Catel, Jean",12.00,,1 month,31,1,,1933-12-29,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1933-12-30,1934-01-22,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/west-miss-lonelyhearts/,Miss Lonelyhearts,,"West, Nathanael",1933,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/b3%2F88%2F85%2Fb38885c606214804a0b750495aa0797c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-30,1934-01-08,https://shakespeareandco.princeton.edu/members/clairin-pierre-eugene/,Pierre-Eugène Clairin,"Clairin, Pierre-Eugène",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/kennedy-constant-nymph/,The Constant Nymph,,"Kennedy, Margaret",1924,,Lending Library Card,"Sylvia Beach, Pierre Clairin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e63243a0-173f-4a2e-9310-fc058bd22a7a/manifest,https://iiif.princeton.edu/loris/figgy_prod/9d%2F11%2F52%2F9d1152c19ae64e75878253e7c1de9ef6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Separate Payment,1933-12-30,1933-12-30,https://shakespeareandco.princeton.edu/members/vieillard/,Gilbert Vieillard,"Vieillard, Gilbert",,30.00,,,,,1933-12-30,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Gilbert Vieillard Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/8cd1d6c8-5108-4d59-9706-8bca70405815/manifest,;https://iiif.princeton.edu/loris/figgy_prod/e3%2F2e%2F71%2Fe32e712809fa44df9f8aa0175f1991db%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1933-12-30,1934-01-30,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",22.50,,1 month,31,1,,1933-12-30,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/b3%2F88%2F85%2Fb38885c606214804a0b750495aa0797c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1933-12-30,1933-12-30,https://shakespeareandco.princeton.edu/members/derry/,Alexander Derry,"Derry, Alexander",,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1933-12-30,1934-01-04,https://shakespeareandco.princeton.edu/members/vieillard/,Gilbert Vieillard,"Vieillard, Gilbert",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/huxley-brave-new-world/,Brave New World,,"Huxley, Aldous",1932,,Lending Library Card,"Sylvia Beach, Gilbert Vieillard Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8cd1d6c8-5108-4d59-9706-8bca70405815/manifest,https://iiif.princeton.edu/loris/figgy_prod/e3%2F2e%2F71%2Fe32e712809fa44df9f8aa0175f1991db%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-30,1934-01-09,https://shakespeareandco.princeton.edu/members/maspero-clerc/;https://shakespeareandco.princeton.edu/members/maspero-henri/,Hélène Maspero-Clerc;Henri Maspero,"Maspero-Clerc, Hélène;Maspero, Henri",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/kennedy-constant-nymph/,The Constant Nymph,,"Kennedy, Margaret",1924,,Lending Library Card,"Sylvia Beach, Maspero Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/92dca37a-f412-4b18-90a3-d236d2b3fe20/manifest,https://iiif-cloud.princeton.edu/iiif/2/ea%2F4c%2F4a%2Fea4c4a2dc06f44aaa9c52db92681a7bb%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-12-30,1934-01-02,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/lumpkin-make-bread/,To Make My Bread,,"Lumpkin, Grace",1932,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/26%2F41%2F4f%2F26414fa5907b409db286adabe4e9330c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-12-30,1934-02-22,https://shakespeareandco.princeton.edu/members/tuttle-stephen-d/,Stephen D. Tuttle,"Tuttle, Stephen D.",,,,,,,,,Returned,54,,,https://shakespeareandco.princeton.edu/books/sterne-works-sterne-life/,"The Works of Sterne: The Life and Opinions of Tristram Shandy, Gentleman & A Sentimental Journey through France and Italy",2 vols.,"Sterne, Laurence",1900,"For additional borrows, see [*Tristram Shandy*](https://shakespeareandco.princeton.edu/books/sterne-life-opinions-tristram/) and [*A Sentimental Journey*](https://shakespeareandco.princeton.edu/books/sterne-sentimental-journey-france/).",Lending Library Card,"Sylvia Beach, Stephen D. Tuttle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f1653918-3f2b-4e88-bd27-4e3c4d83a47d/manifest,https://iiif-cloud.princeton.edu/iiif/2/65%2Fdf%2Ff8%2F65dff8cf663e4eceb54c65b53cccaf7e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-12-30,1934-01-02,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/williams-clock-ticks/,The Clock Ticks On,,"Williams, Valentine",1933,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/26%2F41%2F4f%2F26414fa5907b409db286adabe4e9330c%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1933-12-30,1934-01-30,https://shakespeareandco.princeton.edu/members/dillon/,George Dillon,"Dillon, George",12.00,,1 month,31,1,,1934-01-05,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, George Dillon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5e438ba5-07c0-492f-b5f5-b1755e934b4e/manifest,https://iiif.princeton.edu/loris/figgy_prod/1a%2F27%2F7a%2F1a277a85874341078252c5adc35380a1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-30,1934-01-03,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/jameson-women-men/,Women against Men,,"Jameson, Storm",1933,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e3%2Fa3%2F2f%2Fe3a32f3f58b84d669bc3710140acb7d5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1933-12-31,,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/thackeray/,Thackeray,,,,Unidentified. By or about Thackeray.,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/30%2F13%2F8a%2F30138a0365434ba8855aaeac38b08618%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1933-12-31,1934-01-14,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/lowell-east-wind/,East Wind,,"Lowell, Amy",1926,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/30%2F13%2F8a%2F30138a0365434ba8855aaeac38b08618%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1934-01-01,1934-02-01,https://shakespeareandco.princeton.edu/members/perdereau/,Perdereau,Perdereau,25.00,,1 month,31,1,,1933-12-16,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1934-01-02,1934-01-30,https://shakespeareandco.princeton.edu/members/shelley-dorothy/,Dorothy Shelley,"Shelley, Dorothy",,,,,,,,,Returned,28,,,https://shakespeareandco.princeton.edu/books/meredith-egoist/,The Egoist,,"Meredith, George",1879,,Lending Library Card,"Sylvia Beach, Dorothy Shelley Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dcc58669-efb6-4ace-ab31-a1cb913f3692/manifest,https://iiif.princeton.edu/loris/figgy_prod/6e%2F92%2F2e%2F6e922e058b7c4a56ac1215de11398cdd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-02,1934-01-05,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/noth-berlin-tenement/,Berlin Tenement,,"Noth, Ernst Erich",1933,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/26%2F41%2F4f%2F26414fa5907b409db286adabe4e9330c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-01-02,1934-01-09,https://shakespeareandco.princeton.edu/members/burt-maud/,Maud Burt,"Burt, Maud",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/borden-mary-nazareth/,Mary of Nazareth,,"Borden, Mary",1933,,Lending Library Card,"Sylvia Beach, Maud Burt Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/84402ab0-3135-4059-bd55-010e23394445/manifest,https://iiif.princeton.edu/loris/figgy_prod/47%2F98%2F43%2F4798436b9f2b475e8d6f91a988ffe2ad%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-02,1934-01-23,https://shakespeareandco.princeton.edu/members/shelley-dorothy/,Dorothy Shelley,"Shelley, Dorothy",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/huxley-brave-new-world/,Brave New World,,"Huxley, Aldous",1932,,Lending Library Card,"Sylvia Beach, Dorothy Shelley Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dcc58669-efb6-4ace-ab31-a1cb913f3692/manifest,https://iiif.princeton.edu/loris/figgy_prod/6e%2F92%2F2e%2F6e922e058b7c4a56ac1215de11398cdd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-02,1934-01-05,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/hindus-great-offensive/,The Great Offensive,,"Hindus, Maurice Gerschon",1933,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/26%2F41%2F4f%2F26414fa5907b409db286adabe4e9330c%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1934-01-03,1934-07-03,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",50.00,,6 months,181,1,,1934-01-03,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/1b%2F11%2F64%2F1b116462342c42428515d6fd5451f322%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-03,1934-01-10,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/brittain-testament-youth/,Testament of Youth,,"Brittain, Vera",1933,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e3%2Fa3%2F2f%2Fe3a32f3f58b84d669bc3710140acb7d5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1934-01-03,1934-02-03,https://shakespeareandco.princeton.edu/members/carroll-3/,Miss Carroll,"Carroll, Miss",12.00,,1 month,31,,,1934-08-29,,,,,,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1934-01-03,1934-01-08,https://shakespeareandco.princeton.edu/members/van-den-bergh/,Tamara van den Bergh,"van den Bergh, Tamara",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/goldsmith-vicar-wakefield/,The Vicar of Wakefield,,"Goldsmith, Oliver",1766,,Lending Library Card,"Sylvia Beach, Miss Tamara van den Bergh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f3a52627-dc5d-410b-aa7f-9d39941f18e8/manifest,https://iiif.princeton.edu/loris/figgy_prod/26%2F82%2Fd3%2F2682d3d4f21f436faeed49b64c3f403f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-03,1934-01-12,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/caldwell-gods-little-acre/,God's Little Acre,,"Caldwell, Erskine Preston",1933,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/1b%2F11%2F64%2F1b116462342c42428515d6fd5451f322%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-03,1934-01-29,https://shakespeareandco.princeton.edu/members/meyer-florence/,Florence Meyer,"Meyer, Florence",,,,,,,,,Returned,26,,,https://shakespeareandco.princeton.edu/books/dante-alighieri-divine-comedy/,The Divine Comedy,,Dante Alighieri,,William Cowper Robertson borrowed the Everyman's Library edition of *The Divine Comedy.*,Lending Library Card,"Sylvia Beach, Florence Meyer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd3b6930-a7f4-40e5-88ad-1a27c20d35f1/manifest,https://iiif.princeton.edu/loris/figgy_prod/ce%2F38%2Fc0%2Fce38c07006f54cd5b453f4e61d7f497a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-03,1934-01-08,https://shakespeareandco.princeton.edu/members/van-den-bergh/,Tamara van den Bergh,"van den Bergh, Tamara",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/dickens-david-copperfield/,David Copperfield,,"Dickens, Charles",1850,,Lending Library Card,"Sylvia Beach, Miss Tamara van den Bergh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f3a52627-dc5d-410b-aa7f-9d39941f18e8/manifest,https://iiif.princeton.edu/loris/figgy_prod/26%2F82%2Fd3%2F2682d3d4f21f436faeed49b64c3f403f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-04,1934-02-19,https://shakespeareandco.princeton.edu/members/vieillard/,Gilbert Vieillard,"Vieillard, Gilbert",,,,,,,,,Returned,46,,,https://shakespeareandco.princeton.edu/books/kipling-light-failed/,The Light That Failed,,"Kipling, Rudyard",1891,,Lending Library Card,"Sylvia Beach, Gilbert Vieillard Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8cd1d6c8-5108-4d59-9706-8bca70405815/manifest,https://iiif.princeton.edu/loris/figgy_prod/e3%2F2e%2F71%2Fe32e712809fa44df9f8aa0175f1991db%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1934-01-05,1934-03-05,https://shakespeareandco.princeton.edu/members/meyer-florence/,Florence Meyer,"Meyer, Florence",80.00,,2 months,59,2,,1934-01-05,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Florence Meyer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd3b6930-a7f4-40e5-88ad-1a27c20d35f1/manifest,https://iiif.princeton.edu/loris/figgy_prod/c1%2F3c%2F59%2Fc13c59a7692d47ad96a92afb59ba690f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1934-01-05,1934-02-05,https://shakespeareandco.princeton.edu/members/ferester/,Ferester,Ferester,12.00,,1 month,31,1,,1934-01-05,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1934-01-05,1934-01-08,https://shakespeareandco.princeton.edu/members/dillon/,George Dillon,"Dillon, George",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/rylands-words-poetry/,Words and Poetry,,"Rylands, George",1928,,Lending Library Card,"Sylvia Beach, George Dillon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5e438ba5-07c0-492f-b5f5-b1755e934b4e/manifest,https://iiif.princeton.edu/loris/figgy_prod/1a%2F27%2F7a%2F1a277a85874341078252c5adc35380a1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-05,1934-01-06,https://shakespeareandco.princeton.edu/members/claudius/,Agnes Claudius,"Claudius, Agnes",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/van-dine-dragon-murder-case/,The Dragon Murder Case,,"Van Dine, S. S.",1933,,Lending Library Card,"Sylvia Beach, Agnes Claudius Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18a9262d-8ea3-4d0c-9b36-8a1c638950fa/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2Fbb%2Fbd%2F23bbbd657cc64aeaa1cf1b3dc4210522%2Fintermediate_file.jp2/full/full/0/default.jpg
+Crossed out,1934-01-05,,https://shakespeareandco.princeton.edu/members/clairin-theresa/,Theresa (Shiff) Clairin,"Clairin, Theresa",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/webb-gone-earth/,Gone to Earth,,"Webb, Mary",1917,,Lending Library Card,"Sylvia Beach, Theresa (Shiff) Clairin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/46a8350f-5226-4051-aa61-69eae1bf0e52/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Fe3%2F1c%2Fcce31c0673dd42298e6f80b831ad8557%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-05,1934-01-16,https://shakespeareandco.princeton.edu/members/clairin-theresa/,Theresa (Shiff) Clairin,"Clairin, Theresa",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/bronte-wuthering-heights/,Wuthering Heights,,"BrontΓ«, Emily",1847,,Lending Library Card,"Sylvia Beach, Theresa (Shiff) Clairin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/46a8350f-5226-4051-aa61-69eae1bf0e52/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Fe3%2F1c%2Fcce31c0673dd42298e6f80b831ad8557%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-06,1934-01-15,https://shakespeareandco.princeton.edu/members/claudius/,Agnes Claudius,"Claudius, Agnes",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/evans-wentz-tibets-great-yogi/,"Tibet's Great YogΔ«, Milarepa",,,1928,,Lending Library Card,"Sylvia Beach, Agnes Claudius Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18a9262d-8ea3-4d0c-9b36-8a1c638950fa/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2Fbb%2Fbd%2F23bbbd657cc64aeaa1cf1b3dc4210522%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1934-01-06,1934-02-06,https://shakespeareandco.princeton.edu/members/crehan/,B. J. Crehan,"Crehan, B. J.",12.00,30.00,1 month,31,1,,1934-01-06,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1934-01-06,1934-01-15,https://shakespeareandco.princeton.edu/members/claudius/,Agnes Claudius,"Claudius, Agnes",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/ross-new-yorker/,The New Yorker,,,,,Lending Library Card,"Sylvia Beach, Agnes Claudius Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18a9262d-8ea3-4d0c-9b36-8a1c638950fa/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2Fbb%2Fbd%2F23bbbd657cc64aeaa1cf1b3dc4210522%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-06,1934-01-13,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/ocasey-within-gates-play/,Within the Gates: A Play of Four Scenes in a London Park,,"O'Casey, Sean",1933,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/58%2F45%2F77%2F58457700c8f84cf7be6a477c1713a40b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-01-06,1934-01-09,https://shakespeareandco.princeton.edu/members/paul-dubois/,Louis Paul-Dubois,"Paul-Dubois, Louis",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/lewis-time-western-man/,Time and Western Man,,"Lewis, Wyndham",1927,,Lending Library Card,"Sylvia Beach, Louis Paul-Dubois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a5425c0b-233e-443e-a90e-1107459a225d/manifest,https://iiif.princeton.edu/loris/figgy_prod/fe%2Fed%2Fcc%2Ffeedcca8aab1457886de3a151d43553b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-06,1934-01-09,https://shakespeareandco.princeton.edu/members/paul-dubois/,Louis Paul-Dubois,"Paul-Dubois, Louis",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/yeats-collected-poems-w/,The Collected Poems of W. B. Yeats,,"Yeats, William Butler",1933,,Lending Library Card,"Sylvia Beach, Louis Paul-Dubois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a5425c0b-233e-443e-a90e-1107459a225d/manifest,https://iiif.princeton.edu/loris/figgy_prod/fe%2Fed%2Fcc%2Ffeedcca8aab1457886de3a151d43553b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-06,1934-01-16,https://shakespeareandco.princeton.edu/members/caillois/;https://shakespeareandco.princeton.edu/members/petitjean/,Roger Caillois;Armand Petitjean,"Caillois, Roger;Petitjean, Armand",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/ogden-meaning-meaning-study/,The Meaning of Meaning: A Study of the Influence of Language upon Thought and of the Science of Symbolism,,"Ogden, C. K.;Richards, I. A.",1923,,Lending Library Card,"Sylvia Beach, Roger Caillois/ Armand Petitjean Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/58386f27-2a95-4138-a30e-4dde3aeb0aaa/manifest,https://iiif-cloud.princeton.edu/iiif/2/4f%2F8a%2Fc9%2F4f8ac94272334e4ea75c06b1a68ac749%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-01-06,1934-01-15,https://shakespeareandco.princeton.edu/members/claudius/,Agnes Claudius,"Claudius, Agnes",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/ross-new-yorker/,The New Yorker,,,,,Lending Library Card,"Sylvia Beach, Agnes Claudius Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18a9262d-8ea3-4d0c-9b36-8a1c638950fa/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2Fbb%2Fbd%2F23bbbd657cc64aeaa1cf1b3dc4210522%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1934-01-06,1934-02-06,https://shakespeareandco.princeton.edu/members/caillois/;https://shakespeareandco.princeton.edu/members/petitjean/,Roger Caillois;Armand Petitjean,"Caillois, Roger;Petitjean, Armand",12.00,50.00,1 month,31,1,,1934-01-06,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Roger Caillois/ Armand Petitjean Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/58386f27-2a95-4138-a30e-4dde3aeb0aaa/manifest,https://iiif-cloud.princeton.edu/iiif/2/4f%2F8a%2Fc9%2F4f8ac94272334e4ea75c06b1a68ac749%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-01-06,1934-01-30,https://shakespeareandco.princeton.edu/members/denis-graterolle/,Elisabeth Denis-Graterolle / Mme Maurice Denis,"Denis-Graterolle, Elisabeth",,,,,,,,,Returned,24,,,https://shakespeareandco.princeton.edu/books/colvin-landor/,Landor,,"Colvin, Sidney",1898,,Lending Library Card,"Sylvia Beach, Elisabeth Denis-Graterolle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/964dbe97-240c-4e59-a8ca-c43f25875149/manifest,https://iiif.princeton.edu/loris/figgy_prod/01%2F85%2F35%2F0185352ce4a645fb9698d1bbb7b51071%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-06,1934-01-30,https://shakespeareandco.princeton.edu/members/denis-graterolle/,Elisabeth Denis-Graterolle / Mme Maurice Denis,"Denis-Graterolle, Elisabeth",,,,,,,,,Returned,24,,,https://shakespeareandco.princeton.edu/books/brownings-works/,Browning's Works,,,,Unidentified. Nathalie Sarraute borrowed an edition of either Elizabeth or Robert Browning published by John Murray and FranΓ§ois Valery borrowed a 2 volume edition.,Lending Library Card,"Sylvia Beach, Elisabeth Denis-Graterolle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/964dbe97-240c-4e59-a8ca-c43f25875149/manifest,https://iiif.princeton.edu/loris/figgy_prod/01%2F85%2F35%2F0185352ce4a645fb9698d1bbb7b51071%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-07,1934-01-14,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/elinor-wylie/,Elinor Wylie,,,,Unidentified. By or about Elinor Wylie.,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/30%2F13%2F8a%2F30138a0365434ba8855aaeac38b08618%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-01-08,1934-01-15,https://shakespeareandco.princeton.edu/members/foret/,Mme de la Foret,"de la Foret, Mme",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/mansfield-garden-party-stories/,The Garden Party and Other Stories,,"Mansfield, Katherine",1922,,Lending Library Card,"Sylvia Beach, Madame de la Foret Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6fc4cfdc-78bc-4f2f-9b2a-3d0e51291d39/manifest,https://iiif.princeton.edu/loris/figgy_prod/9f%2Fbd%2Fc2%2F9fbdc20ad87d4ab394db6ce1b8a8309c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-08,1934-01-10,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/maugham-constant-wife-comedy/,The Constant Wife: A Comedy in Three Acts,,"Maugham, W. Somerset",1927,,Lending Library Card,"Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest,https://iiif.princeton.edu/loris/figgy_prod/e6%2Ffe%2F17%2Fe6fe1798c3664003ba0f3ec37c1b076a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1934-01-08,1934-01-08,https://shakespeareandco.princeton.edu/members/brown-12/,Arthur Brown,"Brown, Arthur",,,,,,,,60.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1934-01-08,1934-01-08,https://shakespeareandco.princeton.edu/members/van-den-bergh/,Tamara van den Bergh,"van den Bergh, Tamara",,,,,,,,10.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1934-01-08,1934-04-08,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",100.00,,3 months,90,2,,1934-01-08,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/57%2Fd7%2Fed%2F57d7edebf111435d8d29597c65433a0a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1934-01-08,1934-01-08,https://shakespeareandco.princeton.edu/members/hinman/,Hinman,Hinman,,,,,,,,30.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1934-01-08,1934-01-13,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/ertz-julian-probert/,Julian Probert,,"Ertz, Susan",1931,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/57%2Fd7%2Fed%2F57d7edebf111435d8d29597c65433a0a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-08,1934-01-13,https://shakespeareandco.princeton.edu/members/dherbais-de-thun/,Marie-Valerie d'Herbais de Thun,"d'Herbais de Thun, Marie-Valerie",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/woolf-flush-biography/,Flush: A Biography,,"Woolf, Virginia",1933,,Lending Library Card,"Sylvia Beach, Marie-Valerie Herbais de Thun Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/94cf6667-e6c3-451a-9da4-35a58d089850/manifest,https://iiif.princeton.edu/loris/figgy_prod/38%2Ff0%2F98%2F38f09874f57345f4bf007e23065cb827%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-08,1934-01-23,https://shakespeareandco.princeton.edu/members/dillon/,George Dillon,"Dillon, George",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/shakespeare-shakespeares-tragedies/,Shakespeare's Tragedies,,"Shakespeare, William",,,Lending Library Card,"Sylvia Beach, George Dillon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5e438ba5-07c0-492f-b5f5-b1755e934b4e/manifest,https://iiif.princeton.edu/loris/figgy_prod/1a%2F27%2F7a%2F1a277a85874341078252c5adc35380a1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-08,1934-01-16,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/ferber-american-beauty/,American Beauty,,"Ferber, Edna",1931,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/57%2Fd7%2Fed%2F57d7edebf111435d8d29597c65433a0a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-09,1934-01-24,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/kipling-many-inventions/,Many Inventions,,"Kipling, Rudyard",1893,,Lending Library Card,"Sylvia Beach, Aline Prot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/15a376bb-405b-4488-b789-1559abbe3fb2/manifest,https://iiif-cloud.princeton.edu/iiif/2/cd%2Fb9%2F8d%2Fcdb98d69d2914c9a86733742b9a595f2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-01-09,1934-01-12,https://shakespeareandco.princeton.edu/members/paul-dubois/,Louis Paul-Dubois,"Paul-Dubois, Louis",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/howe-synge-critical-study/,J. M. Synge: A Critical Study,,"Howe, P. P.",1912,,Lending Library Card,"Sylvia Beach, Louis Paul-Dubois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a5425c0b-233e-443e-a90e-1107459a225d/manifest,https://iiif.princeton.edu/loris/figgy_prod/fe%2Fed%2Fcc%2Ffeedcca8aab1457886de3a151d43553b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-09,1934-01-16,https://shakespeareandco.princeton.edu/members/maspero-clerc/;https://shakespeareandco.princeton.edu/members/maspero-henri/,Hélène Maspero-Clerc;Henri Maspero,"Maspero-Clerc, Hélène;Maspero, Henri",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/wrench-spectator/,The Spectator,,,,,Lending Library Card,"Sylvia Beach, Maspero Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/92dca37a-f412-4b18-90a3-d236d2b3fe20/manifest,https://iiif-cloud.princeton.edu/iiif/2/ea%2F4c%2F4a%2Fea4c4a2dc06f44aaa9c52db92681a7bb%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-01-09,1934-01-23,https://shakespeareandco.princeton.edu/members/maspero-clerc/;https://shakespeareandco.princeton.edu/members/maspero-henri/,Hélène Maspero-Clerc;Henri Maspero,"Maspero-Clerc, Hélène;Maspero, Henri",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/webb-precious-bane-novel/,Precious Bane: A Novel,,"Webb, Mary",1924,,Lending Library Card,"Sylvia Beach, Maspero Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/92dca37a-f412-4b18-90a3-d236d2b3fe20/manifest,https://iiif-cloud.princeton.edu/iiif/2/ea%2F4c%2F4a%2Fea4c4a2dc06f44aaa9c52db92681a7bb%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-01-09,1934-01-22,https://shakespeareandco.princeton.edu/members/plummer-dorothy/,Dorothy Plummer,"Plummer, Dorothy",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/nicolson-people/,Some People,,"Nicolson, Harold George",1926,,Lending Library Card,"Sylvia Beach, Dorothy Plummer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5f53ce0-8ea6-4d1f-b36b-f6e5321bab4c/manifest,https://iiif.princeton.edu/loris/figgy_prod/73%2F61%2F28%2F7361283a6eb946cbbb43d97ca38f1deb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-09,1934-01-12,https://shakespeareandco.princeton.edu/members/paul-dubois/,Louis Paul-Dubois,"Paul-Dubois, Louis",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/gregory-three-wonder-plays/,Three Wonder Plays,,"Gregory, Lady",1922,,Lending Library Card,"Sylvia Beach, Louis Paul-Dubois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a5425c0b-233e-443e-a90e-1107459a225d/manifest,https://iiif.princeton.edu/loris/figgy_prod/fe%2Fed%2Fcc%2Ffeedcca8aab1457886de3a151d43553b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-09,1934-01-15,https://shakespeareandco.princeton.edu/members/burt-maud/,Maud Burt,"Burt, Maud",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/masefield-bird-dawning/,The Bird of Dawning,,"Masefield, John",1933,,Lending Library Card,"Sylvia Beach, Maud Burt Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/84402ab0-3135-4059-bd55-010e23394445/manifest,https://iiif.princeton.edu/loris/figgy_prod/47%2F98%2F43%2F4798436b9f2b475e8d6f91a988ffe2ad%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-09,1934-01-24,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/nichols-evensong/,Evensong,,"Nichols, Beverley",1932,,Lending Library Card,"Sylvia Beach, Aline Prot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/15a376bb-405b-4488-b789-1559abbe3fb2/manifest,https://iiif-cloud.princeton.edu/iiif/2/cd%2Fb9%2F8d%2Fcdb98d69d2914c9a86733742b9a595f2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-01-10,1934-01-24,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/joyce-ulysses/,Ulysses,,"Joyce, James",1922,,Lending Library Card,"Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest,https://iiif.princeton.edu/loris/figgy_prod/e6%2Ffe%2F17%2Fe6fe1798c3664003ba0f3ec37c1b076a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-10,1934-01-18,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/hoult-youth-cant-served/,Youth Can't Be Served,,"Hoult, Norah",1933,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e3%2Fa3%2F2f%2Fe3a32f3f58b84d669bc3710140acb7d5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1934-01-10,1934-02-10,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",20.00,30.00,1 month,31,2,,1934-01-10,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/c3%2Fcf%2Fcb%2Fc3cfcbac695b438cb411cef7054fed8e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-10,1934-01-12,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/weston-ritual-romance/,From Ritual to Romance,,"Weston, Jessie",1920,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/c3%2Fcf%2Fcb%2Fc3cfcbac695b438cb411cef7054fed8e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-11,1934-01-18,https://shakespeareandco.princeton.edu/members/guillemin-annie/,Annie Guillemin,"Guillemin, Annie",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/galsworthy-swan-song/,Swan Song (A Modern Comedy),,"Galsworthy, John",1928,,Lending Library Card,"Sylvia Beach, Annie Guillemin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2d6019d9-34ed-4ca4-97a9-5fd05d8640a7/manifest,https://iiif.princeton.edu/loris/figgy_prod/8c%2Fbb%2Fe1%2F8cbbe1dd84b1489fa79f3b0b7d7b6e3f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1934-01-11,1934-02-11,https://shakespeareandco.princeton.edu/members/dherbais-de-thun/,Marie-Valerie d'Herbais de Thun,"d'Herbais de Thun, Marie-Valerie",,,1 month,31,1,,1934-01-13,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Marie-Valerie Herbais de Thun Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/94cf6667-e6c3-451a-9da4-35a58d089850/manifest,https://iiif.princeton.edu/loris/figgy_prod/38%2Ff0%2F98%2F38f09874f57345f4bf007e23065cb827%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-12,1934-01-15,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/yeats-winding-stair/,The Winding Stair,,"Yeats, William Butler",1929,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/c3%2Fcf%2Fcb%2Fc3cfcbac695b438cb411cef7054fed8e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-12,1934-01-13,https://shakespeareandco.princeton.edu/members/paul-dubois/,Louis Paul-Dubois,"Paul-Dubois, Louis",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/a-e-imaginations-reveries/,Imaginations and Reveries,,Γ,1915,,Lending Library Card,"Sylvia Beach, Louis Paul-Dubois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a5425c0b-233e-443e-a90e-1107459a225d/manifest,https://iiif.princeton.edu/loris/figgy_prod/fe%2Fed%2Fcc%2Ffeedcca8aab1457886de3a151d43553b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-12,1934-01-13,https://shakespeareandco.princeton.edu/members/paul-dubois/,Louis Paul-Dubois,"Paul-Dubois, Louis",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/yeats-book-irish-verse/,A Book of Irish Verse,,,1900,,Lending Library Card,"Sylvia Beach, Louis Paul-Dubois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a5425c0b-233e-443e-a90e-1107459a225d/manifest,https://iiif.princeton.edu/loris/figgy_prod/fe%2Fed%2Fcc%2Ffeedcca8aab1457886de3a151d43553b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-12,1934-01-19,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/lehmann-invitation-waltz/,Invitation to the Waltz,,"Lehmann, Rosamond",1932,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/1b%2F11%2F64%2F1b116462342c42428515d6fd5451f322%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-12,1934-02-10,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,29,,,https://shakespeareandco.princeton.edu/books/proust-swanns-way/,Swann's Way (Γ la recherche du temps perdu 1),2 vols.,"Proust, Marcel",1922,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/c3%2Fcf%2Fcb%2Fc3cfcbac695b438cb411cef7054fed8e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-13,1934-01-19,https://shakespeareandco.princeton.edu/members/paul-dubois/,Louis Paul-Dubois,"Paul-Dubois, Louis",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/a-e-interpreters-2/,The Interpreters,,Γ,1922,,Lending Library Card,"Sylvia Beach, Louis Paul-Dubois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a5425c0b-233e-443e-a90e-1107459a225d/manifest,https://iiif.princeton.edu/loris/figgy_prod/fe%2Fed%2Fcc%2Ffeedcca8aab1457886de3a151d43553b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-13,1934-01-25,https://shakespeareandco.princeton.edu/members/laporte/,Madeleine Laporte,"Laporte, Madeleine",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/buck-good-earth/,The Good Earth,,"Buck, Pearl S.",1931,,Lending Library Card,"Sylvia Beach, Madeleine Laporte Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/94901174-ece6-4f4f-8f56-7c5154efb578/manifest,https://iiif.princeton.edu/loris/figgy_prod/43%2F64%2F29%2F4364295feed0416c9ba5417c5b15481f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-13,1934-01-16,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/borden-sarah-gay/,Sarah Gay,,"Borden, Mary",1931,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/57%2Fd7%2Fed%2F57d7edebf111435d8d29597c65433a0a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-13,1934-01-20,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/eliot-selected-essays-1917/,"Selected Essays, 1917 β 1932",,"Eliot, T. S.",1932,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/58%2F45%2F77%2F58457700c8f84cf7be6a477c1713a40b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-01-13,1934-01-19,https://shakespeareandco.princeton.edu/members/dherbais-de-thun/,Marie-Valerie d'Herbais de Thun,"d'Herbais de Thun, Marie-Valerie",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/footner-dead-mans-hat/,Dead Man's Hat,,"Footner, Hulbert",1932,,Lending Library Card,"Sylvia Beach, Marie-Valerie Herbais de Thun Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/94cf6667-e6c3-451a-9da4-35a58d089850/manifest,https://iiif.princeton.edu/loris/figgy_prod/38%2Ff0%2F98%2F38f09874f57345f4bf007e23065cb827%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-13,1934-01-15,https://shakespeareandco.princeton.edu/members/bonnerot-louis/,Louis Bonnerot,"Bonnerot, Louis",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/criterion/,The Criterion,,,,"Renamed *The New Criterion* from January 1926 to January 1927, and *The Monthly Criterion* from May 1927 to March 1928.",Lending Library Card,"Sylvia Beach, Louis Bonnerot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c14cc736-079c-4403-9036-a2de4743414a/manifest,https://iiif.princeton.edu/loris/figgy_prod/02%2F5a%2F24%2F025a24f998344e51813e60cf8062c163%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1934-01-13,1934-01-13,https://shakespeareandco.princeton.edu/members/russell-10/,Russell,Russell,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1934-01-13,1934-01-19,https://shakespeareandco.princeton.edu/members/paul-dubois/,Louis Paul-Dubois,"Paul-Dubois, Louis",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/a-e-voices-stones/,Voices of the Stones,,Γ,1925,,Lending Library Card,"Sylvia Beach, Louis Paul-Dubois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a5425c0b-233e-443e-a90e-1107459a225d/manifest,https://iiif.princeton.edu/loris/figgy_prod/fe%2Fed%2Fcc%2Ffeedcca8aab1457886de3a151d43553b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-13,1934-01-19,https://shakespeareandco.princeton.edu/members/paul-dubois/,Louis Paul-Dubois,"Paul-Dubois, Louis",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/wilson-axels-castle-study/,Axel's Castle: A Study in the Imaginative Literature of 1870 β 1930,,"Wilson, Edmund",1931,,Lending Library Card,"Sylvia Beach, Louis Paul-Dubois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a5425c0b-233e-443e-a90e-1107459a225d/manifest,https://iiif.princeton.edu/loris/figgy_prod/fe%2Fed%2Fcc%2Ffeedcca8aab1457886de3a151d43553b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-14,1934-01-21,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/sinclair-american-outpost-book/,American Outpost: A Book of Reminiscences,,"Sinclair, Upton",1932,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/30%2F13%2F8a%2F30138a0365434ba8855aaeac38b08618%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-01-14,1934-01-21,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/krutch-edgar-allan-poe/,Edgar Allan Poe: A Study in Genius,,"Krutch, Joseph Wood",1931,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/30%2F13%2F8a%2F30138a0365434ba8855aaeac38b08618%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-01-15,1934-01-26,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/blavatsky-secret-doctrine/,The Secret Doctrine,2 vols.,"Blavatsky, H. P.",1888,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/c3%2Fcf%2Fcb%2Fc3cfcbac695b438cb411cef7054fed8e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-15,1934-02-22,https://shakespeareandco.princeton.edu/members/foret/,Mme de la Foret,"de la Foret, Mme",,,,,,,,,Returned,38,,,https://shakespeareandco.princeton.edu/books/mansfield-bliss-short-stories/,Bliss and Other Stories,,"Mansfield, Katherine",1920,,Lending Library Card,"Sylvia Beach, Madame de la Foret Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6fc4cfdc-78bc-4f2f-9b2a-3d0e51291d39/manifest,https://iiif.princeton.edu/loris/figgy_prod/9f%2Fbd%2Fc2%2F9fbdc20ad87d4ab394db6ce1b8a8309c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-15,1934-01-17,https://shakespeareandco.princeton.edu/members/claudius/,Agnes Claudius,"Claudius, Agnes",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/ford-nightingale/,It Was the Nightingale,,"Ford, Ford Madox",1933,,Lending Library Card,"Sylvia Beach, Agnes Claudius Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18a9262d-8ea3-4d0c-9b36-8a1c638950fa/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2Fbb%2Fbd%2F23bbbd657cc64aeaa1cf1b3dc4210522%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-15,1934-01-25,https://shakespeareandco.princeton.edu/members/burt-maud/,Maud Burt,"Burt, Maud",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/galsworthy-river/,Over the River (End of Chapter),,"Galsworthy, John",1933,,Lending Library Card,"Sylvia Beach, Maud Burt Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/84402ab0-3135-4059-bd55-010e23394445/manifest,https://iiif.princeton.edu/loris/figgy_prod/47%2F98%2F43%2F4798436b9f2b475e8d6f91a988ffe2ad%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-15,1934-01-16,https://shakespeareandco.princeton.edu/members/clairin-theresa/,Theresa (Shiff) Clairin,"Clairin, Theresa",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/webb-house-dormer-forest/,The House in Dormer Forest,,"Webb, Mary",1920,,Lending Library Card,"Sylvia Beach, Theresa (Shiff) Clairin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/46a8350f-5226-4051-aa61-69eae1bf0e52/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Fe3%2F1c%2Fcce31c0673dd42298e6f80b831ad8557%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-16,1934-02-02,https://shakespeareandco.princeton.edu/members/caillois/;https://shakespeareandco.princeton.edu/members/petitjean/,Roger Caillois;Armand Petitjean,"Caillois, Roger;Petitjean, Armand",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/crane-bridge/,The Bridge,,"Crane, Hart",1930,,Lending Library Card,"Sylvia Beach, Roger Caillois/ Armand Petitjean Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/58386f27-2a95-4138-a30e-4dde3aeb0aaa/manifest,https://iiif-cloud.princeton.edu/iiif/2/4f%2F8a%2Fc9%2F4f8ac94272334e4ea75c06b1a68ac749%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-01-16,1934-01-18,https://shakespeareandco.princeton.edu/members/clairin-theresa/,Theresa (Shiff) Clairin,"Clairin, Theresa",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/mansfield-bliss-short-stories/,Bliss and Other Stories,,"Mansfield, Katherine",1920,,Lending Library Card,"Sylvia Beach, Theresa (Shiff) Clairin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/46a8350f-5226-4051-aa61-69eae1bf0e52/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Fe3%2F1c%2Fcce31c0673dd42298e6f80b831ad8557%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-16,1934-01-18,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/buck-good-earth/,The Good Earth,,"Buck, Pearl S.",1931,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/57%2Fd7%2Fed%2F57d7edebf111435d8d29597c65433a0a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1934-01-16,1934-04-16,https://shakespeareandco.princeton.edu/members/monet-guiraud/,Monet-Guiraud,Monet-Guiraud,33.00,30.00,3 months,90,1,,1934-01-16,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1934-01-16,1934-04-16,https://shakespeareandco.princeton.edu/members/yanke/,Yanke,Yanke,100.00,100.00,3 months,90,2,,1934-01-16,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1934-01-16,1934-02-16,https://shakespeareandco.princeton.edu/members/hubbard-4/,Hubbard,Hubbard,25.00,50.00,1 month,31,1,,1934-01-16,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1934-01-16,1934-02-16,https://shakespeareandco.princeton.edu/members/avenel-marguerite-d/,Marguerite d'Avenel,"d'Avenel, Marguerite",12.00,30.00,1 month,31,1,,1934-01-16,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1934-01-16,1934-01-18,https://shakespeareandco.princeton.edu/members/clairin-theresa/,Theresa (Shiff) Clairin,"Clairin, Theresa",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/maugham-gentleman-parlour/,The Gentleman in the Parlour,,"Maugham, W. Somerset",1930,,Lending Library Card,"Sylvia Beach, Theresa (Shiff) Clairin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/46a8350f-5226-4051-aa61-69eae1bf0e52/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Fe3%2F1c%2Fcce31c0673dd42298e6f80b831ad8557%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-16,1934-01-23,https://shakespeareandco.princeton.edu/members/caillois/;https://shakespeareandco.princeton.edu/members/petitjean/,Roger Caillois;Armand Petitjean,"Caillois, Roger;Petitjean, Armand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/radcliffe-mysteries-udolpho/,The Mysteries of Udolpho,,"Radcliffe, Ann",1794,,Lending Library Card,"Sylvia Beach, Roger Caillois/ Armand Petitjean Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/58386f27-2a95-4138-a30e-4dde3aeb0aaa/manifest,https://iiif-cloud.princeton.edu/iiif/2/4f%2F8a%2Fc9%2F4f8ac94272334e4ea75c06b1a68ac749%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-01-17,1934-01-18,https://shakespeareandco.princeton.edu/members/claudius/,Agnes Claudius,"Claudius, Agnes",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/webb-s-s-murder/,S. S. Murder,,"Webb, Richard Wilson;Aswell, Mary Louise",1933,By Webb and Aswell writing together as [Q. Patrick](https://en.wikipedia.org/wiki/Patrick_Quentin).,Lending Library Card,"Sylvia Beach, Agnes Claudius Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18a9262d-8ea3-4d0c-9b36-8a1c638950fa/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2Fbb%2Fbd%2F23bbbd657cc64aeaa1cf1b3dc4210522%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1934-01-17,1934-01-17,https://shakespeareandco.princeton.edu/members/jones-14/,Jones,Jones,,,,,,,,30.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1934-01-17,1934-02-17,https://shakespeareandco.princeton.edu/members/perdereau/,Perdereau,Perdereau,25.00,,1 month,31,1,,1934-01-17,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1934-01-18,1934-01-22,https://shakespeareandco.princeton.edu/members/massey/,Adelaide W. Massey / A. W. Massey,"Massey, Adelaide W.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/harlan-miners-speak/,Harlan Miners Speak,,"Dreiser, Theodore;Cohen, Lester;Levy, Melvin P.;Walker, Charles R.;Walker, Adelaide;Wakefield, Jesse;Anderson, Sherwood;Rochester, Anna;Johnson, Arnold;Dos Passos, John;Crawford, Bruce;Israel, Boris",1932,,Lending Library Card,"Sylvia Beach, A. W. Massey Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c4712c46-76f3-4581-99d6-d0ffd31b4138/manifest,https://iiif-cloud.princeton.edu/iiif/2/4d%2F7d%2F00%2F4d7d0059b632436eaaffd762b26f5ce3%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-01-18,1934-01-23,https://shakespeareandco.princeton.edu/members/guillemin-annie/,Annie Guillemin,"Guillemin, Annie",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/galsworthy-forsyte-change/,On Forsyte 'Change (The Forsyte Saga),,"Galsworthy, John",1930,,Lending Library Card,"Sylvia Beach, Annie Guillemin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2d6019d9-34ed-4ca4-97a9-5fd05d8640a7/manifest,https://iiif.princeton.edu/loris/figgy_prod/8c%2Fbb%2Fe1%2F8cbbe1dd84b1489fa79f3b0b7d7b6e3f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-18,1934-01-22,https://shakespeareandco.princeton.edu/members/clairin-theresa/,Theresa (Shiff) Clairin,"Clairin, Theresa",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/maugham-painted-veil/,The Painted Veil,,"Maugham, W. Somerset",1925,,Lending Library Card,"Sylvia Beach, Theresa (Shiff) Clairin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/46a8350f-5226-4051-aa61-69eae1bf0e52/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Fe3%2F1c%2Fcce31c0673dd42298e6f80b831ad8557%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-18,1934-01-22,https://shakespeareandco.princeton.edu/members/clairin-theresa/,Theresa (Shiff) Clairin,"Clairin, Theresa",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/moult-mary-webb-life/,Mary Webb: Her Life and Work,,"Moult, Thomas",1931,,Lending Library Card,"Sylvia Beach, Theresa (Shiff) Clairin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/46a8350f-5226-4051-aa61-69eae1bf0e52/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Fe3%2F1c%2Fcce31c0673dd42298e6f80b831ad8557%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-18,1934-01-22,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/trask-dead-men-tell/,Dead Men Do Tell,,"Trask, Keith",1931,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/57%2Fd7%2Fed%2F57d7edebf111435d8d29597c65433a0a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-18,1934-01-22,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/faulkner-sanctuary/,Sanctuary,,"Faulkner, William",1931,"Caresse Crosby sold a copy of the Black Sun Press edition of *Sanctuary* to Shakespeare and Company on Feb. 17, 1932.",Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/57%2Fd7%2Fed%2F57d7edebf111435d8d29597c65433a0a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-18,1934-01-20,https://shakespeareandco.princeton.edu/members/claudius/,Agnes Claudius,"Claudius, Agnes",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/read-art-now-introduction/,Art Now: An Introduction to the Theory of Modern Painting and Sculpture,,"Read, Herbert",1933,,Lending Library Card,"Sylvia Beach, Agnes Claudius Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18a9262d-8ea3-4d0c-9b36-8a1c638950fa/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2Fbb%2Fbd%2F23bbbd657cc64aeaa1cf1b3dc4210522%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-18,1934-01-25,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/white-farewell-victoria/,Farewell Victoria,,"White, T. H.",1933,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e3%2Fa3%2F2f%2Fe3a32f3f58b84d669bc3710140acb7d5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1934-01-18,1934-01-18,https://shakespeareandco.princeton.edu/members/massey/,Adelaide W. Massey / A. W. Massey,"Massey, Adelaide W.",,,,,,,,,,,48.50,FRF,https://shakespeareandco.princeton.edu/books/adams-education-henry-adams/,The Education of Henry Adams,,"Adams, Henry",1907,,Lending Library Card,"Sylvia Beach, A. W. Massey Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c4712c46-76f3-4581-99d6-d0ffd31b4138/manifest,https://iiif-cloud.princeton.edu/iiif/2/d2%2F82%2F21%2Fd282213c30fe4d538a93a97b987fb0cf%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-01-19,1934-01-22,https://shakespeareandco.princeton.edu/members/paul-dubois/,Louis Paul-Dubois,"Paul-Dubois, Louis",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/a-e-candle-vision/,The Candle of Vision,,Γ,1918,,Lending Library Card,"Sylvia Beach, Louis Paul-Dubois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a5425c0b-233e-443e-a90e-1107459a225d/manifest,https://iiif.princeton.edu/loris/figgy_prod/fe%2Fed%2Fcc%2Ffeedcca8aab1457886de3a151d43553b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-19,1934-01-29,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/faulkner-sanctuary/,Sanctuary,,"Faulkner, William",1931,"Caresse Crosby sold a copy of the Black Sun Press edition of *Sanctuary* to Shakespeare and Company on Feb. 17, 1932.",Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/1b%2F11%2F64%2F1b116462342c42428515d6fd5451f322%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-19,1934-01-22,https://shakespeareandco.princeton.edu/members/paul-dubois/,Louis Paul-Dubois,"Paul-Dubois, Louis",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/a-e-avatars-futurist-fantasy/,The Avatars: A Futurist Fantasy,,Γ,1933,,Lending Library Card,"Sylvia Beach, Louis Paul-Dubois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a5425c0b-233e-443e-a90e-1107459a225d/manifest,https://iiif.princeton.edu/loris/figgy_prod/fe%2Fed%2Fcc%2Ffeedcca8aab1457886de3a151d43553b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-19,1934-01-25,https://shakespeareandco.princeton.edu/members/dherbais-de-thun/,Marie-Valerie d'Herbais de Thun,"d'Herbais de Thun, Marie-Valerie",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/lowry-ultramarine/,Ultramarine,,"Lowry, Malcolm",1933,,Lending Library Card,"Sylvia Beach, Marie-Valerie Herbais de Thun Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/94cf6667-e6c3-451a-9da4-35a58d089850/manifest,https://iiif.princeton.edu/loris/figgy_prod/38%2Ff0%2F98%2F38f09874f57345f4bf007e23065cb827%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-19,1934-01-24,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/dane-bill-divorcement/,A Bill of Divorcement,,"Dane, Clemence",1921,,Lending Library Card,"Sylvia Beach, Aline Prot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/15a376bb-405b-4488-b789-1559abbe3fb2/manifest,https://iiif-cloud.princeton.edu/iiif/2/cd%2Fb9%2F8d%2Fcdb98d69d2914c9a86733742b9a595f2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-01-19,1934-02-20,https://shakespeareandco.princeton.edu/members/boscq-marie/,Marie Boscq / Bosq,"Boscq, Marie",,,,,,,,,Returned,32,,,https://shakespeareandco.princeton.edu/books/stephens-crock-gold/,The Crock of Gold,,"Stephens, James",1912,,Lending Library Card,"Sylvia Beach, Marie Boscq Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/11480fae-3477-40c8-be7d-484c91023da7/manifest,https://iiif.princeton.edu/loris/figgy_prod/cd%2F75%2F98%2Fcd75980d3c3e4cb3ac5163e331e790db%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-20,1934-01-22,https://shakespeareandco.princeton.edu/members/claudius/,Agnes Claudius,"Claudius, Agnes",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/linklater-magnus-merriman-novel/,Magnus Merriman: A Novel,,"Linklater, Eric",1934,,Lending Library Card,"Sylvia Beach, Agnes Claudius Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18a9262d-8ea3-4d0c-9b36-8a1c638950fa/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2Fbb%2Fbd%2F23bbbd657cc64aeaa1cf1b3dc4210522%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1934-01-20,1934-04-20,https://shakespeareandco.princeton.edu/members/dolan-rose/,Rose Dolan,"Dolan, Rose",100.00,,3 months,90,2,,1934-01-20,,,,,FRF,,,,,,,Lending Library Card;Address Book,"Sylvia Beach, Rose Dolan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/75a4bdd5-1aba-416f-b7ff-61a4a0163248/manifest;,https://iiif.princeton.edu/loris/figgy_prod/ce%2Fad%2F78%2Fcead7811f3be49e2b5daa8801b17f0c6%2Fintermediate_file.jp2/full/full/0/default.jpg;
+Borrow,1934-01-20,1934-01-27,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/wilson-axels-castle-study/,Axel's Castle: A Study in the Imaginative Literature of 1870 β 1930,,"Wilson, Edmund",1931,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/58%2F45%2F77%2F58457700c8f84cf7be6a477c1713a40b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-01-20,1934-01-24,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/new-masses/,New Masses,,,,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/58%2F45%2F77%2F58457700c8f84cf7be6a477c1713a40b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-01-20,1934-01-31,https://shakespeareandco.princeton.edu/members/dolan-rose/,Rose Dolan,"Dolan, Rose",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/dos-passos-42nd-parallel/,The 42nd Parallel,,"Dos Passos, John",1930,,Lending Library Card,"Sylvia Beach, Rose Dolan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/75a4bdd5-1aba-416f-b7ff-61a4a0163248/manifest,https://iiif.princeton.edu/loris/figgy_prod/ce%2Fad%2F78%2Fcead7811f3be49e2b5daa8801b17f0c6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-20,1934-01-31,https://shakespeareandco.princeton.edu/members/dolan-rose/,Rose Dolan,"Dolan, Rose",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/faulkner-sanctuary/,Sanctuary,,"Faulkner, William",1931,"Caresse Crosby sold a copy of the Black Sun Press edition of *Sanctuary* to Shakespeare and Company on Feb. 17, 1932.",Lending Library Card,"Sylvia Beach, Rose Dolan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/75a4bdd5-1aba-416f-b7ff-61a4a0163248/manifest,https://iiif.princeton.edu/loris/figgy_prod/ce%2Fad%2F78%2Fcead7811f3be49e2b5daa8801b17f0c6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1934-01-21,1934-04-21,https://shakespeareandco.princeton.edu/members/clairin-theresa/,Theresa (Shiff) Clairin,"Clairin, Theresa",50.00,,3 months,90,2,,1934-01-22,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Theresa (Shiff) Clairin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/46a8350f-5226-4051-aa61-69eae1bf0e52/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Fe3%2F1c%2Fcce31c0673dd42298e6f80b831ad8557%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-21,1934-02-04,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/famous-plays-1932/,Famous Plays of 1932,,"Mackenzie, Ronald;Van Druten, John;Rice, Elmer;Bax, Clifford;Hart, Moss;Kaufman, George S.",1932,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/30%2F13%2F8a%2F30138a0365434ba8855aaeac38b08618%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-01-21,1934-01-28,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/maugham-narrow-corner/,The Narrow Corner,,"Maugham, W. Somerset",1932,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/30%2F13%2F8a%2F30138a0365434ba8855aaeac38b08618%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-01-22,1934-01-23,https://shakespeareandco.princeton.edu/members/wibbelz-henry/,Henry W. Wibbelz,"Wibbelz, Henry W.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/douglas-autobiography-lord-alfred/,The Autobiography of Lord Alfred Douglas,,"Douglas, Alfred",1929,,Lending Library Card,"Sylvia Beach, Henry W. Wibbelz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/225d5fc4-c83d-46e5-b861-ad36ae4548b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/fd%2F3b%2F61%2Ffd3b61e39369435c9938f281cc02292f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-22,1934-02-09,https://shakespeareandco.princeton.edu/members/plummer-dorothy/,Dorothy Plummer,"Plummer, Dorothy",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/strachey-elizabeth-essex-tragic/,Elizabeth and Essex: A Tragic History,,"Strachey, Giles Lytton",1928,,Lending Library Card,"Sylvia Beach, Dorothy Plummer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5f53ce0-8ea6-4d1f-b36b-f6e5321bab4c/manifest,https://iiif.princeton.edu/loris/figgy_prod/73%2F61%2F28%2F7361283a6eb946cbbb43d97ca38f1deb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1934-01-22,1934-02-22,https://shakespeareandco.princeton.edu/members/wibbelz-henry/,Henry W. Wibbelz,"Wibbelz, Henry W.",20.00,90.00,1 month,31,2,,1934-01-22,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Henry W. Wibbelz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/225d5fc4-c83d-46e5-b861-ad36ae4548b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/fd%2F3b%2F61%2Ffd3b61e39369435c9938f281cc02292f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-22,1934-01-25,https://shakespeareandco.princeton.edu/members/wibbelz-henry/,Henry W. Wibbelz,"Wibbelz, Henry W.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/luhan-lorenzo-taos/,Lorenzo in Taos,,"Luhan, Mabel Dodge",1932,,Lending Library Card,"Sylvia Beach, Henry W. Wibbelz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/225d5fc4-c83d-46e5-b861-ad36ae4548b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/fd%2F3b%2F61%2Ffd3b61e39369435c9938f281cc02292f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-22,1934-01-27,https://shakespeareandco.princeton.edu/members/clairin-theresa/,Theresa (Shiff) Clairin,"Clairin, Theresa",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/delafield-diary-provincial-lady/,Diary of a Provincial Lady,,"Delafield, E. M.",1930,,Lending Library Card,"Sylvia Beach, Theresa (Shiff) Clairin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/46a8350f-5226-4051-aa61-69eae1bf0e52/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Fe3%2F1c%2Fcce31c0673dd42298e6f80b831ad8557%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-22,1934-01-25,https://shakespeareandco.princeton.edu/members/paul-dubois/,Louis Paul-Dubois,"Paul-Dubois, Louis",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/a-e-song-fountains/,Song and Its Fountains,,Γ,1932,,Lending Library Card,"Sylvia Beach, Louis Paul-Dubois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a5425c0b-233e-443e-a90e-1107459a225d/manifest,https://iiif.princeton.edu/loris/figgy_prod/fe%2Fed%2Fcc%2Ffeedcca8aab1457886de3a151d43553b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-22,1934-01-25,https://shakespeareandco.princeton.edu/members/paul-dubois/,Louis Paul-Dubois,"Paul-Dubois, Louis",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/clarke-cattledrive-connaught-poems/,The Cattledrive in Connaught and Other Poems,,"Clarke, Austin",1925,,Lending Library Card,"Sylvia Beach, Louis Paul-Dubois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a5425c0b-233e-443e-a90e-1107459a225d/manifest,https://iiif.princeton.edu/loris/figgy_prod/fe%2Fed%2Fcc%2Ffeedcca8aab1457886de3a151d43553b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-22,1934-01-30,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/beals-crime-cuba/,The Crime of Cuba,,"Beals, Carleton",1933,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/b3%2F88%2F85%2Fb38885c606214804a0b750495aa0797c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-22,,https://shakespeareandco.princeton.edu/members/massey/,Adelaide W. Massey / A. W. Massey,"Massey, Adelaide W.",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/golding-james-joyce/,James Joyce,,"Golding, Louis",1933,,Lending Library Card,"Sylvia Beach, A. W. Massey Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c4712c46-76f3-4581-99d6-d0ffd31b4138/manifest,https://iiif-cloud.princeton.edu/iiif/2/4d%2F7d%2F00%2F4d7d0059b632436eaaffd762b26f5ce3%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-01-22,1934-01-23,https://shakespeareandco.princeton.edu/members/claudius/,Agnes Claudius,"Claudius, Agnes",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/footsteps-youth/,Footsteps to Youth,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Agnes Claudius Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18a9262d-8ea3-4d0c-9b36-8a1c638950fa/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2Fbb%2Fbd%2F23bbbd657cc64aeaa1cf1b3dc4210522%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-22,1934-01-25,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/dell-love-without-money/,Love without Money,,"Dell, Floyd",1931,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/57%2Fd7%2Fed%2F57d7edebf111435d8d29597c65433a0a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-22,1934-01-25,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/fletcher-murder-wrides-park/,The Murder at Wrides Park,,"Fletcher, Joseph Smith",1931,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/57%2Fd7%2Fed%2F57d7edebf111435d8d29597c65433a0a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-22,1934-01-27,https://shakespeareandco.princeton.edu/members/clairin-theresa/,Theresa (Shiff) Clairin,"Clairin, Theresa",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/heyward-mambas-daughters/,Mamba's Daughters,,"Heyward, DuBose",1928,,Lending Library Card,"Sylvia Beach, Theresa (Shiff) Clairin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/46a8350f-5226-4051-aa61-69eae1bf0e52/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Fe3%2F1c%2Fcce31c0673dd42298e6f80b831ad8557%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-23,1934-02-01,https://shakespeareandco.princeton.edu/members/wibbelz-henry/,Henry W. Wibbelz,"Wibbelz, Henry W.",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/butler-erewhon/,Erewhon,,"Butler, Samuel",1872,,Lending Library Card,"Sylvia Beach, Henry W. Wibbelz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/225d5fc4-c83d-46e5-b861-ad36ae4548b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/fd%2F3b%2F61%2Ffd3b61e39369435c9938f281cc02292f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-23,1934-01-30,https://shakespeareandco.princeton.edu/members/caillois/;https://shakespeareandco.princeton.edu/members/petitjean/,Roger Caillois;Armand Petitjean,"Caillois, Roger;Petitjean, Armand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/hopkins-poems-gerard-manley/,Poems of Gerard Manley Hopkins,,"Hopkins, Gerard Manley",1918,,Lending Library Card,"Sylvia Beach, Roger Caillois/ Armand Petitjean Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/58386f27-2a95-4138-a30e-4dde3aeb0aaa/manifest,https://iiif-cloud.princeton.edu/iiif/2/4f%2F8a%2Fc9%2F4f8ac94272334e4ea75c06b1a68ac749%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-01-23,1934-01-30,https://shakespeareandco.princeton.edu/members/dillon/,George Dillon,"Dillon, George",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/monro-recent-poetry-1923/,Recent Poetry 1923 β 1933,,,1933,,Lending Library Card,"Sylvia Beach, George Dillon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5e438ba5-07c0-492f-b5f5-b1755e934b4e/manifest,https://iiif.princeton.edu/loris/figgy_prod/1a%2F27%2F7a%2F1a277a85874341078252c5adc35380a1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-23,1934-01-30,https://shakespeareandco.princeton.edu/members/shelley-dorothy/,Dorothy Shelley,"Shelley, Dorothy",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/huxley-point-counter-point/,Point Counter Point,,"Huxley, Aldous",1928,,Lending Library Card,"Sylvia Beach, Dorothy Shelley Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dcc58669-efb6-4ace-ab31-a1cb913f3692/manifest,https://iiif.princeton.edu/loris/figgy_prod/6e%2F92%2F2e%2F6e922e058b7c4a56ac1215de11398cdd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-23,1934-01-25,https://shakespeareandco.princeton.edu/members/claudius/,Agnes Claudius,"Claudius, Agnes",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/lawrence-etruscan-places/,Etruscan Places,,"Lawrence, D. H.",1932,,Lending Library Card,"Sylvia Beach, Agnes Claudius Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18a9262d-8ea3-4d0c-9b36-8a1c638950fa/manifest,https://iiif.princeton.edu/loris/figgy_prod/23%2Fbb%2Fbd%2F23bbbd657cc64aeaa1cf1b3dc4210522%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1934-01-23,1934-02-23,https://shakespeareandco.princeton.edu/members/johnstone/,Johnstone,Johnstone,12.00,30.00,1 month,31,1,,1934-01-23,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1934-01-23,1934-02-26,https://shakespeareandco.princeton.edu/members/la-gorce-agnes-de/,Agnès de La Gorce,"La Gorce, Agnès de",,,,,,,,,Returned,34,,,https://shakespeareandco.princeton.edu/books/john-wesley/,John Wesley,,,,Unidentified. By or about John Wesley.,Lending Library Card,"Sylvia Beach, Agnes de la Gorce Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3f97cbf7-ada1-4d92-ba6f-1e0feca12b77/manifest,https://iiif.princeton.edu/loris/figgy_prod/a7%2F18%2Ff1%2Fa718f14c610440d29c07086aed9baea2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1934-01-23,1934-02-23,https://shakespeareandco.princeton.edu/members/la-gorce-agnes-de/,Agnès de La Gorce,"La Gorce, Agnès de",12.00,30.00,1 month,31,1,,1934-01-23,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Agnes de la Gorce Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3f97cbf7-ada1-4d92-ba6f-1e0feca12b77/manifest,https://iiif.princeton.edu/loris/figgy_prod/a7%2F18%2Ff1%2Fa718f14c610440d29c07086aed9baea2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-23,1934-01-31,https://shakespeareandco.princeton.edu/members/guillemin-annie/,Annie Guillemin,"Guillemin, Annie",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/galsworthy-maid-waiting/,Maid in Waiting (End of Chapter),,"Galsworthy, John",1931,,Lending Library Card,"Sylvia Beach, Annie Guillemin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2d6019d9-34ed-4ca4-97a9-5fd05d8640a7/manifest,https://iiif.princeton.edu/loris/figgy_prod/8c%2Fbb%2Fe1%2F8cbbe1dd84b1489fa79f3b0b7d7b6e3f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-23,1934-01-30,https://shakespeareandco.princeton.edu/members/maspero-clerc/;https://shakespeareandco.princeton.edu/members/maspero-henri/,Hélène Maspero-Clerc;Henri Maspero,"Maspero-Clerc, Hélène;Maspero, Henri",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/richardson-pointed-roofs/,Pointed Roofs (Pilgrimage 1),,"Richardson, Dorothy M.",1915,,Lending Library Card,"Sylvia Beach, Maspero Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/92dca37a-f412-4b18-90a3-d236d2b3fe20/manifest,https://iiif-cloud.princeton.edu/iiif/2/ea%2F4c%2F4a%2Fea4c4a2dc06f44aaa9c52db92681a7bb%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-01-24,1934-02-10,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/hardy-return-native/,The Return of the Native,Vol. 1,"Hardy, Thomas",1878,,Lending Library Card,"Sylvia Beach, Aline Prot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/15a376bb-405b-4488-b789-1559abbe3fb2/manifest,https://iiif-cloud.princeton.edu/iiif/2/cd%2Fb9%2F8d%2Fcdb98d69d2914c9a86733742b9a595f2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-01-24,1934-02-16,https://shakespeareandco.princeton.edu/members/laporte/,Madeleine Laporte,"Laporte, Madeleine",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/hammerton-george-meredith-life/,George Meredith: His Life and Art in Anecdote and Criticism,,"Hammerton, John Alexander",1909,,Lending Library Card,"Sylvia Beach, Madeleine Laporte Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/94901174-ece6-4f4f-8f56-7c5154efb578/manifest,https://iiif.princeton.edu/loris/figgy_prod/43%2F64%2F29%2F4364295feed0416c9ba5417c5b15481f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-24,1934-02-10,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/rickword-scrutinies-various-writers/,Scrutinies by Various Writers,,,1928,,Lending Library Card,"Sylvia Beach, Aline Prot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/15a376bb-405b-4488-b789-1559abbe3fb2/manifest,https://iiif-cloud.princeton.edu/iiif/2/cd%2Fb9%2F8d%2Fcdb98d69d2914c9a86733742b9a595f2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-01-24,1934-02-07,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/macleish-conquistador/,Conquistador,,"MacLeish, Archibald",1933,,Lending Library Card,"Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F0d%2F24%2F560d24c0dfa94677ae04cf2db490c371%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1934-01-24,1934-01-24,https://shakespeareandco.princeton.edu/members/roditi-georges/,Georges Roditi,"Roditi, Georges",,,,,,,,,,,13.75,FRF,https://shakespeareandco.princeton.edu/books/carlyle-hitler-adamson/,"Carlyle & Hitler: The Adamson Lecture in the University of Manchester, December 1930",,"Grierson, H. J. C.",1933,,Lending Library Card,"Sylvia Beach, Georges Roditi Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/40f31028-742e-4808-bd49-8ba2c8a43e89/manifest,https://iiif.princeton.edu/loris/figgy_prod/9e%2F1c%2F7f%2F9e1c7fbd264b44a49385b479c38bbf44%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-25,1934-01-29,https://shakespeareandco.princeton.edu/members/wibbelz-henry/,Henry W. Wibbelz,"Wibbelz, Henry W.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/lawrence-women-love/,Women in Love,,"Lawrence, D. H.",1920,,Lending Library Card,"Sylvia Beach, Henry W. Wibbelz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/225d5fc4-c83d-46e5-b861-ad36ae4548b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/fd%2F3b%2F61%2Ffd3b61e39369435c9938f281cc02292f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1934-01-25,1934-04-25,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",,50.00,3 months,90,2,,1934-01-25,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Aline Prot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/15a376bb-405b-4488-b789-1559abbe3fb2/manifest,https://iiif-cloud.princeton.edu/iiif/2/cd%2Fb9%2F8d%2Fcdb98d69d2914c9a86733742b9a595f2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-01-25,1934-02-01,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/strachey-characters-commentaries/,Characters and Commentaries,,"Strachey, Giles Lytton",1933,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e3%2Fa3%2F2f%2Fe3a32f3f58b84d669bc3710140acb7d5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-25,1934-02-07,https://shakespeareandco.princeton.edu/members/dherbais-de-thun/,Marie-Valerie d'Herbais de Thun,"d'Herbais de Thun, Marie-Valerie",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/twain-adventures-huckleberry-finn/,The Adventures of Huckleberry Finn,,"Twain, Mark",1884,,Lending Library Card,"Sylvia Beach, Marie-Valerie Herbais de Thun Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/94cf6667-e6c3-451a-9da4-35a58d089850/manifest,https://iiif.princeton.edu/loris/figgy_prod/38%2Ff0%2F98%2F38f09874f57345f4bf007e23065cb827%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-25,1934-01-27,https://shakespeareandco.princeton.edu/members/paul-dubois/,Louis Paul-Dubois,"Paul-Dubois, Louis",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/stephens-etched-moonlight/,Etched in Moonlight,,"Stephens, James",1928,,Lending Library Card,"Sylvia Beach, Louis Paul-Dubois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a5425c0b-233e-443e-a90e-1107459a225d/manifest,https://iiif.princeton.edu/loris/figgy_prod/fe%2Fed%2Fcc%2Ffeedcca8aab1457886de3a151d43553b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-25,1934-02-01,https://shakespeareandco.princeton.edu/members/burt-maud/,Maud Burt,"Burt, Maud",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/beith-second-spring/,No Second Spring,,"Beith, Janet",1933,,Lending Library Card,"Sylvia Beach, Maud Burt Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/84402ab0-3135-4059-bd55-010e23394445/manifest,https://iiif.princeton.edu/loris/figgy_prod/47%2F98%2F43%2F4798436b9f2b475e8d6f91a988ffe2ad%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-25,1934-01-30,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/cather-shadows-rock/,Shadows on the Rock,,"Cather, Willa",1931,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/57%2Fd7%2Fed%2F57d7edebf111435d8d29597c65433a0a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-25,1934-01-29,https://shakespeareandco.princeton.edu/members/claudius/,Agnes Claudius,"Claudius, Agnes",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/lawrence-mornings-mexico/,Mornings in Mexico,,"Lawrence, D. H.",1927,,Lending Library Card,"Sylvia Beach, Agnes Claudius Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18a9262d-8ea3-4d0c-9b36-8a1c638950fa/manifest,https://iiif.princeton.edu/loris/figgy_prod/3f%2F38%2F05%2F3f3805f16e1646c8a58bbad3bbc86c95%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-25,1934-01-27,https://shakespeareandco.princeton.edu/members/paul-dubois/,Louis Paul-Dubois,"Paul-Dubois, Louis",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/gregory-three-last-plays/,Three Last Plays,,"Gregory, Lady",1928,,Lending Library Card,"Sylvia Beach, Louis Paul-Dubois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a5425c0b-233e-443e-a90e-1107459a225d/manifest,https://iiif.princeton.edu/loris/figgy_prod/fe%2Fed%2Fcc%2Ffeedcca8aab1457886de3a151d43553b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-25,1934-02-04,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/phillpotts-tryphena/,Tryphena,,"Phillpotts, Eden",1929,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/57%2Fd7%2Fed%2F57d7edebf111435d8d29597c65433a0a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-26,1934-03-09,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,42,,,https://shakespeareandco.princeton.edu/books/jung-psychology-unconscious/,The Psychology of the Unconscious,,"Jung, Carl Gustav",1916,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/c3%2Fcf%2Fcb%2Fc3cfcbac695b438cb411cef7054fed8e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-27,1934-02-03,https://shakespeareandco.princeton.edu/members/paul-dubois/,Louis Paul-Dubois,"Paul-Dubois, Louis",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/boyd-irelands-literary-renaissance/,Ireland's Literary Renaissance,,"Boyd, Ernest Augustus",1916,,Lending Library Card,"Sylvia Beach, Louis Paul-Dubois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a5425c0b-233e-443e-a90e-1107459a225d/manifest,https://iiif.princeton.edu/loris/figgy_prod/fe%2Fed%2Fcc%2Ffeedcca8aab1457886de3a151d43553b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-27,1934-02-10,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/patmore-patmores-poems/,Coventry Patmore's Poems,,"Patmore, Coventry",,Ph. Pottier borrowed volume 1 of a multivolume edition.,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/58%2F45%2F77%2F58457700c8f84cf7be6a477c1713a40b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-01-27,1934-01-30,https://shakespeareandco.princeton.edu/members/clairin-theresa/,Theresa (Shiff) Clairin,"Clairin, Theresa",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/maugham-cakes-ale-skeleton/,"Cakes and Ale, or, the Skeleton in the Cupboard",,"Maugham, W. Somerset",1930,,Lending Library Card,"Sylvia Beach, Theresa (Shiff) Clairin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/46a8350f-5226-4051-aa61-69eae1bf0e52/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Fe3%2F1c%2Fcce31c0673dd42298e6f80b831ad8557%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-27,1934-02-03,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/woolf-flush-biography/,Flush: A Biography,,"Woolf, Virginia",1933,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/58%2F45%2F77%2F58457700c8f84cf7be6a477c1713a40b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-01-27,1934-01-30,https://shakespeareandco.princeton.edu/members/clairin-theresa/,Theresa (Shiff) Clairin,"Clairin, Theresa",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/heyward-porgy/,Porgy,,"Heyward, DuBose",1925,,Lending Library Card,"Sylvia Beach, Theresa (Shiff) Clairin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/46a8350f-5226-4051-aa61-69eae1bf0e52/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Fe3%2F1c%2Fcce31c0673dd42298e6f80b831ad8557%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-27,1934-02-03,https://shakespeareandco.princeton.edu/members/paul-dubois/,Louis Paul-Dubois,"Paul-Dubois, Louis",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/walters-irish-poets-day/,Irish Poets of To-day: An Anthology,,,1921,,Lending Library Card,"Sylvia Beach, Louis Paul-Dubois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a5425c0b-233e-443e-a90e-1107459a225d/manifest,https://iiif.princeton.edu/loris/figgy_prod/fe%2Fed%2Fcc%2Ffeedcca8aab1457886de3a151d43553b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1934-01-28,1934-04-28,https://shakespeareandco.princeton.edu/members/lescure/,Lescure,Lescure,30.00,,3 months,90,1,,1934-01-19,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1934-01-28,1934-02-11,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/nicolson-public-faces/,Public Faces,,"Nicolson, Harold George",1933,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/30%2F13%2F8a%2F30138a0365434ba8855aaeac38b08618%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-01-29,1934-02-08,https://shakespeareandco.princeton.edu/members/meyer-florence/,Florence Meyer,"Meyer, Florence",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/rosenfeld-musical-portraits/,Musical Portraits: Interpretations of Twenty Modern Composers,,"Rosenfeld, Paul",1920,,Lending Library Card,"Sylvia Beach, Florence Meyer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd3b6930-a7f4-40e5-88ad-1a27c20d35f1/manifest,https://iiif.princeton.edu/loris/figgy_prod/ce%2F38%2Fc0%2Fce38c07006f54cd5b453f4e61d7f497a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1934-01-29,1934-01-29,https://shakespeareandco.princeton.edu/members/thorsch-2/,Thorsch,Thorsch,,,,,,,,30.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1934-01-29,1934-01-31,https://shakespeareandco.princeton.edu/members/bonnerot-louis/,Louis Bonnerot,"Bonnerot, Louis",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/kirstein-hound-horn/,Hound & Horn,"Vol. 7, no. 2, Jan β Mar 1934",,,,Lending Library Card,"Sylvia Beach, Louis Bonnerot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c14cc736-079c-4403-9036-a2de4743414a/manifest,https://iiif.princeton.edu/loris/figgy_prod/02%2F5a%2F24%2F025a24f998344e51813e60cf8062c163%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-29,1934-02-03,https://shakespeareandco.princeton.edu/members/wibbelz-henry/,Henry W. Wibbelz,"Wibbelz, Henry W.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/selected-essays/,Selected Essays,,,,"Unidentified. Likely T. S. Eliot's [*Selected Essays, 1917β1932*](https://shakespeareandco.princeton.edu/books/eliot-selected-essays-1917/) (1932).",Lending Library Card,"Sylvia Beach, Henry W. Wibbelz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/225d5fc4-c83d-46e5-b861-ad36ae4548b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/fd%2F3b%2F61%2Ffd3b61e39369435c9938f281cc02292f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1934-01-29,1934-04-29,https://shakespeareandco.princeton.edu/members/kandelafte/,Kandelafte,Kandelafte,30.00,30.00,3 months,90,1,,1934-01-29,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1934-01-29,1934-02-13,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/buck-good-earth/,The Good Earth,,"Buck, Pearl S.",1931,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/1b%2F11%2F64%2F1b116462342c42428515d6fd5451f322%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-29,1934-02-08,https://shakespeareandco.princeton.edu/members/meyer-florence/,Florence Meyer,"Meyer, Florence",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/rosenfeld-musical-chronicle-1917/,Musical Chronicle 1917 β 1923,,"Rosenfeld, Paul",1923,,Lending Library Card,"Sylvia Beach, Florence Meyer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd3b6930-a7f4-40e5-88ad-1a27c20d35f1/manifest,https://iiif.princeton.edu/loris/figgy_prod/ce%2F38%2Fc0%2Fce38c07006f54cd5b453f4e61d7f497a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-30,1934-02-08,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/nicolson-swinburne/,Swinburne,,"Nicolson, Harold George",1926,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/58%2F45%2F77%2F58457700c8f84cf7be6a477c1713a40b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-01-30,1934-02-01,https://shakespeareandco.princeton.edu/members/clairin-theresa/,Theresa (Shiff) Clairin,"Clairin, Theresa",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/lawrence-twilight-italy/,Twilight in Italy,,"Lawrence, D. H.",1916,,Lending Library Card,"Sylvia Beach, Theresa (Shiff) Clairin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/46a8350f-5226-4051-aa61-69eae1bf0e52/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Fe3%2F1c%2Fcce31c0673dd42298e6f80b831ad8557%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-30,1934-02-01,https://shakespeareandco.princeton.edu/members/clairin-theresa/,Theresa (Shiff) Clairin,"Clairin, Theresa",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/lawrence-women-love/,Women in Love,,"Lawrence, D. H.",1920,,Lending Library Card,"Sylvia Beach, Theresa (Shiff) Clairin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/46a8350f-5226-4051-aa61-69eae1bf0e52/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Fe3%2F1c%2Fcce31c0673dd42298e6f80b831ad8557%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-30,1934-02-14,https://shakespeareandco.princeton.edu/members/maspero-clerc/;https://shakespeareandco.princeton.edu/members/maspero-henri/,Hélène Maspero-Clerc;Henri Maspero,"Maspero-Clerc, Hélène;Maspero, Henri",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/brittain-testament-youth/,Testament of Youth,,"Brittain, Vera",1933,,Lending Library Card,"Sylvia Beach, Maspero Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/92dca37a-f412-4b18-90a3-d236d2b3fe20/manifest,https://iiif-cloud.princeton.edu/iiif/2/ea%2F4c%2F4a%2Fea4c4a2dc06f44aaa9c52db92681a7bb%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-01-30,1934-02-07,https://shakespeareandco.princeton.edu/members/shelley-dorothy/,Dorothy Shelley,"Shelley, Dorothy",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/coyle-flock-birds/,A Flock of Birds,,"Coyle, Kathleen",1930,,Lending Library Card,"Sylvia Beach, Dorothy Shelley Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dcc58669-efb6-4ace-ab31-a1cb913f3692/manifest,https://iiif.princeton.edu/loris/figgy_prod/6e%2F92%2F2e%2F6e922e058b7c4a56ac1215de11398cdd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-30,1934-02-02,https://shakespeareandco.princeton.edu/members/caillois/;https://shakespeareandco.princeton.edu/members/petitjean/,Roger Caillois;Armand Petitjean,"Caillois, Roger;Petitjean, Armand",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/whitehead-symbolism-meaning-effect/,Symbolism: Its Meaning and Effect,,"Whitehead, Alfred North",1927,,Lending Library Card,"Sylvia Beach, Roger Caillois/ Armand Petitjean Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/58386f27-2a95-4138-a30e-4dde3aeb0aaa/manifest,https://iiif-cloud.princeton.edu/iiif/2/4f%2F8a%2Fc9%2F4f8ac94272334e4ea75c06b1a68ac749%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-01-30,1934-02-12,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/frankau-christopher-strong-romance/,Christopher Strong: A Romance,,"Frankau, Gilbert",1931,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/57%2Fd7%2Fed%2F57d7edebf111435d8d29597c65433a0a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-30,1934-02-06,https://shakespeareandco.princeton.edu/members/claudius/,Agnes Claudius,"Claudius, Agnes",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/whitehead-adventures-ideas/,Adventures of Ideas,,"Whitehead, Alfred North",1933,,Lending Library Card,"Sylvia Beach, Agnes Claudius Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18a9262d-8ea3-4d0c-9b36-8a1c638950fa/manifest,https://iiif.princeton.edu/loris/figgy_prod/3f%2F38%2F05%2F3f3805f16e1646c8a58bbad3bbc86c95%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-30,1934-03-13,https://shakespeareandco.princeton.edu/members/denis-graterolle/,Elisabeth Denis-Graterolle / Mme Maurice Denis,"Denis-Graterolle, Elisabeth",,,,,,,,,Returned,42,,,https://shakespeareandco.princeton.edu/books/lawrence-england-england-stories/,"England, My England and Other Stories",,"Lawrence, D. H.",1922,,Lending Library Card,"Sylvia Beach, Elisabeth Denis-Graterolle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/964dbe97-240c-4e59-a8ca-c43f25875149/manifest,https://iiif.princeton.edu/loris/figgy_prod/01%2F85%2F35%2F0185352ce4a645fb9698d1bbb7b51071%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1934-01-30,1934-02-28,https://shakespeareandco.princeton.edu/members/dillon/,George Dillon,"Dillon, George",12.00,,1 month,29,1,,1934-02-06,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, George Dillon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5e438ba5-07c0-492f-b5f5-b1755e934b4e/manifest,https://iiif.princeton.edu/loris/figgy_prod/1a%2F27%2F7a%2F1a277a85874341078252c5adc35380a1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-30,1934-02-02,https://shakespeareandco.princeton.edu/members/dillon/,George Dillon,"Dillon, George",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/van-dine-dragon-murder-case/,The Dragon Murder Case,,"Van Dine, S. S.",1933,,Lending Library Card,"Sylvia Beach, George Dillon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5e438ba5-07c0-492f-b5f5-b1755e934b4e/manifest,https://iiif.princeton.edu/loris/figgy_prod/1a%2F27%2F7a%2F1a277a85874341078252c5adc35380a1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1934-01-30,1934-01-30,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,,,10.75,FRF,https://shakespeareandco.princeton.edu/books/lawrence-ship-death/,The Ship of Death,,"Lawrence, D. H.",,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/e0%2Fe7%2Fab%2Fe0e7abbc278c479ea60884b471709177%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-30,1934-02-16,https://shakespeareandco.princeton.edu/members/shelley-dorothy/,Dorothy Shelley,"Shelley, Dorothy",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/lewis-ann-vickers/,Ann Vickers,,"Lewis, Sinclair",1933,,Lending Library Card,"Sylvia Beach, Dorothy Shelley Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dcc58669-efb6-4ace-ab31-a1cb913f3692/manifest,https://iiif.princeton.edu/loris/figgy_prod/6e%2F92%2F2e%2F6e922e058b7c4a56ac1215de11398cdd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-30,1934-03-13,https://shakespeareandco.princeton.edu/members/denis-graterolle/,Elisabeth Denis-Graterolle / Mme Maurice Denis,"Denis-Graterolle, Elisabeth",,,,,,,,,Returned,42,,,https://shakespeareandco.princeton.edu/books/hadow-chaucer-times/,Chaucer and His Times,,"Hadow, Grace Eleanor",1914,,Lending Library Card,"Sylvia Beach, Elisabeth Denis-Graterolle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/964dbe97-240c-4e59-a8ca-c43f25875149/manifest,https://iiif.princeton.edu/loris/figgy_prod/01%2F85%2F35%2F0185352ce4a645fb9698d1bbb7b51071%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-31,1934-02-03,https://shakespeareandco.princeton.edu/members/bonnerot-louis/,Louis Bonnerot,"Bonnerot, Louis",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/tate-poems/,Poems,,"Tate, Allen",1932,,Lending Library Card,"Sylvia Beach, Louis Bonnerot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c14cc736-079c-4403-9036-a2de4743414a/manifest,https://iiif.princeton.edu/loris/figgy_prod/02%2F5a%2F24%2F025a24f998344e51813e60cf8062c163%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-31,1934-02,https://shakespeareandco.princeton.edu/members/dolan-rose/,Rose Dolan,"Dolan, Rose",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/mansfield-something-childish-stories/,Something Childish and Other Stories,,"Mansfield, Katherine",1924,,Lending Library Card,"Sylvia Beach, Rose Dolan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/75a4bdd5-1aba-416f-b7ff-61a4a0163248/manifest,https://iiif.princeton.edu/loris/figgy_prod/ce%2Fad%2F78%2Fcead7811f3be49e2b5daa8801b17f0c6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-31,1934-03-03,https://shakespeareandco.princeton.edu/members/guillemin-annie/,Annie Guillemin,"Guillemin, Annie",,,,,,,,,Returned,31,,,https://shakespeareandco.princeton.edu/books/galsworthy-flowering-wilderness/,Flowering Wilderness (End of Chapter),,"Galsworthy, John",1932,,Lending Library Card,"Sylvia Beach, Annie Guillemin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2d6019d9-34ed-4ca4-97a9-5fd05d8640a7/manifest,https://iiif.princeton.edu/loris/figgy_prod/8c%2Fbb%2Fe1%2F8cbbe1dd84b1489fa79f3b0b7d7b6e3f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-31,1934-02,https://shakespeareandco.princeton.edu/members/dolan-rose/,Rose Dolan,"Dolan, Rose",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/wilder-cabala/,The Cabala,,"Wilder, Thornton",1926,,Lending Library Card,"Sylvia Beach, Rose Dolan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/75a4bdd5-1aba-416f-b7ff-61a4a0163248/manifest,https://iiif.princeton.edu/loris/figgy_prod/ce%2Fad%2F78%2Fcead7811f3be49e2b5daa8801b17f0c6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-01-31,1934-03-03,https://shakespeareandco.princeton.edu/members/guillemin-annie/,Annie Guillemin,"Guillemin, Annie",,,,,,,,,Returned,31,,,https://shakespeareandco.princeton.edu/books/lewis-ann-vickers/,Ann Vickers,,"Lewis, Sinclair",1933,,Lending Library Card,"Sylvia Beach, Annie Guillemin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2d6019d9-34ed-4ca4-97a9-5fd05d8640a7/manifest,https://iiif.princeton.edu/loris/figgy_prod/8c%2Fbb%2Fe1%2F8cbbe1dd84b1489fa79f3b0b7d7b6e3f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-01,1934-02-08,https://shakespeareandco.princeton.edu/members/burt-maud/,Maud Burt,"Burt, Maud",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/maugham-ah-king/,Ah King,,"Maugham, W. Somerset",1933,,Lending Library Card,"Sylvia Beach, Maud Burt Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/84402ab0-3135-4059-bd55-010e23394445/manifest,https://iiif.princeton.edu/loris/figgy_prod/47%2F98%2F43%2F4798436b9f2b475e8d6f91a988ffe2ad%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-01,1934-02-08,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/obrien-best-short-stories-1933-2/,The Best Short Stories of 1933,,,1933,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e3%2Fa3%2F2f%2Fe3a32f3f58b84d669bc3710140acb7d5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-01,1934-02-05,https://shakespeareandco.princeton.edu/members/wibbelz-henry/,Henry W. Wibbelz,"Wibbelz, Henry W.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/joyce-fragments-work-progress/,Fragments from Work in Progress,,"Joyce, James",,"Unidentified editions. Early versions of Joyce's [*Finnegans Wake*](https://shakespeareandco.princeton.edu/books/joyce-finnegans-wake/) (1939). Likely [*Tales Told of Shem and Shaun: Three Fragments from Work in Progress*](http://www.riverrun.org.uk/jj/Tales.pdf) (1929), *Two Tales of Shem and Shaun: Fragments from Work in Progress* (1932), or a collection of offprints from [*transition*](https://shakespeareandco.princeton.edu/books/jolas-transition/). Sylvia Beach's personal library includes a [bound copy of offprints](https://catalog.princeton.edu/catalog/2943072). See also [*Work in Progress*](https://shakespeareandco.princeton.edu/books/joyce-work-progress/).",Lending Library Card,"Sylvia Beach, Henry W. Wibbelz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/225d5fc4-c83d-46e5-b861-ad36ae4548b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/fd%2F3b%2F61%2Ffd3b61e39369435c9938f281cc02292f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-01,1934-02-07,https://shakespeareandco.princeton.edu/members/clairin-theresa/,Theresa (Shiff) Clairin,"Clairin, Theresa",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/herbert-water-gipsies/,The Water Gipsies,,"Herbert, A. P.",1930,,Lending Library Card,"Sylvia Beach, Theresa (Shiff) Clairin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/46a8350f-5226-4051-aa61-69eae1bf0e52/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Fe3%2F1c%2Fcce31c0673dd42298e6f80b831ad8557%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-01,1934-02-02,https://shakespeareandco.princeton.edu/members/clairin-theresa/,Theresa (Shiff) Clairin,"Clairin, Theresa",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/wharton-glimpses-moon/,The Glimpses of the Moon,,"Wharton, Edith",1922,,Lending Library Card,"Sylvia Beach, Theresa (Shiff) Clairin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/46a8350f-5226-4051-aa61-69eae1bf0e52/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Fe3%2F1c%2Fcce31c0673dd42298e6f80b831ad8557%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-02,1934-02-07,https://shakespeareandco.princeton.edu/members/clairin-theresa/,Theresa (Shiff) Clairin,"Clairin, Theresa",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/maugham-narrow-corner/,The Narrow Corner,,"Maugham, W. Somerset",1932,,Lending Library Card,"Sylvia Beach, Theresa (Shiff) Clairin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/46a8350f-5226-4051-aa61-69eae1bf0e52/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Fe3%2F1c%2Fcce31c0673dd42298e6f80b831ad8557%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-02,1934-02-07,https://shakespeareandco.princeton.edu/members/clairin-theresa/,Theresa (Shiff) Clairin,"Clairin, Theresa",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/lamb-genghis-khan-emperor/,Genghis Khan: Emperor of All Men,,"Lamb, Harold",1927,,Lending Library Card,"Sylvia Beach, Theresa (Shiff) Clairin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/46a8350f-5226-4051-aa61-69eae1bf0e52/manifest,https://iiif.princeton.edu/loris/figgy_prod/cc%2Fe3%2F1c%2Fcce31c0673dd42298e6f80b831ad8557%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-02,1934-02-06,https://shakespeareandco.princeton.edu/members/dillon/,George Dillon,"Dillon, George",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/keats-letters-john-keats/,Letters of John Keats,Vol. 1,"Keats, John",,"George Dillon borrowed volumes 1 and 2, and Stephen D. Tuttle borrowed volume 1 of *The Letters of John Keats,* edited by Maurice Buxton Forman (1931).",Lending Library Card,"Sylvia Beach, George Dillon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5e438ba5-07c0-492f-b5f5-b1755e934b4e/manifest,https://iiif.princeton.edu/loris/figgy_prod/1a%2F27%2F7a%2F1a277a85874341078252c5adc35380a1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-03,1934-02-08,https://shakespeareandco.princeton.edu/members/paul-dubois/,Louis Paul-Dubois,"Paul-Dubois, Louis",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/adams-knife/,The Knife,,"Adams, Herbert",1934,,Lending Library Card,"Sylvia Beach, Louis Paul-Dubois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a5425c0b-233e-443e-a90e-1107459a225d/manifest,https://iiif.princeton.edu/loris/figgy_prod/fe%2Fed%2Fcc%2Ffeedcca8aab1457886de3a151d43553b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-03,1934-02-05,https://shakespeareandco.princeton.edu/members/wibbelz-henry/,Henry W. Wibbelz,"Wibbelz, Henry W.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/davis-opening-door-novel/,The Opening of a Door: A Novel,,"Davis, George",1931,,Lending Library Card,"Sylvia Beach, Henry W. Wibbelz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/225d5fc4-c83d-46e5-b861-ad36ae4548b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/fd%2F3b%2F61%2Ffd3b61e39369435c9938f281cc02292f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-03,1934-02-17,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/famous-plays-1933/,Famous Plays of 1933,,"Daviot, Gordon;Williams, Emlyn;Armstrong, Anthony;Chetham-Strode, Warren;Howard, Sidney Coe;Kaufman, George S.;Ryskind, Morrie",1933,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/58%2F45%2F77%2F58457700c8f84cf7be6a477c1713a40b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-02-03,1934-02-08,https://shakespeareandco.princeton.edu/members/paul-dubois/,Louis Paul-Dubois,"Paul-Dubois, Louis",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/byrne-hangmans-house/,Hangman's House,,"Byrne, Donn",1926,,Lending Library Card,"Sylvia Beach, Louis Paul-Dubois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a5425c0b-233e-443e-a90e-1107459a225d/manifest,https://iiif.princeton.edu/loris/figgy_prod/fe%2Fed%2Fcc%2Ffeedcca8aab1457886de3a151d43553b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-04,,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/lawrence-lost-girl/,The Lost Girl,,"Lawrence, D. H.",1920,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/57%2Fd7%2Fed%2F57d7edebf111435d8d29597c65433a0a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-04,1934-02-11,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/wells-bulpington-blup/,The Bulpington of Blup,,"Wells, H. G.",1932,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/30%2F13%2F8a%2F30138a0365434ba8855aaeac38b08618%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-02-05,1934-02-27,https://shakespeareandco.princeton.edu/members/wibbelz-henry/,Henry W. Wibbelz,"Wibbelz, Henry W.",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/eastman-literary-mind-place/,The Literary Mind: Its Place in an Age of Science,,"Eastman, Max",1931,,Lending Library Card,"Sylvia Beach, Henry W. Wibbelz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/225d5fc4-c83d-46e5-b861-ad36ae4548b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/fd%2F3b%2F61%2Ffd3b61e39369435c9938f281cc02292f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-05,1934-02-22,https://shakespeareandco.princeton.edu/members/foret/,Mme de la Foret,"de la Foret, Mme",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/bronte-wuthering-heights/,Wuthering Heights,,"BrontΓ«, Emily",1847,,Lending Library Card,"Sylvia Beach, Madame de la Foret Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6fc4cfdc-78bc-4f2f-9b2a-3d0e51291d39/manifest,https://iiif.princeton.edu/loris/figgy_prod/9f%2Fbd%2Fc2%2F9fbdc20ad87d4ab394db6ce1b8a8309c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-05,1934-02-06,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/kirstein-hound-horn/,Hound & Horn,,,,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/c3%2Fcf%2Fcb%2Fc3cfcbac695b438cb411cef7054fed8e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-05,1934-02-13,https://shakespeareandco.princeton.edu/members/wibbelz-henry/,Henry W. Wibbelz,"Wibbelz, Henry W.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/dostoyevsky-idiot/,The Idiot,,"Dostoyevsky, Fyodor",1874,,Lending Library Card,"Sylvia Beach, Henry W. Wibbelz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/225d5fc4-c83d-46e5-b861-ad36ae4548b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/fd%2F3b%2F61%2Ffd3b61e39369435c9938f281cc02292f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1934-02-06,1934-02-06,https://shakespeareandco.princeton.edu/members/massey/,Adelaide W. Massey / A. W. Massey,"Massey, Adelaide W.",,,,,,,,,,,30.00,FRF,https://shakespeareandco.princeton.edu/books/richardson-backwater-pilgrimage-2/,Backwater (Pilgrimage 2),,"Richardson, Dorothy M.",1916,,Lending Library Card,"Sylvia Beach, A. W. Massey Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c4712c46-76f3-4581-99d6-d0ffd31b4138/manifest,https://iiif-cloud.princeton.edu/iiif/2/d2%2F82%2F21%2Fd282213c30fe4d538a93a97b987fb0cf%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1934-02-06,1934-02-06,https://shakespeareandco.princeton.edu/members/massey/,Adelaide W. Massey / A. W. Massey,"Massey, Adelaide W.",,,,,,,,,,,30.00,FRF,https://shakespeareandco.princeton.edu/books/richardson-pointed-roofs/,Pointed Roofs (Pilgrimage 1),,"Richardson, Dorothy M.",1915,,Lending Library Card,"Sylvia Beach, A. W. Massey Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c4712c46-76f3-4581-99d6-d0ffd31b4138/manifest,https://iiif-cloud.princeton.edu/iiif/2/d2%2F82%2F21%2Fd282213c30fe4d538a93a97b987fb0cf%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-02-06,1934-02-14,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/evans-wentz-tibets-great-yogi/,"Tibet's Great YogΔ«, Milarepa",,,1928,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/c3%2Fcf%2Fcb%2Fc3cfcbac695b438cb411cef7054fed8e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-06,1934-02-09,https://shakespeareandco.princeton.edu/members/dillon/,George Dillon,"Dillon, George",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/keats-letters-john-keats/,Letters of John Keats,Vol. 2,"Keats, John",,"George Dillon borrowed volumes 1 and 2, and Stephen D. Tuttle borrowed volume 1 of *The Letters of John Keats,* edited by Maurice Buxton Forman (1931).",Lending Library Card,"Sylvia Beach, George Dillon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5e438ba5-07c0-492f-b5f5-b1755e934b4e/manifest,https://iiif.princeton.edu/loris/figgy_prod/1a%2F27%2F7a%2F1a277a85874341078252c5adc35380a1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1934-02-06,1934-02-06,https://shakespeareandco.princeton.edu/members/massey/,Adelaide W. Massey / A. W. Massey,"Massey, Adelaide W.",,,,,,,,,,,36.00,FRF,https://shakespeareandco.princeton.edu/books/richardson-dawns-left-hand/,Dawn's Left Hand (Pilgrimage 10),,"Richardson, Dorothy M.",1931,,Lending Library Card,"Sylvia Beach, A. W. Massey Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c4712c46-76f3-4581-99d6-d0ffd31b4138/manifest,https://iiif-cloud.princeton.edu/iiif/2/d2%2F82%2F21%2Fd282213c30fe4d538a93a97b987fb0cf%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1934-02-06,1934-02-06,https://shakespeareandco.princeton.edu/members/massey/,Adelaide W. Massey / A. W. Massey,"Massey, Adelaide W.",,,,,,,,,,,30.00,FRF,https://shakespeareandco.princeton.edu/books/richardson-oberland-pilgrimage-9/,Oberland (Pilgrimage 9),,"Richardson, Dorothy M.",1927,,Lending Library Card,"Sylvia Beach, A. W. Massey Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c4712c46-76f3-4581-99d6-d0ffd31b4138/manifest,https://iiif-cloud.princeton.edu/iiif/2/d2%2F82%2F21%2Fd282213c30fe4d538a93a97b987fb0cf%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1934-02-06,1934-02-06,https://shakespeareandco.princeton.edu/members/massey/,Adelaide W. Massey / A. W. Massey,"Massey, Adelaide W.",,,,,,,,,,,30.00,FRF,https://shakespeareandco.princeton.edu/books/richardson-trap-pilgrimage-8/,The Trap (Pilgrimage 8),,"Richardson, Dorothy M.",1925,,Lending Library Card,"Sylvia Beach, A. W. Massey Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c4712c46-76f3-4581-99d6-d0ffd31b4138/manifest,https://iiif-cloud.princeton.edu/iiif/2/d2%2F82%2F21%2Fd282213c30fe4d538a93a97b987fb0cf%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1934-02-06,1934-02-06,https://shakespeareandco.princeton.edu/members/massey/,Adelaide W. Massey / A. W. Massey,"Massey, Adelaide W.",,,,,,,,,,,30.00,FRF,https://shakespeareandco.princeton.edu/books/richardson-revolving-lights-pilgrimage/,Revolving Lights (Pilgrimage 7),,"Richardson, Dorothy M.",1923,,Lending Library Card,"Sylvia Beach, A. W. Massey Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c4712c46-76f3-4581-99d6-d0ffd31b4138/manifest,https://iiif-cloud.princeton.edu/iiif/2/d2%2F82%2F21%2Fd282213c30fe4d538a93a97b987fb0cf%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1934-02-06,1934-02-06,https://shakespeareandco.princeton.edu/members/massey/,Adelaide W. Massey / A. W. Massey,"Massey, Adelaide W.",,,,,,,,,,,30.00,FRF,https://shakespeareandco.princeton.edu/books/richardson-deadlock-pilgrimage-6/,Deadlock (Pilgrimage 6),,"Richardson, Dorothy M.",1921,,Lending Library Card,"Sylvia Beach, A. W. Massey Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c4712c46-76f3-4581-99d6-d0ffd31b4138/manifest,https://iiif-cloud.princeton.edu/iiif/2/d2%2F82%2F21%2Fd282213c30fe4d538a93a97b987fb0cf%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1934-02-06,1934-02-06,https://shakespeareandco.princeton.edu/members/massey/,Adelaide W. Massey / A. W. Massey,"Massey, Adelaide W.",,,,,,,,,,,30.00,FRF,https://shakespeareandco.princeton.edu/books/richardson-interim-pilgrimage-5/,Interim (Pilgrimage 5),,"Richardson, Dorothy M.",1920,,Lending Library Card,"Sylvia Beach, A. W. Massey Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c4712c46-76f3-4581-99d6-d0ffd31b4138/manifest,https://iiif-cloud.princeton.edu/iiif/2/d2%2F82%2F21%2Fd282213c30fe4d538a93a97b987fb0cf%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1934-02-06,1934-02-06,https://shakespeareandco.princeton.edu/members/massey/,Adelaide W. Massey / A. W. Massey,"Massey, Adelaide W.",,,,,,,,,,,30.00,FRF,https://shakespeareandco.princeton.edu/books/richardson-tunnel-pilgrimage-4/,The Tunnel (Pilgrimage 4),,"Richardson, Dorothy M.",1919,,Lending Library Card,"Sylvia Beach, A. W. Massey Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c4712c46-76f3-4581-99d6-d0ffd31b4138/manifest,https://iiif-cloud.princeton.edu/iiif/2/d2%2F82%2F21%2Fd282213c30fe4d538a93a97b987fb0cf%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1934-02-06,1934-02-06,https://shakespeareandco.princeton.edu/members/massey/,Adelaide W. Massey / A. W. Massey,"Massey, Adelaide W.",,,,,,,,,,,30.00,FRF,https://shakespeareandco.princeton.edu/books/richardson-honeycomb-pilgrimage-3/,Honeycomb (Pilgrimage 3),,"Richardson, Dorothy M.",1917,,Lending Library Card,"Sylvia Beach, A. W. Massey Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c4712c46-76f3-4581-99d6-d0ffd31b4138/manifest,https://iiif-cloud.princeton.edu/iiif/2/d2%2F82%2F21%2Fd282213c30fe4d538a93a97b987fb0cf%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-02-06,1934-02-22,https://shakespeareandco.princeton.edu/members/claudius/,Agnes Claudius,"Claudius, Agnes",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/collier-monkey-wife/,His Monkey Wife,,"Collier, John",1930,,Lending Library Card,"Sylvia Beach, Agnes Claudius Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18a9262d-8ea3-4d0c-9b36-8a1c638950fa/manifest,https://iiif.princeton.edu/loris/figgy_prod/3f%2F38%2F05%2F3f3805f16e1646c8a58bbad3bbc86c95%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1934-02-06,1934-02-06,https://shakespeareandco.princeton.edu/members/roditi-georges/,Georges Roditi,"Roditi, Georges",,,,,,,,,,,9.75,FRF,https://shakespeareandco.princeton.edu/books/blanco-white-nationalisation-banking/,The Nationalisation of Banking,,"Blanco White, Amber",1934,,Lending Library Card,"Sylvia Beach, Georges Roditi Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/40f31028-742e-4808-bd49-8ba2c8a43e89/manifest,https://iiif.princeton.edu/loris/figgy_prod/9e%2F1c%2F7f%2F9e1c7fbd264b44a49385b479c38bbf44%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-07,1934-03-15,https://shakespeareandco.princeton.edu/members/shelley-dorothy/,Dorothy Shelley,"Shelley, Dorothy",,,,,,,,,Returned,36,,,https://shakespeareandco.princeton.edu/books/hardy-mayor-casterbridge/,The Mayor of Casterbridge,,"Hardy, Thomas",1886,,Lending Library Card,"Sylvia Beach, Dorothy Shelley Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dcc58669-efb6-4ace-ab31-a1cb913f3692/manifest,https://iiif.princeton.edu/loris/figgy_prod/6e%2F92%2F2e%2F6e922e058b7c4a56ac1215de11398cdd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-07,1934-02-26,https://shakespeareandco.princeton.edu/members/dherbais-de-thun/,Marie-Valerie d'Herbais de Thun,"d'Herbais de Thun, Marie-Valerie",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/joyce-portrait-artist-young/,A Portrait of the Artist as a Young Man,,"Joyce, James",1916,,Lending Library Card,"Sylvia Beach, Marie-Valerie Herbais de Thun Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/94cf6667-e6c3-451a-9da4-35a58d089850/manifest,https://iiif.princeton.edu/loris/figgy_prod/38%2Ff0%2F98%2F38f09874f57345f4bf007e23065cb827%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-07,1934-02-19,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/machen-hill-dreams/,The Hill of Dreams,,"Machen, Arthur",1907,,Lending Library Card,"Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F0d%2F24%2F560d24c0dfa94677ae04cf2db490c371%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-08,1934-02-13,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/beck-graces/,The Graces,,"Beck, L. Adams",1934,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e3%2Fa3%2F2f%2Fe3a32f3f58b84d669bc3710140acb7d5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-08,1934-02-10,https://shakespeareandco.princeton.edu/members/clairin-theresa/,Theresa (Shiff) Clairin,"Clairin, Theresa",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/de-la-roche-jalna/,Jalna,,"De la Roche, Mazo",1927,,Lending Library Card,"Sylvia Beach, Theresa (Shiff) Clairin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/46a8350f-5226-4051-aa61-69eae1bf0e52/manifest,https://iiif.princeton.edu/loris/figgy_prod/03%2F12%2Fef%2F0312efd517cc43f6a8d0cce922076e42%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-08,1934-02-10,https://shakespeareandco.princeton.edu/members/clairin-theresa/,Theresa (Shiff) Clairin,"Clairin, Theresa",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/dane-broome-stages/,Broome Stages,,"Dane, Clemence",1931,,Lending Library Card,"Sylvia Beach, Theresa (Shiff) Clairin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/46a8350f-5226-4051-aa61-69eae1bf0e52/manifest,https://iiif.princeton.edu/loris/figgy_prod/03%2F12%2Fef%2F0312efd517cc43f6a8d0cce922076e42%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-08,1934-02-09,https://shakespeareandco.princeton.edu/members/paul-dubois/,Louis Paul-Dubois,"Paul-Dubois, Louis",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/oconnor-saint-mary-kate/,The Saint and Mary Kate,,"O'Connor, Frank",1932,,Lending Library Card,"Sylvia Beach, Louis Paul-Dubois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a5425c0b-233e-443e-a90e-1107459a225d/manifest,https://iiif.princeton.edu/loris/figgy_prod/fe%2Fed%2Fcc%2Ffeedcca8aab1457886de3a151d43553b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-08,1934-02-26,https://shakespeareandco.princeton.edu/members/meyer-florence/,Florence Meyer,"Meyer, Florence",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/nicoll-development-theatre/,The Development of the Theatre,,"Nicoll, Allardyce",1927,,Lending Library Card,"Sylvia Beach, Florence Meyer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd3b6930-a7f4-40e5-88ad-1a27c20d35f1/manifest,https://iiif.princeton.edu/loris/figgy_prod/ce%2F38%2Fc0%2Fce38c07006f54cd5b453f4e61d7f497a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-08,1934-02-14,https://shakespeareandco.princeton.edu/members/tony-mayer/,Thérèse Tony-Mayer,"Tony-Mayer, Thérèse",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/richardson-interim-pilgrimage-5/,Interim (Pilgrimage 5),,"Richardson, Dorothy M.",1920,,Lending Library Card,"Sylvia Beach, Thérèse Tony-Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/27246b4c-7d99-4dca-b874-ab90bd542cfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2Fa0%2Fff%2F50a0ff19abc240c680a6a33baf060b76%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-08,1934-02-15,https://shakespeareandco.princeton.edu/members/burt-maud/,Maud Burt,"Burt, Maud",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/waddell-peter-abelard-novel/,Peter Abelard: A Novel,,"Waddell, Helen",1933,,Lending Library Card,"Sylvia Beach, Maud Burt Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/84402ab0-3135-4059-bd55-010e23394445/manifest,https://iiif.princeton.edu/loris/figgy_prod/47%2F98%2F43%2F4798436b9f2b475e8d6f91a988ffe2ad%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-08,1934-02-26,https://shakespeareandco.princeton.edu/members/meyer-florence/,Florence Meyer,"Meyer, Florence",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/craig-books-theatres/,Books and Theatres,,"Craig, Edward Gordon",1925,,Lending Library Card,"Sylvia Beach, Florence Meyer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd3b6930-a7f4-40e5-88ad-1a27c20d35f1/manifest,https://iiif.princeton.edu/loris/figgy_prod/ce%2F38%2Fc0%2Fce38c07006f54cd5b453f4e61d7f497a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-08,1934-02-09,https://shakespeareandco.princeton.edu/members/paul-dubois/,Louis Paul-Dubois,"Paul-Dubois, Louis",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/oconnor-guests-nation/,Guests of the Nation,,"O'Connor, Frank",1931,,Lending Library Card,"Sylvia Beach, Louis Paul-Dubois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a5425c0b-233e-443e-a90e-1107459a225d/manifest,https://iiif.princeton.edu/loris/figgy_prod/fe%2Fed%2Fcc%2Ffeedcca8aab1457886de3a151d43553b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-09,1934-02-26,https://shakespeareandco.princeton.edu/members/plummer-dorothy/,Dorothy Plummer,"Plummer, Dorothy",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/benson-tobit-transplanted/,Tobit Transplanted,,"Benson, Stella",1931,,Lending Library Card,"Sylvia Beach, Dorothy Plummer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5f53ce0-8ea6-4d1f-b36b-f6e5321bab4c/manifest,https://iiif.princeton.edu/loris/figgy_prod/73%2F61%2F28%2F7361283a6eb946cbbb43d97ca38f1deb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-09,1934-02-16,https://shakespeareandco.princeton.edu/members/dillon/,George Dillon,"Dillon, George",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/landor-imaginary-conversations-poems/,Imaginary Conversations and Poems: A Selection,,"Landor, Walter Savage",1919,,Lending Library Card,"Sylvia Beach, George Dillon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5e438ba5-07c0-492f-b5f5-b1755e934b4e/manifest,https://iiif.princeton.edu/loris/figgy_prod/1a%2F27%2F7a%2F1a277a85874341078252c5adc35380a1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-09,1934-02-13,https://shakespeareandco.princeton.edu/members/paul-dubois/,Louis Paul-Dubois,"Paul-Dubois, Louis",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/budgen-james-joyce-making/,James Joyce and the Making of Ulysses,,"Budgen, Frank",1934,,Lending Library Card,"Sylvia Beach, Louis Paul-Dubois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a5425c0b-233e-443e-a90e-1107459a225d/manifest,https://iiif.princeton.edu/loris/figgy_prod/fe%2Fed%2Fcc%2Ffeedcca8aab1457886de3a151d43553b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-10,1934-02-17,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/saturday-review/,Saturday Review,,,,Unidentified. Either [*The Saturday Review of Literature*](https://shakespeareandco.princeton.edu/books/canby-saturday-review-literature/) or the [*Saturday Review*](https://en.wikipedia.org/wiki/Saturday_Review_(London_newspaper)).,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/58%2F45%2F77%2F58457700c8f84cf7be6a477c1713a40b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-02-10,1934-02-17,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/yeats-collected-poems-w/,The Collected Poems of W. B. Yeats,,"Yeats, William Butler",1933,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/58%2F45%2F77%2F58457700c8f84cf7be6a477c1713a40b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-02-10,1934-03-01,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/coomaraswamy-buddha-gospel-buddhism/,Buddha and the Gospel of Buddhism,,"Coomaraswamy, Ananda Kentish",1916,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/c3%2Fcf%2Fcb%2Fc3cfcbac695b438cb411cef7054fed8e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1934-02-10,1934-03-10,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",20.00,,1 month,28,2,,1934-02-10,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/c3%2Fcf%2Fcb%2Fc3cfcbac695b438cb411cef7054fed8e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1934-02-10,1934-02-10,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,,,14.00,FRF,https://shakespeareandco.princeton.edu/books/chaucer/,Chaucer,,,,Unidentified. By or about Chaucer.,Lending Library Card,"Sylvia Beach, James Joyce Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/60df1b72-de14-4053-ac2b-b16671872306/manifest,https://iiif.princeton.edu/loris/figgy_prod/3f%2F05%2Fc4%2F3f05c4ba4908479ead76b36736bb9d19%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-10,1934-02-17,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/john-galsworthy/,John Galsworthy,,,,Unidentified. By or about John Galsworthy.,Lending Library Card,"Sylvia Beach, Aline Prot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/15a376bb-405b-4488-b789-1559abbe3fb2/manifest,https://iiif-cloud.princeton.edu/iiif/2/cd%2Fb9%2F8d%2Fcdb98d69d2914c9a86733742b9a595f2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-02-10,1934-02-19,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/masefield-bird-dawning/,The Bird of Dawning,,"Masefield, John",1933,,Lending Library Card,"Sylvia Beach, Aline Prot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/15a376bb-405b-4488-b789-1559abbe3fb2/manifest,https://iiif-cloud.princeton.edu/iiif/2/cd%2Fb9%2F8d%2Fcdb98d69d2914c9a86733742b9a595f2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-02-10,1934-02-26,https://shakespeareandco.princeton.edu/members/clairin-theresa/,Theresa (Shiff) Clairin,"Clairin, Theresa",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/deeping-bess-woods/,Bess of the Woods,,"Deeping, Warwick",1906,,Lending Library Card,"Sylvia Beach, Theresa (Shiff) Clairin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/46a8350f-5226-4051-aa61-69eae1bf0e52/manifest,https://iiif.princeton.edu/loris/figgy_prod/03%2F12%2Fef%2F0312efd517cc43f6a8d0cce922076e42%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-10,1934-02-19,https://shakespeareandco.princeton.edu/members/clairin-theresa/,Theresa (Shiff) Clairin,"Clairin, Theresa",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/de-la-roche-whiteoaks/,Whiteoaks,,"De la Roche, Mazo",1929,,Lending Library Card,"Sylvia Beach, Theresa (Shiff) Clairin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/46a8350f-5226-4051-aa61-69eae1bf0e52/manifest,https://iiif.princeton.edu/loris/figgy_prod/03%2F12%2Fef%2F0312efd517cc43f6a8d0cce922076e42%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-10,1934-02-20,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/galsworthy-river/,Over the River (End of Chapter),,"Galsworthy, John",1933,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/e6%2F43%2F11%2Fe643111d618f45aeb8829844d126a6c8%2Fintermediate_file/full/full/0/default.jpg
+Crossed out,1934-02-10,,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/sudermann-wife-steffen-tromholt/,The Wife of Steffen Tromholt,,"Sudermann, Hermann",1929,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/58%2F45%2F77%2F58457700c8f84cf7be6a477c1713a40b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-02-11,1934-02-25,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/moore-mummers-wife/,A Mummer's Wife,,"Moore, George",1885,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/30%2F13%2F8a%2F30138a0365434ba8855aaeac38b08618%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-02-11,1934-02-18,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/donne-donne-poetical-works/,The Poems of John Donne,Vol. 2 Introduction and Commentary,"Donne, John",1912,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/30%2F13%2F8a%2F30138a0365434ba8855aaeac38b08618%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-02-12,1934-02-17,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/morgan-fountain/,The Fountain,,"Morgan, Charles",1932,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/57%2Fd7%2Fed%2F57d7edebf111435d8d29597c65433a0a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-12,1934-02-17,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/frankau-dance-little-gentleman/,"Dance, Little Gentleman!",,"Frankau, Gilbert",1929,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/57%2Fd7%2Fed%2F57d7edebf111435d8d29597c65433a0a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-13,1934-02-17,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/lawrence-etruscan-places/,Etruscan Places,,"Lawrence, D. H.",1932,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e3%2Fa3%2F2f%2Fe3a32f3f58b84d669bc3710140acb7d5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-13,1934-02-27,https://shakespeareandco.princeton.edu/members/wibbelz-henry/,Henry W. Wibbelz,"Wibbelz, Henry W.",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/faulkner-light-august/,Light in August,,"Faulkner, William",1932,,Lending Library Card,"Sylvia Beach, Henry W. Wibbelz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/225d5fc4-c83d-46e5-b861-ad36ae4548b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/fd%2F3b%2F61%2Ffd3b61e39369435c9938f281cc02292f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-13,1934-02-16,https://shakespeareandco.princeton.edu/members/bonnerot-louis/,Louis Bonnerot,"Bonnerot, Louis",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/osullivan-dublin-magazine/,Dublin Magazine,,,,,Lending Library Card,"Sylvia Beach, Louis Bonnerot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c14cc736-079c-4403-9036-a2de4743414a/manifest,https://iiif.princeton.edu/loris/figgy_prod/02%2F5a%2F24%2F025a24f998344e51813e60cf8062c163%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-13,1934-02-16,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/lawrence-virgin-gipsy/,The Virgin and the Gipsy,,"Lawrence, D. H.",1930,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/1b%2F11%2F64%2F1b116462342c42428515d6fd5451f322%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-13,1934-02-15,https://shakespeareandco.princeton.edu/members/perkins/,Mrs. Perkins,"Perkins, Mrs.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/gay-beggars-opera/,The Beggar's Opera,,"Gay, John",1728,,Lending Library Card,"Sylvia Beach, Perkins Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c711b33a-cb94-478e-8090-0a62744bb3e3/manifest,https://iiif.princeton.edu/loris/figgy_prod/f1%2F08%2Fc6%2Ff108c6dd36e64848b0483f72d1a49844%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-14,1934-02-21,https://shakespeareandco.princeton.edu/members/maspero-clerc/;https://shakespeareandco.princeton.edu/members/maspero-henri/,Hélène Maspero-Clerc;Henri Maspero,"Maspero-Clerc, Hélène;Maspero, Henri",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/webb-golden-arrow/,Golden Arrow,,"Webb, Mary",1916,,Lending Library Card,"Sylvia Beach, Maspero Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/92dca37a-f412-4b18-90a3-d236d2b3fe20/manifest,https://iiif-cloud.princeton.edu/iiif/2/ea%2F4c%2F4a%2Fea4c4a2dc06f44aaa9c52db92681a7bb%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-02-14,1934-02-17,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/blavatsky-letters-h-p/,"The Letters of H. P. Blavatsky to A. P. Sinnett, and Other Miscellaneous Letters",,"Blavatsky, H. P.",1924,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/c3%2Fcf%2Fcb%2Fc3cfcbac695b438cb411cef7054fed8e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-14,1934-02-19,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/macleish-frescoes-mr-rockefellers/,Frescoes for Mr. Rockefeller's City,,"MacLeish, Archibald",1933,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/c3%2Fcf%2Fcb%2Fc3cfcbac695b438cb411cef7054fed8e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-14,1934-02-24,https://shakespeareandco.princeton.edu/members/tony-mayer/,Thérèse Tony-Mayer,"Tony-Mayer, Thérèse",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/richardson-deadlock-pilgrimage-6/,Deadlock (Pilgrimage 6),,"Richardson, Dorothy M.",1921,,Lending Library Card,"Sylvia Beach, Thérèse Tony-Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/27246b4c-7d99-4dca-b874-ab90bd542cfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2Fa0%2Fff%2F50a0ff19abc240c680a6a33baf060b76%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-15,1934-03-01,https://shakespeareandco.princeton.edu/members/perkins/,Mrs. Perkins,"Perkins, Mrs.",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/epic-east/,Epic East,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Perkins Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c711b33a-cb94-478e-8090-0a62744bb3e3/manifest,https://iiif.princeton.edu/loris/figgy_prod/f1%2F08%2Fc6%2Ff108c6dd36e64848b0483f72d1a49844%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-15,1934-02-22,https://shakespeareandco.princeton.edu/members/burt-maud/,Maud Burt,"Burt, Maud",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/woolf-flush-biography/,Flush: A Biography,,"Woolf, Virginia",1933,,Lending Library Card,"Sylvia Beach, Maud Burt Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/84402ab0-3135-4059-bd55-010e23394445/manifest,https://iiif.princeton.edu/loris/figgy_prod/47%2F98%2F43%2F4798436b9f2b475e8d6f91a988ffe2ad%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-15,1934-02-19,https://shakespeareandco.princeton.edu/members/massey/,Adelaide W. Massey / A. W. Massey,"Massey, Adelaide W.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/faulkner-sound-fury/,The Sound and the Fury,,"Faulkner, William",1929,,Lending Library Card,"Sylvia Beach, A. W. Massey Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c4712c46-76f3-4581-99d6-d0ffd31b4138/manifest,https://iiif-cloud.princeton.edu/iiif/2/4d%2F7d%2F00%2F4d7d0059b632436eaaffd762b26f5ce3%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-02-15,1934-03-01,https://shakespeareandco.princeton.edu/members/perkins/,Mrs. Perkins,"Perkins, Mrs.",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/erdberg-tales-modern-china/,Tales of Modern China,,"Erdberg, Oskar",1933,,Lending Library Card,"Sylvia Beach, Perkins Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c711b33a-cb94-478e-8090-0a62744bb3e3/manifest,https://iiif.princeton.edu/loris/figgy_prod/f1%2F08%2Fc6%2Ff108c6dd36e64848b0483f72d1a49844%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-16,1934-03-15,https://shakespeareandco.princeton.edu/members/shelley-dorothy/,Dorothy Shelley,"Shelley, Dorothy",,,,,,,,,Returned,27,,,https://shakespeareandco.princeton.edu/books/konody-sir-william-orpen/,Sir William Orpen: Artist & Man,,"Konody, Paul G.;Dark, Sidney",1932,,Lending Library Card,"Sylvia Beach, Dorothy Shelley Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dcc58669-efb6-4ace-ab31-a1cb913f3692/manifest,https://iiif.princeton.edu/loris/figgy_prod/6e%2F92%2F2e%2F6e922e058b7c4a56ac1215de11398cdd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-16,1934-02-27,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/hemingway-death-afternoon/,Death in the Afternoon,,"Hemingway, Ernest",1932,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/1b%2F11%2F64%2F1b116462342c42428515d6fd5451f322%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-16,1934-03-08,https://shakespeareandco.princeton.edu/members/dillon/,George Dillon,"Dillon, George",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/lowndes-chink-armour/,The Chink in the Armour,,"Lowndes, Marie Belloc",1912,,Lending Library Card,"Sylvia Beach, George Dillon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5e438ba5-07c0-492f-b5f5-b1755e934b4e/manifest,https://iiif.princeton.edu/loris/figgy_prod/1a%2F27%2F7a%2F1a277a85874341078252c5adc35380a1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-16,1934-02-19,https://shakespeareandco.princeton.edu/members/bonnerot-louis/,Louis Bonnerot,"Bonnerot, Louis",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/mew-farmers-bride/,The Farmer's Bride,,"Mew, Charlotte Mary",1916,,Lending Library Card,"Sylvia Beach, Louis Bonnerot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c14cc736-079c-4403-9036-a2de4743414a/manifest,https://iiif.princeton.edu/loris/figgy_prod/02%2F5a%2F24%2F025a24f998344e51813e60cf8062c163%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-17,1934-02-21,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/hooke-striplings/,Striplings,,"Hooke, Nina Warner",1933,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e3%2Fa3%2F2f%2Fe3a32f3f58b84d669bc3710140acb7d5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-17,1934-03-03,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/fleming-brazilian-adventure/,Brazilian Adventure,,"Fleming, Peter",1933,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/58%2F45%2F77%2F58457700c8f84cf7be6a477c1713a40b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-02-17,1934-02-24,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/yeats-collected-poems-w/,The Collected Poems of W. B. Yeats,,"Yeats, William Butler",1933,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/c3%2Fcf%2Fcb%2Fc3cfcbac695b438cb411cef7054fed8e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1934-02-17,1934-03-17,https://shakespeareandco.princeton.edu/members/caillois/;https://shakespeareandco.princeton.edu/members/petitjean/,Roger Caillois;Armand Petitjean,"Caillois, Roger;Petitjean, Armand",12.00,8.00,1 month,28,1,,1934-02-17,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Roger Caillois/ Armand Petitjean Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/58386f27-2a95-4138-a30e-4dde3aeb0aaa/manifest,https://iiif-cloud.princeton.edu/iiif/2/4f%2F8a%2Fc9%2F4f8ac94272334e4ea75c06b1a68ac749%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-02-17,1934-02-23,https://shakespeareandco.princeton.edu/members/caillois/;https://shakespeareandco.princeton.edu/members/petitjean/,Roger Caillois;Armand Petitjean,"Caillois, Roger;Petitjean, Armand",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/watson-ways-behaviourism/,Ways of Behaviourism,,"Watson, John Broadus",1928,,Lending Library Card,"Sylvia Beach, Roger Caillois/ Armand Petitjean Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/58386f27-2a95-4138-a30e-4dde3aeb0aaa/manifest,https://iiif-cloud.princeton.edu/iiif/2/4f%2F8a%2Fc9%2F4f8ac94272334e4ea75c06b1a68ac749%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-02-17,1934-02-24,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/rohmer-daughter-fu-manchu/,The Daughter of Fu Manchu,,"Rohmer, Sax",1931,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/57%2Fd7%2Fed%2F57d7edebf111435d8d29597c65433a0a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-17,1934-02-24,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/frankau-much-good/,So Much Good,,"Frankau, Gilbert",1928,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/57%2Fd7%2Fed%2F57d7edebf111435d8d29597c65433a0a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-17,1934-02-26,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/waddell-peter-abelard-novel/,Peter Abelard: A Novel,,"Waddell, Helen",1933,,Lending Library Card,"Sylvia Beach, Aline Prot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/15a376bb-405b-4488-b789-1559abbe3fb2/manifest,https://iiif-cloud.princeton.edu/iiif/2/cd%2Fb9%2F8d%2Fcdb98d69d2914c9a86733742b9a595f2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-02-17,1934-02-27,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/sackville-west-edwardians/,The Edwardians,,"Sackville-West, Vita",1930,,Lending Library Card,"Sylvia Beach, Aline Prot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/15a376bb-405b-4488-b789-1559abbe3fb2/manifest,https://iiif-cloud.princeton.edu/iiif/2/cd%2Fb9%2F8d%2Fcdb98d69d2914c9a86733742b9a595f2%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1934-02-18,1934-02-18,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/swift/,Swift,,,,"Unidentified. By or about Jonathan Swift. Likely Mario Rossi and Joseph M. Hone's *Swift: or, The Egotist* (1934).",Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/30%2F13%2F8a%2F30138a0365434ba8855aaeac38b08618%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-02-18,1934-03-11,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/swift-tale-tub/,A Tale of a Tub,,"Swift, Jonathan",1704,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/30%2F13%2F8a%2F30138a0365434ba8855aaeac38b08618%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-02-19,1934-02-21,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/russell-marriage-morals/,Marriage and Morals,,"Russell, Bertrand",1929,,Lending Library Card,"Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F0d%2F24%2F560d24c0dfa94677ae04cf2db490c371%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-19,1934-03-14,https://shakespeareandco.princeton.edu/members/vieillard/,Gilbert Vieillard,"Vieillard, Gilbert",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/huxley-point-counter-point/,Point Counter Point,,"Huxley, Aldous",1928,,Lending Library Card,"Sylvia Beach, Gilbert Vieillard Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8cd1d6c8-5108-4d59-9706-8bca70405815/manifest,https://iiif.princeton.edu/loris/figgy_prod/e3%2F2e%2F71%2Fe32e712809fa44df9f8aa0175f1991db%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1934-02-19,1934-02-19,https://shakespeareandco.princeton.edu/members/duffez/,S. Duffez,"Duffez, S.",,,,,,,,30.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1934-02-19,1934-03-02,https://shakespeareandco.princeton.edu/members/clairin-theresa/,Theresa (Shiff) Clairin,"Clairin, Theresa",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/de-la-roche-finchs-fortune/,Finch's Fortune,,"De la Roche, Mazo",1931,,Lending Library Card,"Sylvia Beach, Theresa (Shiff) Clairin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/46a8350f-5226-4051-aa61-69eae1bf0e52/manifest,https://iiif.princeton.edu/loris/figgy_prod/03%2F12%2Fef%2F0312efd517cc43f6a8d0cce922076e42%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-19,1934-02-21,https://shakespeareandco.princeton.edu/members/bonnerot-louis/,Louis Bonnerot,"Bonnerot, Louis",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/sitwell-collected-poems-edith/,The Collected Poems of Edith Sitwell,,"Sitwell, Edith",1930,,Lending Library Card,"Sylvia Beach, Louis Bonnerot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c14cc736-079c-4403-9036-a2de4743414a/manifest,https://iiif.princeton.edu/loris/figgy_prod/02%2F5a%2F24%2F025a24f998344e51813e60cf8062c163%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-20,1934-02-27,https://shakespeareandco.princeton.edu/members/boscq-marie/,Marie Boscq / Bosq,"Boscq, Marie",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/doyle-sign-four/,The Sign of Four,,"Doyle, Arthur Conan",1890,,Lending Library Card,"Sylvia Beach, Marie Boscq Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/11480fae-3477-40c8-be7d-484c91023da7/manifest,https://iiif.princeton.edu/loris/figgy_prod/cd%2F75%2F98%2Fcd75980d3c3e4cb3ac5163e331e790db%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-20,1934-02-23,https://shakespeareandco.princeton.edu/members/massey/,Adelaide W. Massey / A. W. Massey,"Massey, Adelaide W.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/faulkner-lay-dying/,As I Lay Dying,,"Faulkner, William",1930,,Lending Library Card,"Sylvia Beach, A. W. Massey Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c4712c46-76f3-4581-99d6-d0ffd31b4138/manifest,https://iiif-cloud.princeton.edu/iiif/2/4d%2F7d%2F00%2F4d7d0059b632436eaaffd762b26f5ce3%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-02-20,1934-02-24,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/eliot-poems/,Poems,,"Eliot, T. S.",,"Unidentified edition or editions. Monique de Vigan borrowed Eliot's *Poems, 1909 β 1925* (1925).",Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/58%2F45%2F77%2F58457700c8f84cf7be6a477c1713a40b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-02-21,1934-02-27,https://shakespeareandco.princeton.edu/members/maspero-clerc/;https://shakespeareandco.princeton.edu/members/maspero-henri/,Hélène Maspero-Clerc;Henri Maspero,"Maspero-Clerc, Hélène;Maspero, Henri",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/mackenzie-sinister-street/,Sinister Street,Vol. 2,"Mackenzie, Compton",1914,,Lending Library Card,"Sylvia Beach, Maspero Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/92dca37a-f412-4b18-90a3-d236d2b3fe20/manifest,https://iiif-cloud.princeton.edu/iiif/2/ea%2F4c%2F4a%2Fea4c4a2dc06f44aaa9c52db92681a7bb%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-02-21,1934-02-24,https://shakespeareandco.princeton.edu/members/bonnerot-louis/,Louis Bonnerot,"Bonnerot, Louis",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/cross-yale-review/,Yale Review,,,,,Lending Library Card,"Sylvia Beach, Louis Bonnerot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c14cc736-079c-4403-9036-a2de4743414a/manifest,https://iiif.princeton.edu/loris/figgy_prod/02%2F5a%2F24%2F025a24f998344e51813e60cf8062c163%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-21,1934-03-07,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/maugham-moon-sixpence/,The Moon and Sixpence,,"Maugham, W. Somerset",1919,,Lending Library Card,"Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F0d%2F24%2F560d24c0dfa94677ae04cf2db490c371%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-21,1934-02-27,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/swift/,Swift,,,,"Unidentified. By or about Jonathan Swift. Likely Mario Rossi and Joseph M. Hone's *Swift: or, The Egotist* (1934).",Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e3%2Fa3%2F2f%2Fe3a32f3f58b84d669bc3710140acb7d5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-22,1934-03-01,https://shakespeareandco.princeton.edu/members/burt-maud/,Maud Burt,"Burt, Maud",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/nichols-cry-havoc/,Cry Havoc!,,"Nichols, Beverley",1933,,Lending Library Card,"Sylvia Beach, Maud Burt Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/84402ab0-3135-4059-bd55-010e23394445/manifest,https://iiif.princeton.edu/loris/figgy_prod/47%2F98%2F43%2F4798436b9f2b475e8d6f91a988ffe2ad%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-22,1934-03-01,https://shakespeareandco.princeton.edu/members/foret/,Mme de la Foret,"de la Foret, Mme",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/lehmann-invitation-waltz/,Invitation to the Waltz,,"Lehmann, Rosamond",1932,,Lending Library Card,"Sylvia Beach, Madame de la Foret Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6fc4cfdc-78bc-4f2f-9b2a-3d0e51291d39/manifest,https://iiif.princeton.edu/loris/figgy_prod/9f%2Fbd%2Fc2%2F9fbdc20ad87d4ab394db6ce1b8a8309c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1934-02-22,1934-03-22,https://shakespeareandco.princeton.edu/members/wibbelz-henry/,Henry W. Wibbelz,"Wibbelz, Henry W.",20.00,,1 month,28,2,,1934-02-27,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Henry W. Wibbelz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/225d5fc4-c83d-46e5-b861-ad36ae4548b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/fd%2F3b%2F61%2Ffd3b61e39369435c9938f281cc02292f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-22,1934-03-03,https://shakespeareandco.princeton.edu/members/porter-katherine-anne/,Katherine Anne Porter / Mrs. Katherine Anne Pressly,"Porter, Katherine Anne",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/woolf-common-reader-second/,The Common Reader: Second Series,,"Woolf, Virginia",1932,,Lending Library Card,"Sylvia Beach, Katherine Anne Porter Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e929ad7e-7cda-422b-9107-310e3c4feb78/manifest,https://iiif.princeton.edu/loris/figgy_prod/40%2F3f%2F06%2F403f063d4e9442229355a1cc3b19535c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-22,1934-03-03,https://shakespeareandco.princeton.edu/members/porter-katherine-anne/,Katherine Anne Porter / Mrs. Katherine Anne Pressly,"Porter, Katherine Anne",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/davies-life-known-voices/,Life as We Have Known It: The Voices of Working-Class Women,,,1931,,Lending Library Card,"Sylvia Beach, Katherine Anne Porter Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e929ad7e-7cda-422b-9107-310e3c4feb78/manifest,https://iiif.princeton.edu/loris/figgy_prod/40%2F3f%2F06%2F403f063d4e9442229355a1cc3b19535c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-22,1934-03-03,https://shakespeareandco.princeton.edu/members/porter-katherine-anne/,Katherine Anne Porter / Mrs. Katherine Anne Pressly,"Porter, Katherine Anne",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/forster-passage-india/,A Passage to India,,"Forster, E. M.",1924,,Lending Library Card,"Sylvia Beach, Katherine Anne Porter Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e929ad7e-7cda-422b-9107-310e3c4feb78/manifest,https://iiif.princeton.edu/loris/figgy_prod/40%2F3f%2F06%2F403f063d4e9442229355a1cc3b19535c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-22,1934-02-24,https://shakespeareandco.princeton.edu/members/claudius/,Agnes Claudius,"Claudius, Agnes",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/forster-pharos-pharillon/,Pharos and Pharillon,,"Forster, E. M.",1923,,Lending Library Card,"Sylvia Beach, Agnes Claudius Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18a9262d-8ea3-4d0c-9b36-8a1c638950fa/manifest,https://iiif.princeton.edu/loris/figgy_prod/3f%2F38%2F05%2F3f3805f16e1646c8a58bbad3bbc86c95%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-22,1934-03-01,https://shakespeareandco.princeton.edu/members/tuttle-stephen-d/,Stephen D. Tuttle,"Tuttle, Stephen D.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/lawrence-etruscan-places/,Etruscan Places,,"Lawrence, D. H.",1932,,Lending Library Card,"Sylvia Beach, Stephen D. Tuttle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f1653918-3f2b-4e88-bd27-4e3c4d83a47d/manifest,https://iiif-cloud.princeton.edu/iiif/2/65%2Fdf%2Ff8%2F65dff8cf663e4eceb54c65b53cccaf7e%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1934-02-22,1934-05-22,https://shakespeareandco.princeton.edu/members/tuttle-stephen-d/,Stephen D. Tuttle,"Tuttle, Stephen D.",30.00,,3 months,89,1,,1934-02-22,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Stephen D. Tuttle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f1653918-3f2b-4e88-bd27-4e3c4d83a47d/manifest,https://iiif-cloud.princeton.edu/iiif/2/65%2Fdf%2Ff8%2F65dff8cf663e4eceb54c65b53cccaf7e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-02-22,1934-03-03,https://shakespeareandco.princeton.edu/members/porter-katherine-anne/,Katherine Anne Porter / Mrs. Katherine Anne Pressly,"Porter, Katherine Anne",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/forster-aspects-novel/,Aspects of the Novel,,"Forster, E. M.",1927,,Lending Library Card,"Sylvia Beach, Katherine Anne Porter Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e929ad7e-7cda-422b-9107-310e3c4feb78/manifest,https://iiif.princeton.edu/loris/figgy_prod/40%2F3f%2F06%2F403f063d4e9442229355a1cc3b19535c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-23,,https://shakespeareandco.princeton.edu/members/massey/,Adelaide W. Massey / A. W. Massey,"Massey, Adelaide W.",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/faulkner-soldiers-pay/,Soldiers' Pay,,"Faulkner, William",1926,,Lending Library Card,"Sylvia Beach, A. W. Massey Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c4712c46-76f3-4581-99d6-d0ffd31b4138/manifest,https://iiif-cloud.princeton.edu/iiif/2/4d%2F7d%2F00%2F4d7d0059b632436eaaffd762b26f5ce3%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-02-23,1934-03-06,https://shakespeareandco.princeton.edu/members/caillois/;https://shakespeareandco.princeton.edu/members/petitjean/,Roger Caillois;Armand Petitjean,"Caillois, Roger;Petitjean, Armand",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/riding-contemporaries-snobs/,Contemporaries and Snobs,,"Riding, Laura",1928,,Lending Library Card,"Sylvia Beach, Roger Caillois/ Armand Petitjean Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/58386f27-2a95-4138-a30e-4dde3aeb0aaa/manifest,https://iiif-cloud.princeton.edu/iiif/2/4f%2F8a%2Fc9%2F4f8ac94272334e4ea75c06b1a68ac749%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-02-24,1934-03-10,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/roberts-new-country-prose/,New Country: Prose and Poetry by the Authors of New Signatures,,,1933,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/58%2F45%2F77%2F58457700c8f84cf7be6a477c1713a40b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-02-24,1934-03-02,https://shakespeareandco.princeton.edu/members/claudius/,Agnes Claudius,"Claudius, Agnes",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/gerhardie-polyglots/,The Polyglots: A Novel,,"Gerhardie, William Alexander",1925,,Lending Library Card,"Sylvia Beach, Agnes Claudius Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18a9262d-8ea3-4d0c-9b36-8a1c638950fa/manifest,https://iiif.princeton.edu/loris/figgy_prod/3f%2F38%2F05%2F3f3805f16e1646c8a58bbad3bbc86c95%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-24,1934-02-27,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/kennedy-return-dare/,Return I Dare Not,,"Kennedy, Margaret",1931,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/57%2Fd7%2Fed%2F57d7edebf111435d8d29597c65433a0a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-24,1934-03-09,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/macleish-poems-1924-1933/,"Poems, 1924 β 1933",,"MacLeish, Archibald",1933,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/c3%2Fcf%2Fcb%2Fc3cfcbac695b438cb411cef7054fed8e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-24,1934-03-13,https://shakespeareandco.princeton.edu/members/tony-mayer/,Thérèse Tony-Mayer,"Tony-Mayer, Thérèse",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/richardson-revolving-lights-pilgrimage/,Revolving Lights (Pilgrimage 7),,"Richardson, Dorothy M.",1923,,Lending Library Card,"Sylvia Beach, Thérèse Tony-Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/27246b4c-7d99-4dca-b874-ab90bd542cfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2Fa0%2Fff%2F50a0ff19abc240c680a6a33baf060b76%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-24,1934-03-03,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/fleming-variety-essays-stories/,Variety: Essays and Stories,,"Fleming, Peter",1933,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/e6%2F43%2F11%2Fe643111d618f45aeb8829844d126a6c8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-02-24,1934-02-25,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/cather-lost-lady/,A Lost Lady,,"Cather, Willa",1923,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/57%2Fd7%2Fed%2F57d7edebf111435d8d29597c65433a0a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-25,1934-03-07,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/deeping-kitty/,Kitty,,"Deeping, Warwick",1927,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/57%2Fd7%2Fed%2F57d7edebf111435d8d29597c65433a0a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-25,1934-03-04,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/hemingway-death-afternoon/,Death in the Afternoon,,"Hemingway, Ernest",1932,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/30%2F13%2F8a%2F30138a0365434ba8855aaeac38b08618%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-02-26,1934-03-02,https://shakespeareandco.princeton.edu/members/claudius/,Agnes Claudius,"Claudius, Agnes",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/stead-salzburg-tales/,The Salzburg Tales,,"Stead, Christina",1934,,Lending Library Card,"Sylvia Beach, Agnes Claudius Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18a9262d-8ea3-4d0c-9b36-8a1c638950fa/manifest,https://iiif.princeton.edu/loris/figgy_prod/3f%2F38%2F05%2F3f3805f16e1646c8a58bbad3bbc86c95%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-26,1934-03-01,https://shakespeareandco.princeton.edu/members/plummer-dorothy/,Dorothy Plummer,"Plummer, Dorothy",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/waddell-peter-abelard-novel/,Peter Abelard: A Novel,,"Waddell, Helen",1933,,Lending Library Card,"Sylvia Beach, Dorothy Plummer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5f53ce0-8ea6-4d1f-b36b-f6e5321bab4c/manifest,https://iiif.princeton.edu/loris/figgy_prod/73%2F61%2F28%2F7361283a6eb946cbbb43d97ca38f1deb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-26,1934-04-06,https://shakespeareandco.princeton.edu/members/meyer-florence/,Florence Meyer,"Meyer, Florence",,,,,,,,,Returned,39,,,https://shakespeareandco.princeton.edu/books/whitehead-symbolism-meaning-effect/,Symbolism: Its Meaning and Effect,,"Whitehead, Alfred North",1927,,Lending Library Card,"Sylvia Beach, Florence Meyer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd3b6930-a7f4-40e5-88ad-1a27c20d35f1/manifest,https://iiif.princeton.edu/loris/figgy_prod/c1%2F3c%2F59%2Fc13c59a7692d47ad96a92afb59ba690f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-26,1934-03-12,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/hughes-high-wind-jamaica/,A High Wind in Jamaica,,"Hughes, Richard",1929,,Lending Library Card,"Sylvia Beach, Aline Prot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/15a376bb-405b-4488-b789-1559abbe3fb2/manifest,https://iiif-cloud.princeton.edu/iiif/2/cd%2Fb9%2F8d%2Fcdb98d69d2914c9a86733742b9a595f2%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1934-02-26,1934-02-26,https://shakespeareandco.princeton.edu/members/la-gorce-agnes-de/,AgnΓ¨s de La Gorce,"La Gorce, AgnΓ¨s de",,,,,,,,30.00,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Agnes de la Gorce Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/3f97cbf7-ada1-4d92-ba6f-1e0feca12b77/manifest,;https://iiif.princeton.edu/loris/figgy_prod/a7%2F18%2Ff1%2Fa718f14c610440d29c07086aed9baea2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-26,1934-03-06,https://shakespeareandco.princeton.edu/members/clairin-theresa/,Theresa (Shiff) Clairin,"Clairin, Theresa",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/wharton-gods-arrive/,The Gods Arrive,,"Wharton, Edith",1932,,Lending Library Card,"Sylvia Beach, Theresa (Shiff) Clairin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/46a8350f-5226-4051-aa61-69eae1bf0e52/manifest,https://iiif.princeton.edu/loris/figgy_prod/03%2F12%2Fef%2F0312efd517cc43f6a8d0cce922076e42%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-26,1934-07-06,https://shakespeareandco.princeton.edu/members/meyer-florence/,Florence Meyer,"Meyer, Florence",,,,,,,,,Returned,130,,,https://shakespeareandco.princeton.edu/books/eeman-self-superman-technique/,Self and Superman: The Technique of Conscious Evolution,,"Eeman, L. E.",1929,,Lending Library Card,"Sylvia Beach, Florence Meyer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd3b6930-a7f4-40e5-88ad-1a27c20d35f1/manifest,https://iiif.princeton.edu/loris/figgy_prod/c1%2F3c%2F59%2Fc13c59a7692d47ad96a92afb59ba690f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-27,1934-03-13,https://shakespeareandco.princeton.edu/members/maspero-clerc/;https://shakespeareandco.princeton.edu/members/maspero-henri/,Hélène Maspero-Clerc;Henri Maspero,"Maspero-Clerc, Hélène;Maspero, Henri",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/mansfield-garden-party-stories/,The Garden Party and Other Stories,,"Mansfield, Katherine",1922,,Lending Library Card,"Sylvia Beach, Maspero Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/92dca37a-f412-4b18-90a3-d236d2b3fe20/manifest,https://iiif-cloud.princeton.edu/iiif/2/ea%2F4c%2F4a%2Fea4c4a2dc06f44aaa9c52db92681a7bb%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-02-27,1934-03-01,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/shaw-three-plays-puritans/,Three Plays for Puritans,,"Shaw, George Bernard",1901,,Lending Library Card,"Sylvia Beach, Aline Prot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/15a376bb-405b-4488-b789-1559abbe3fb2/manifest,https://iiif-cloud.princeton.edu/iiif/2/cd%2Fb9%2F8d%2Fcdb98d69d2914c9a86733742b9a595f2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-02-27,1934-03-07,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/kollontai-free-love/,Free Love,,"Kollontai, Alexandra",1932,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/57%2Fd7%2Fed%2F57d7edebf111435d8d29597c65433a0a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-27,1934-03-01,https://shakespeareandco.princeton.edu/members/wibbelz-henry/,Henry W. Wibbelz,"Wibbelz, Henry W.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/glicksberg-walt-whitman-civil/,Walt Whitman and the Civil War,,,1933,,Lending Library Card,"Sylvia Beach, Henry W. Wibbelz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/225d5fc4-c83d-46e5-b861-ad36ae4548b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/fd%2F3b%2F61%2Ffd3b61e39369435c9938f281cc02292f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-27,1934-03-21,https://shakespeareandco.princeton.edu/members/wibbelz-henry/,Henry W. Wibbelz,"Wibbelz, Henry W.",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/whitehead-adventures-ideas/,Adventures of Ideas,,"Whitehead, Alfred North",1933,,Lending Library Card,"Sylvia Beach, Henry W. Wibbelz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/225d5fc4-c83d-46e5-b861-ad36ae4548b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/fd%2F3b%2F61%2Ffd3b61e39369435c9938f281cc02292f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-27,1934-03-09,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/lawrence-sons-lovers/,Sons and Lovers,,"Lawrence, D. H.",1913,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/1b%2F11%2F64%2F1b116462342c42428515d6fd5451f322%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-27,1934-03-03,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/riding-14a/,14a,,"Riding, Laura;Ellidge, George",1934,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e3%2Fa3%2F2f%2Fe3a32f3f58b84d669bc3710140acb7d5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-02-27,1934-03-21,https://shakespeareandco.princeton.edu/members/wibbelz-henry/,Henry W. Wibbelz,"Wibbelz, Henry W.",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/lowry-ultramarine/,Ultramarine,,"Lowry, Malcolm",1933,,Lending Library Card,"Sylvia Beach, Henry W. Wibbelz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/225d5fc4-c83d-46e5-b861-ad36ae4548b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/fd%2F3b%2F61%2Ffd3b61e39369435c9938f281cc02292f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1934-02-28,1934-03-28,https://shakespeareandco.princeton.edu/members/claudius/,Agnes Claudius,"Claudius, Agnes",12.00,,1 month,28,,,1934-03-02,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Agnes Claudius Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/18a9262d-8ea3-4d0c-9b36-8a1c638950fa/manifest,;https://iiif.princeton.edu/loris/figgy_prod/3f%2F38%2F05%2F3f3805f16e1646c8a58bbad3bbc86c95%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1934-02-28,1934-03-07,https://shakespeareandco.princeton.edu/members/dillon/,George Dillon,"Dillon, George",4.00,,1 week,7,1,,1934-03-08,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, George Dillon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5e438ba5-07c0-492f-b5f5-b1755e934b4e/manifest,https://iiif.princeton.edu/loris/figgy_prod/1a%2F27%2F7a%2F1a277a85874341078252c5adc35380a1%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1934-02-28,1934-03-28,https://shakespeareandco.princeton.edu/members/pilat/,Mrs. Pilat,"Pilat, Mrs.",36.00,,1 month,28,2,,1934-02-28,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1934-03-01,1934-03-12,https://shakespeareandco.princeton.edu/members/foret/,Mme de la Foret,"de la Foret, Mme",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/mansfield-journal-katherine-mansfield/,The Journal of Katherine Mansfield,,"Mansfield, Katherine",1927,,Lending Library Card,"Sylvia Beach, Madame de la Foret Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6fc4cfdc-78bc-4f2f-9b2a-3d0e51291d39/manifest,https://iiif.princeton.edu/loris/figgy_prod/9f%2Fbd%2Fc2%2F9fbdc20ad87d4ab394db6ce1b8a8309c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-01,1934-03-12,https://shakespeareandco.princeton.edu/members/perkins/,Mrs. Perkins,"Perkins, Mrs.",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/benson-tobit-transplanted/,Tobit Transplanted,,"Benson, Stella",1931,,Lending Library Card,"Sylvia Beach, Perkins Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c711b33a-cb94-478e-8090-0a62744bb3e3/manifest,https://iiif.princeton.edu/loris/figgy_prod/f1%2F08%2Fc6%2Ff108c6dd36e64848b0483f72d1a49844%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1934-03-01,1934-09-01,https://shakespeareandco.princeton.edu/members/hiler/,Hilaire Hiler,"Hiler, Hilaire",50.00,30.00,6 months,184,1,,1934-03-01,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Hilaire Hiler Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c5f6c051-d93c-453a-be17-611cff442a49/manifest,https://iiif.princeton.edu/loris/figgy_prod/0d%2F3a%2Ff3%2F0d3af3a420b24f45b6b253515320f41b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-01,1934-03-19,https://shakespeareandco.princeton.edu/members/plummer-dorothy/,Dorothy Plummer,"Plummer, Dorothy",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/russell-marriage-morals/,Marriage and Morals,,"Russell, Bertrand",1929,,Lending Library Card,"Sylvia Beach, Dorothy Plummer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5f53ce0-8ea6-4d1f-b36b-f6e5321bab4c/manifest,https://iiif.princeton.edu/loris/figgy_prod/73%2F61%2F28%2F7361283a6eb946cbbb43d97ca38f1deb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-01,1934-03-03,https://shakespeareandco.princeton.edu/members/tuttle-stephen-d/,Stephen D. Tuttle,"Tuttle, Stephen D.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/eliot-poems/,Poems,,"Eliot, T. S.",,"Unidentified edition or editions. Monique de Vigan borrowed Eliot's *Poems, 1909 β 1925* (1925).",Lending Library Card,"Sylvia Beach, Stephen D. Tuttle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f1653918-3f2b-4e88-bd27-4e3c4d83a47d/manifest,https://iiif-cloud.princeton.edu/iiif/2/65%2Fdf%2Ff8%2F65dff8cf663e4eceb54c65b53cccaf7e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-03-01,1934-03-09,https://shakespeareandco.princeton.edu/members/tuttle-stephen-d/,Stephen D. Tuttle,"Tuttle, Stephen D.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/kirstein-hound-horn/,Hound & Horn,,,,,Lending Library Card,"Sylvia Beach, Stephen D. Tuttle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f1653918-3f2b-4e88-bd27-4e3c4d83a47d/manifest,https://iiif-cloud.princeton.edu/iiif/2/65%2Fdf%2Ff8%2F65dff8cf663e4eceb54c65b53cccaf7e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-03-01,1934-03-06,https://shakespeareandco.princeton.edu/members/wang-chun-jen/,Chun Jen Wang,"Wang, Chun Jen",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/quiller-couch-charles-dickens-victorians/,Charles Dickens and the Other Victorians,,"Quiller-Couch, Arthur",1925,,Lending Library Card,"Sylvia Beach, Wang Chun Jen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d1494e8d-50d3-4505-9083-ba8eabffab32/manifest,https://iiif.princeton.edu/loris/figgy_prod/4d%2F09%2F8b%2F4d098babc90744cda24c83d112770de5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1934-03-01,1935-03-01,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",180.00,,1 year,365,2,,1934-03-01,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/7c%2F31%2Fe9%2F7c31e90b6b0b4d9eb7817414c69cda4a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-03-01,1934-03-10,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/saintsbury-dryden/,Dryden,,"Saintsbury, George",1881,,Lending Library Card,"Sylvia Beach, Aline Prot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/15a376bb-405b-4488-b789-1559abbe3fb2/manifest,https://iiif-cloud.princeton.edu/iiif/2/cd%2Fb9%2F8d%2Fcdb98d69d2914c9a86733742b9a595f2%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1934-03-01,1934-04-01,https://shakespeareandco.princeton.edu/members/wang-chun-jen/,Chun Jen Wang,"Wang, Chun Jen",12.00,30.00,1 month,31,1,,1934-03-01,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Wang Chun Jen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d1494e8d-50d3-4505-9083-ba8eabffab32/manifest,https://iiif.princeton.edu/loris/figgy_prod/4d%2F09%2F8b%2F4d098babc90744cda24c83d112770de5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-01,1934-03-02,https://shakespeareandco.princeton.edu/members/hiler/,Hilaire Hiler,"Hiler, Hilaire",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/watson-ways-behaviourism/,Ways of Behaviourism,,"Watson, John Broadus",1928,,Lending Library Card,"Sylvia Beach, Hilaire Hiler Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c5f6c051-d93c-453a-be17-611cff442a49/manifest,https://iiif.princeton.edu/loris/figgy_prod/0d%2F3a%2Ff3%2F0d3af3a420b24f45b6b253515320f41b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-01,1934-03-12,https://shakespeareandco.princeton.edu/members/burt-maud/,Maud Burt,"Burt, Maud",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/buck-first-wife-stories/,The First Wife and Other Stories,,"Buck, Pearl S.",1933,,Lending Library Card,"Sylvia Beach, Maud Burt Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/84402ab0-3135-4059-bd55-010e23394445/manifest,https://iiif.princeton.edu/loris/figgy_prod/47%2F98%2F43%2F4798436b9f2b475e8d6f91a988ffe2ad%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-01,1934-03-12,https://shakespeareandco.princeton.edu/members/perkins/,Mrs. Perkins,"Perkins, Mrs.",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/lumpkin-make-bread/,To Make My Bread,,"Lumpkin, Grace",1932,,Lending Library Card,"Sylvia Beach, Perkins Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c711b33a-cb94-478e-8090-0a62744bb3e3/manifest,https://iiif.princeton.edu/loris/figgy_prod/f1%2F08%2Fc6%2Ff108c6dd36e64848b0483f72d1a49844%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-02,1934-03-05,https://shakespeareandco.princeton.edu/members/claudius/,Agnes Claudius,"Claudius, Agnes",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/roosevelt-looking-forward/,Looking Forward,,"Roosevelt, Franklin Delano",1933,,Lending Library Card,"Sylvia Beach, Agnes Claudius Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18a9262d-8ea3-4d0c-9b36-8a1c638950fa/manifest,https://iiif.princeton.edu/loris/figgy_prod/3f%2F38%2F05%2F3f3805f16e1646c8a58bbad3bbc86c95%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-02,1934-03-15,https://shakespeareandco.princeton.edu/members/clairin-theresa/,Theresa (Shiff) Clairin,"Clairin, Theresa",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/dehan-dop-doctor/,The Dop Doctor,,"Dehan, Richard",1910,,Lending Library Card,"Sylvia Beach, Theresa (Shiff) Clairin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/46a8350f-5226-4051-aa61-69eae1bf0e52/manifest,https://iiif.princeton.edu/loris/figgy_prod/03%2F12%2Fef%2F0312efd517cc43f6a8d0cce922076e42%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-02,1934-03-05,https://shakespeareandco.princeton.edu/members/hiler/,Hilaire Hiler,"Hiler, Hilaire",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/wolfe-happy-though-human/,How to Be Happy though Human,,"Wolfe, Walter BΓ©ran",1931,,Lending Library Card,"Sylvia Beach, Hilaire Hiler Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c5f6c051-d93c-453a-be17-611cff442a49/manifest,https://iiif.princeton.edu/loris/figgy_prod/0d%2F3a%2Ff3%2F0d3af3a420b24f45b6b253515320f41b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1934-03-02,1934-03-02,https://shakespeareandco.princeton.edu/members/shayerovitch/,Janine Shayerovitch,"Shayerovitch, Janine",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1934-03-02,1934-03-06,https://shakespeareandco.princeton.edu/members/clairin-theresa/,Theresa (Shiff) Clairin,"Clairin, Theresa",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/van-vorst-big-tremaine-novel/,Big Tremaine: A Novel,,"Van Vorst, Marie",1914,,Lending Library Card,"Sylvia Beach, Theresa (Shiff) Clairin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/46a8350f-5226-4051-aa61-69eae1bf0e52/manifest,https://iiif.princeton.edu/loris/figgy_prod/03%2F12%2Fef%2F0312efd517cc43f6a8d0cce922076e42%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-03,1934-03-07,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/bates-woman-imagination-stories/,The Woman Who Had Imagination and Other Stories,,"Bates, H. E.",1934,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e3%2Fa3%2F2f%2Fe3a32f3f58b84d669bc3710140acb7d5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-03,1934-03-10,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/rose-contemporary-movements-european/,Contemporary Movements in European Literature,,,1929,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/58%2F45%2F77%2F58457700c8f84cf7be6a477c1713a40b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-03-03,1934-03-10,https://shakespeareandco.princeton.edu/members/guillemin-annie/,Annie Guillemin,"Guillemin, Annie",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/benson-poor-man/,The Poor Man,,"Benson, Stella",1922,,Lending Library Card,"Sylvia Beach, Annie Guillemin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2d6019d9-34ed-4ca4-97a9-5fd05d8640a7/manifest,https://iiif.princeton.edu/loris/figgy_prod/8c%2Fbb%2Fe1%2F8cbbe1dd84b1489fa79f3b0b7d7b6e3f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-03,1934-04-18,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,46,,,https://shakespeareandco.princeton.edu/books/frazier-fear-dead-primitive/,The Fear of the Dead in Primitive Religion,,"Frazer, James George",1933,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/c3%2Fcf%2Fcb%2Fc3cfcbac695b438cb411cef7054fed8e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-03,1934-03-09,https://shakespeareandco.princeton.edu/members/tuttle-stephen-d/,Stephen D. Tuttle,"Tuttle, Stephen D.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/hindus-red-bread/,Red Bread,,"Hindus, Maurice Gerschon",1931,,Lending Library Card,"Sylvia Beach, Stephen D. Tuttle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f1653918-3f2b-4e88-bd27-4e3c4d83a47d/manifest,https://iiif-cloud.princeton.edu/iiif/2/65%2Fdf%2Ff8%2F65dff8cf663e4eceb54c65b53cccaf7e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-03-03,1934-03-10,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/christie-murder-orient-express/,Murder on the Orient Express,,"Christie, Agatha",1934,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/e6%2F43%2F11%2Fe643111d618f45aeb8829844d126a6c8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-03-04,1934-03-11,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/aldington-men-enemies/,All Men Are Enemies: A Romance,,"Aldington, Richard",1933,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/30%2F13%2F8a%2F30138a0365434ba8855aaeac38b08618%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1934-03-05,1934-06-05,https://shakespeareandco.princeton.edu/members/foret/,Mme de la Foret,"de la Foret, Mme",30.00,,3 months,92,1,,1934-03-13,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Madame de la Foret Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/6fc4cfdc-78bc-4f2f-9b2a-3d0e51291d39/manifest,;https://iiif.princeton.edu/loris/figgy_prod/9f%2Fbd%2Fc2%2F9fbdc20ad87d4ab394db6ce1b8a8309c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-05,1934-03-14,https://shakespeareandco.princeton.edu/members/boscq-marie/,Marie Boscq / Bosq,"Boscq, Marie",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/fleming-brazilian-adventure/,Brazilian Adventure,,"Fleming, Peter",1933,,Lending Library Card,"Sylvia Beach, Marie Boscq Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/11480fae-3477-40c8-be7d-484c91023da7/manifest,https://iiif.princeton.edu/loris/figgy_prod/cd%2F75%2F98%2Fcd75980d3c3e4cb3ac5163e331e790db%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-05,1934-03-20,https://shakespeareandco.princeton.edu/members/hiler/,Hilaire Hiler,"Hiler, Hilaire",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/freud-totem-taboo/,Totem and Taboo,,"Freud, Sigmund",1919,,Lending Library Card,"Sylvia Beach, Hilaire Hiler Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c5f6c051-d93c-453a-be17-611cff442a49/manifest,https://iiif.princeton.edu/loris/figgy_prod/0d%2F3a%2Ff3%2F0d3af3a420b24f45b6b253515320f41b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-05,,https://shakespeareandco.princeton.edu/members/claudius/,Agnes Claudius,"Claudius, Agnes",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/lowry-ultramarine/,Ultramarine,,"Lowry, Malcolm",1933,,Lending Library Card,"Sylvia Beach, Agnes Claudius Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18a9262d-8ea3-4d0c-9b36-8a1c638950fa/manifest,https://iiif.princeton.edu/loris/figgy_prod/3f%2F38%2F05%2F3f3805f16e1646c8a58bbad3bbc86c95%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-05,1934-03-09,https://shakespeareandco.princeton.edu/members/wibbelz-henry/,Henry W. Wibbelz,"Wibbelz, Henry W.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/lawrence-boy-bush/,The Boy in the Bush,,"Lawrence, D. H.",1924,,Lending Library Card,"Sylvia Beach, Henry W. Wibbelz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/225d5fc4-c83d-46e5-b861-ad36ae4548b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/fd%2F3b%2F61%2Ffd3b61e39369435c9938f281cc02292f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-06,1934-03-09,https://shakespeareandco.princeton.edu/members/wang-chun-jen/,Chun Jen Wang,"Wang, Chun Jen",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/eliot-use-poetry-use/,The Use of Poetry and the Use of Criticism: Studies in the Relation of Criticism to Poetry in England,,"Eliot, T. S.",1933,,Lending Library Card,"Sylvia Beach, Wang Chun Jen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d1494e8d-50d3-4505-9083-ba8eabffab32/manifest,https://iiif.princeton.edu/loris/figgy_prod/4d%2F09%2F8b%2F4d098babc90744cda24c83d112770de5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1934-03-06,1934-09-06,https://shakespeareandco.princeton.edu/members/tony-mayer/,ThΓ©rΓ¨se Tony-Mayer,"Tony-Mayer, ThΓ©rΓ¨se",90.00,,6 months,184,1,,1934-06-25,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, ThΓ©rΓ¨se Tony-Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/27246b4c-7d99-4dca-b874-ab90bd542cfa/manifest,;https://iiif.princeton.edu/loris/figgy_prod/a1%2Fec%2Ff5%2Fa1ecf56bff2e4aefa5c17aaba1dcce85%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-06,1934-03-27,https://shakespeareandco.princeton.edu/members/caillois/;https://shakespeareandco.princeton.edu/members/petitjean/,Roger Caillois;Armand Petitjean,"Caillois, Roger;Petitjean, Armand",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/blake-blakes-works/,Willam Blake's Works,,"Blake, William",,"At least three editions of Blake's collected works circulated in the lending library. Monique de Vigan borrowed The Poetical Works of William Blake, edited by William Michael Rossetti (Bell, 1874). Jean PrΓ©vost, John Rodker, Guy de Pourtales, Catherine Yarrow, Ella Cassigne, FranΓ§oise Bernheim, and Francoise de Marcilly (in 1939) borrowed The Poetical Works of William Blake, edited by John Sampson (Oxford, 1905). Armand Petitjean, Antoinette Bernheim, and Francoise de Marcilly (in 1938) borrowed Poetry and Prose of William Blake, edited by Geoffrey Keynes (Nonesuch, 1927).",Lending Library Card,"Sylvia Beach, Roger Caillois/ Armand Petitjean Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/58386f27-2a95-4138-a30e-4dde3aeb0aaa/manifest,https://iiif-cloud.princeton.edu/iiif/2/4f%2F8a%2Fc9%2F4f8ac94272334e4ea75c06b1a68ac749%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-03-06,1934-03-13,https://shakespeareandco.princeton.edu/members/clairin-theresa/,Theresa (Shiff) Clairin,"Clairin, Theresa",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/boothby-beautiful-white-devil/,The Beautiful White Devil,,"Boothby, Guy",1897,,Lending Library Card,"Sylvia Beach, Theresa (Shiff) Clairin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/46a8350f-5226-4051-aa61-69eae1bf0e52/manifest,https://iiif.princeton.edu/loris/figgy_prod/03%2F12%2Fef%2F0312efd517cc43f6a8d0cce922076e42%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-07,1934-03-09,https://shakespeareandco.princeton.edu/members/bonnerot-louis/,Louis Bonnerot,"Bonnerot, Louis",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/ballard-cahiers-sud/,Les cahiers du sud,,,,,Lending Library Card,"Sylvia Beach, Louis Bonnerot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c14cc736-079c-4403-9036-a2de4743414a/manifest,https://iiif.princeton.edu/loris/figgy_prod/02%2F5a%2F24%2F025a24f998344e51813e60cf8062c163%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-07,1934-03-09,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/bennett-riceyman-steps/,Riceyman Steps,,"Bennett, Arnold",1923,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/57%2Fd7%2Fed%2F57d7edebf111435d8d29597c65433a0a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-07,1934-03-13,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/johnson-pirate-junk-five/,Pirate Junk: Five Months Captivity with Manchurian Bandits,,"Johnson, Clifford",1934,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e3%2Fa3%2F2f%2Fe3a32f3f58b84d669bc3710140acb7d5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-07,1934-03-14,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/mansfield-garden-party-stories/,The Garden Party and Other Stories,,"Mansfield, Katherine",1922,,Lending Library Card,"Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F0d%2F24%2F560d24c0dfa94677ae04cf2db490c371%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-07,1934-03-09,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/kaye-smith-shepherds-sackcloth/,Shepherds in Sackcloth,,"Kaye-Smith, Sheila",1930,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/57%2Fd7%2Fed%2F57d7edebf111435d8d29597c65433a0a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1934-03-08,1934-03-08,https://shakespeareandco.princeton.edu/members/dillon/,George Dillon,"Dillon, George",,,,,,,,50.00,,,,FRF,,,,,,,Lending Library Card;Address Book,"Sylvia Beach, George Dillon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5e438ba5-07c0-492f-b5f5-b1755e934b4e/manifest;,https://iiif.princeton.edu/loris/figgy_prod/1a%2F27%2F7a%2F1a277a85874341078252c5adc35380a1%2Fintermediate_file.jp2/full/full/0/default.jpg;
+Borrow,1934-03-09,1934-03-12,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/ihara-quaint-stories-samurais/,Quaint Stories of Samurais,,"Ihara, Saikaku",1928,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/1b%2F11%2F64%2F1b116462342c42428515d6fd5451f322%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-09,1934-03-12,https://shakespeareandco.princeton.edu/members/tuttle-stephen-d/,Stephen D. Tuttle,"Tuttle, Stephen D.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/hindus-humanity-uprooted/,Humanity Uprooted,,"Hindus, Maurice Gerschon",1929,,Lending Library Card,"Sylvia Beach, Stephen D. Tuttle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f1653918-3f2b-4e88-bd27-4e3c4d83a47d/manifest,https://iiif-cloud.princeton.edu/iiif/2/65%2Fdf%2Ff8%2F65dff8cf663e4eceb54c65b53cccaf7e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-03-09,1934-03-26,https://shakespeareandco.princeton.edu/members/wang-chun-jen/,Chun Jen Wang,"Wang, Chun Jen",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/quiller-couch-studies-literature/,Studies in Literature,Vol. 1,"Quiller-Couch, Arthur",1918,,Lending Library Card,"Sylvia Beach, Wang Chun Jen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d1494e8d-50d3-4505-9083-ba8eabffab32/manifest,https://iiif.princeton.edu/loris/figgy_prod/4d%2F09%2F8b%2F4d098babc90744cda24c83d112770de5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-09,1934-03-12,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/monnier-fableaux/,Fableaux,,"Monnier, Adrienne",1932,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/1b%2F11%2F64%2F1b116462342c42428515d6fd5451f322%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-09,1934-03-23,https://shakespeareandco.princeton.edu/members/caillois/;https://shakespeareandco.princeton.edu/members/petitjean/,Roger Caillois;Armand Petitjean,"Caillois, Roger;Petitjean, Armand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/kirstein-hound-horn/,Hound & Horn,"Vol. 3, no. 1, Oct β Dec 1929",,,,Lending Library Card,"Sylvia Beach, Roger Caillois/ Armand Petitjean Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/58386f27-2a95-4138-a30e-4dde3aeb0aaa/manifest,https://iiif-cloud.princeton.edu/iiif/2/4f%2F8a%2Fc9%2F4f8ac94272334e4ea75c06b1a68ac749%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-03-09,1934-03-13,https://shakespeareandco.princeton.edu/members/claudius/,Agnes Claudius,"Claudius, Agnes",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/smith-beginning-origin-civilization/,In the Beginning: The Origin of Civilization,,"Smith, Grafton Elliot",1928,,Lending Library Card,"Sylvia Beach, Agnes Claudius Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18a9262d-8ea3-4d0c-9b36-8a1c638950fa/manifest,https://iiif.princeton.edu/loris/figgy_prod/3f%2F38%2F05%2F3f3805f16e1646c8a58bbad3bbc86c95%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-09,1934-03-11,https://shakespeareandco.princeton.edu/members/bonnerot-louis/,Louis Bonnerot,"Bonnerot, Louis",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/leavis-scrutiny-quarterly-review/,Scrutiny: A Quarterly Review,,,,,Lending Library Card,"Sylvia Beach, Louis Bonnerot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c14cc736-079c-4403-9036-a2de4743414a/manifest,https://iiif.princeton.edu/loris/figgy_prod/02%2F5a%2F24%2F025a24f998344e51813e60cf8062c163%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-09,1934-03-10,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/maugham-first-person-singular/,First Person Singular,,"Maugham, W. Somerset",1931,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/57%2Fd7%2Fed%2F57d7edebf111435d8d29597c65433a0a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-09,1934-03-12,https://shakespeareandco.princeton.edu/members/wibbelz-henry/,Henry W. Wibbelz,"Wibbelz, Henry W.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/mann-death-venice/,Death in Venice,,"Mann, Thomas",1925,,Lending Library Card,"Sylvia Beach, Henry W. Wibbelz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/225d5fc4-c83d-46e5-b861-ad36ae4548b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/fd%2F3b%2F61%2Ffd3b61e39369435c9938f281cc02292f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-09,1934-03-10,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/dane-broome-stages/,Broome Stages,,"Dane, Clemence",1931,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/57%2Fd7%2Fed%2F57d7edebf111435d8d29597c65433a0a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-10,1934-03-11,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/ferber-buttered-side-stories/,Buttered Side Down: Stories,,"Ferber, Edna",1912,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/57%2Fd7%2Fed%2F57d7edebf111435d8d29597c65433a0a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-10,1934-03-22,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/douglas-south-wind/,South Wind,,"Douglas, Norman",1917,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/58%2F45%2F77%2F58457700c8f84cf7be6a477c1713a40b%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-03-10,1934-03-17,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/hoult-youth-cant-served/,Youth Can't Be Served,,"Hoult, Norah",1933,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/e6%2F43%2F11%2Fe643111d618f45aeb8829844d126a6c8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-03-10,1934-03-17,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/marble-study-modern-novel/,"A Study of the Modern Novel, British and American, Since 1900",,"Marble, Annie Russell",1928,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/58%2F45%2F77%2F58457700c8f84cf7be6a477c1713a40b%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1934-03-10,1934-04-10,https://shakespeareandco.princeton.edu/members/delimal/,Mme Delimal,"Delimal, Mme",12.00,30.00,1 month,31,1,,1934-03-10,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Madame Delimal Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d7650699-e9d7-4e63-85ff-bce7e9c8dfcd/manifest,https://iiif.princeton.edu/loris/figgy_prod/b1%2Fb8%2F67%2Fb1b8677417e54581bff1177dc38a8c7c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-10,1934-03-30,https://shakespeareandco.princeton.edu/members/guillemin-annie/,Annie Guillemin,"Guillemin, Annie",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/lewis-elmer-gantry/,Elmer Gantry,,"Lewis, Sinclair",1927,,Lending Library Card,"Sylvia Beach, Annie Guillemin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2d6019d9-34ed-4ca4-97a9-5fd05d8640a7/manifest,https://iiif.princeton.edu/loris/figgy_prod/8c%2Fbb%2Fe1%2F8cbbe1dd84b1489fa79f3b0b7d7b6e3f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-10,1934-03-15,https://shakespeareandco.princeton.edu/members/delimal/,Mme Delimal,"Delimal, Mme",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/mansfield-doves-nest-stories/,The Doves' Nest and Other Stories,,"Mansfield, Katherine",1923,,Lending Library Card,"Sylvia Beach, Madame Delimal Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d7650699-e9d7-4e63-85ff-bce7e9c8dfcd/manifest,https://iiif.princeton.edu/loris/figgy_prod/b1%2Fb8%2F67%2Fb1b8677417e54581bff1177dc38a8c7c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1934-03-10,1934-04-10,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,1 month,31,2,,1934-04-04,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/a9%2F32%2Ffa%2Fa932fa635ff243689137fff82724e957%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-10,1934-03-23,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/herbert-water-gipsies/,The Water Gipsies,,"Herbert, A. P.",1930,,Lending Library Card,"Sylvia Beach, Aline Prot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/15a376bb-405b-4488-b789-1559abbe3fb2/manifest,https://iiif-cloud.princeton.edu/iiif/2/cd%2Fb9%2F8d%2Fcdb98d69d2914c9a86733742b9a595f2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-03-10,1934-03-25,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/jones-morning-cloud/,Morning and Cloud,,"Jones, E. B. C.",1932,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/57%2Fd7%2Fed%2F57d7edebf111435d8d29597c65433a0a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1934-03-11,1934-06-11,https://shakespeareandco.princeton.edu/members/vieillard/,Gilbert Vieillard,"Vieillard, Gilbert",30.00,,3 months,92,1,,1934-03-11,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Gilbert Vieillard Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8cd1d6c8-5108-4d59-9706-8bca70405815/manifest,https://iiif.princeton.edu/loris/figgy_prod/e3%2F2e%2F71%2Fe32e712809fa44df9f8aa0175f1991db%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-11,1934-03-15,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/golding-magnolia-street/,Magnolia Street,,"Golding, Louis",1932,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/da%2F3f%2Fea%2Fda3fea8e737d4c0a840500e2ad11dd27%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-11,1934-03-18,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/macdonell-england-england/,"England, Their England",,"Macdonell, A. G.",1933,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/30%2F13%2F8a%2F30138a0365434ba8855aaeac38b08618%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-03-11,1934-03-18,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/lewis-ann-vickers/,Ann Vickers,,"Lewis, Sinclair",1933,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/30%2F13%2F8a%2F30138a0365434ba8855aaeac38b08618%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-03-12,1934-03-25,https://shakespeareandco.princeton.edu/members/wibbelz-henry/,Henry W. Wibbelz,"Wibbelz, Henry W.",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/proust-swanns-way/,Swann's Way (Γ la recherche du temps perdu 1),Vol. 2,"Proust, Marcel",1922,,Lending Library Card,"Sylvia Beach, Henry W. Wibbelz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/225d5fc4-c83d-46e5-b861-ad36ae4548b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/fd%2F3b%2F61%2Ffd3b61e39369435c9938f281cc02292f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-12,1934-03-13,https://shakespeareandco.princeton.edu/members/wibbelz-henry/,Henry W. Wibbelz,"Wibbelz, Henry W.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/hoptner-1933-year-magazine/,1933: A Year Magazine,,,,,Lending Library Card,"Sylvia Beach, Henry W. Wibbelz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/225d5fc4-c83d-46e5-b861-ad36ae4548b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/fd%2F3b%2F61%2Ffd3b61e39369435c9938f281cc02292f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-12,1934-04-24,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",,,,,,,,,Returned,43,,,https://shakespeareandco.princeton.edu/books/moore-lake-2/,The Lake,,"Moore, George",1905,,Lending Library Card,"Sylvia Beach, Aline Prot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/15a376bb-405b-4488-b789-1559abbe3fb2/manifest,https://iiif-cloud.princeton.edu/iiif/2/cd%2Fb9%2F8d%2Fcdb98d69d2914c9a86733742b9a595f2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-03-12,1934-03-19,https://shakespeareandco.princeton.edu/members/burt-maud/,Maud Burt,"Burt, Maud",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/bentley-modern-tragedy/,A Modern Tragedy,,"Bentley, Phyllis Eleanor",1934,,Lending Library Card,"Sylvia Beach, Maud Burt Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/84402ab0-3135-4059-bd55-010e23394445/manifest,https://iiif.princeton.edu/loris/figgy_prod/47%2F98%2F43%2F4798436b9f2b475e8d6f91a988ffe2ad%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-12,1934-03-19,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/parker-pleasures/,After Such Pleasures,,"Parker, Dorothy",1933,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/1b%2F11%2F64%2F1b116462342c42428515d6fd5451f322%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-12,1934-03-20,https://shakespeareandco.princeton.edu/members/tuttle-stephen-d/,Stephen D. Tuttle,"Tuttle, Stephen D.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/lowry-ultramarine/,Ultramarine,,"Lowry, Malcolm",1933,,Lending Library Card,"Sylvia Beach, Stephen D. Tuttle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f1653918-3f2b-4e88-bd27-4e3c4d83a47d/manifest,https://iiif-cloud.princeton.edu/iiif/2/65%2Fdf%2Ff8%2F65dff8cf663e4eceb54c65b53cccaf7e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-03-13,1934-03,https://shakespeareandco.princeton.edu/members/tony-mayer/,Thérèse Tony-Mayer,"Tony-Mayer, Thérèse",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/richardson-trap-pilgrimage-8/,The Trap (Pilgrimage 8),,"Richardson, Dorothy M.",1925,,Lending Library Card,"Sylvia Beach, Thérèse Tony-Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/27246b4c-7d99-4dca-b874-ab90bd542cfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2Fa0%2Fff%2F50a0ff19abc240c680a6a33baf060b76%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-13,1934-03-14,https://shakespeareandco.princeton.edu/members/wibbelz-henry/,Henry W. Wibbelz,"Wibbelz, Henry W.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/kirstein-hound-horn/,Hound & Horn,,,,,Lending Library Card,"Sylvia Beach, Henry W. Wibbelz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/225d5fc4-c83d-46e5-b861-ad36ae4548b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/fd%2F3b%2F61%2Ffd3b61e39369435c9938f281cc02292f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-13,,https://shakespeareandco.princeton.edu/members/claudius/,Agnes Claudius,"Claudius, Agnes",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/stein-three-lives/,Three Lives,,"Stein, Gertrude",1909,,Lending Library Card,"Sylvia Beach, Agnes Claudius Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18a9262d-8ea3-4d0c-9b36-8a1c638950fa/manifest,https://iiif.princeton.edu/loris/figgy_prod/3f%2F38%2F05%2F3f3805f16e1646c8a58bbad3bbc86c95%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-13,,https://shakespeareandco.princeton.edu/members/denis-graterolle/,Elisabeth Denis-Graterolle / Mme Maurice Denis,"Denis-Graterolle, Elisabeth",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/gorman-scottish-queen/,The Scottish Queen,,"Gorman, Herbert Sherman",1932,,Lending Library Card,"Sylvia Beach, Elisabeth Denis-Graterolle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/964dbe97-240c-4e59-a8ca-c43f25875149/manifest,https://iiif.princeton.edu/loris/figgy_prod/01%2F85%2F35%2F0185352ce4a645fb9698d1bbb7b51071%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-13,,https://shakespeareandco.princeton.edu/members/denis-graterolle/,Elisabeth Denis-Graterolle / Mme Maurice Denis,"Denis-Graterolle, Elisabeth",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/dickens-pictures-italy/,Pictures from Italy,,"Dickens, Charles",1846,,Lending Library Card,"Sylvia Beach, Elisabeth Denis-Graterolle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/964dbe97-240c-4e59-a8ca-c43f25875149/manifest,https://iiif.princeton.edu/loris/figgy_prod/01%2F85%2F35%2F0185352ce4a645fb9698d1bbb7b51071%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-13,1934-05-08,https://shakespeareandco.princeton.edu/members/maspero-clerc/;https://shakespeareandco.princeton.edu/members/maspero-henri/,Hélène Maspero-Clerc;Henri Maspero,"Maspero-Clerc, Hélène;Maspero, Henri",,,,,,,,,Returned,56,,,https://shakespeareandco.princeton.edu/books/lawrence-rainbow/,The Rainbow,,"Lawrence, D. H.",1915,,Lending Library Card,"Sylvia Beach, Maspero Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/92dca37a-f412-4b18-90a3-d236d2b3fe20/manifest,https://iiif-cloud.princeton.edu/iiif/2/ea%2F4c%2F4a%2Fea4c4a2dc06f44aaa9c52db92681a7bb%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-03-13,1934-03-28,https://shakespeareandco.princeton.edu/members/foret/,Mme de la Foret,"de la Foret, Mme",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/woolf-mrs-dalloway/,Mrs. Dalloway,,"Woolf, Virginia",1925,,Lending Library Card,"Sylvia Beach, Madame de la Foret Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6fc4cfdc-78bc-4f2f-9b2a-3d0e51291d39/manifest,https://iiif.princeton.edu/loris/figgy_prod/9f%2Fbd%2Fc2%2F9fbdc20ad87d4ab394db6ce1b8a8309c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Crossed out,1934-03-13,,https://shakespeareandco.princeton.edu/members/stern-james/,James Stern,"Stern, James",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/melville-omoo/,Omoo,,"Melville, Herman",1847,,Lending Library Card,"Sylvia Beach, James Stern Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7d39c510-cdb3-431b-a7c9-ade065eeb6b3/manifest,https://iiif.princeton.edu/loris/figgy_prod/e1%2Fbf%2Ffe%2Fe1bffe6cee464344b9d4575e99ce0b09%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-13,1934-03-17,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/buck-first-wife-stories/,The First Wife and Other Stories,,"Buck, Pearl S.",1933,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e3%2Fa3%2F2f%2Fe3a32f3f58b84d669bc3710140acb7d5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-14,1934-04-23,https://shakespeareandco.princeton.edu/members/boscq-marie/,Marie Boscq / Bosq,"Boscq, Marie",,,,,,,,,Returned,40,,,https://shakespeareandco.princeton.edu/books/lawrence-sea-sardinia/,Sea and Sardinia,,"Lawrence, D. H.",1921,,Lending Library Card,"Sylvia Beach, Marie Boscq Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/11480fae-3477-40c8-be7d-484c91023da7/manifest,https://iiif.princeton.edu/loris/figgy_prod/cd%2F75%2F98%2Fcd75980d3c3e4cb3ac5163e331e790db%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-14,,https://shakespeareandco.princeton.edu/members/leyris-betty/,Betty Leyris / Mme Pierre Leyris,"Leyris, Betty",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/freeman-herman-melville/,Herman Melville,,"Freeman, John",1926,,Lending Library Card,"Sylvia Beach, Betty Leyris Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3f5ed408-d1df-45bb-af8c-83a427eb4208/manifest,https://iiif.princeton.edu/loris/figgy_prod/06%2Fc1%2Fea%2F06c1ea4ec8624dd89fe0617c20a7bbb6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-14,1934-03-22,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/lewis-time-western-man/,Time and Western Man,,"Lewis, Wyndham",1927,,Lending Library Card,"Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F0d%2F24%2F560d24c0dfa94677ae04cf2db490c371%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-14,1934-04-14,https://shakespeareandco.princeton.edu/members/vieillard/,Gilbert Vieillard,"Vieillard, Gilbert",,,,,,,,,Returned,31,,,https://shakespeareandco.princeton.edu/books/huxley-music-night-stories/,Music at Night and Other Essays,,"Huxley, Aldous",1931,,Lending Library Card,"Sylvia Beach, Gilbert Vieillard Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8cd1d6c8-5108-4d59-9706-8bca70405815/manifest,https://iiif.princeton.edu/loris/figgy_prod/e3%2F2e%2F71%2Fe32e712809fa44df9f8aa0175f1991db%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-14,,https://shakespeareandco.princeton.edu/members/wibbelz-henry/,Henry W. Wibbelz,"Wibbelz, Henry W.",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/bates-new-stories/,New Stories,"Vol. 1, no. 1, Feb β Mar 1934",,,,Lending Library Card,"Sylvia Beach, Henry W. Wibbelz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/225d5fc4-c83d-46e5-b861-ad36ae4548b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/fd%2F3b%2F61%2Ffd3b61e39369435c9938f281cc02292f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-14,1934-04-20,https://shakespeareandco.princeton.edu/members/wibbelz-henry/,Henry W. Wibbelz,"Wibbelz, Henry W.",,,,,,,,,Returned,37,,,https://shakespeareandco.princeton.edu/books/burnham-symposium-critical-review/,The Symposium: A Critical Review,"Vol. 4, no. 4, Oct 1933",,,,Lending Library Card,"Sylvia Beach, Henry W. Wibbelz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/225d5fc4-c83d-46e5-b861-ad36ae4548b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/fd%2F3b%2F61%2Ffd3b61e39369435c9938f281cc02292f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-15,1934-03-30,https://shakespeareandco.princeton.edu/members/shelley-dorothy/,Dorothy Shelley,"Shelley, Dorothy",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/faulkner-sanctuary/,Sanctuary,,"Faulkner, William",1931,"Caresse Crosby sold a copy of the Black Sun Press edition of *Sanctuary* to Shakespeare and Company on Feb. 17, 1932.",Lending Library Card,"Sylvia Beach, Dorothy Shelley Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dcc58669-efb6-4ace-ab31-a1cb913f3692/manifest,https://iiif.princeton.edu/loris/figgy_prod/6e%2F92%2F2e%2F6e922e058b7c4a56ac1215de11398cdd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-15,1934-04-20,https://shakespeareandco.princeton.edu/members/delimal/,Mme Delimal,"Delimal, Mme",,,,,,,,,Returned,36,,,https://shakespeareandco.princeton.edu/books/huxley-point-counter-point/,Point Counter Point,,"Huxley, Aldous",1928,,Lending Library Card,"Sylvia Beach, Madame Delimal Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d7650699-e9d7-4e63-85ff-bce7e9c8dfcd/manifest,https://iiif.princeton.edu/loris/figgy_prod/b1%2Fb8%2F67%2Fb1b8677417e54581bff1177dc38a8c7c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-15,1934-03-30,https://shakespeareandco.princeton.edu/members/shelley-dorothy/,Dorothy Shelley,"Shelley, Dorothy",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/lawrence-women-love/,Women in Love,,"Lawrence, D. H.",1920,,Lending Library Card,"Sylvia Beach, Dorothy Shelley Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dcc58669-efb6-4ace-ab31-a1cb913f3692/manifest,https://iiif.princeton.edu/loris/figgy_prod/6e%2F92%2F2e%2F6e922e058b7c4a56ac1215de11398cdd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-15,1934-03-26,https://shakespeareandco.princeton.edu/members/clairin-theresa/,Theresa (Shiff) Clairin,"Clairin, Theresa",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/robins-dark-lantern-story/,A Dark Lantern: A Story with a Prologue,,"Robins, Elizabeth",1905,,Lending Library Card,"Sylvia Beach, Theresa (Shiff) Clairin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/46a8350f-5226-4051-aa61-69eae1bf0e52/manifest,https://iiif.princeton.edu/loris/figgy_prod/03%2F12%2Fef%2F0312efd517cc43f6a8d0cce922076e42%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-15,1934-03-31,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/nichols-evensong/,Evensong,,"Nichols, Beverley",1932,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/da%2F3f%2Fea%2Fda3fea8e737d4c0a840500e2ad11dd27%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-15,1934-03-26,https://shakespeareandco.princeton.edu/members/clairin-theresa/,Theresa (Shiff) Clairin,"Clairin, Theresa",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/fothergill-first-violin/,The First Violin,,"Fothergill, Jessie",1878,,Lending Library Card,"Sylvia Beach, Theresa (Shiff) Clairin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/46a8350f-5226-4051-aa61-69eae1bf0e52/manifest,https://iiif.princeton.edu/loris/figgy_prod/03%2F12%2Fef%2F0312efd517cc43f6a8d0cce922076e42%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-16,1934-03-19,https://shakespeareandco.princeton.edu/members/van-den-bergh/,Tamara van den Bergh,"van den Bergh, Tamara",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/forster-passage-india/,A Passage to India,,"Forster, E. M.",1924,,Lending Library Card,"Sylvia Beach, Miss Tamara van den Bergh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f3a52627-dc5d-410b-aa7f-9d39941f18e8/manifest,https://iiif.princeton.edu/loris/figgy_prod/be%2F36%2F7d%2Fbe367d353e62409993b548c8a1a1b7d2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-16,1934-04-23,https://shakespeareandco.princeton.edu/members/perkins/,Mrs. Perkins,"Perkins, Mrs.",,,,,,,,,Returned,38,,,https://shakespeareandco.princeton.edu/books/reed-ten-days-shook/,Ten Days That Shook the World,,"Reed, John",1919,,Lending Library Card,"Sylvia Beach, Perkins Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c711b33a-cb94-478e-8090-0a62744bb3e3/manifest,https://iiif.princeton.edu/loris/figgy_prod/05%2Fc0%2F90%2F05c090db28574e2d9fa4c57145526e2b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-16,1934-04-13,https://shakespeareandco.princeton.edu/members/van-den-bergh/,Tamara van den Bergh,"van den Bergh, Tamara",,,,,,,,,Returned,28,,,https://shakespeareandco.princeton.edu/books/sidney-apology-poetry/,An Apology for Poetry,,"Sidney, Philip",1595,,Lending Library Card,"Sylvia Beach, Miss Tamara van den Bergh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f3a52627-dc5d-410b-aa7f-9d39941f18e8/manifest,https://iiif.princeton.edu/loris/figgy_prod/be%2F36%2F7d%2Fbe367d353e62409993b548c8a1a1b7d2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1934-03-16,1934-04-16,https://shakespeareandco.princeton.edu/members/van-den-bergh/,Tamara van den Bergh,"van den Bergh, Tamara",20.00,60.00,1 month,31,2,,1934-03-16,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Miss Tamara van den Bergh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f3a52627-dc5d-410b-aa7f-9d39941f18e8/manifest,https://iiif.princeton.edu/loris/figgy_prod/be%2F36%2F7d%2Fbe367d353e62409993b548c8a1a1b7d2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-17,1934-03-22,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/kunitz-living-authors-book/,Living Authors: A Book of Biographies,,,1931,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/7c%2F31%2Fe9%2F7c31e90b6b0b4d9eb7817414c69cda4a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-03-17,1934-03-24,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/bell-hamwood-papers-ladies/,The Hamwood Papers of the Ladies of Llangollen and Caroline Hamilton,,,1930,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e3%2Fa3%2F2f%2Fe3a32f3f58b84d669bc3710140acb7d5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-17,1934-03-24,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/queen-siamese-twin-mystery/,The Siamese Twin Mystery,,"Dannay, Frederic;Lee, Manfred B.",1933,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/e6%2F43%2F11%2Fe643111d618f45aeb8829844d126a6c8%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1934-03-17,1934-04-17,https://shakespeareandco.princeton.edu/members/caillois/;https://shakespeareandco.princeton.edu/members/petitjean/,Roger Caillois;Armand Petitjean,"Caillois, Roger;Petitjean, Armand",12.00,,1 month,31,1,,1934-03-17,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Roger Caillois/ Armand Petitjean Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/58386f27-2a95-4138-a30e-4dde3aeb0aaa/manifest,https://iiif-cloud.princeton.edu/iiif/2/4f%2F8a%2Fc9%2F4f8ac94272334e4ea75c06b1a68ac749%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-03-18,1934-03-25,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/ball-swifts-verse-essay/,Swift's Verse: An Essay,,"Ball, F. Elrington",1928,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/30%2F13%2F8a%2F30138a0365434ba8855aaeac38b08618%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-03-18,1934-03-25,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/galsworthy-flowering-wilderness/,Flowering Wilderness (End of Chapter),,"Galsworthy, John",1932,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/30%2F13%2F8a%2F30138a0365434ba8855aaeac38b08618%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-03-19,1934-04-13,https://shakespeareandco.princeton.edu/members/van-den-bergh/,Tamara van den Bergh,"van den Bergh, Tamara",,,,,,,,,Returned,25,,,https://shakespeareandco.princeton.edu/books/blunden-undertones-war/,Undertones of War,,"Blunden, Edmund",1928,,Lending Library Card,"Sylvia Beach, Miss Tamara van den Bergh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f3a52627-dc5d-410b-aa7f-9d39941f18e8/manifest,https://iiif.princeton.edu/loris/figgy_prod/be%2F36%2F7d%2Fbe367d353e62409993b548c8a1a1b7d2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-19,1934-03-26,https://shakespeareandco.princeton.edu/members/burt-maud/,Maud Burt,"Burt, Maud",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/sadleir-blessington-dorsay/,Blessington-D'Orsay,,"Sadleir, Michael",1933,,Lending Library Card,"Sylvia Beach, Maud Burt Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/84402ab0-3135-4059-bd55-010e23394445/manifest,https://iiif.princeton.edu/loris/figgy_prod/47%2F98%2F43%2F4798436b9f2b475e8d6f91a988ffe2ad%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-19,1934-03-30,https://shakespeareandco.princeton.edu/members/plummer-dorothy/,Dorothy Plummer,"Plummer, Dorothy",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/huxley-brave-new-world/,Brave New World,,"Huxley, Aldous",1932,,Lending Library Card,"Sylvia Beach, Dorothy Plummer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5f53ce0-8ea6-4d1f-b36b-f6e5321bab4c/manifest,https://iiif.princeton.edu/loris/figgy_prod/73%2F61%2F28%2F7361283a6eb946cbbb43d97ca38f1deb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-19,1934-04-03,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/lawrence-england-england-stories/,"England, My England and Other Stories",,"Lawrence, D. H.",1922,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/1b%2F11%2F64%2F1b116462342c42428515d6fd5451f322%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-20,1934-04-16,https://shakespeareandco.princeton.edu/members/hiler/,Hilaire Hiler,"Hiler, Hilaire",,,,,,,,,Returned,27,,,https://shakespeareandco.princeton.edu/books/bradby-psycho-analysis-place/,Psycho-Analysis and Its Place in Life,,"Bradby, M. K.",1919,,Lending Library Card,"Sylvia Beach, Hilaire Hiler Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c5f6c051-d93c-453a-be17-611cff442a49/manifest,https://iiif.princeton.edu/loris/figgy_prod/0d%2F3a%2Ff3%2F0d3af3a420b24f45b6b253515320f41b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-20,1934-04-06,https://shakespeareandco.princeton.edu/members/tuttle-stephen-d/,Stephen D. Tuttle,"Tuttle, Stephen D.",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/keats-letters-john-keats/,Letters of John Keats,Vol. 1,"Keats, John",,"George Dillon borrowed volumes 1 and 2, and Stephen D. Tuttle borrowed volume 1 of *The Letters of John Keats,* edited by Maurice Buxton Forman (1931).",Lending Library Card,"Sylvia Beach, Stephen D. Tuttle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f1653918-3f2b-4e88-bd27-4e3c4d83a47d/manifest,https://iiif-cloud.princeton.edu/iiif/2/65%2Fdf%2Ff8%2F65dff8cf663e4eceb54c65b53cccaf7e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-03-21,1934-03-31,https://shakespeareandco.princeton.edu/members/wibbelz-henry/,Henry W. Wibbelz,"Wibbelz, Henry W.",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/dahlberg-bottom-dogs/,Bottom Dogs,,"Dahlberg, Edward",1929,,Lending Library Card,"Sylvia Beach, Henry W. Wibbelz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/225d5fc4-c83d-46e5-b861-ad36ae4548b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/fd%2F3b%2F61%2Ffd3b61e39369435c9938f281cc02292f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-22,1934-04-28,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,37,,,https://shakespeareandco.princeton.edu/books/smith-beginning-origin-civilization/,In the Beginning: The Origin of Civilization,,"Smith, Grafton Elliot",1928,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/7c%2F31%2Fe9%2F7c31e90b6b0b4d9eb7817414c69cda4a%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1934-03-22,1934-04-22,https://shakespeareandco.princeton.edu/members/wibbelz-henry/,Henry W. Wibbelz,"Wibbelz, Henry W.",12.00,,1 month,31,1,,1934-03-29,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Henry W. Wibbelz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/225d5fc4-c83d-46e5-b861-ad36ae4548b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/8c%2Fa9%2Fdc%2F8ca9dcbd3cd34139a75596284e09e496%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-23,1934-03-27,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/kirstein-hound-horn/,Hound & Horn,"Vol. 3, no. 1, Oct β Dec 1929",,,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/c3%2Fcf%2Fcb%2Fc3cfcbac695b438cb411cef7054fed8e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1934-03-23,1934-03-23,https://shakespeareandco.princeton.edu/members/barnett/,Mrs. E. Barnett,"Barnett, Mrs. E.",,,,,,,,80.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1934-03-23,1934-04-06,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/hergesheimer-cytherea/,Cytherea,,"Hergesheimer, Joseph",1921,,Lending Library Card,"Sylvia Beach, Aline Prot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/15a376bb-405b-4488-b789-1559abbe3fb2/manifest,https://iiif-cloud.princeton.edu/iiif/2/cd%2Fb9%2F8d%2Fcdb98d69d2914c9a86733742b9a595f2%2Fintermediate_file/full/full/0/default.jpg
+Crossed out,1934-03-24,,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/queen-siamese-twin-mystery/,The Siamese Twin Mystery,,"Dannay, Frederic;Lee, Manfred B.",1933,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/e6%2F43%2F11%2Fe643111d618f45aeb8829844d126a6c8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-03-24,1934-04-04,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/putnam-francois-rabelais-man/,"FranΓ§ois Rabelais, a Man of the Renaissance: A Spiritual Biography",,"Putnam, Samuel",1929,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/c3%2Fcf%2Fcb%2Fc3cfcbac695b438cb411cef7054fed8e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-24,1934-03-30,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/lowry-ultramarine/,Ultramarine,,"Lowry, Malcolm",1933,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e7%2F67%2Fe4%2Fe767e4aba183458d8491d96a49bd9896%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-24,1935-10-07,https://shakespeareandco.princeton.edu/members/chenneviere-andre/,AndrΓ© Chenneviere,"Chenneviere, AndrΓ©",,,,,,,,,Returned,562,,,https://shakespeareandco.princeton.edu/books/conroy-disinherited/,The Disinherited,,"Conroy, Jack",1933,,Lending Library Card,"Sylvia Beach, AndrΓ© Chenneviere Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98df0370-2f4d-4b36-99d8-b8d1fb791fa4/manifest,https://iiif.princeton.edu/loris/figgy_prod/ca%2Fc6%2F79%2Fcac679b474284c6ca62a9e6d983bdf67%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-24,1934-03-27,https://shakespeareandco.princeton.edu/members/claudius/,Agnes Claudius,"Claudius, Agnes",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/stein-composition-explanation/,Composition as Explanation,,"Stein, Gertrude",1926,,Lending Library Card,"Sylvia Beach, Agnes Claudius Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18a9262d-8ea3-4d0c-9b36-8a1c638950fa/manifest,https://iiif.princeton.edu/loris/figgy_prod/3f%2F38%2F05%2F3f3805f16e1646c8a58bbad3bbc86c95%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-25,1934-04-01,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/cronin-hatters-castle/,Hatter's Castle,,"Cronin, A. J.",1932,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/da%2F3f%2Fea%2Fda3fea8e737d4c0a840500e2ad11dd27%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-25,1934-04-01,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/mottram-lame-dog/,The Lame Dog,,"Mottram, R. H.",1933,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/30%2F13%2F8a%2F30138a0365434ba8855aaeac38b08618%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-03-25,1934-04-01,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/poets/,Poets,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/30%2F13%2F8a%2F30138a0365434ba8855aaeac38b08618%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-03-26,1934-04-03,https://shakespeareandco.princeton.edu/members/clairin-theresa/,Theresa (Shiff) Clairin,"Clairin, Theresa",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/tarkington-gentleman-indiana/,The Gentleman from Indiana,,"Tarkington, Booth",1899,,Lending Library Card,"Sylvia Beach, Theresa (Shiff) Clairin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/46a8350f-5226-4051-aa61-69eae1bf0e52/manifest,https://iiif.princeton.edu/loris/figgy_prod/03%2F12%2Fef%2F0312efd517cc43f6a8d0cce922076e42%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-26,1934-04-03,https://shakespeareandco.princeton.edu/members/clairin-theresa/,Theresa (Shiff) Clairin,"Clairin, Theresa",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/hichens-december-love/,December Love,,"Hichens, Robert Smythe",1922,,Lending Library Card,"Sylvia Beach, Theresa (Shiff) Clairin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/46a8350f-5226-4051-aa61-69eae1bf0e52/manifest,https://iiif.princeton.edu/loris/figgy_prod/03%2F12%2Fef%2F0312efd517cc43f6a8d0cce922076e42%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-26,1934-04-03,https://shakespeareandco.princeton.edu/members/wang-chun-jen/,Chun Jen Wang,"Wang, Chun Jen",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/hadow-chaucer-times/,Chaucer and His Times,,"Hadow, Grace Eleanor",1914,,Lending Library Card,"Sylvia Beach, Wang Chun Jen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d1494e8d-50d3-4505-9083-ba8eabffab32/manifest,https://iiif.princeton.edu/loris/figgy_prod/4d%2F09%2F8b%2F4d098babc90744cda24c83d112770de5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1934-03-26,1934-06-26,https://shakespeareandco.princeton.edu/members/denis-graterolle/,Elisabeth Denis-Graterolle / Mme Maurice Denis,"Denis-Graterolle, Elisabeth",50.00,,3 months,92,2,,1934-03-26,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Elisabeth Denis-Graterolle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/964dbe97-240c-4e59-a8ca-c43f25875149/manifest,https://iiif.princeton.edu/loris/figgy_prod/01%2F85%2F35%2F0185352ce4a645fb9698d1bbb7b51071%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-26,1934-03-28,https://shakespeareandco.princeton.edu/members/burt-maud/,Maud Burt,"Burt, Maud",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/cather-obscure-destinies/,Obscure Destinies,,"Cather, Willa",1932,,Lending Library Card,"Sylvia Beach, Maud Burt Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/84402ab0-3135-4059-bd55-010e23394445/manifest,https://iiif.princeton.edu/loris/figgy_prod/47%2F98%2F43%2F4798436b9f2b475e8d6f91a988ffe2ad%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-26,1934-04-11,https://shakespeareandco.princeton.edu/members/wibbelz-henry/,Henry W. Wibbelz,"Wibbelz, Henry W.",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/proust-within-budding-grove/,Within a Budding Grove (Γ la recherche du temps perdu 2),Vol. 1,"Proust, Marcel",1924,,Lending Library Card,"Sylvia Beach, Henry W. Wibbelz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/225d5fc4-c83d-46e5-b861-ad36ae4548b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/8c%2Fa9%2Fdc%2F8ca9dcbd3cd34139a75596284e09e496%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-27,1934-04-04,https://shakespeareandco.princeton.edu/members/claudius/,Agnes Claudius,"Claudius, Agnes",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/fleming-brazilian-adventure/,Brazilian Adventure,,"Fleming, Peter",1933,,Lending Library Card,"Sylvia Beach, Agnes Claudius Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18a9262d-8ea3-4d0c-9b36-8a1c638950fa/manifest,https://iiif.princeton.edu/loris/figgy_prod/3f%2F38%2F05%2F3f3805f16e1646c8a58bbad3bbc86c95%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-27,1934-04-06,https://shakespeareandco.princeton.edu/members/caillois/;https://shakespeareandco.princeton.edu/members/petitjean/,Roger Caillois;Armand Petitjean,"Caillois, Roger;Petitjean, Armand",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/eliot-strange-gods/,After Strange Gods,,"Eliot, T. S.",1934,,Lending Library Card,"Sylvia Beach, Roger Caillois/ Armand Petitjean Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/58386f27-2a95-4138-a30e-4dde3aeb0aaa/manifest,https://iiif-cloud.princeton.edu/iiif/2/4f%2F8a%2Fc9%2F4f8ac94272334e4ea75c06b1a68ac749%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-03-27,1934-06-25,https://shakespeareandco.princeton.edu/members/tony-mayer/,Thérèse Tony-Mayer,"Tony-Mayer, Thérèse",,,,,,,,,Returned,90,,,https://shakespeareandco.princeton.edu/books/richardson-dawns-left-hand/,Dawn's Left Hand (Pilgrimage 10),,"Richardson, Dorothy M.",1931,,Lending Library Card,"Sylvia Beach, Thérèse Tony-Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/27246b4c-7d99-4dca-b874-ab90bd542cfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2Fa0%2Fff%2F50a0ff19abc240c680a6a33baf060b76%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-28,1934-03-29,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/living-age/,The Living Age,,,,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/a9%2F32%2Ffa%2Fa932fa635ff243689137fff82724e957%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-28,1934-03-31,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/waddell-peter-abelard-novel/,Peter Abelard: A Novel,,"Waddell, Helen",1933,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/a9%2F32%2Ffa%2Fa932fa635ff243689137fff82724e957%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1934-03-28,1934-04-28,https://shakespeareandco.princeton.edu/members/claudius/,Agnes Claudius,"Claudius, Agnes",12.00,,1 month,31,1,,1934-03-28,,,,,FRF,,,,,,,Lending Library Card;Logbook,"Sylvia Beach, Agnes Claudius Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",https://figgy.princeton.edu/concern/scanned_resources/18a9262d-8ea3-4d0c-9b36-8a1c638950fa/manifest;,https://iiif.princeton.edu/loris/figgy_prod/3f%2F38%2F05%2F3f3805f16e1646c8a58bbad3bbc86c95%2Fintermediate_file.jp2/full/full/0/default.jpg;
+Borrow,1934-03-28,1934-04-06,https://shakespeareandco.princeton.edu/members/burt-maud/,Maud Burt,"Burt, Maud",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/walpole-vanessa/,Vanessa,,"Walpole, Hugh",1933,,Lending Library Card,"Sylvia Beach, Maud Burt Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/84402ab0-3135-4059-bd55-010e23394445/manifest,https://iiif.princeton.edu/loris/figgy_prod/47%2F98%2F43%2F4798436b9f2b475e8d6f91a988ffe2ad%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-29,,https://shakespeareandco.princeton.edu/members/massey/,Adelaide W. Massey / A. W. Massey,"Massey, Adelaide W.",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/somervile-experiences-irish-r/,Further Experiences of an Irish R. M.,,"Somerville, E. Ε.;Ross, Martin",1908,,Lending Library Card,"Sylvia Beach, A. W. Massey Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c4712c46-76f3-4581-99d6-d0ffd31b4138/manifest,https://iiif-cloud.princeton.edu/iiif/2/4d%2F7d%2F00%2F4d7d0059b632436eaaffd762b26f5ce3%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-03-29,1934-05-18,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,50,,,https://shakespeareandco.princeton.edu/books/ouspensky-tertium-organum-third/,Tertium Organum: The Third Canon of Thought: A Key to the Enigmas of the World,,"Ouspensky, Pyotr Demianovich",1914,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/a9%2F32%2Ffa%2Fa932fa635ff243689137fff82724e957%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-29,,https://shakespeareandco.princeton.edu/members/massey/,Adelaide W. Massey / A. W. Massey,"Massey, Adelaide W.",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/somervile-mr-knoxs-country/,In Mr. Knox's Country,,"Somerville, E. Ε.;Ross, Martin",1915,,Lending Library Card,"Sylvia Beach, A. W. Massey Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c4712c46-76f3-4581-99d6-d0ffd31b4138/manifest,https://iiif-cloud.princeton.edu/iiif/2/4d%2F7d%2F00%2F4d7d0059b632436eaaffd762b26f5ce3%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-03-30,1934-04-09,https://shakespeareandco.princeton.edu/members/guillemin-annie/,Annie Guillemin,"Guillemin, Annie",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/sugimoto-daughter-samurai/,"A Daughter of the Samurai: How a Daughter of Feudal Japan, Living Hundreds of Years in One Generation, Became a Modern American",,"Sugimoto, Etsuko",1925,,Lending Library Card,"Sylvia Beach, Annie Guillemin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2d6019d9-34ed-4ca4-97a9-5fd05d8640a7/manifest,https://iiif.princeton.edu/loris/figgy_prod/8c%2Fbb%2Fe1%2F8cbbe1dd84b1489fa79f3b0b7d7b6e3f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-30,1934-04-04,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/christie-murder-orient-express/,Murder on the Orient Express,,"Christie, Agatha",1934,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e7%2F67%2Fe4%2Fe767e4aba183458d8491d96a49bd9896%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-30,1934-04-04,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/bentley-modern-tragedy/,A Modern Tragedy,,"Bentley, Phyllis Eleanor",1934,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e7%2F67%2Fe4%2Fe767e4aba183458d8491d96a49bd9896%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-31,,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/lowry-ultramarine/,Ultramarine,,"Lowry, Malcolm",1933,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/a9%2F32%2Ffa%2Fa932fa635ff243689137fff82724e957%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-03-31,1934-04-08,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/aldington-colonels-daughter/,The Colonel's Daughter,,"Aldington, Richard",1931,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/da%2F3f%2Fea%2Fda3fea8e737d4c0a840500e2ad11dd27%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-01,1934-04-11,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/morgan-fountain/,The Fountain,,"Morgan, Charles",1932,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/da%2F3f%2Fea%2Fda3fea8e737d4c0a840500e2ad11dd27%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1934-04-01,1934-05-01,https://shakespeareandco.princeton.edu/members/wang-chun-jen/,Chun Jen Wang,"Wang, Chun Jen",12.00,,1 month,30,1,,1934-04-03,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Wang Chun Jen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d1494e8d-50d3-4505-9083-ba8eabffab32/manifest,https://iiif.princeton.edu/loris/figgy_prod/4d%2F09%2F8b%2F4d098babc90744cda24c83d112770de5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-01,1934-04-08,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/massingham-great-victorians/,The Great Victorians,,"Massingham, Harold John",1932,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/30%2F13%2F8a%2F30138a0365434ba8855aaeac38b08618%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-04-01,1934-04-08,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/morley-human/,Human Being: A Story,,"Morley, Christopher",1933,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/30%2F13%2F8a%2F30138a0365434ba8855aaeac38b08618%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-04-02,1934-04-10,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/croly-new-republic/,The New Republic,,,,"Antoinette Bernheim's lending library card includes the following notation next to her borrow on March 1, 1939: 39/10/2. There is no issue of *The New Republic* on that date.",Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/a9%2F32%2Ffa%2Fa932fa635ff243689137fff82724e957%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-03,1934-04-11,https://shakespeareandco.princeton.edu/members/perkins/,Mrs. Perkins,"Perkins, Mrs.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/kipling-thy-servant-dog/,Thy Servant a Dog,,"Kipling, Rudyard",1930,,Lending Library Card,"Sylvia Beach, Perkins Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c711b33a-cb94-478e-8090-0a62744bb3e3/manifest,https://iiif.princeton.edu/loris/figgy_prod/05%2Fc0%2F90%2F05c090db28574e2d9fa4c57145526e2b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-03,1934-04-03,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/sayers-nine-tailors/,The Nine Tailors,,"Sayers, Dorothy L.",1934,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/e6%2F43%2F11%2Fe643111d618f45aeb8829844d126a6c8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-04-03,1934-04-10,https://shakespeareandco.princeton.edu/members/shelley-dorothy/,Dorothy Shelley,"Shelley, Dorothy",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/twain-adventures-huckleberry-finn/,The Adventures of Huckleberry Finn,,"Twain, Mark",1884,,Lending Library Card,"Sylvia Beach, Dorothy Shelley Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dcc58669-efb6-4ace-ab31-a1cb913f3692/manifest,https://iiif.princeton.edu/loris/figgy_prod/6e%2F92%2F2e%2F6e922e058b7c4a56ac1215de11398cdd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-03,1934-04-11,https://shakespeareandco.princeton.edu/members/perkins/,Mrs. Perkins,"Perkins, Mrs.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/kipling-land-sea-tales/,Land and Sea Tales for Scouts and Guides,,"Kipling, Rudyard",1923,,Lending Library Card,"Sylvia Beach, Perkins Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c711b33a-cb94-478e-8090-0a62744bb3e3/manifest,https://iiif.princeton.edu/loris/figgy_prod/05%2Fc0%2F90%2F05c090db28574e2d9fa4c57145526e2b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-03,1934-04-10,https://shakespeareandco.princeton.edu/members/shelley-dorothy/,Dorothy Shelley,"Shelley, Dorothy",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/buck-good-earth/,The Good Earth,,"Buck, Pearl S.",1931,,Lending Library Card,"Sylvia Beach, Dorothy Shelley Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dcc58669-efb6-4ace-ab31-a1cb913f3692/manifest,https://iiif.princeton.edu/loris/figgy_prod/6e%2F92%2F2e%2F6e922e058b7c4a56ac1215de11398cdd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-03,1934-04-11,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/firbank-valmouth/,Valmouth,,"Firbank, Ronald",1919,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/1b%2F11%2F64%2F1b116462342c42428515d6fd5451f322%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-03,1934-04-13,https://shakespeareandco.princeton.edu/members/wang-chun-jen/,Chun Jen Wang,"Wang, Chun Jen",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/quiller-couch-studies-literature/,Studies in Literature,Vol. 2,"Quiller-Couch, Arthur",1918,,Lending Library Card,"Sylvia Beach, Wang Chun Jen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d1494e8d-50d3-4505-9083-ba8eabffab32/manifest,https://iiif.princeton.edu/loris/figgy_prod/4d%2F09%2F8b%2F4d098babc90744cda24c83d112770de5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-03,1934-04-10,https://shakespeareandco.princeton.edu/members/clairin-theresa/,Theresa (Shiff) Clairin,"Clairin, Theresa",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/hewlett-light-heart/,The Light Heart,,"Hewlett, Maurice",1920,,Lending Library Card,"Sylvia Beach, Theresa (Shiff) Clairin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/46a8350f-5226-4051-aa61-69eae1bf0e52/manifest,https://iiif.princeton.edu/loris/figgy_prod/03%2F12%2Fef%2F0312efd517cc43f6a8d0cce922076e42%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-03,1934-04-10,https://shakespeareandco.princeton.edu/members/clairin-theresa/,Theresa (Shiff) Clairin,"Clairin, Theresa",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/locke-perella/,Perella,,"Locke, William John",1926,,Lending Library Card,"Sylvia Beach, Theresa (Shiff) Clairin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/46a8350f-5226-4051-aa61-69eae1bf0e52/manifest,https://iiif.princeton.edu/loris/figgy_prod/03%2F12%2Fef%2F0312efd517cc43f6a8d0cce922076e42%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-04,1934-04-05,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/queen-siamese-twin-mystery/,The Siamese Twin Mystery,,"Dannay, Frederic;Lee, Manfred B.",1933,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/a9%2F32%2Ffa%2Fa932fa635ff243689137fff82724e957%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-04,1934-06-28,https://shakespeareandco.princeton.edu/members/claudius/,Agnes Claudius,"Claudius, Agnes",,,,,,,,,Returned,85,,,https://shakespeareandco.princeton.edu/books/monroe-book-poems-every/,A Book of Poems for Every Mood,,,1933,,Lending Library Card,"Sylvia Beach, Agnes Claudius Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18a9262d-8ea3-4d0c-9b36-8a1c638950fa/manifest,https://iiif.princeton.edu/loris/figgy_prod/3f%2F38%2F05%2F3f3805f16e1646c8a58bbad3bbc86c95%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-04,1934-06-28,https://shakespeareandco.princeton.edu/members/claudius/,Agnes Claudius,"Claudius, Agnes",,,,,,,,,Returned,85,,,https://shakespeareandco.princeton.edu/books/wassermann-maurizius-case/,The Maurizius Case,,"Wassermann, Jakob",1930,,Lending Library Card,"Sylvia Beach, Agnes Claudius Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18a9262d-8ea3-4d0c-9b36-8a1c638950fa/manifest,https://iiif.princeton.edu/loris/figgy_prod/3f%2F38%2F05%2F3f3805f16e1646c8a58bbad3bbc86c95%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-04,1934-04-05,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/lowndes-chink-armour/,The Chink in the Armour,,"Lowndes, Marie Belloc",1912,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/a9%2F32%2Ffa%2Fa932fa635ff243689137fff82724e957%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-04,1934-04-11,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/sadleir-blessington-dorsay/,Blessington-D'Orsay,,"Sadleir, Michael",1933,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e7%2F67%2Fe4%2Fe767e4aba183458d8491d96a49bd9896%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-05,1934-05-04,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,29,,,https://shakespeareandco.princeton.edu/books/williamson-tarka-otter-joyful/,Tarka the Otter: His Joyful Water-life & Death in the Country of the Two Rivers,,"Williamson, Henry",1927,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/a9%2F32%2Ffa%2Fa932fa635ff243689137fff82724e957%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-05,1934-04-20,https://shakespeareandco.princeton.edu/members/leyris-betty/,Betty Leyris / Mme Pierre Leyris,"Leyris, Betty",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/stein-autobiography-alice-b/,The Autobiography of Alice B. Toklas,,"Stein, Gertrude",1933,,Lending Library Card,"Sylvia Beach, Betty Leyris Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3f5ed408-d1df-45bb-af8c-83a427eb4208/manifest,https://iiif.princeton.edu/loris/figgy_prod/06%2Fc1%2Fea%2F06c1ea4ec8624dd89fe0617c20a7bbb6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-05,1934-04-18,https://shakespeareandco.princeton.edu/members/foret/,Mme de la Foret,"de la Foret, Mme",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/woolf-room-ones/,A Room of One's Own,,"Woolf, Virginia",1929,,Lending Library Card,"Sylvia Beach, Madame de la Foret Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6fc4cfdc-78bc-4f2f-9b2a-3d0e51291d39/manifest,https://iiif.princeton.edu/loris/figgy_prod/9f%2Fbd%2Fc2%2F9fbdc20ad87d4ab394db6ce1b8a8309c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1934-04-05,1934-05-05,https://shakespeareandco.princeton.edu/members/leyris-betty/,Betty Leyris / Mme Pierre Leyris,"Leyris, Betty",25.00,50.00,1 month,30,1,,1934-04-05,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Betty Leyris Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3f5ed408-d1df-45bb-af8c-83a427eb4208/manifest,https://iiif.princeton.edu/loris/figgy_prod/06%2Fc1%2Fea%2F06c1ea4ec8624dd89fe0617c20a7bbb6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1934-04-05,1934-05-05,https://shakespeareandco.princeton.edu/members/eloff-fanie/,Fanie Eloff / Mr. S. J. P. Eloff,"Eloff, Fanie",12.00,,1 month,30,1,,1934-04-05,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Fanie Eloff Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0a96720e-bd20-4cc9-8eb9-62ce6ee5e6dd/manifest,https://iiif.princeton.edu/loris/figgy_prod/41%2F0f%2F45%2F410f45fef01f4d20bcaf62e73c899215%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-05,1934-04-07,https://shakespeareandco.princeton.edu/members/eloff-fanie/,Fanie Eloff / Mr. S. J. P. Eloff,"Eloff, Fanie",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/douglas-south-wind/,South Wind,,"Douglas, Norman",1917,,Lending Library Card,"Sylvia Beach, Fanie Eloff Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0a96720e-bd20-4cc9-8eb9-62ce6ee5e6dd/manifest,https://iiif.princeton.edu/loris/figgy_prod/41%2F0f%2F45%2F410f45fef01f4d20bcaf62e73c899215%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-05,1934-04-18,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/tate-poems/,Poems,,"Tate, Allen",1932,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/a9%2F32%2Ffa%2Fa932fa635ff243689137fff82724e957%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-06,1934-04-14,https://shakespeareandco.princeton.edu/members/tuttle-stephen-d/,Stephen D. Tuttle,"Tuttle, Stephen D.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/dent-mozarts-operas-critical/,Mozart's Operas: A Critical Study,,"Dent, Edward Joseph",1913,,Lending Library Card,"Sylvia Beach, Stephen D. Tuttle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f1653918-3f2b-4e88-bd27-4e3c4d83a47d/manifest,https://iiif-cloud.princeton.edu/iiif/2/65%2Fdf%2Ff8%2F65dff8cf663e4eceb54c65b53cccaf7e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-04-06,1934-04-09,https://shakespeareandco.princeton.edu/members/tuttle-stephen-d/,Stephen D. Tuttle,"Tuttle, Stephen D.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/eliot-strange-gods/,After Strange Gods,,"Eliot, T. S.",1934,,Lending Library Card,"Sylvia Beach, Stephen D. Tuttle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f1653918-3f2b-4e88-bd27-4e3c4d83a47d/manifest,https://iiif-cloud.princeton.edu/iiif/2/65%2Fdf%2Ff8%2F65dff8cf663e4eceb54c65b53cccaf7e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-04-06,1934-04-13,https://shakespeareandco.princeton.edu/members/burt-maud/,Maud Burt,"Burt, Maud",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/strong-sea-wall/,Sea Wall,,"Strong, L. A. G.",1933,,Lending Library Card,"Sylvia Beach, Maud Burt Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/84402ab0-3135-4059-bd55-010e23394445/manifest,https://iiif.princeton.edu/loris/figgy_prod/47%2F98%2F43%2F4798436b9f2b475e8d6f91a988ffe2ad%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-06,1934-04-20,https://shakespeareandco.princeton.edu/members/caillois/;https://shakespeareandco.princeton.edu/members/petitjean/,Roger Caillois;Armand Petitjean,"Caillois, Roger;Petitjean, Armand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/crane-bridge/,The Bridge,,"Crane, Hart",1930,,Lending Library Card,"Sylvia Beach, Roger Caillois/ Armand Petitjean Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/58386f27-2a95-4138-a30e-4dde3aeb0aaa/manifest,https://iiif-cloud.princeton.edu/iiif/2/4f%2F8a%2Fc9%2F4f8ac94272334e4ea75c06b1a68ac749%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-04-06,1934-04-14,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/linklater-juan-america/,Juan in America,,"Linklater, Eric",1931,,Lending Library Card,"Sylvia Beach, Aline Prot's Lending Library Card in Antoinette Bernheim's File, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4a7d497b-2d1d-4e7a-8a3e-781160cbe998/manifest,https://iiif-cloud.princeton.edu/iiif/2/fe%2F14%2Fcf%2Ffe14cfe9ad0c49f3a7d0e7389cce9b9e%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1934-04-06,1934-04-06,https://shakespeareandco.princeton.edu/members/bostwick-muriel/,Muriel Bostwick,"Bostwick, Muriel",,,,,,,,50.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1934-04-07,1934-04-09,https://shakespeareandco.princeton.edu/members/eloff-fanie/,Fanie Eloff / Mr. S. J. P. Eloff,"Eloff, Fanie",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/hughes-high-wind-jamaica/,A High Wind in Jamaica,,"Hughes, Richard",1929,,Lending Library Card,"Sylvia Beach, Fanie Eloff Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0a96720e-bd20-4cc9-8eb9-62ce6ee5e6dd/manifest,https://iiif.princeton.edu/loris/figgy_prod/41%2F0f%2F45%2F410f45fef01f4d20bcaf62e73c899215%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1934-04-07,1935-04-07,https://shakespeareandco.princeton.edu/members/yarrow-catherine/,Catherine Yarrow,"Yarrow, Catherine",157.50,50.00,1 year,365,1,,1934-04-07,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Catherine Yarrow Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/d0d522e7-9d4e-41ca-8b3b-8fe6ba58e334/manifest,;https://iiif.princeton.edu/loris/figgy_prod/38%2Fe4%2F9e%2F38e49ec85ad54b1bb50df436efd43955%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-07,1934-04-09,https://shakespeareandco.princeton.edu/members/yarrow-catherine/,Catherine Yarrow,"Yarrow, Catherine",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/woolf-flush-biography/,Flush: A Biography,,"Woolf, Virginia",1933,,Lending Library Card,"Sylvia Beach, Catherine Yarrow Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d0d522e7-9d4e-41ca-8b3b-8fe6ba58e334/manifest,https://iiif.princeton.edu/loris/figgy_prod/38%2Fe4%2F9e%2F38e49ec85ad54b1bb50df436efd43955%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1934-04-08,1934-07-08,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",100.00,,3 months,91,2,,1934-05-13,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/da%2F3f%2Fea%2Fda3fea8e737d4c0a840500e2ad11dd27%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-09,1934-04-16,https://shakespeareandco.princeton.edu/members/eloff-fanie/,Fanie Eloff / Mr. S. J. P. Eloff,"Eloff, Fanie",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/benson-tobit-transplanted/,Tobit Transplanted,,"Benson, Stella",1931,,Lending Library Card,"Sylvia Beach, Fanie Eloff Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0a96720e-bd20-4cc9-8eb9-62ce6ee5e6dd/manifest,https://iiif.princeton.edu/loris/figgy_prod/41%2F0f%2F45%2F410f45fef01f4d20bcaf62e73c899215%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-09,1934-04-11,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/eliot-strange-gods/,After Strange Gods,,"Eliot, T. S.",1934,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/a9%2F32%2Ffa%2Fa932fa635ff243689137fff82724e957%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-09,1934-04-13,https://shakespeareandco.princeton.edu/members/yarrow-catherine/,Catherine Yarrow,"Yarrow, Catherine",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/chekhov-cherry-orchard/,The Cherry Orchard,,"Chekhov, Anton",1904,,Lending Library Card,"Sylvia Beach, Catherine Yarrow Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d0d522e7-9d4e-41ca-8b3b-8fe6ba58e334/manifest,https://iiif.princeton.edu/loris/figgy_prod/38%2Fe4%2F9e%2F38e49ec85ad54b1bb50df436efd43955%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-09,1934-04-16,https://shakespeareandco.princeton.edu/members/guillemin-annie/,Annie Guillemin,"Guillemin, Annie",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/woolf-mrs-dalloway/,Mrs. Dalloway,,"Woolf, Virginia",1925,,Lending Library Card,"Sylvia Beach, Annie Guillemin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2d6019d9-34ed-4ca4-97a9-5fd05d8640a7/manifest,https://iiif.princeton.edu/loris/figgy_prod/8c%2Fbb%2Fe1%2F8cbbe1dd84b1489fa79f3b0b7d7b6e3f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-09,1934-04-13,https://shakespeareandco.princeton.edu/members/yarrow-catherine/,Catherine Yarrow,"Yarrow, Catherine",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/chekhov-lady-dog/,The Lady with the Dog,,"Chekhov, Anton",1917,,Lending Library Card,"Sylvia Beach, Catherine Yarrow Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d0d522e7-9d4e-41ca-8b3b-8fe6ba58e334/manifest,https://iiif.princeton.edu/loris/figgy_prod/38%2Fe4%2F9e%2F38e49ec85ad54b1bb50df436efd43955%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-10,1934-04-20,https://shakespeareandco.princeton.edu/members/shelley-dorothy/,Dorothy Shelley,"Shelley, Dorothy",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/tower-london/,Tower of London,,,,Unidentified. Likely William Harrison Ainsworth's *The Tower of London: A Historical Romance* (1928).,Lending Library Card,"Sylvia Beach, Dorothy Shelley Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dcc58669-efb6-4ace-ab31-a1cb913f3692/manifest,https://iiif.princeton.edu/loris/figgy_prod/6e%2F92%2F2e%2F6e922e058b7c4a56ac1215de11398cdd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1934-04-10,1934-05-10,https://shakespeareandco.princeton.edu/members/rirachowsky-fanny/,Fanny Rirachowsky,"Rirachowsky, Fanny",,,1 month,30,1,,1934-04-10,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Fanny Rirachowsky Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ed53891-0a1b-4bc4-8b10-d7d32f46663a/manifest,https://iiif-cloud.princeton.edu/iiif/2/f0%2F00%2F80%2Ff00080476a8a4a4bb23537892b912580%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-04-10,1934-04-20,https://shakespeareandco.princeton.edu/members/shelley-dorothy/,Dorothy Shelley,"Shelley, Dorothy",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/hurst-back-street/,Back Street,,"Hurst, Fannie",1931,,Lending Library Card,"Sylvia Beach, Dorothy Shelley Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dcc58669-efb6-4ace-ab31-a1cb913f3692/manifest,https://iiif.princeton.edu/loris/figgy_prod/6e%2F92%2F2e%2F6e922e058b7c4a56ac1215de11398cdd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1934-04-10,1934-05-10,https://shakespeareandco.princeton.edu/members/delimal/,Mme Delimal,"Delimal, Mme",12.00,,1 month,30,1,,1934-04-20,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Madame Delimal Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d7650699-e9d7-4e63-85ff-bce7e9c8dfcd/manifest,https://iiif.princeton.edu/loris/figgy_prod/b1%2Fb8%2F67%2Fb1b8677417e54581bff1177dc38a8c7c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1934-04-10,1934-04-10,https://shakespeareandco.princeton.edu/members/borsoupzky/,M. Borsoupzky,"Borsoupzky, M.",,,,,,,,30.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Crossed out,1934-04-10,,https://shakespeareandco.princeton.edu/members/shelley-dorothy/,Dorothy Shelley,"Shelley, Dorothy",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/ferber-american-beauty/,American Beauty,,"Ferber, Edna",1931,,Lending Library Card,"Sylvia Beach, Dorothy Shelley Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dcc58669-efb6-4ace-ab31-a1cb913f3692/manifest,https://iiif.princeton.edu/loris/figgy_prod/6e%2F92%2F2e%2F6e922e058b7c4a56ac1215de11398cdd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-10,1934-04-21,https://shakespeareandco.princeton.edu/members/clairin-theresa/,Theresa (Shiff) Clairin,"Clairin, Theresa",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/david-neel-journey-lhasa/,My Journey to Lhasa,,"David-NΓ©el, Alexandra",1927,,Lending Library Card,"Sylvia Beach, Theresa (Shiff) Clairin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/46a8350f-5226-4051-aa61-69eae1bf0e52/manifest,https://iiif.princeton.edu/loris/figgy_prod/03%2F12%2Fef%2F0312efd517cc43f6a8d0cce922076e42%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-10,1934-04-21,https://shakespeareandco.princeton.edu/members/clairin-theresa/,Theresa (Shiff) Clairin,"Clairin, Theresa",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/kipling-kim/,Kim,,"Kipling, Rudyard",1901,,Lending Library Card,"Sylvia Beach, Theresa (Shiff) Clairin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/46a8350f-5226-4051-aa61-69eae1bf0e52/manifest,https://iiif.princeton.edu/loris/figgy_prod/03%2F12%2Fef%2F0312efd517cc43f6a8d0cce922076e42%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-10,1934-04-19,https://shakespeareandco.princeton.edu/members/leyris-betty/,Betty Leyris / Mme Pierre Leyris,"Leyris, Betty",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/cummings-eimi/,EIMI,,"Cummings, E. E.",1933,,Lending Library Card,"Sylvia Beach, Betty Leyris Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3f5ed408-d1df-45bb-af8c-83a427eb4208/manifest,https://iiif.princeton.edu/loris/figgy_prod/06%2Fc1%2Fea%2F06c1ea4ec8624dd89fe0617c20a7bbb6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-10,1934-04-14,https://shakespeareandco.princeton.edu/members/rirachowsky-fanny/,Fanny Rirachowsky,"Rirachowsky, Fanny",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/lawrence-sons-lovers/,Sons and Lovers,,"Lawrence, D. H.",1913,,Lending Library Card,"Sylvia Beach, Fanny Rirachowsky Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ed53891-0a1b-4bc4-8b10-d7d32f46663a/manifest,https://iiif-cloud.princeton.edu/iiif/2/f0%2F00%2F80%2Ff00080476a8a4a4bb23537892b912580%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1934-04-10,1934-05-10,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",20.00,,1 month,30,2,,1934-05-03,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/a9%2F32%2Ffa%2Fa932fa635ff243689137fff82724e957%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-11,,https://shakespeareandco.princeton.edu/members/duteurtre/,Claude Duteurtre,"Duteurtre, Claude",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/wallace-white-face/,White Face,,"Wallace, Edgar",1930,,Lending Library Card,"Sylvia Beach, Claude Duteurtre Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7358920f-23a2-480d-a584-11637e796808/manifest,https://iiif.princeton.edu/loris/figgy_prod/be%2F54%2F24%2Fbe54244998ac489a8312c03143641ced%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-11,1934-04-18,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/cronin-hatters-castle/,Hatter's Castle,,"Cronin, A. J.",1932,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/da%2F3f%2Fea%2Fda3fea8e737d4c0a840500e2ad11dd27%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1934-04-11,1934-05-11,https://shakespeareandco.princeton.edu/members/duteurtre/,Claude Duteurtre,"Duteurtre, Claude",12.00,20.00,1 month,30,1,,1934-04-11,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Claude Duteurtre Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7358920f-23a2-480d-a584-11637e796808/manifest,https://iiif.princeton.edu/loris/figgy_prod/be%2F54%2F24%2Fbe54244998ac489a8312c03143641ced%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-11,1934-04-19,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/belloc-charles-first-king/,"Charles the First, King of England",,"Belloc, Hilaire",1933,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e7%2F67%2Fe4%2Fe767e4aba183458d8491d96a49bd9896%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-11,1934-05-15,https://shakespeareandco.princeton.edu/members/wibbelz-henry/,Henry W. Wibbelz,"Wibbelz, Henry W.",,,,,,,,,Returned,34,,,https://shakespeareandco.princeton.edu/books/proust-within-budding-grove/,Within a Budding Grove (Γ la recherche du temps perdu 2),Vol. 2,"Proust, Marcel",1924,,Lending Library Card,"Sylvia Beach, Henry W. Wibbelz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/225d5fc4-c83d-46e5-b861-ad36ae4548b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/8c%2Fa9%2Fdc%2F8ca9dcbd3cd34139a75596284e09e496%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-11,1934-05-26,https://shakespeareandco.princeton.edu/members/wibbelz-henry/,Henry W. Wibbelz,"Wibbelz, Henry W.",,,,,,,,,Returned,45,,,https://shakespeareandco.princeton.edu/books/wolfe-look-homeward-angel/,"Look Homeward, Angel",,"Wolfe, Thomas",1929,,Lending Library Card,"Sylvia Beach, Henry W. Wibbelz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/225d5fc4-c83d-46e5-b861-ad36ae4548b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/8c%2Fa9%2Fdc%2F8ca9dcbd3cd34139a75596284e09e496%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-12,1934-04-21,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/priestley-english-journey/,English Journey,,"Priestley, J. B.",1934,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/7c%2F31%2Fe9%2F7c31e90b6b0b4d9eb7817414c69cda4a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-04-13,1934-04-20,https://shakespeareandco.princeton.edu/members/van-den-bergh/,Tamara van den Bergh,"van den Bergh, Tamara",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/shakespeare-king-lear/,King Lear,,"Shakespeare, William",,,Lending Library Card,"Sylvia Beach, Miss Tamara van den Bergh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f3a52627-dc5d-410b-aa7f-9d39941f18e8/manifest,https://iiif.princeton.edu/loris/figgy_prod/be%2F36%2F7d%2Fbe367d353e62409993b548c8a1a1b7d2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-13,1934-04-17,https://shakespeareandco.princeton.edu/members/burt-maud/,Maud Burt,"Burt, Maud",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/asquith-memories/,More Memories,,"Asquith, Margot",1933,,Lending Library Card,"Sylvia Beach, Maud Burt Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/84402ab0-3135-4059-bd55-010e23394445/manifest,https://iiif.princeton.edu/loris/figgy_prod/47%2F98%2F43%2F4798436b9f2b475e8d6f91a988ffe2ad%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1934-04-13,1934-05-13,https://shakespeareandco.princeton.edu/members/de-roos-elisabeth/;https://shakespeareandco.princeton.edu/members/perron-eddy/,Elisabeth de Roos / Mrs. du Perron;E. du Perron / Eddy du Perron,"de Roos, Elisabeth;du Perron, Eddy",12.00,,1 month,30,1,,1934-04-13,,,,,FRF,,,,,,,Lending Library Card,"The lending library card of Charles Edgar βEddyβ du Perron and Elisabeth de Roos is part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Borrow,1934-04-13,1934-04-23,https://shakespeareandco.princeton.edu/members/de-roos-elisabeth/;https://shakespeareandco.princeton.edu/members/perron-eddy/,Elisabeth de Roos / Mrs. du Perron;E. du Perron / Eddy du Perron,"de Roos, Elisabeth;du Perron, Eddy",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/stern-heartless-land/,The Heartless Land,,"Stern, James",1932,,Lending Library Card,"The lending library card of Charles Edgar βEddyβ du Perron and Elisabeth de Roos is part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Borrow,1934-04-13,1934-04-20,https://shakespeareandco.princeton.edu/members/van-den-bergh/,Tamara van den Bergh,"van den Bergh, Tamara",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/galsworthy-white-monkey/,The White Monkey (A Modern Comedy),,"Galsworthy, John",1924,,Lending Library Card,"Sylvia Beach, Miss Tamara van den Bergh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f3a52627-dc5d-410b-aa7f-9d39941f18e8/manifest,https://iiif.princeton.edu/loris/figgy_prod/be%2F36%2F7d%2Fbe367d353e62409993b548c8a1a1b7d2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-13,1934-04-24,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/barnes-ladies-almanack-showing/,Ladies Almanack: Showing Their Signs and Their Tides; Their Moons and Their Changes; the Seasons as It Is with Them; Their Eclipses and Equinoxes; as well as a Full Record of Diurnal and Nocturnal Distempers,,"Barnes, Djuna",1928,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/1b%2F11%2F64%2F1b116462342c42428515d6fd5451f322%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-13,1934-04-21,https://shakespeareandco.princeton.edu/members/wang-chun-jen/,Chun Jen Wang,"Wang, Chun Jen",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/chaucer-students-chaucer-complete/,The Student's Chaucer: Being a Complete Edition of His Works Edited from Numerous Manuscripts,,"Chaucer, Geoffrey",1900,,Lending Library Card,"Sylvia Beach, Wang Chun Jen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d1494e8d-50d3-4505-9083-ba8eabffab32/manifest,https://iiif.princeton.edu/loris/figgy_prod/4d%2F09%2F8b%2F4d098babc90744cda24c83d112770de5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-13,1934-04-16,https://shakespeareandco.princeton.edu/members/yarrow-catherine/,Catherine Yarrow,"Yarrow, Catherine",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/pound-instigations-ezra-pound/,"Instigations of Ezra Pound: Together with an Essay on the Chinese Written Character, by Ernest Fenollosa",,"Pound, Ezra;Fenollosa, Ernest",1920,,Lending Library Card,"Sylvia Beach, Catherine Yarrow Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d0d522e7-9d4e-41ca-8b3b-8fe6ba58e334/manifest,https://iiif.princeton.edu/loris/figgy_prod/38%2Fe4%2F9e%2F38e49ec85ad54b1bb50df436efd43955%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-14,1934-04-21,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/woolf-room-ones/,A Room of One's Own,,"Woolf, Virginia",1929,,Lending Library Card,"Sylvia Beach, Aline Prot's Lending Library Card in Antoinette Bernheim's File, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4a7d497b-2d1d-4e7a-8a3e-781160cbe998/manifest,https://iiif-cloud.princeton.edu/iiif/2/fe%2F14%2Fcf%2Ffe14cfe9ad0c49f3a7d0e7389cce9b9e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-04-14,1934-04-17,https://shakespeareandco.princeton.edu/members/tuttle-stephen-d/,Stephen D. Tuttle,"Tuttle, Stephen D.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/werfel-pascarella-family/,The Pascarella Family,,"Werfel, Franz",1934,,Lending Library Card,"Sylvia Beach, Stephen D. Tuttle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f1653918-3f2b-4e88-bd27-4e3c4d83a47d/manifest,https://iiif-cloud.princeton.edu/iiif/2/65%2Fdf%2Ff8%2F65dff8cf663e4eceb54c65b53cccaf7e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-04-14,1934-04-17,https://shakespeareandco.princeton.edu/members/tuttle-stephen-d/,Stephen D. Tuttle,"Tuttle, Stephen D.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/mann-death-venice/,Death in Venice,,"Mann, Thomas",1925,,Lending Library Card,"Sylvia Beach, Stephen D. Tuttle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f1653918-3f2b-4e88-bd27-4e3c4d83a47d/manifest,https://iiif-cloud.princeton.edu/iiif/2/65%2Fdf%2Ff8%2F65dff8cf663e4eceb54c65b53cccaf7e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-04-14,1934-04-19,https://shakespeareandco.princeton.edu/members/rirachowsky-fanny/,Fanny Rirachowsky,"Rirachowsky, Fanny",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/faulkner-sanctuary/,Sanctuary,,"Faulkner, William",1931,"Caresse Crosby sold a copy of the Black Sun Press edition of *Sanctuary* to Shakespeare and Company on Feb. 17, 1932.",Lending Library Card,"Sylvia Beach, Fanny Rirachowsky Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ed53891-0a1b-4bc4-8b10-d7d32f46663a/manifest,https://iiif-cloud.princeton.edu/iiif/2/f0%2F00%2F80%2Ff00080476a8a4a4bb23537892b912580%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-04-14,1934-04-26,https://shakespeareandco.princeton.edu/members/vieillard/,Gilbert Vieillard,"Vieillard, Gilbert",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/hudson-green-mansions-romance/,Green Mansions: A Romance of the Tropical Forest,,"Hudson, W. H.",1904,,Lending Library Card,"Sylvia Beach, Gilbert Vieillard Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8cd1d6c8-5108-4d59-9706-8bca70405815/manifest,https://iiif.princeton.edu/loris/figgy_prod/e3%2F2e%2F71%2Fe32e712809fa44df9f8aa0175f1991db%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-14,1934-04-18,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/synge-aran-islands/,The Aran Islands,,"Synge, John Millington",1906,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/a9%2F32%2Ffa%2Fa932fa635ff243689137fff82724e957%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-14,1934-04-18,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/bruce-william-blake-world/,William Blake in This World,,"Bruce, Harold Lawton",1925,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/a9%2F32%2Ffa%2Fa932fa635ff243689137fff82724e957%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-14,,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/beers-history-english-romanticism/,A History of English Romanticism in the Nineteenth Century,,"Beers, Henry A.",1898,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/7c%2F31%2Fe9%2F7c31e90b6b0b4d9eb7817414c69cda4a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-04-16,1934-04-20,https://shakespeareandco.princeton.edu/members/hiler/,Hilaire Hiler,"Hiler, Hilaire",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/freud-problem-lay-analyses/,The Problem of Lay-Analyses,,"Freud, Sigmund",1927,,Lending Library Card,"Sylvia Beach, Hilaire Hiler Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c5f6c051-d93c-453a-be17-611cff442a49/manifest,https://iiif.princeton.edu/loris/figgy_prod/0d%2F3a%2Ff3%2F0d3af3a420b24f45b6b253515320f41b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-16,1934-05-04,https://shakespeareandco.princeton.edu/members/yarrow-catherine/,Catherine Yarrow,"Yarrow, Catherine",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/stendhal-red-black/,The Red and the Black,2 vols.,Stendhal,1926,"At least two editions of *The Red and the Black* circulated in the lending library. Richard Le Gallienne, Catherine Yarrow, and Henry W. Wibbelz borrowed *The Red and the Black* (New York: Modern Library, 1926); and Robert McAlmon and John d'Arcy Clark borrowed *The Scarlet and the Black* (London: Chatto & Windus, 1927).",Lending Library Card,"Sylvia Beach, Catherine Yarrow Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d0d522e7-9d4e-41ca-8b3b-8fe6ba58e334/manifest,https://iiif.princeton.edu/loris/figgy_prod/38%2Fe4%2F9e%2F38e49ec85ad54b1bb50df436efd43955%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-16,1934-04-26,https://shakespeareandco.princeton.edu/members/yarrow-catherine/,Catherine Yarrow,"Yarrow, Catherine",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/lewis-tarr/,Tarr,,"Lewis, Wyndham",1918,,Lending Library Card,"Sylvia Beach, Catherine Yarrow Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d0d522e7-9d4e-41ca-8b3b-8fe6ba58e334/manifest,https://iiif.princeton.edu/loris/figgy_prod/38%2Fe4%2F9e%2F38e49ec85ad54b1bb50df436efd43955%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-16,1934-04-18,https://shakespeareandco.princeton.edu/members/eloff-fanie/,Fanie Eloff / Mr. S. J. P. Eloff,"Eloff, Fanie",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/crowley-diary-drug-fiend/,The Diary of a Drug Fiend,,"Crowley, Aleister",1922,,Lending Library Card,"Sylvia Beach, Fanie Eloff Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0a96720e-bd20-4cc9-8eb9-62ce6ee5e6dd/manifest,https://iiif.princeton.edu/loris/figgy_prod/41%2F0f%2F45%2F410f45fef01f4d20bcaf62e73c899215%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-16,1934-05-15,https://shakespeareandco.princeton.edu/members/guillemin-annie/,Annie Guillemin,"Guillemin, Annie",,,,,,,,,Returned,29,,,https://shakespeareandco.princeton.edu/books/lawrence-letters-h-lawrence/,The Letters of D. H. Lawrence,,"Lawrence, D. H.",1932,,Lending Library Card,"Sylvia Beach, Annie Guillemin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2d6019d9-34ed-4ca4-97a9-5fd05d8640a7/manifest,https://iiif.princeton.edu/loris/figgy_prod/8c%2Fbb%2Fe1%2F8cbbe1dd84b1489fa79f3b0b7d7b6e3f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-17,1935-07-17,https://shakespeareandco.princeton.edu/members/lamy-marthe/,Marthe Lamy,"Lamy, Marthe",,,,,,,,,Returned,456,,,https://shakespeareandco.princeton.edu/books/hudson-richard-kurt/,Richard Kurt,,"Hudson, Stephen",1919,,Lending Library Card,"Sylvia Beach, Marthe Lamy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c715a1d2-668f-44c0-b48d-5f245d0752ba/manifest,https://iiif-cloud.princeton.edu/iiif/2/3b%2F2f%2Fe4%2F3b2fe425ed074e15a19472a16e67e511%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-04-17,1934-04-24,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/machen-great-god-pan/,The Great God Pan,,"Machen, Arthur",1894,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/a9%2F32%2Ffa%2Fa932fa635ff243689137fff82724e957%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-17,1934-04-24,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/garnett-man-zoo/,A Man in the Zoo,,"Garnett, David",1924,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/a9%2F32%2Ffa%2Fa932fa635ff243689137fff82724e957%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-17,1934-04-23,https://shakespeareandco.princeton.edu/members/burt-maud/,Maud Burt,"Burt, Maud",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/liddell-hart-e-lawrence-arabia/,T. E. Lawrence in Arabia and After,,"Liddell Hart, Basil Henry",1934,,Lending Library Card,"Sylvia Beach, Maud Burt Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/84402ab0-3135-4059-bd55-010e23394445/manifest,https://iiif.princeton.edu/loris/figgy_prod/47%2F98%2F43%2F4798436b9f2b475e8d6f91a988ffe2ad%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1934-04-17,1934-05-17,https://shakespeareandco.princeton.edu/members/caillois/;https://shakespeareandco.princeton.edu/members/petitjean/,Roger Caillois;Armand Petitjean,"Caillois, Roger;Petitjean, Armand",12.00,,1 month,30,1,,1934-04-17,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Roger Caillois/ Armand Petitjean Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/58386f27-2a95-4138-a30e-4dde3aeb0aaa/manifest,https://iiif-cloud.princeton.edu/iiif/2/4f%2F8a%2Fc9%2F4f8ac94272334e4ea75c06b1a68ac749%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-04-17,1934-05-26,https://shakespeareandco.princeton.edu/members/gillet-louis/,Louis Gillet,"Gillet, Louis",,,,,,,,,Returned,39,,,https://shakespeareandco.princeton.edu/books/magnus-memoirs-foreign-legion/,Memoirs of the Foreign Legion,,"Magnus, Maurice",1924,,Lending Library Card,"Sylvia Beach, Louis Gillet Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/059a38e2-2b13-4c5c-b116-b978abc5de0c/manifest,https://iiif.princeton.edu/loris/figgy_prod/99%2Ff8%2Fd0%2F99f8d023cb5841b89d40acb6708c3e4c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-17,1934-04-19,https://shakespeareandco.princeton.edu/members/tuttle-stephen-d/,Stephen D. Tuttle,"Tuttle, Stephen D.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/mann-children-fools/,Children and Fools,,"Mann, Thomas",1928,,Lending Library Card,"Sylvia Beach, Stephen D. Tuttle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f1653918-3f2b-4e88-bd27-4e3c4d83a47d/manifest,https://iiif-cloud.princeton.edu/iiif/2/35%2F08%2Ffb%2F3508fbb7bbfa455fa801eedb4cd6a0f1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-04-17,1934-05-26,https://shakespeareandco.princeton.edu/members/gillet-louis/,Louis Gillet,"Gillet, Louis",,,,,,,,,Returned,39,,,https://shakespeareandco.princeton.edu/books/eliot-sacred-wood-essays/,The Sacred Wood: Essays on Poetry and Criticism,,"Eliot, T. S.",1920,,Lending Library Card,"Sylvia Beach, Louis Gillet Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/059a38e2-2b13-4c5c-b116-b978abc5de0c/manifest,https://iiif.princeton.edu/loris/figgy_prod/99%2Ff8%2Fd0%2F99f8d023cb5841b89d40acb6708c3e4c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1934-04-17,1934-04-17,https://shakespeareandco.princeton.edu/members/gillet-louis/,Louis Gillet,"Gillet, Louis",,,,,,,,,,,45.15,FRF,https://shakespeareandco.princeton.edu/books/lawrence-ship-death/,The Ship of Death,,"Lawrence, D. H.",,,Lending Library Card,"Sylvia Beach, Louis Gillet Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/059a38e2-2b13-4c5c-b116-b978abc5de0c/manifest,https://iiif.princeton.edu/loris/figgy_prod/f5%2F5d%2F86%2Ff55d8687ab804f2fbe9123c7158d2f09%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1934-04-17,1934-04-17,https://shakespeareandco.princeton.edu/members/gillet-louis/,Louis Gillet,"Gillet, Louis",,,,,,,,,,,10.75,FRF,https://shakespeareandco.princeton.edu/books/sassoon-road-ruin/,The Road to Ruin,,"Sassoon, Siegfried",1933,,Lending Library Card,"Sylvia Beach, Louis Gillet Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/059a38e2-2b13-4c5c-b116-b978abc5de0c/manifest,https://iiif.princeton.edu/loris/figgy_prod/f5%2F5d%2F86%2Ff55d8687ab804f2fbe9123c7158d2f09%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-18,1934-04-26,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/reid-mackerel-sky/,Mackerel Sky,,"Reid, Eleanor",1926,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/da%2F3f%2Fea%2Fda3fea8e737d4c0a840500e2ad11dd27%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-18,1934-04-28,https://shakespeareandco.princeton.edu/members/foret/,Mme de la Foret,"de la Foret, Mme",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/delafield-gay-life/,Gay Life,,"Delafield, E. M.",1933,,Lending Library Card,"Sylvia Beach, Madame de la Foret Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6fc4cfdc-78bc-4f2f-9b2a-3d0e51291d39/manifest,https://iiif.princeton.edu/loris/figgy_prod/9f%2Fbd%2Fc2%2F9fbdc20ad87d4ab394db6ce1b8a8309c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-18,1934-04-30,https://shakespeareandco.princeton.edu/members/eloff-fanie/,Fanie Eloff / Mr. S. J. P. Eloff,"Eloff, Fanie",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/woolf-lighthouse/,To the Lighthouse,,"Woolf, Virginia",1927,,Lending Library Card,"Sylvia Beach, Fanie Eloff Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0a96720e-bd20-4cc9-8eb9-62ce6ee5e6dd/manifest,https://iiif.princeton.edu/loris/figgy_prod/41%2F0f%2F45%2F410f45fef01f4d20bcaf62e73c899215%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-19,1934-06-05,https://shakespeareandco.princeton.edu/members/leyris-betty/,Betty Leyris / Mme Pierre Leyris,"Leyris, Betty",,,,,,,,,Returned,47,,,https://shakespeareandco.princeton.edu/books/doughty-travels-arabia-deserta/,Travels in Arabia Deserta,Vol. 1,"Doughty, Charles Montagu",1883,,Lending Library Card,"Sylvia Beach, Betty Leyris Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3f5ed408-d1df-45bb-af8c-83a427eb4208/manifest,https://iiif.princeton.edu/loris/figgy_prod/06%2Fc1%2Fea%2F06c1ea4ec8624dd89fe0617c20a7bbb6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-19,1934-06-05,https://shakespeareandco.princeton.edu/members/leyris-betty/,Betty Leyris / Mme Pierre Leyris,"Leyris, Betty",,,,,,,,,Returned,47,,,https://shakespeareandco.princeton.edu/books/yeats-early-poems-stories/,Early Poems and Stories,,"Yeats, William Butler",1925,,Lending Library Card,"Sylvia Beach, Betty Leyris Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3f5ed408-d1df-45bb-af8c-83a427eb4208/manifest,https://iiif.princeton.edu/loris/figgy_prod/06%2Fc1%2Fea%2F06c1ea4ec8624dd89fe0617c20a7bbb6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-19,1934-04-20,https://shakespeareandco.princeton.edu/members/rirachowsky-fanny/,Fanny Rirachowsky,"Rirachowsky, Fanny",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/monro-recent-poetry-1923/,Recent Poetry 1923 β 1933,,,1933,,Lending Library Card,"Sylvia Beach, Fanny Rirachowsky Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ed53891-0a1b-4bc4-8b10-d7d32f46663a/manifest,https://iiif-cloud.princeton.edu/iiif/2/f0%2F00%2F80%2Ff00080476a8a4a4bb23537892b912580%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-04-19,1934-04-20,https://shakespeareandco.princeton.edu/members/tuttle-stephen-d/,Stephen D. Tuttle,"Tuttle, Stephen D.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/lawrence-twilight-italy/,Twilight in Italy,,"Lawrence, D. H.",1916,,Lending Library Card,"Sylvia Beach, Stephen D. Tuttle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f1653918-3f2b-4e88-bd27-4e3c4d83a47d/manifest,https://iiif-cloud.princeton.edu/iiif/2/35%2F08%2Ffb%2F3508fbb7bbfa455fa801eedb4cd6a0f1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-04-20,1934-04-27,https://shakespeareandco.princeton.edu/members/delimal/,Mme Delimal,"Delimal, Mme",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/forster-room-view/,A Room with a View,,"Forster, E. M.",,,Lending Library Card,"Sylvia Beach, Madame Delimal Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d7650699-e9d7-4e63-85ff-bce7e9c8dfcd/manifest,https://iiif.princeton.edu/loris/figgy_prod/b1%2Fb8%2F67%2Fb1b8677417e54581bff1177dc38a8c7c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-20,1934-04-26,https://shakespeareandco.princeton.edu/members/shelley-dorothy/,Dorothy Shelley,"Shelley, Dorothy",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/lawrence-sons-lovers/,Sons and Lovers,,"Lawrence, D. H.",1913,,Lending Library Card,"Sylvia Beach, Dorothy Shelley Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dcc58669-efb6-4ace-ab31-a1cb913f3692/manifest,https://iiif.princeton.edu/loris/figgy_prod/74%2F2c%2Fd6%2F742cd61778084ba19317c41ed8865032%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-20,1934-04-26,https://shakespeareandco.princeton.edu/members/shelley-dorothy/,Dorothy Shelley,"Shelley, Dorothy",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/mansfield-journal-katherine-mansfield/,The Journal of Katherine Mansfield,,"Mansfield, Katherine",1927,,Lending Library Card,"Sylvia Beach, Dorothy Shelley Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dcc58669-efb6-4ace-ab31-a1cb913f3692/manifest,https://iiif.princeton.edu/loris/figgy_prod/74%2F2c%2Fd6%2F742cd61778084ba19317c41ed8865032%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-20,1934-04-21,https://shakespeareandco.princeton.edu/members/rirachowsky-fanny/,Fanny Rirachowsky,"Rirachowsky, Fanny",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/eliot-poems/,Poems,,"Eliot, T. S.",,"Unidentified edition or editions. Monique de Vigan borrowed Eliot's *Poems, 1909 β 1925* (1925).",Lending Library Card,"Sylvia Beach, Fanny Rirachowsky Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ed53891-0a1b-4bc4-8b10-d7d32f46663a/manifest,https://iiif-cloud.princeton.edu/iiif/2/f0%2F00%2F80%2Ff00080476a8a4a4bb23537892b912580%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-04-20,1934-05-01,https://shakespeareandco.princeton.edu/members/caillois/;https://shakespeareandco.princeton.edu/members/petitjean/,Roger Caillois;Armand Petitjean,"Caillois, Roger;Petitjean, Armand",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/dunne-experiment-time/,An Experiment with Time,,"Dunne, J. W.",1927,,Lending Library Card,"Sylvia Beach, Roger Caillois/ Armand Petitjean Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/58386f27-2a95-4138-a30e-4dde3aeb0aaa/manifest,https://iiif-cloud.princeton.edu/iiif/2/4f%2F8a%2Fc9%2F4f8ac94272334e4ea75c06b1a68ac749%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-04-20,1934-06-28,https://shakespeareandco.princeton.edu/members/hiler/,Hilaire Hiler,"Hiler, Hilaire",,,,,,,,,Returned,69,,,https://shakespeareandco.princeton.edu/books/freud-psychopathology-everyday-life/,The Psychopathology of Everyday Life,,"Freud, Sigmund",1914,,Lending Library Card,"Sylvia Beach, Hilaire Hiler Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c5f6c051-d93c-453a-be17-611cff442a49/manifest,https://iiif.princeton.edu/loris/figgy_prod/0d%2F3a%2Ff3%2F0d3af3a420b24f45b6b253515320f41b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-20,1934-04-21,https://shakespeareandco.princeton.edu/members/tuttle-stephen-d/,Stephen D. Tuttle,"Tuttle, Stephen D.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/huxley-beyond-mexique-bay/,Beyond the Mexique Bay,,"Huxley, Aldous",1934,,Lending Library Card,"Sylvia Beach, Stephen D. Tuttle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f1653918-3f2b-4e88-bd27-4e3c4d83a47d/manifest,https://iiif-cloud.princeton.edu/iiif/2/35%2F08%2Ffb%2F3508fbb7bbfa455fa801eedb4cd6a0f1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-04-20,1934-05-29,https://shakespeareandco.princeton.edu/members/denis-graterolle/,Elisabeth Denis-Graterolle / Mme Maurice Denis,"Denis-Graterolle, Elisabeth",,,,,,,,,Returned,39,,,https://shakespeareandco.princeton.edu/books/heyward-porgy/,Porgy,,"Heyward, DuBose",1925,,Lending Library Card,"Sylvia Beach, Elisabeth Denis-Graterolle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/964dbe97-240c-4e59-a8ca-c43f25875149/manifest,https://iiif.princeton.edu/loris/figgy_prod/01%2F85%2F35%2F0185352ce4a645fb9698d1bbb7b51071%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-20,1934-05-29,https://shakespeareandco.princeton.edu/members/denis-graterolle/,Elisabeth Denis-Graterolle / Mme Maurice Denis,"Denis-Graterolle, Elisabeth",,,,,,,,,Returned,39,,,https://shakespeareandco.princeton.edu/books/coyle-flock-birds/,A Flock of Birds,,"Coyle, Kathleen",1930,,Lending Library Card,"Sylvia Beach, Elisabeth Denis-Graterolle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/964dbe97-240c-4e59-a8ca-c43f25875149/manifest,https://iiif.princeton.edu/loris/figgy_prod/01%2F85%2F35%2F0185352ce4a645fb9698d1bbb7b51071%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-21,1934-04-23,https://shakespeareandco.princeton.edu/members/rirachowsky-fanny/,Fanny Rirachowsky,"Rirachowsky, Fanny",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/hemingway-men-without-women/,Men without Women,,"Hemingway, Ernest",1927,,Lending Library Card,"Sylvia Beach, Fanny Rirachowsky Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ed53891-0a1b-4bc4-8b10-d7d32f46663a/manifest,https://iiif-cloud.princeton.edu/iiif/2/f0%2F00%2F80%2Ff00080476a8a4a4bb23537892b912580%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-04-21,1934-04-24,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/lawrence-escaped-cock/,The Escaped Cock / The Man Who Died,,"Lawrence, D. H.",1929,The Caresse Crosby activities are for the Black Sun Press edition of *The Escaped Cock.*,Lending Library Card,"Sylvia Beach, Aline Prot's Lending Library Card in Antoinette Bernheim's File, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4a7d497b-2d1d-4e7a-8a3e-781160cbe998/manifest,https://iiif-cloud.princeton.edu/iiif/2/fe%2F14%2Fcf%2Ffe14cfe9ad0c49f3a7d0e7389cce9b9e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-04-21,1934-05-03,https://shakespeareandco.princeton.edu/members/wang-chun-jen/,Chun Jen Wang,"Wang, Chun Jen",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/jesperson-language-nature-development/,"Language: Its Nature, Development, and Origin",,"Jesperson, Otto",1922,,Lending Library Card,"Sylvia Beach, Wang Chun Jen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d1494e8d-50d3-4505-9083-ba8eabffab32/manifest,https://iiif.princeton.edu/loris/figgy_prod/4d%2F09%2F8b%2F4d098babc90744cda24c83d112770de5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-21,1934-04-23,https://shakespeareandco.princeton.edu/members/tuttle-stephen-d/,Stephen D. Tuttle,"Tuttle, Stephen D.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/chambers-oxford-book-sixteenth/,The Oxford Book of Sixteenth Century Verse,,"Chambers, E. K.",1932,,Lending Library Card,"Sylvia Beach, Stephen D. Tuttle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f1653918-3f2b-4e88-bd27-4e3c4d83a47d/manifest,https://iiif-cloud.princeton.edu/iiif/2/35%2F08%2Ffb%2F3508fbb7bbfa455fa801eedb4cd6a0f1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-04-21,1934-04-26,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/huxley-brave-new-world/,Brave New World,,"Huxley, Aldous",1932,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/da%2F3f%2Fea%2Fda3fea8e737d4c0a840500e2ad11dd27%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-21,1934-04-28,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/tate-poems/,Poems,,"Tate, Allen",1932,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/7c%2F31%2Fe9%2F7c31e90b6b0b4d9eb7817414c69cda4a%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1934-04-22,1934-05-22,https://shakespeareandco.princeton.edu/members/wibbelz-henry/,Henry W. Wibbelz,"Wibbelz, Henry W.",12.00,,1 month,30,1,,1934-05-09,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Henry W. Wibbelz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/225d5fc4-c83d-46e5-b861-ad36ae4548b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/8c%2Fa9%2Fdc%2F8ca9dcbd3cd34139a75596284e09e496%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-23,1934-05-04,https://shakespeareandco.princeton.edu/members/burt-maud/,Maud Burt,"Burt, Maud",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/priestley-english-journey/,English Journey,,"Priestley, J. B.",1934,,Lending Library Card,"Sylvia Beach, Maud Burt Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/84402ab0-3135-4059-bd55-010e23394445/manifest,https://iiif.princeton.edu/loris/figgy_prod/47%2F98%2F43%2F4798436b9f2b475e8d6f91a988ffe2ad%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-23,1934-04-28,https://shakespeareandco.princeton.edu/members/rirachowsky-fanny/,Fanny Rirachowsky,"Rirachowsky, Fanny",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/douglas-south-wind/,South Wind,,"Douglas, Norman",1917,,Lending Library Card,"Sylvia Beach, Fanny Rirachowsky Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ed53891-0a1b-4bc4-8b10-d7d32f46663a/manifest,https://iiif-cloud.princeton.edu/iiif/2/f0%2F00%2F80%2Ff00080476a8a4a4bb23537892b912580%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-04-23,1934-04-30,https://shakespeareandco.princeton.edu/members/tuttle-stephen-d/,Stephen D. Tuttle,"Tuttle, Stephen D.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/goodman-paris-nagier/,The Goodman of Paris (Le MΓ©nagier de Paris),,,1928,,Lending Library Card,"Sylvia Beach, Stephen D. Tuttle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f1653918-3f2b-4e88-bd27-4e3c4d83a47d/manifest,https://iiif-cloud.princeton.edu/iiif/2/35%2F08%2Ffb%2F3508fbb7bbfa455fa801eedb4cd6a0f1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-04-23,1934-04-28,https://shakespeareandco.princeton.edu/members/de-roos-elisabeth/;https://shakespeareandco.princeton.edu/members/perron-eddy/,Elisabeth de Roos / Mrs. du Perron;E. du Perron / Eddy du Perron,"de Roos, Elisabeth;du Perron, Eddy",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/douglas-looking-back-autobiographical/,Looking Back: An Autobiographical Excursion,,"Douglas, Norman",1933,,Lending Library Card,"The lending library card of Charles Edgar βEddyβ du Perron and Elisabeth de Roos is part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Borrow,1934-04-23,,https://shakespeareandco.princeton.edu/members/perkins/,Mrs. Perkins,"Perkins, Mrs.",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/cole-everybody-wants-know-money/,What Everybody Wants to Know about Money: A Planned Outline of Monetary Problems by Nine Economists from Oxford,,,1933,,Lending Library Card,"Sylvia Beach, Perkins Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c711b33a-cb94-478e-8090-0a62744bb3e3/manifest,https://iiif.princeton.edu/loris/figgy_prod/05%2Fc0%2F90%2F05c090db28574e2d9fa4c57145526e2b%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-24,1934-05-05,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/woolf-orlando-biography/,Orlando: A Biography,,"Woolf, Virginia",1928,,Lending Library Card,"Sylvia Beach, Aline Prot's Lending Library Card in Antoinette Bernheim's File, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4a7d497b-2d1d-4e7a-8a3e-781160cbe998/manifest,https://iiif-cloud.princeton.edu/iiif/2/fe%2F14%2Fcf%2Ffe14cfe9ad0c49f3a7d0e7389cce9b9e%2Fintermediate_file/full/full/0/default.jpg
+Generic,1934-04-24,,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/moore-lake-2/,The Lake,,"Moore, George",1905,,Lending Library Card,"Sylvia Beach, Aline Prot's Lending Library Card in Antoinette Bernheim's File, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4a7d497b-2d1d-4e7a-8a3e-781160cbe998/manifest,https://iiif-cloud.princeton.edu/iiif/2/fe%2F14%2Fcf%2Ffe14cfe9ad0c49f3a7d0e7389cce9b9e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-04-24,1934-05-03,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/joyce-dubliners/,Dubliners,,"Joyce, James",1914,,Lending Library Card,"Sylvia Beach, Aline Prot's Lending Library Card in Antoinette Bernheim's File, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4a7d497b-2d1d-4e7a-8a3e-781160cbe998/manifest,https://iiif-cloud.princeton.edu/iiif/2/fe%2F14%2Fcf%2Ffe14cfe9ad0c49f3a7d0e7389cce9b9e%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1934-04-25,1934-07-25,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",50.00,,3 months,91,2,,1934-04-24,,,,,FRF,,,,,,,Lending Library Card;Logbook,"Sylvia Beach, Aline Prot's Lending Library Card in Antoinette Bernheim's File, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",https://figgy.princeton.edu/concern/scanned_resources/4a7d497b-2d1d-4e7a-8a3e-781160cbe998/manifest;,https://iiif-cloud.princeton.edu/iiif/2/fe%2F14%2Fcf%2Ffe14cfe9ad0c49f3a7d0e7389cce9b9e%2Fintermediate_file/full/full/0/default.jpg;
+Borrow,1934-04-26,1934-05-19,https://shakespeareandco.princeton.edu/members/shelley-dorothy/,Dorothy Shelley,"Shelley, Dorothy",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/morgan-fountain/,The Fountain,,"Morgan, Charles",1932,,Lending Library Card,"Sylvia Beach, Dorothy Shelley Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dcc58669-efb6-4ace-ab31-a1cb913f3692/manifest,https://iiif.princeton.edu/loris/figgy_prod/74%2F2c%2Fd6%2F742cd61778084ba19317c41ed8865032%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-26,1934-05-08,https://shakespeareandco.princeton.edu/members/vieillard/,Gilbert Vieillard,"Vieillard, Gilbert",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/buck-good-earth/,The Good Earth,,"Buck, Pearl S.",1931,,Lending Library Card,"Sylvia Beach, Gilbert Vieillard Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8cd1d6c8-5108-4d59-9706-8bca70405815/manifest,https://iiif.princeton.edu/loris/figgy_prod/e3%2F2e%2F71%2Fe32e712809fa44df9f8aa0175f1991db%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-26,1934-04-30,https://shakespeareandco.princeton.edu/members/tuttle-stephen-d/,Stephen D. Tuttle,"Tuttle, Stephen D.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/lawrence-sea-sardinia/,Sea and Sardinia,,"Lawrence, D. H.",1921,,Lending Library Card,"Sylvia Beach, Stephen D. Tuttle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f1653918-3f2b-4e88-bd27-4e3c4d83a47d/manifest,https://iiif-cloud.princeton.edu/iiif/2/35%2F08%2Ffb%2F3508fbb7bbfa455fa801eedb4cd6a0f1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-04-26,1934-05-11,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/sayers-carcase/,Have His Carcase,,"Sayers, Dorothy L.",1932,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/da%2F3f%2Fea%2Fda3fea8e737d4c0a840500e2ad11dd27%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-26,1934-05-19,https://shakespeareandco.princeton.edu/members/shelley-dorothy/,Dorothy Shelley,"Shelley, Dorothy",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/chekhov-love-stories/,Love and Other Stories,,"Chekhov, Anton",1922,,Lending Library Card,"Sylvia Beach, Dorothy Shelley Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dcc58669-efb6-4ace-ab31-a1cb913f3692/manifest,https://iiif.princeton.edu/loris/figgy_prod/74%2F2c%2Fd6%2F742cd61778084ba19317c41ed8865032%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-27,1934-05-16,https://shakespeareandco.princeton.edu/members/delimal/,Mme Delimal,"Delimal, Mme",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/forster-passage-india/,A Passage to India,,"Forster, E. M.",1924,,Lending Library Card,"Sylvia Beach, Madame Delimal Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d7650699-e9d7-4e63-85ff-bce7e9c8dfcd/manifest,https://iiif.princeton.edu/loris/figgy_prod/b1%2Fb8%2F67%2Fb1b8677417e54581bff1177dc38a8c7c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-28,1934-05-05,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/life-united-states/,Life in the United States: A Collection of Narratives of Contemporary American Life from First-hand Experience or Observation,,,1933,"A short story collection: ""The twenty-seven narratives [...] are the result of a prize offered by *Scribner's* magazine.""",Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/7c%2F31%2Fe9%2F7c31e90b6b0b4d9eb7817414c69cda4a%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1934-04-28,1934-05-28,https://shakespeareandco.princeton.edu/members/monet-guiraud/,Monet-Guiraud,Monet-Guiraud,13.20,,1 month,30,1,,1934-04-28,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1934-04-28,1934-04-28,https://shakespeareandco.princeton.edu/members/kandelafte/,Kandelafte,Kandelafte,,,,,,,,30.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1934-04-28,1934-04-28,https://shakespeareandco.princeton.edu/members/monet-guiraud/,Monet-Guiraud,Monet-Guiraud,,,,,,,,30.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1934-04-28,1934-05-05,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/douglas-alone/,Alone,,"Douglas, Norman",1921,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/7c%2F31%2Fe9%2F7c31e90b6b0b4d9eb7817414c69cda4a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-04-28,,https://shakespeareandco.princeton.edu/members/bonnerot-louis/,Louis Bonnerot,"Bonnerot, Louis",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/criterion/,The Criterion,"Vol. 13, no. 52, Apr 1934",,,"Renamed *The New Criterion* from January 1926 to January 1927, and *The Monthly Criterion* from May 1927 to March 1928.",Lending Library Card,"Sylvia Beach, Louis Bonnerot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c14cc736-079c-4403-9036-a2de4743414a/manifest,https://iiif.princeton.edu/loris/figgy_prod/02%2F5a%2F24%2F025a24f998344e51813e60cf8062c163%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-28,1934-05-01,https://shakespeareandco.princeton.edu/members/de-roos-elisabeth/;https://shakespeareandco.princeton.edu/members/perron-eddy/,Elisabeth de Roos / Mrs. du Perron;E. du Perron / Eddy du Perron,"de Roos, Elisabeth;du Perron, Eddy",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/huxley-beyond-mexique-bay/,Beyond the Mexique Bay,,"Huxley, Aldous",1934,,Lending Library Card,"The lending library card of Charles Edgar βEddyβ du Perron and Elisabeth de Roos is part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Borrow,1934-04-28,1934-05-04,https://shakespeareandco.princeton.edu/members/foret/,Mme de la Foret,"de la Foret, Mme",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/delafield-thank-heaven-fasting/,Thank Heaven Fasting,,"Delafield, E. M.",1932,,Lending Library Card,"Sylvia Beach, Madame de la Foret Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6fc4cfdc-78bc-4f2f-9b2a-3d0e51291d39/manifest,https://iiif.princeton.edu/loris/figgy_prod/9f%2Fbd%2Fc2%2F9fbdc20ad87d4ab394db6ce1b8a8309c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-28,1934-05-01,https://shakespeareandco.princeton.edu/members/rirachowsky-fanny/,Fanny Rirachowsky,"Rirachowsky, Fanny",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/mansfield-journal-katherine-mansfield/,The Journal of Katherine Mansfield,,"Mansfield, Katherine",1927,,Lending Library Card,"Sylvia Beach, Fanny Rirachowsky Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ed53891-0a1b-4bc4-8b10-d7d32f46663a/manifest,https://iiif-cloud.princeton.edu/iiif/2/f0%2F00%2F80%2Ff00080476a8a4a4bb23537892b912580%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-04-29,1934-05-06,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/benson-pull-devil-pull/,"Pull Devil, Pull Baker",,"Benson, Stella",1933,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/30%2F13%2F8a%2F30138a0365434ba8855aaeac38b08618%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-04-30,1934-05-09,https://shakespeareandco.princeton.edu/members/eloff-fanie/,Fanie Eloff / Mr. S. J. P. Eloff,"Eloff, Fanie",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/chesterton-st-francis-assisi/,St. Francis of Assisi,,"Chesterton, G. K.",1923,,Lending Library Card,"Sylvia Beach, Fanie Eloff Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0a96720e-bd20-4cc9-8eb9-62ce6ee5e6dd/manifest,https://iiif.princeton.edu/loris/figgy_prod/41%2F0f%2F45%2F410f45fef01f4d20bcaf62e73c899215%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-04-30,1934-05-03,https://shakespeareandco.princeton.edu/members/tuttle-stephen-d/,Stephen D. Tuttle,"Tuttle, Stephen D.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/lawrence-mornings-mexico/,Mornings in Mexico,,"Lawrence, D. H.",1927,,Lending Library Card,"Sylvia Beach, Stephen D. Tuttle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f1653918-3f2b-4e88-bd27-4e3c4d83a47d/manifest,https://iiif-cloud.princeton.edu/iiif/2/35%2F08%2Ffb%2F3508fbb7bbfa455fa801eedb4cd6a0f1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-05-01,1934-05-05,https://shakespeareandco.princeton.edu/members/de-roos-elisabeth/;https://shakespeareandco.princeton.edu/members/perron-eddy/,Elisabeth de Roos / Mrs. du Perron;E. du Perron / Eddy du Perron,"de Roos, Elisabeth;du Perron, Eddy",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/douglas-south-wind/,South Wind,,"Douglas, Norman",1917,,Lending Library Card,"The lending library card of Charles Edgar βEddyβ du Perron and Elisabeth de Roos is part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Borrow,1934-05-01,1934-05-08,https://shakespeareandco.princeton.edu/members/caillois/;https://shakespeareandco.princeton.edu/members/petitjean/,Roger Caillois;Armand Petitjean,"Caillois, Roger;Petitjean, Armand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/auden-poems/,Poems,,"Auden, W. H.",,"Unidentified editions or editions: likely 1930, 1933, or 1934.",Lending Library Card,"Sylvia Beach, Roger Caillois/ Armand Petitjean Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/58386f27-2a95-4138-a30e-4dde3aeb0aaa/manifest,https://iiif-cloud.princeton.edu/iiif/2/4f%2F8a%2Fc9%2F4f8ac94272334e4ea75c06b1a68ac749%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-05-01,1934-05-03,https://shakespeareandco.princeton.edu/members/rirachowsky-fanny/,Fanny Rirachowsky,"Rirachowsky, Fanny",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/mansfield-garden-party-stories/,The Garden Party and Other Stories,,"Mansfield, Katherine",1922,,Lending Library Card,"Sylvia Beach, Fanny Rirachowsky Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ed53891-0a1b-4bc4-8b10-d7d32f46663a/manifest,https://iiif-cloud.princeton.edu/iiif/2/f0%2F00%2F80%2Ff00080476a8a4a4bb23537892b912580%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-05-01,1934-05-05,https://shakespeareandco.princeton.edu/members/de-roos-elisabeth/;https://shakespeareandco.princeton.edu/members/perron-eddy/,Elisabeth de Roos / Mrs. du Perron;E. du Perron / Eddy du Perron,"de Roos, Elisabeth;du Perron, Eddy",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/linklater-magnus-merriman-novel/,Magnus Merriman: A Novel,,"Linklater, Eric",1934,,Lending Library Card,"The lending library card of Charles Edgar βEddyβ du Perron and Elisabeth de Roos is part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Borrow,1934-05-01,1934-05-07,https://shakespeareandco.princeton.edu/members/plummer-dorothy/,Dorothy Plummer,"Plummer, Dorothy",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/buck-first-wife-stories/,The First Wife and Other Stories,,"Buck, Pearl S.",1933,,Lending Library Card,"Sylvia Beach, Dorothy Plummer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5f53ce0-8ea6-4d1f-b36b-f6e5321bab4c/manifest,https://iiif.princeton.edu/loris/figgy_prod/73%2F61%2F28%2F7361283a6eb946cbbb43d97ca38f1deb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-05-03,1934-05-05,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/hemingway-winner-take-nothing/,Winner Take Nothing,,"Hemingway, Ernest",1933,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/a9%2F32%2Ffa%2Fa932fa635ff243689137fff82724e957%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-05-03,1934-05-05,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/van-vechten-nigger-heaven/,Nigger Heaven,,"Van Vechten, Carl",1926,,Lending Library Card,"Sylvia Beach, Aline Prot's Lending Library Card in Antoinette Bernheim's File, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4a7d497b-2d1d-4e7a-8a3e-781160cbe998/manifest,https://iiif-cloud.princeton.edu/iiif/2/fe%2F14%2Fcf%2Ffe14cfe9ad0c49f3a7d0e7389cce9b9e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-05-03,1934-05-18,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/macleish-poems-1924-1933/,"Poems, 1924 β 1933",,"MacLeish, Archibald",1933,,Lending Library Card,"Sylvia Beach, Ada and Archibald MacLeish Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2f76558a-88fe-4823-93f7-5155e7a42f0d/manifest,https://iiif.princeton.edu/loris/figgy_prod/a9%2F32%2Ffa%2Fa932fa635ff243689137fff82724e957%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-05-03,1934-05-07,https://shakespeareandco.princeton.edu/members/rirachowsky-fanny/,Fanny Rirachowsky,"Rirachowsky, Fanny",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/chesterton-secret-father-brown/,The Secret of Father Brown,,"Chesterton, G. K.",1927,,Lending Library Card,"Sylvia Beach, Fanny Rirachowsky Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ed53891-0a1b-4bc4-8b10-d7d32f46663a/manifest,https://iiif-cloud.princeton.edu/iiif/2/f0%2F00%2F80%2Ff00080476a8a4a4bb23537892b912580%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-05-03,1934-05-05,https://shakespeareandco.princeton.edu/members/tuttle-stephen-d/,Stephen D. Tuttle,"Tuttle, Stephen D.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/ford-best-plays-john/,The Best Plays of John Ford,,"Ford, John",1888,From the [Mermaid Series](https://seriesofseries.owu.edu/mermaid-series/).,Lending Library Card,"Sylvia Beach, Stephen D. Tuttle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f1653918-3f2b-4e88-bd27-4e3c4d83a47d/manifest,https://iiif-cloud.princeton.edu/iiif/2/35%2F08%2Ffb%2F3508fbb7bbfa455fa801eedb4cd6a0f1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-05-04,1934-05-05,https://shakespeareandco.princeton.edu/members/burt-maud/,Maud Burt,"Burt, Maud",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/hall-miss-ogilvy-finds/,Miss Ogilvy Finds Herself,,"Hall, Radclyffe",1934,,Lending Library Card,"Sylvia Beach, Maud Burt Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/84402ab0-3135-4059-bd55-010e23394445/manifest,https://iiif.princeton.edu/loris/figgy_prod/47%2F98%2F43%2F4798436b9f2b475e8d6f91a988ffe2ad%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1934-05-04,1934-05-04,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,,,170.00,FRF,https://shakespeareandco.princeton.edu/books/hughes-joyce-book/,The Joyce Book,,,1933,,Lending Library Card,"Sylvia Beach, James Joyce Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/60df1b72-de14-4053-ac2b-b16671872306/manifest,https://iiif.princeton.edu/loris/figgy_prod/3f%2F05%2Fc4%2F3f05c4ba4908479ead76b36736bb9d19%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-05-04,1934-05-11,https://shakespeareandco.princeton.edu/members/foret/,Mme de la Foret,"de la Foret, Mme",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/maugham-painted-veil/,The Painted Veil,,"Maugham, W. Somerset",1925,,Lending Library Card,"Sylvia Beach, Madame de la Foret Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6fc4cfdc-78bc-4f2f-9b2a-3d0e51291d39/manifest,https://iiif.princeton.edu/loris/figgy_prod/9f%2Fbd%2Fc2%2F9fbdc20ad87d4ab394db6ce1b8a8309c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-05-04,1934-05-12,https://shakespeareandco.princeton.edu/members/yarrow-catherine/,Catherine Yarrow,"Yarrow, Catherine",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/defoe-moll-flanders/,Moll Flanders,,"Defoe, Daniel",1722,,Lending Library Card,"Sylvia Beach, Catherine Yarrow Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d0d522e7-9d4e-41ca-8b3b-8fe6ba58e334/manifest,https://iiif.princeton.edu/loris/figgy_prod/38%2Fe4%2F9e%2F38e49ec85ad54b1bb50df436efd43955%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-05-05,1934-05-26,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/stephens-crock-gold/,The Crock of Gold,,"Stephens, James",1912,,Lending Library Card,"Sylvia Beach, Aline Prot's Lending Library Card in Antoinette Bernheim's File, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4a7d497b-2d1d-4e7a-8a3e-781160cbe998/manifest,https://iiif-cloud.princeton.edu/iiif/2/fe%2F14%2Fcf%2Ffe14cfe9ad0c49f3a7d0e7389cce9b9e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-05-05,1934-05-07,https://shakespeareandco.princeton.edu/members/tuttle-stephen-d/,Stephen D. Tuttle,"Tuttle, Stephen D.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/sitwell-mozart/,Mozart,,"Sitwell, Sacheverell",1932,,Lending Library Card,"Sylvia Beach, Stephen D. Tuttle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f1653918-3f2b-4e88-bd27-4e3c4d83a47d/manifest,https://iiif-cloud.princeton.edu/iiif/2/35%2F08%2Ffb%2F3508fbb7bbfa455fa801eedb4cd6a0f1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-05-05,1934-05-12,https://shakespeareandco.princeton.edu/members/tuttle-stephen-d/,Stephen D. Tuttle,"Tuttle, Stephen D.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/pound-draft-xxx-cantos/,A Draft of XXX Cantos,,"Pound, Ezra",1930,,Lending Library Card,"Sylvia Beach, Stephen D. Tuttle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f1653918-3f2b-4e88-bd27-4e3c4d83a47d/manifest,https://iiif-cloud.princeton.edu/iiif/2/35%2F08%2Ffb%2F3508fbb7bbfa455fa801eedb4cd6a0f1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-05-05,1934-05-14,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/douglas-together/,Together,,"Douglas, Norman",1923,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/7c%2F31%2Fe9%2F7c31e90b6b0b4d9eb7817414c69cda4a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-05-05,1934-05-14,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/read-innocent-eye/,The Innocent Eye,,"Read, Herbert",1933,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/7c%2F31%2Fe9%2F7c31e90b6b0b4d9eb7817414c69cda4a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-05-05,1934-05-26,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/richardson-pointed-roofs/,Pointed Roofs (Pilgrimage 1),,"Richardson, Dorothy M.",1915,,Lending Library Card,"Sylvia Beach, Aline Prot's Lending Library Card in Antoinette Bernheim's File, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4a7d497b-2d1d-4e7a-8a3e-781160cbe998/manifest,https://iiif-cloud.princeton.edu/iiif/2/fe%2F14%2Fcf%2Ffe14cfe9ad0c49f3a7d0e7389cce9b9e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-05-05,1934-05-12,https://shakespeareandco.princeton.edu/members/burt-maud/,Maud Burt,"Burt, Maud",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/hoult-youth-cant-served/,Youth Can't Be Served,,"Hoult, Norah",1933,,Lending Library Card,"Sylvia Beach, Maud Burt Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/84402ab0-3135-4059-bd55-010e23394445/manifest,https://iiif.princeton.edu/loris/figgy_prod/47%2F98%2F43%2F4798436b9f2b475e8d6f91a988ffe2ad%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-05-05,1934-06-14,https://shakespeareandco.princeton.edu/members/massey/,Adelaide W. Massey / A. W. Massey,"Massey, Adelaide W.",,,,,,,,,Returned,40,,,https://shakespeareandco.princeton.edu/books/hemingway-death-afternoon/,Death in the Afternoon,,"Hemingway, Ernest",1932,,Lending Library Card,"Sylvia Beach, A. W. Massey Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c4712c46-76f3-4581-99d6-d0ffd31b4138/manifest,https://iiif-cloud.princeton.edu/iiif/2/4d%2F7d%2F00%2F4d7d0059b632436eaaffd762b26f5ce3%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-05-05,1934-06-13,https://shakespeareandco.princeton.edu/members/massey/,Adelaide W. Massey / A. W. Massey,"Massey, Adelaide W.",,,,,,,,,Returned,39,,,https://shakespeareandco.princeton.edu/books/faulkner-doctor-martino-stories/,Doctor Martino and Other Stories,,"Faulkner, William",1934,,Lending Library Card,"Sylvia Beach, A. W. Massey Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c4712c46-76f3-4581-99d6-d0ffd31b4138/manifest,https://iiif-cloud.princeton.edu/iiif/2/4d%2F7d%2F00%2F4d7d0059b632436eaaffd762b26f5ce3%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-05-06,1934-05-13,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/macleish-conquistador/,Conquistador,,"MacLeish, Archibald",1933,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/30%2F13%2F8a%2F30138a0365434ba8855aaeac38b08618%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-05-06,1934-05-13,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/webb-golden-arrow/,Golden Arrow,,"Webb, Mary",1916,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/30%2F13%2F8a%2F30138a0365434ba8855aaeac38b08618%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1934-05-06,1934-08-06,https://shakespeareandco.princeton.edu/members/eloff-fanie/,Fanie Eloff / Mr. S. J. P. Eloff,"Eloff, Fanie",30.00,,3 months,92,1,,1934-05-09,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Fanie Eloff Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/0a96720e-bd20-4cc9-8eb9-62ce6ee5e6dd/manifest,;https://iiif.princeton.edu/loris/figgy_prod/41%2F0f%2F45%2F410f45fef01f4d20bcaf62e73c899215%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-05-07,1934-05-12,https://shakespeareandco.princeton.edu/members/rirachowsky-fanny/,Fanny Rirachowsky,"Rirachowsky, Fanny",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/aldington-colonels-daughter/,The Colonel's Daughter,,"Aldington, Richard",1931,,Lending Library Card,"Sylvia Beach, Fanny Rirachowsky Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ed53891-0a1b-4bc4-8b10-d7d32f46663a/manifest,https://iiif-cloud.princeton.edu/iiif/2/f0%2F00%2F80%2Ff00080476a8a4a4bb23537892b912580%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-05-07,1934-05-15,https://shakespeareandco.princeton.edu/members/tuttle-stephen-d/,Stephen D. Tuttle,"Tuttle, Stephen D.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/butler-alps-sanctuaries-piedmont/,Alps and Sanctuaries of Piedmont and the Canton Ticino,,"Butler, Samuel",1882,,Lending Library Card,"Sylvia Beach, Stephen D. Tuttle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f1653918-3f2b-4e88-bd27-4e3c4d83a47d/manifest,https://iiif-cloud.princeton.edu/iiif/2/35%2F08%2Ffb%2F3508fbb7bbfa455fa801eedb4cd6a0f1%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1934-05-08,1934-06-08,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",20.00,20.00,1 month,31,2,,1934-05-08,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/e6%2F6f%2F74%2Fe66f74c339014daa83229167df178fa1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-05-08,1934-05-14,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/lehmann-note-music/,A Note in Music,,"Lehmann, Rosamond",1930,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/e6%2F6f%2F74%2Fe66f74c339014daa83229167df178fa1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-05-08,1934-06-15,https://shakespeareandco.princeton.edu/members/pagan/,Marquis Pagan,"Pagan, Marquis",,,,,,,,,Returned,38,,,https://shakespeareandco.princeton.edu/books/somervile-experiences-irish-r/,Further Experiences of an Irish R. M.,,"Somerville, E. Ε.;Ross, Martin",1908,,Lending Library Card,"Sylvia Beach, Marquis Comte Pagan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/54efdc71-5289-4169-93a3-a534a1322152/manifest,https://iiif.princeton.edu/loris/figgy_prod/1b%2F11%2F64%2F1b116462342c42428515d6fd5451f322%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-05-08,1934-05-11,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/mansfield-german-pension/,In a German Pension,,"Mansfield, Katherine",1911,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/e6%2F6f%2F74%2Fe66f74c339014daa83229167df178fa1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-05-08,1934-05-16,https://shakespeareandco.princeton.edu/members/vieillard/,Gilbert Vieillard,"Vieillard, Gilbert",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/huxley-brief-candles-stories/,Brief Candles: Stories,,"Huxley, Aldous",1930,,Lending Library Card,"Sylvia Beach, Gilbert Vieillard Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8cd1d6c8-5108-4d59-9706-8bca70405815/manifest,https://iiif.princeton.edu/loris/figgy_prod/e3%2F2e%2F71%2Fe32e712809fa44df9f8aa0175f1991db%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-05-09,1934-05-17,https://shakespeareandco.princeton.edu/members/eloff-fanie/,Fanie Eloff / Mr. S. J. P. Eloff,"Eloff, Fanie",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/mackenzie-vestal-fire/,Vestal Fire,,"Mackenzie, Compton",1927,,Lending Library Card,"Sylvia Beach, Fanie Eloff Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0a96720e-bd20-4cc9-8eb9-62ce6ee5e6dd/manifest,https://iiif.princeton.edu/loris/figgy_prod/41%2F0f%2F45%2F410f45fef01f4d20bcaf62e73c899215%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-05-09,1934-05-14,https://shakespeareandco.princeton.edu/members/wibbelz-henry/,Henry W. Wibbelz,"Wibbelz, Henry W.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/kirstein-hound-horn/,Hound & Horn,,,,,Lending Library Card,"Sylvia Beach, Henry W. Wibbelz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/225d5fc4-c83d-46e5-b861-ad36ae4548b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/8c%2Fa9%2Fdc%2F8ca9dcbd3cd34139a75596284e09e496%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1934-05-10,1934-06-10,https://shakespeareandco.princeton.edu/members/rirachowsky-fanny/,Fanny Rirachowsky,"Rirachowsky, Fanny",10.00,,1 month,31,1,,1934-05-29,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Fanny Rirachowsky Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ed53891-0a1b-4bc4-8b10-d7d32f46663a/manifest,https://iiif-cloud.princeton.edu/iiif/2/f0%2F00%2F80%2Ff00080476a8a4a4bb23537892b912580%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1934-05-10,1934-06-10,https://shakespeareandco.princeton.edu/members/delimal/,Mme Delimal,"Delimal, Mme",12.00,,1 month,31,1,,1934-05-11,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Madame Delimal Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/d7650699-e9d7-4e63-85ff-bce7e9c8dfcd/manifest,;https://iiif.princeton.edu/loris/figgy_prod/b1%2Fb8%2F67%2Fb1b8677417e54581bff1177dc38a8c7c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-05-11,1934-05-17,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/brett-lawrence-brett-friendship/,Lawrence and Brett: A Friendship,,"Brett, Dorothy",1933,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/e6%2F6f%2F74%2Fe66f74c339014daa83229167df178fa1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-05-11,1935-10-07,https://shakespeareandco.princeton.edu/members/chenneviere-andre/,AndrΓ© Chenneviere,"Chenneviere, AndrΓ©",,,,,,,,,Returned,514,,,https://shakespeareandco.princeton.edu/books/jenkins-bindle-chapters-life/,Bindle: Some Chapters in the Life of Joseph Bindle,,"Jenkins, Herbert George",1916,,Lending Library Card,"Sylvia Beach, AndrΓ© Chenneviere Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/98df0370-2f4d-4b36-99d8-b8d1fb791fa4/manifest,https://iiif.princeton.edu/loris/figgy_prod/ca%2Fc6%2F79%2Fcac679b474284c6ca62a9e6d983bdf67%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-05-11,1934-05-23,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/lawrence-mornings-mexico/,Mornings in Mexico,,"Lawrence, D. H.",1927,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/e6%2F6f%2F74%2Fe66f74c339014daa83229167df178fa1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-05-11,1934-05-17,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/hall-miss-ogilvy-finds/,Miss Ogilvy Finds Herself,,"Hall, Radclyffe",1934,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e7%2F67%2Fe4%2Fe767e4aba183458d8491d96a49bd9896%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-05-11,1934-05-17,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/gibbon-niger-life-mungo/,Niger: The Life of Mungo Park,,"Gibbon, Lewis Grassic",1934,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e7%2F67%2Fe4%2Fe767e4aba183458d8491d96a49bd9896%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-05-11,,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/three-loves/,Three Loves,,,,"Unidentified. Max Brod's *Three Loves* (1929) or A. J. Cronin's *Three Loves* (1932), etc.",Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/da%2F3f%2Fea%2Fda3fea8e737d4c0a840500e2ad11dd27%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-05-11,1934-05-13,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/obrien-best-short-stories-1931/,The Best Short Stories 1931: And the Yearbook of the American Short Story,,,1931,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/da%2F3f%2Fea%2Fda3fea8e737d4c0a840500e2ad11dd27%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-05-11,1934-05-12,https://shakespeareandco.princeton.edu/members/delimal/,Mme Delimal,"Delimal, Mme",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/national-geographic/,National Geographic,"Vol. 65, no. 3, Mar 1934",,,,Lending Library Card,"Sylvia Beach, Madame Delimal Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d7650699-e9d7-4e63-85ff-bce7e9c8dfcd/manifest,https://iiif.princeton.edu/loris/figgy_prod/b1%2Fb8%2F67%2Fb1b8677417e54581bff1177dc38a8c7c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-05-11,1934-05-23,https://shakespeareandco.princeton.edu/members/foret/,Mme de la Foret,"de la Foret, Mme",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/faulkner-lay-dying/,As I Lay Dying,,"Faulkner, William",1930,,Lending Library Card,"Sylvia Beach, Madame de la Foret Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6fc4cfdc-78bc-4f2f-9b2a-3d0e51291d39/manifest,https://iiif.princeton.edu/loris/figgy_prod/9f%2Fbd%2Fc2%2F9fbdc20ad87d4ab394db6ce1b8a8309c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-05-12,,https://shakespeareandco.princeton.edu/members/yarrow-catherine/,Catherine Yarrow,"Yarrow, Catherine",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/stendhal-charterhouse-parma/,The Charterhouse of Parma,,Stendhal,1839,,Lending Library Card,"Sylvia Beach, Catherine Yarrow Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d0d522e7-9d4e-41ca-8b3b-8fe6ba58e334/manifest,https://iiif.princeton.edu/loris/figgy_prod/38%2Fe4%2F9e%2F38e49ec85ad54b1bb50df436efd43955%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-05-12,1934-05-16,https://shakespeareandco.princeton.edu/members/rirachowsky-fanny/,Fanny Rirachowsky,"Rirachowsky, Fanny",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/de-quincey-confessions-english-opium/,Confessions of an English Opium Eater,,"de Quincey, Thomas",1821,"Bernard Saby borrowed *Confessions of an English Opium Eater,* edited by William Sharp (Walter Scott, 1888).",Lending Library Card,"Sylvia Beach, Fanny Rirachowsky Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ed53891-0a1b-4bc4-8b10-d7d32f46663a/manifest,https://iiif-cloud.princeton.edu/iiif/2/f0%2F00%2F80%2Ff00080476a8a4a4bb23537892b912580%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-05-12,1934-05-19,https://shakespeareandco.princeton.edu/members/tuttle-stephen-d/,Stephen D. Tuttle,"Tuttle, Stephen D.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/proust-guermantes-way/,The Guermantes Way (Γ la recherche du temps perdu 3),Vol. 1,"Proust, Marcel",1925,,Lending Library Card,"Sylvia Beach, Stephen D. Tuttle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f1653918-3f2b-4e88-bd27-4e3c4d83a47d/manifest,https://iiif-cloud.princeton.edu/iiif/2/35%2F08%2Ffb%2F3508fbb7bbfa455fa801eedb4cd6a0f1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-05-12,1934-05-14,https://shakespeareandco.princeton.edu/members/burt-maud/,Maud Burt,"Burt, Maud",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/hoult-time-gentlemen-time/,Time Gentlemen! Time!,,"Hoult, Norah",1930,,Lending Library Card,"Sylvia Beach, Maud Burt Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/84402ab0-3135-4059-bd55-010e23394445/manifest,https://iiif.princeton.edu/loris/figgy_prod/47%2F98%2F43%2F4798436b9f2b475e8d6f91a988ffe2ad%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-05-13,1934-05-18,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/arlen-lily-christine/,Lily Christine,,"Arlen, Michael",1928,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/da%2F3f%2Fea%2Fda3fea8e737d4c0a840500e2ad11dd27%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-05-13,1934-06-25,https://shakespeareandco.princeton.edu/members/massey/,Adelaide W. Massey / A. W. Massey,"Massey, Adelaide W.",,,,,,,,,Returned,43,,,https://shakespeareandco.princeton.edu/books/priestley-english-journey/,English Journey,,"Priestley, J. B.",1934,,Lending Library Card,"Sylvia Beach, A. W. Massey Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c4712c46-76f3-4581-99d6-d0ffd31b4138/manifest,https://iiif-cloud.princeton.edu/iiif/2/4d%2F7d%2F00%2F4d7d0059b632436eaaffd762b26f5ce3%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-05-13,1934-05-20,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/murry-reminiscences-h-lawrence/,Reminiscences of D. H. Lawrence,,"Murry, John Middleton",1933,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/30%2F13%2F8a%2F30138a0365434ba8855aaeac38b08618%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-05-13,1934-05-20,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/cozzens-cure-flesh/,A Cure of Flesh,,"Cozzens, James Gould",1933,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/30%2F13%2F8a%2F30138a0365434ba8855aaeac38b08618%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-05-14,1934-06-25,https://shakespeareandco.princeton.edu/members/massey/,Adelaide W. Massey / A. W. Massey,"Massey, Adelaide W.",,,,,,,,,Returned,42,,,https://shakespeareandco.princeton.edu/books/buck-mother/,The Mother,,"Buck, Pearl S.",1934,,Lending Library Card,"Sylvia Beach, A. W. Massey Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c4712c46-76f3-4581-99d6-d0ffd31b4138/manifest,https://iiif-cloud.princeton.edu/iiif/2/4d%2F7d%2F00%2F4d7d0059b632436eaaffd762b26f5ce3%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-05-14,1934-05-17,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/nicolson-curzon-last-phase/,"Curzon: The Last Phase, 1919 β 1925, a Study of Post-War Diplomacy",,"Nicolson, Harold George",1934,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/7c%2F31%2Fe9%2F7c31e90b6b0b4d9eb7817414c69cda4a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-05-14,1934-05-24,https://shakespeareandco.princeton.edu/members/burt-maud/,Maud Burt,"Burt, Maud",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/lehmann-invitation-waltz/,Invitation to the Waltz,,"Lehmann, Rosamond",1932,,Lending Library Card,"Sylvia Beach, Maud Burt Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/84402ab0-3135-4059-bd55-010e23394445/manifest,https://iiif.princeton.edu/loris/figgy_prod/47%2F98%2F43%2F4798436b9f2b475e8d6f91a988ffe2ad%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-05-15,1934-05-22,https://shakespeareandco.princeton.edu/members/tuttle-stephen-d/,Stephen D. Tuttle,"Tuttle, Stephen D.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/proust-guermantes-way/,The Guermantes Way (Γ la recherche du temps perdu 3),Vol. 2,"Proust, Marcel",1925,,Lending Library Card,"Sylvia Beach, Stephen D. Tuttle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f1653918-3f2b-4e88-bd27-4e3c4d83a47d/manifest,https://iiif-cloud.princeton.edu/iiif/2/35%2F08%2Ffb%2F3508fbb7bbfa455fa801eedb4cd6a0f1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-05-15,1934-05-31,https://shakespeareandco.princeton.edu/members/guillemin-annie/,Annie Guillemin,"Guillemin, Annie",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/faulkner-sanctuary/,Sanctuary,,"Faulkner, William",1931,"Caresse Crosby sold a copy of the Black Sun Press edition of *Sanctuary* to Shakespeare and Company on Feb. 17, 1932.",Lending Library Card,"Sylvia Beach, Annie Guillemin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2d6019d9-34ed-4ca4-97a9-5fd05d8640a7/manifest,https://iiif.princeton.edu/loris/figgy_prod/8c%2Fbb%2Fe1%2F8cbbe1dd84b1489fa79f3b0b7d7b6e3f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-05-15,1934-05-25,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/bates-woman-imagination-stories/,The Woman Who Had Imagination and Other Stories,,"Bates, H. E.",1934,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/e6%2F43%2F11%2Fe643111d618f45aeb8829844d126a6c8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-05-15,1934-05-25,https://shakespeareandco.princeton.edu/members/caillois/;https://shakespeareandco.princeton.edu/members/petitjean/,Roger Caillois;Armand Petitjean,"Caillois, Roger;Petitjean, Armand",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/yeats-poems/,Poems,,"Yeats, William Butler",,Unidentified edition or editions.,Lending Library Card,"Sylvia Beach, Roger Caillois/ Armand Petitjean Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/58386f27-2a95-4138-a30e-4dde3aeb0aaa/manifest,https://iiif-cloud.princeton.edu/iiif/2/4f%2F8a%2Fc9%2F4f8ac94272334e4ea75c06b1a68ac749%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-05-15,1934-06-06,https://shakespeareandco.princeton.edu/members/wibbelz-henry/,Henry W. Wibbelz,"Wibbelz, Henry W.",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/james-golden-bowl/,The Golden Bowl,Vol. 1,"James, Henry",1904,,Lending Library Card,"Sylvia Beach, Henry W. Wibbelz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/225d5fc4-c83d-46e5-b861-ad36ae4548b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/8c%2Fa9%2Fdc%2F8ca9dcbd3cd34139a75596284e09e496%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-05-16,1934-05-17,https://shakespeareandco.princeton.edu/members/delimal/,Mme Delimal,"Delimal, Mme",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/wodehouse-love-among-chickens/,Love among the Chickens: A Story of the Haps and Mishaps on an English Chicken Farm,,"Wodehouse, P. G.",1906,,Lending Library Card,"Sylvia Beach, Madame Delimal Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d7650699-e9d7-4e63-85ff-bce7e9c8dfcd/manifest,https://iiif.princeton.edu/loris/figgy_prod/b1%2Fb8%2F67%2Fb1b8677417e54581bff1177dc38a8c7c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-05-16,1934-05-29,https://shakespeareandco.princeton.edu/members/rirachowsky-fanny/,Fanny Rirachowsky,"Rirachowsky, Fanny",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/woolf-mrs-dalloway/,Mrs. Dalloway,,"Woolf, Virginia",1925,,Lending Library Card,"Sylvia Beach, Fanny Rirachowsky Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ed53891-0a1b-4bc4-8b10-d7d32f46663a/manifest,https://iiif-cloud.princeton.edu/iiif/2/f0%2F00%2F80%2Ff00080476a8a4a4bb23537892b912580%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-05-16,1934-06-09,https://shakespeareandco.princeton.edu/members/vieillard/,Gilbert Vieillard,"Vieillard, Gilbert",,,,,,,,,Returned,24,,,https://shakespeareandco.princeton.edu/books/melville-moby-dick-whale/,"Moby-Dick; Or, the Whale",,"Melville, Herman",1851,,Lending Library Card,"Sylvia Beach, Gilbert Vieillard Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8cd1d6c8-5108-4d59-9706-8bca70405815/manifest,https://iiif.princeton.edu/loris/figgy_prod/e3%2F2e%2F71%2Fe32e712809fa44df9f8aa0175f1991db%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1934-05-16,1934-05-16,https://shakespeareandco.princeton.edu/members/carrie-maurice/,Maurice Carrie,"Carrie, Maurice",,,,,,,,40.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1934-05-17,1934-05-25,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/stead-salzburg-tales/,The Salzburg Tales,,"Stead, Christina",1934,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e7%2F67%2Fe4%2Fe767e4aba183458d8491d96a49bd9896%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-05-17,,https://shakespeareandco.princeton.edu/members/plummer-dorothy/,Dorothy Plummer,"Plummer, Dorothy",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/linklater-magnus-merriman-novel/,Magnus Merriman: A Novel,,"Linklater, Eric",1934,,Lending Library Card,"Sylvia Beach, Dorothy Plummer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5f53ce0-8ea6-4d1f-b36b-f6e5321bab4c/manifest,https://iiif.princeton.edu/loris/figgy_prod/73%2F61%2F28%2F7361283a6eb946cbbb43d97ca38f1deb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-05-17,1934-05-30,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/herbst-pity-enough/,Pity Is Not Enough,,"Herbst, Josephine",1933,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e7%2F67%2Fe4%2Fe767e4aba183458d8491d96a49bd9896%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-05-17,1934-05-25,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/parker-pleasures/,After Such Pleasures,,"Parker, Dorothy",1933,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e7%2F67%2Fe4%2Fe767e4aba183458d8491d96a49bd9896%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-05-17,1934-05-23,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/wilson-axels-castle-study/,Axel's Castle: A Study in the Imaginative Literature of 1870 β 1930,,"Wilson, Edmund",1931,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/e6%2F6f%2F74%2Fe66f74c339014daa83229167df178fa1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-05-17,1934-06-02,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/collins-facts-fiction/,The Facts of Fiction,,"Collins, Norman",1932,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/7c%2F31%2Fe9%2F7c31e90b6b0b4d9eb7817414c69cda4a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-05-17,1934-05-22,https://shakespeareandco.princeton.edu/members/delimal/,Mme Delimal,"Delimal, Mme",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/beerbohm-zuleika-dobson/,Zuleika Dobson,,"Beerbohm, Max",1911,,Lending Library Card,"Sylvia Beach, Madame Delimal Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d7650699-e9d7-4e63-85ff-bce7e9c8dfcd/manifest,https://iiif.princeton.edu/loris/figgy_prod/b1%2Fb8%2F67%2Fb1b8677417e54581bff1177dc38a8c7c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-05-17,1934-05-23,https://shakespeareandco.princeton.edu/members/eloff-fanie/,Fanie Eloff / Mr. S. J. P. Eloff,"Eloff, Fanie",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/wodehouse-heart-goof/,The Heart of a Goof,,"Wodehouse, P. G.",1926,,Lending Library Card,"Sylvia Beach, Fanie Eloff Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0a96720e-bd20-4cc9-8eb9-62ce6ee5e6dd/manifest,https://iiif.princeton.edu/loris/figgy_prod/41%2F0f%2F45%2F410f45fef01f4d20bcaf62e73c899215%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1934-05-18,1934-05-18,https://shakespeareandco.princeton.edu/members/macleish-ada/;https://shakespeareandco.princeton.edu/members/macleish-archibald/,Ada (Hitchcock) MacLeish;Archibald MacLeish,"MacLeish, Ada;MacLeish, Archibald",,,,,,,,30.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1934-05-18,1934-05-23,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/bentley-inheritance/,Inheritance,,"Bentley, Phyllis Eleanor",1932,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/da%2F3f%2Fea%2Fda3fea8e737d4c0a840500e2ad11dd27%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-05-19,1934-05-30,https://shakespeareandco.princeton.edu/members/shelley-dorothy/,Dorothy Shelley,"Shelley, Dorothy",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/ross-new-yorker/,The New Yorker,,,,,Lending Library Card,"Sylvia Beach, Dorothy Shelley Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dcc58669-efb6-4ace-ab31-a1cb913f3692/manifest,https://iiif.princeton.edu/loris/figgy_prod/74%2F2c%2Fd6%2F742cd61778084ba19317c41ed8865032%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-05-19,1934-05-30,https://shakespeareandco.princeton.edu/members/shelley-dorothy/,Dorothy Shelley,"Shelley, Dorothy",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/ross-new-yorker/,The New Yorker,,,,,Lending Library Card,"Sylvia Beach, Dorothy Shelley Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dcc58669-efb6-4ace-ab31-a1cb913f3692/manifest,https://iiif.princeton.edu/loris/figgy_prod/74%2F2c%2Fd6%2F742cd61778084ba19317c41ed8865032%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-05-19,1934-05-24,https://shakespeareandco.princeton.edu/members/shelley-dorothy/,Dorothy Shelley,"Shelley, Dorothy",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/bronte-wuthering-heights/,Wuthering Heights,,"BrontΓ«, Emily",1847,,Lending Library Card,"Sylvia Beach, Dorothy Shelley Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dcc58669-efb6-4ace-ab31-a1cb913f3692/manifest,https://iiif.princeton.edu/loris/figgy_prod/74%2F2c%2Fd6%2F742cd61778084ba19317c41ed8865032%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-05-19,1934-05-24,https://shakespeareandco.princeton.edu/members/shelley-dorothy/,Dorothy Shelley,"Shelley, Dorothy",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/allen-anthony-adverse/,Anthony Adverse,,"Allen, Hervey",1933,,Lending Library Card,"Sylvia Beach, Dorothy Shelley Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dcc58669-efb6-4ace-ab31-a1cb913f3692/manifest,https://iiif.princeton.edu/loris/figgy_prod/74%2F2c%2Fd6%2F742cd61778084ba19317c41ed8865032%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-05-19,1934-05-22,https://shakespeareandco.princeton.edu/members/tuttle-stephen-d/,Stephen D. Tuttle,"Tuttle, Stephen D.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/dent-mozarts-operas-critical/,Mozart's Operas: A Critical Study,,"Dent, Edward Joseph",1913,,Lending Library Card,"Sylvia Beach, Stephen D. Tuttle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f1653918-3f2b-4e88-bd27-4e3c4d83a47d/manifest,https://iiif-cloud.princeton.edu/iiif/2/35%2F08%2Ffb%2F3508fbb7bbfa455fa801eedb4cd6a0f1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-05-19,1934-05-30,https://shakespeareandco.princeton.edu/members/shelley-dorothy/,Dorothy Shelley,"Shelley, Dorothy",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/ross-new-yorker/,The New Yorker,,,,,Lending Library Card,"Sylvia Beach, Dorothy Shelley Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dcc58669-efb6-4ace-ab31-a1cb913f3692/manifest,https://iiif.princeton.edu/loris/figgy_prod/74%2F2c%2Fd6%2F742cd61778084ba19317c41ed8865032%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-05-22,1934-05-24,https://shakespeareandco.princeton.edu/members/delimal/,Mme Delimal,"Delimal, Mme",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/wodehouse-hot-water/,Hot Water,,"Wodehouse, P. G.",1932,,Lending Library Card,"Sylvia Beach, Madame Delimal Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d7650699-e9d7-4e63-85ff-bce7e9c8dfcd/manifest,https://iiif.princeton.edu/loris/figgy_prod/b1%2Fb8%2F67%2Fb1b8677417e54581bff1177dc38a8c7c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-05-22,1934-05-23,https://shakespeareandco.princeton.edu/members/delimal/,Mme Delimal,"Delimal, Mme",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/national-geographic/,National Geographic,"Vol. 65, no. 4, Apr 1934",,,,Lending Library Card,"Sylvia Beach, Madame Delimal Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d7650699-e9d7-4e63-85ff-bce7e9c8dfcd/manifest,https://iiif.princeton.edu/loris/figgy_prod/b1%2Fb8%2F67%2Fb1b8677417e54581bff1177dc38a8c7c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1934-05-22,1934-06-22,https://shakespeareandco.princeton.edu/members/wibbelz-henry/,Henry W. Wibbelz,"Wibbelz, Henry W.",12.00,,1 month,31,1,,1934-06-06,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Henry W. Wibbelz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/225d5fc4-c83d-46e5-b861-ad36ae4548b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/8c%2Fa9%2Fdc%2F8ca9dcbd3cd34139a75596284e09e496%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-05-23,1934-06-15,https://shakespeareandco.princeton.edu/members/foret/,Mme de la Foret,"de la Foret, Mme",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/dane-broome-stages/,Broome Stages,,"Dane, Clemence",1931,,Lending Library Card,"Sylvia Beach, Madame de la Foret Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6fc4cfdc-78bc-4f2f-9b2a-3d0e51291d39/manifest,https://iiif.princeton.edu/loris/figgy_prod/9f%2Fbd%2Fc2%2F9fbdc20ad87d4ab394db6ce1b8a8309c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-05-23,1934-06-22,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,30,,,https://shakespeareandco.princeton.edu/books/lawrence-letters-h-lawrence/,The Letters of D. H. Lawrence,,"Lawrence, D. H.",1932,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/e6%2F6f%2F74%2Fe66f74c339014daa83229167df178fa1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-05-23,1934-06-03,https://shakespeareandco.princeton.edu/members/eloff-fanie/,Fanie Eloff / Mr. S. J. P. Eloff,"Eloff, Fanie",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/stern-heartless-land/,The Heartless Land,,"Stern, James",1932,,Lending Library Card,"Sylvia Beach, Fanie Eloff Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0a96720e-bd20-4cc9-8eb9-62ce6ee5e6dd/manifest,https://iiif.princeton.edu/loris/figgy_prod/41%2F0f%2F45%2F410f45fef01f4d20bcaf62e73c899215%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-05-23,1934-05-27,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/certain-man/,A Certain Man,,,,Unidentified. Bryan T. Holland's *A Certain Man* (1924) or Oliver Onions's *A Certain Man* (1932).,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/da%2F3f%2Fea%2Fda3fea8e737d4c0a840500e2ad11dd27%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-05-24,1934-05-30,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/huxley-brave-new-world/,Brave New World,,"Huxley, Aldous",1932,,Lending Library Card,"Sylvia Beach, Aline Prot's Lending Library Card in Antoinette Bernheim's File, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4a7d497b-2d1d-4e7a-8a3e-781160cbe998/manifest,https://iiif-cloud.princeton.edu/iiif/2/fe%2F14%2Fcf%2Ffe14cfe9ad0c49f3a7d0e7389cce9b9e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-05-24,1934-05-26,https://shakespeareandco.princeton.edu/members/delimal/,Mme Delimal,"Delimal, Mme",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/leacock-nonsense-novels/,Nonsense Novels,,"Leacock, Stephen",1920,,Lending Library Card,"Sylvia Beach, Madame Delimal Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d7650699-e9d7-4e63-85ff-bce7e9c8dfcd/manifest,https://iiif.princeton.edu/loris/figgy_prod/b1%2Fb8%2F67%2Fb1b8677417e54581bff1177dc38a8c7c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-05-24,1934-05-30,https://shakespeareandco.princeton.edu/members/shelley-dorothy/,Dorothy Shelley,"Shelley, Dorothy",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/huxley-brief-candles-stories/,Brief Candles: Stories,,"Huxley, Aldous",1930,,Lending Library Card,"Sylvia Beach, Dorothy Shelley Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dcc58669-efb6-4ace-ab31-a1cb913f3692/manifest,https://iiif.princeton.edu/loris/figgy_prod/74%2F2c%2Fd6%2F742cd61778084ba19317c41ed8865032%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-05-24,1934-06-15,https://shakespeareandco.princeton.edu/members/shelley-dorothy/,Dorothy Shelley,"Shelley, Dorothy",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/mansfield-letters-katherine-mansfield/,The Letters of Katherine Mansfield,Vol. 1,"Mansfield, Katherine",1928,,Lending Library Card,"Sylvia Beach, Dorothy Shelley Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dcc58669-efb6-4ace-ab31-a1cb913f3692/manifest,https://iiif.princeton.edu/loris/figgy_prod/74%2F2c%2Fd6%2F742cd61778084ba19317c41ed8865032%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-05-24,1934-06-04,https://shakespeareandco.princeton.edu/members/burt-maud/,Maud Burt,"Burt, Maud",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/st-ignatius/,St. Ignatius,,,,Unidentified. Likely Francis Thompson's [*Saint Ignatius Loyola*](https://shakespeareandco.princeton.edu/books/thompson-saint-ignatius-loyola/) (1909).,Lending Library Card,"Sylvia Beach, Maud Burt Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/84402ab0-3135-4059-bd55-010e23394445/manifest,https://iiif.princeton.edu/loris/figgy_prod/47%2F98%2F43%2F4798436b9f2b475e8d6f91a988ffe2ad%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,,1934-05-25,https://shakespeareandco.princeton.edu/members/gillet-louis/,Louis Gillet,"Gillet, Louis",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/porter-flowering-judas-stories/,Flowering Judas and Other Stories,,"Porter, Katherine Anne",1930,,Lending Library Card,"Sylvia Beach, Louis Gillet Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/059a38e2-2b13-4c5c-b116-b978abc5de0c/manifest,https://iiif.princeton.edu/loris/figgy_prod/99%2Ff8%2Fd0%2F99f8d023cb5841b89d40acb6708c3e4c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-05-25,1934-06-14,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/rinehart-state-versus-elinor/,The State versus Elinor Norton,,"Rinehart, Mary Roberts",1934,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/e6%2F43%2F11%2Fe643111d618f45aeb8829844d126a6c8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-05-25,1934-05-30,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/herbert-holy-deadlock/,Holy Deadlock,,"Herbert, A. P.",1934,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e7%2F67%2Fe4%2Fe767e4aba183458d8491d96a49bd9896%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1934-05-26,1934-06-26,https://shakespeareandco.princeton.edu/members/francillon-robert/,Robert Francillon,"Francillon, Robert",12.00,38.00,1 month,31,,,1934-05-26,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Robert Francillon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/293515d1-49ee-47fb-98ae-5a15449080ab/manifest,;https://iiif.princeton.edu/loris/figgy_prod/c0%2F1e%2F78%2Fc01e780cf9574c26a640060f60449980%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-05-26,1934-07-20,https://shakespeareandco.princeton.edu/members/francillon-robert/,Robert Francillon,"Francillon, Robert",,,,,,,,,Returned,55,,,https://shakespeareandco.princeton.edu/books/damon-william-blake-philosophy/,William Blake: His Philosophy and Symbols,,"Damon, S. Foster",1924,,Lending Library Card,"Sylvia Beach, Robert Francillon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/293515d1-49ee-47fb-98ae-5a15449080ab/manifest,https://iiif.princeton.edu/loris/figgy_prod/c0%2F1e%2F78%2Fc01e780cf9574c26a640060f60449980%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-05-26,1934-06-02,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/morgan-portrait-mirror/,Portrait in a Mirror,,"Morgan, Charles",1929,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/e6%2F6f%2F74%2Fe66f74c339014daa83229167df178fa1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-05-26,1934-06-09,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/morgan-fountain/,The Fountain,,"Morgan, Charles",1932,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/e6%2F6f%2F74%2Fe66f74c339014daa83229167df178fa1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-05-26,1934-06-02,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/douglas-siren-land/,Siren Land,,"Douglas, Norman",1911,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/7c%2F31%2Fe9%2F7c31e90b6b0b4d9eb7817414c69cda4a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-05-26,1934-07-03,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",,,,,,,,,Returned,38,,,https://shakespeareandco.princeton.edu/books/hughes-high-wind-jamaica/,A High Wind in Jamaica,,"Hughes, Richard",1929,,Lending Library Card,"Sylvia Beach, Aline Prot's Lending Library Card in Antoinette Bernheim's File, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4a7d497b-2d1d-4e7a-8a3e-781160cbe998/manifest,https://iiif-cloud.princeton.edu/iiif/2/fe%2F14%2Fcf%2Ffe14cfe9ad0c49f3a7d0e7389cce9b9e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-05-26,1934-06-02,https://shakespeareandco.princeton.edu/members/delimal/,Mme Delimal,"Delimal, Mme",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/wodehouse-sam-sudden/,Sam the Sudden,,"Wodehouse, P. G.",1925,,Lending Library Card,"Sylvia Beach, Madame Delimal Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d7650699-e9d7-4e63-85ff-bce7e9c8dfcd/manifest,https://iiif.princeton.edu/loris/figgy_prod/b1%2Fb8%2F67%2Fb1b8677417e54581bff1177dc38a8c7c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-05-27,1934-05-31,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/bryner-bridegroom-tarried/,While the Bridegroom Tarried,,"Bryner, Edna",1929,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/da%2F3f%2Fea%2Fda3fea8e737d4c0a840500e2ad11dd27%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-05-27,1934-07-11,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,45,,,https://shakespeareandco.princeton.edu/books/aldington-death-hero/,Death of a Hero,,"Aldington, Richard",1929,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/da%2F3f%2Fea%2Fda3fea8e737d4c0a840500e2ad11dd27%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-05-29,1934-06-05,https://shakespeareandco.princeton.edu/members/denis-graterolle/,Elisabeth Denis-Graterolle / Mme Maurice Denis,"Denis-Graterolle, Elisabeth",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/landor-walter-savage-landor/,"Walter Savage Landor: Last Days, Letters and Conversations",,"Landor, Walter Savage",1934,,Lending Library Card,"Sylvia Beach, Elisabeth Denis-Graterolle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/964dbe97-240c-4e59-a8ca-c43f25875149/manifest,https://iiif.princeton.edu/loris/figgy_prod/01%2F85%2F35%2F0185352ce4a645fb9698d1bbb7b51071%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-05-29,1934-06-15,https://shakespeareandco.princeton.edu/members/plummer-dorothy/,Dorothy Plummer,"Plummer, Dorothy",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/kennedy-constant-nymph/,The Constant Nymph,,"Kennedy, Margaret",1924,,Lending Library Card,"Sylvia Beach, Dorothy Plummer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5f53ce0-8ea6-4d1f-b36b-f6e5321bab4c/manifest,https://iiif.princeton.edu/loris/figgy_prod/73%2F61%2F28%2F7361283a6eb946cbbb43d97ca38f1deb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-05-30,1934-06-04,https://shakespeareandco.princeton.edu/members/porter-katherine-anne/,Katherine Anne Porter / Mrs. Katherine Anne Pressly,"Porter, Katherine Anne",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/bates-new-stories/,New Stories,"Vol. 1, no. 2, Apr β May 1934",,,,Lending Library Card,"Sylvia Beach, Katherine Anne Porter Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e929ad7e-7cda-422b-9107-310e3c4feb78/manifest,https://iiif.princeton.edu/loris/figgy_prod/40%2F3f%2F06%2F403f063d4e9442229355a1cc3b19535c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-05-30,1934-06-04,https://shakespeareandco.princeton.edu/members/porter-katherine-anne/,Katherine Anne Porter / Mrs. Katherine Anne Pressly,"Porter, Katherine Anne",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/osullivan-dublin-magazine/,Dublin Magazine,"Vol. 9, no. 2, Apr β Jun 1934",,,,Lending Library Card,"Sylvia Beach, Katherine Anne Porter Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e929ad7e-7cda-422b-9107-310e3c4feb78/manifest,https://iiif.princeton.edu/loris/figgy_prod/40%2F3f%2F06%2F403f063d4e9442229355a1cc3b19535c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-05-30,1934-06-11,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/wordsworth-journals-dorothy-wordsworth/,Journals of Dorothy Wordsworth,2 vols.,"Wordsworth, Dorothy",1904,,Lending Library Card,"Sylvia Beach, Aline Prot's Lending Library Card in Antoinette Bernheim's File, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4a7d497b-2d1d-4e7a-8a3e-781160cbe998/manifest,https://iiif-cloud.princeton.edu/iiif/2/fe%2F14%2Fcf%2Ffe14cfe9ad0c49f3a7d0e7389cce9b9e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-05-30,1934-06-01,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/myers-wordsworth/,Wordsworth,,"Myers, F. W. H.",,,Lending Library Card,"Sylvia Beach, Aline Prot's Lending Library Card in Antoinette Bernheim's File, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4a7d497b-2d1d-4e7a-8a3e-781160cbe998/manifest,https://iiif-cloud.princeton.edu/iiif/2/fe%2F14%2Fcf%2Ffe14cfe9ad0c49f3a7d0e7389cce9b9e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-05-30,1934-06-04,https://shakespeareandco.princeton.edu/members/porter-katherine-anne/,Katherine Anne Porter / Mrs. Katherine Anne Pressly,"Porter, Katherine Anne",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/new-masses/,New Masses,"Vol. 11, no. 7, May 15, 1934",,,,Lending Library Card,"Sylvia Beach, Katherine Anne Porter Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e929ad7e-7cda-422b-9107-310e3c4feb78/manifest,https://iiif.princeton.edu/loris/figgy_prod/40%2F3f%2F06%2F403f063d4e9442229355a1cc3b19535c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-05-30,1934-06-04,https://shakespeareandco.princeton.edu/members/porter-katherine-anne/,Katherine Anne Porter / Mrs. Katherine Anne Pressly,"Porter, Katherine Anne",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/brodzky-henri-gaudier-brzeska/,"Henri Gaudier-Brzeska, 1891 βΒ 1915",,"Brodzky, Horace",1933,,Lending Library Card,"Sylvia Beach, Katherine Anne Porter Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e929ad7e-7cda-422b-9107-310e3c4feb78/manifest,https://iiif.princeton.edu/loris/figgy_prod/40%2F3f%2F06%2F403f063d4e9442229355a1cc3b19535c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-05-30,1934-06-15,https://shakespeareandco.princeton.edu/members/shelley-dorothy/,Dorothy Shelley,"Shelley, Dorothy",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/dickens-great-expectations/,Great Expectations,,"Dickens, Charles",1861,,Lending Library Card,"Sylvia Beach, Dorothy Shelley Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dcc58669-efb6-4ace-ab31-a1cb913f3692/manifest,https://iiif.princeton.edu/loris/figgy_prod/74%2F2c%2Fd6%2F742cd61778084ba19317c41ed8865032%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1934-05-30,1934-06-30,https://shakespeareandco.princeton.edu/members/massey/,Adelaide W. Massey / A. W. Massey,"Massey, Adelaide W.",20.00,,1 month,31,2,,1934-05-30,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, A. W. Massey Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c4712c46-76f3-4581-99d6-d0ffd31b4138/manifest,https://iiif-cloud.princeton.edu/iiif/2/4d%2F7d%2F00%2F4d7d0059b632436eaaffd762b26f5ce3%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-05-30,1934-06-05,https://shakespeareandco.princeton.edu/members/massey/,Adelaide W. Massey / A. W. Massey,"Massey, Adelaide W.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/oflaherty-martyr/,The Martyr,,"O'Flaherty, Liam",1933,,Lending Library Card,"Sylvia Beach, A. W. Massey Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c4712c46-76f3-4581-99d6-d0ffd31b4138/manifest,https://iiif-cloud.princeton.edu/iiif/2/4d%2F7d%2F00%2F4d7d0059b632436eaaffd762b26f5ce3%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-05-30,1934-06-02,https://shakespeareandco.princeton.edu/members/massey/,Adelaide W. Massey / A. W. Massey,"Massey, Adelaide W.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/herbert-holy-deadlock/,Holy Deadlock,,"Herbert, A. P.",1934,,Lending Library Card,"Sylvia Beach, A. W. Massey Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c4712c46-76f3-4581-99d6-d0ffd31b4138/manifest,https://iiif-cloud.princeton.edu/iiif/2/4d%2F7d%2F00%2F4d7d0059b632436eaaffd762b26f5ce3%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1934-05-30,1934-11-30,https://shakespeareandco.princeton.edu/members/shelley-dorothy/,Dorothy Shelley,"Shelley, Dorothy",90.00,,6 months,184,2,,1934-06-30,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Dorothy Shelley Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dcc58669-efb6-4ace-ab31-a1cb913f3692/manifest,https://iiif.princeton.edu/loris/figgy_prod/74%2F2c%2Fd6%2F742cd61778084ba19317c41ed8865032%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-05-30,1934-06-08,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/lewis-work-art/,Work of Art,,"Lewis, Sinclair",1934,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e7%2F67%2Fe4%2Fe767e4aba183458d8491d96a49bd9896%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-05-30,1934-06-08,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/stern-augs-exaggeration/,The Augs: An Exaggeration,,"Stern, G. B.",1933,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e7%2F67%2Fe4%2Fe767e4aba183458d8491d96a49bd9896%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-05-30,1934-06-08,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/delafield-thank-heaven-fasting/,Thank Heaven Fasting,,"Delafield, E. M.",1932,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e7%2F67%2Fe4%2Fe767e4aba183458d8491d96a49bd9896%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-05-30,1934-06-04,https://shakespeareandco.princeton.edu/members/porter-katherine-anne/,Katherine Anne Porter / Mrs. Katherine Anne Pressly,"Porter, Katherine Anne",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/maccarthy-life-letters/,Life and Letters,Jun 1934,,,,Lending Library Card,"Sylvia Beach, Katherine Anne Porter Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e929ad7e-7cda-422b-9107-310e3c4feb78/manifest,https://iiif.princeton.edu/loris/figgy_prod/40%2F3f%2F06%2F403f063d4e9442229355a1cc3b19535c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1934-05-31,1935-05-31,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",157.50,,1 year,365,1,,1934-06-21,,,,,FRF,,,,,,,Lending Library Card;Address Book,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Address Book 1935β1937, box 70, folder 2, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest;,https://iiif.princeton.edu/loris/figgy_prod/e7%2F67%2Fe4%2Fe767e4aba183458d8491d96a49bd9896%2Fintermediate_file.jp2/full/full/0/default.jpg;
+Borrow,1934-05-31,1934-06-22,https://shakespeareandco.princeton.edu/members/guillemin-annie/,Annie Guillemin,"Guillemin, Annie",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/richardson-pointed-roofs/,Pointed Roofs (Pilgrimage 1),,"Richardson, Dorothy M.",1915,,Lending Library Card,"Sylvia Beach, Annie Guillemin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2d6019d9-34ed-4ca4-97a9-5fd05d8640a7/manifest,https://iiif.princeton.edu/loris/figgy_prod/8c%2Fbb%2Fe1%2F8cbbe1dd84b1489fa79f3b0b7d7b6e3f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-05-31,1934-06-01,https://shakespeareandco.princeton.edu/members/bonnerot-louis/,Louis Bonnerot,"Bonnerot, Louis",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/kirstein-hound-horn/,Hound & Horn,,,,,Lending Library Card,"Sylvia Beach, Louis Bonnerot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c14cc736-079c-4403-9036-a2de4743414a/manifest,https://iiif.princeton.edu/loris/figgy_prod/02%2F5a%2F24%2F025a24f998344e51813e60cf8062c163%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-05-31,1934-06-16,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/baum-secret-sentence/,Secret Sentence,,"Baum, Vicki",1932,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/da%2F3f%2Fea%2Fda3fea8e737d4c0a840500e2ad11dd27%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-06-01,1934-06-04,https://shakespeareandco.princeton.edu/members/bonnerot-louis/,Louis Bonnerot,"Bonnerot, Louis",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/ballard-cahiers-sud/,Les cahiers du sud,"Vol. 21, no. 161, Apr β May 1934",,,,Lending Library Card,"Sylvia Beach, Louis Bonnerot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c14cc736-079c-4403-9036-a2de4743414a/manifest,https://iiif.princeton.edu/loris/figgy_prod/02%2F5a%2F24%2F025a24f998344e51813e60cf8062c163%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-06-01,1934-06-06,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/dowden-shakspere-critical-study/,Shakespeare: A Critical Study of His Mind and Art,,"Dowden, Edward",1875,,Lending Library Card,"Sylvia Beach, Aline Prot's Lending Library Card in Antoinette Bernheim's File, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4a7d497b-2d1d-4e7a-8a3e-781160cbe998/manifest,https://iiif-cloud.princeton.edu/iiif/2/fe%2F14%2Fcf%2Ffe14cfe9ad0c49f3a7d0e7389cce9b9e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-06-01,1934-06-04,https://shakespeareandco.princeton.edu/members/bonnerot-louis/,Louis Bonnerot,"Bonnerot, Louis",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/wickham-man-hammer-verses/,The Man with a Hammer: Verses,,"Wickham, Anna",1916,,Lending Library Card,"Sylvia Beach, Louis Bonnerot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c14cc736-079c-4403-9036-a2de4743414a/manifest,https://iiif.princeton.edu/loris/figgy_prod/02%2F5a%2F24%2F025a24f998344e51813e60cf8062c163%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-06-02,1934-06-09,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/oneill-ah-wilderness/,"Ah, Wilderness!",,"O'Neill, Eugene",1933,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/7c%2F31%2Fe9%2F7c31e90b6b0b4d9eb7817414c69cda4a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-06-02,1934-06-06,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/vaughan-soldier-gentlewoman/,The Soldier and the Gentlewoman,,"Vaughan, Hilda",1932,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/e6%2F6f%2F74%2Fe66f74c339014daa83229167df178fa1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-06-02,,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/maugham-plays/,Plays,"Vol. 1, 1931 Lady Frederick; Mrs. Dot; Jack Straw","Maugham, W. Somerset",,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/7c%2F31%2Fe9%2F7c31e90b6b0b4d9eb7817414c69cda4a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-06-02,1934-06-09,https://shakespeareandco.princeton.edu/members/delimal/,Mme Delimal,"Delimal, Mme",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/wodehouse-summer-lightning/,Summer Lightning,,"Wodehouse, P. G.",1929,,Lending Library Card,"Sylvia Beach, Madame Delimal Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d7650699-e9d7-4e63-85ff-bce7e9c8dfcd/manifest,https://iiif.princeton.edu/loris/figgy_prod/b1%2Fb8%2F67%2Fb1b8677417e54581bff1177dc38a8c7c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-06-02,1934-06-04,https://shakespeareandco.princeton.edu/members/merrick-leonard/,Leonard Merrick,"Merrick, Leonard",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/hall-miss-ogilvy-finds/,Miss Ogilvy Finds Herself,,"Hall, Radclyffe",1934,,Lending Library Card,"Sylvia Beach, Leonard Merrick Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ebab89a-e11c-447a-afc6-91d67a974725/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2Fcb%2F4c%2F65cb4c576fa74234bbcd904f074e0008%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-06-02,1934-06-09,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/kirstein-hound-horn/,Hound & Horn,,,,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/7c%2F31%2Fe9%2F7c31e90b6b0b4d9eb7817414c69cda4a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-06-03,1934-06-07,https://shakespeareandco.princeton.edu/members/eloff-fanie/,Fanie Eloff / Mr. S. J. P. Eloff,"Eloff, Fanie",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/fedden-unicorn/,As the Unicorn,,"Fedden, Henry Romilly",1933,,Lending Library Card,"Sylvia Beach, Fanie Eloff Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0a96720e-bd20-4cc9-8eb9-62ce6ee5e6dd/manifest,https://iiif.princeton.edu/loris/figgy_prod/41%2F0f%2F45%2F410f45fef01f4d20bcaf62e73c899215%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-06-04,1934-06-09,https://shakespeareandco.princeton.edu/members/porter-katherine-anne/,Katherine Anne Porter / Mrs. Katherine Anne Pressly,"Porter, Katherine Anne",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/burnham-symposium-critical-review/,The Symposium: A Critical Review,"Vol. 4, no. 3, Jul 1933",,,,Lending Library Card,"Sylvia Beach, Katherine Anne Porter Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e929ad7e-7cda-422b-9107-310e3c4feb78/manifest,https://iiif.princeton.edu/loris/figgy_prod/40%2F3f%2F06%2F403f063d4e9442229355a1cc3b19535c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-06-04,1934-06-09,https://shakespeareandco.princeton.edu/members/porter-katherine-anne/,Katherine Anne Porter / Mrs. Katherine Anne Pressly,"Porter, Katherine Anne",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/new-masses/,New Masses,,,,,Lending Library Card,"Sylvia Beach, Katherine Anne Porter Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e929ad7e-7cda-422b-9107-310e3c4feb78/manifest,https://iiif.princeton.edu/loris/figgy_prod/40%2F3f%2F06%2F403f063d4e9442229355a1cc3b19535c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-06-04,,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/dunne-experiment-time/,An Experiment with Time,,"Dunne, J. W.",1927,,Lending Library Card,"James Joyce's lending library cards not represented here are part of the James Joyce Collection at the University at Buffalo. For more information, visit: https://library.buffalo.edu/jamesjoyce/catalog/xx/.",,
+Crossed out,1934-06-04,,https://shakespeareandco.princeton.edu/members/porter-katherine-anne/,Katherine Anne Porter / Mrs. Katherine Anne Pressly,"Porter, Katherine Anne",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/connington-nemesis-raynham-parva/,Nemesis at Raynham Parva,,"Connington, J. J.",1929,,Lending Library Card,"Sylvia Beach, Katherine Anne Porter Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e929ad7e-7cda-422b-9107-310e3c4feb78/manifest,https://iiif.princeton.edu/loris/figgy_prod/40%2F3f%2F06%2F403f063d4e9442229355a1cc3b19535c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-06-04,1934-06-11,https://shakespeareandco.princeton.edu/members/burt-maud/,Maud Burt,"Burt, Maud",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/a-e-song-fountains/,Song and Its Fountains,,Γ,1932,,Lending Library Card,"Sylvia Beach, Maud Burt Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/84402ab0-3135-4059-bd55-010e23394445/manifest,https://iiif.princeton.edu/loris/figgy_prod/47%2F98%2F43%2F4798436b9f2b475e8d6f91a988ffe2ad%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-06-04,1934-06-09,https://shakespeareandco.princeton.edu/members/porter-katherine-anne/,Katherine Anne Porter / Mrs. Katherine Anne Pressly,"Porter, Katherine Anne",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/burnham-symposium-critical-review/,The Symposium: A Critical Review,"Vol. 4, no. 4, Oct 1933",,,,Lending Library Card,"Sylvia Beach, Katherine Anne Porter Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e929ad7e-7cda-422b-9107-310e3c4feb78/manifest,https://iiif.princeton.edu/loris/figgy_prod/40%2F3f%2F06%2F403f063d4e9442229355a1cc3b19535c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-06-04,1934-06-09,https://shakespeareandco.princeton.edu/members/porter-katherine-anne/,Katherine Anne Porter / Mrs. Katherine Anne Pressly,"Porter, Katherine Anne",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/new-masses/,New Masses,,,,,Lending Library Card,"Sylvia Beach, Katherine Anne Porter Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e929ad7e-7cda-422b-9107-310e3c4feb78/manifest,https://iiif.princeton.edu/loris/figgy_prod/40%2F3f%2F06%2F403f063d4e9442229355a1cc3b19535c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Crossed out,1934-06-04,,https://shakespeareandco.princeton.edu/members/porter-katherine-anne/,Katherine Anne Porter / Mrs. Katherine Anne Pressly,"Porter, Katherine Anne",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/bridge-ginger-griffin/,The Ginger Griffin,,"Bridge, Ann",1934,,Lending Library Card,"Sylvia Beach, Katherine Anne Porter Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e929ad7e-7cda-422b-9107-310e3c4feb78/manifest,https://iiif.princeton.edu/loris/figgy_prod/40%2F3f%2F06%2F403f063d4e9442229355a1cc3b19535c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-06-04,1934-06-09,https://shakespeareandco.princeton.edu/members/porter-katherine-anne/,Katherine Anne Porter / Mrs. Katherine Anne Pressly,"Porter, Katherine Anne",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/maccarthy-life-letters/,Life and Letters,,,,,Lending Library Card,"Sylvia Beach, Katherine Anne Porter Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e929ad7e-7cda-422b-9107-310e3c4feb78/manifest,https://iiif.princeton.edu/loris/figgy_prod/40%2F3f%2F06%2F403f063d4e9442229355a1cc3b19535c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-06-04,1934-06-08,https://shakespeareandco.princeton.edu/members/bonnerot-louis/,Louis Bonnerot,"Bonnerot, Louis",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/macleish-poems-1924-1933/,"Poems, 1924 β 1933",,"MacLeish, Archibald",1933,,Lending Library Card,"Sylvia Beach, Louis Bonnerot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c14cc736-079c-4403-9036-a2de4743414a/manifest,https://iiif.princeton.edu/loris/figgy_prod/9f%2F6c%2F07%2F9f6c0714aef2411d8ae482314a2c165a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-06-05,1934-06-12,https://shakespeareandco.princeton.edu/members/peake-catherine/;https://shakespeareandco.princeton.edu/members/peake-charles/,Catherine Marie Knight Peake / Mrs. Charles Peake;Charles Peake,"Peake, Catherine;Peake, Charles",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/pound-gaudier-brzeska-memoir/,Gaudier-Brzeska: A Memoir,,"Pound, Ezra",1916,,Lending Library Card,"Sylvia Beach, Charles Peake Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5e8684f0-17db-4d9b-8414-54b5c4613b10/manifest,https://iiif.princeton.edu/loris/figgy_prod/0c%2F02%2Fd3%2F0c02d36d98844871b535b29804599544%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1934-06-05,1934-12-01,https://shakespeareandco.princeton.edu/members/peake-catherine/;https://shakespeareandco.princeton.edu/members/peake-charles/,Catherine Marie Knight Peake / Mrs. Charles Peake;Charles Peake,"Peake, Catherine;Peake, Charles",65.00,50.00,"5 months, 26 days",179,1,,1934-06-12,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Charles Peake Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/5e8684f0-17db-4d9b-8414-54b5c4613b10/manifest,;https://iiif.princeton.edu/loris/figgy_prod/0c%2F02%2Fd3%2F0c02d36d98844871b535b29804599544%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-06-05,1934-06-23,https://shakespeareandco.princeton.edu/members/denis-graterolle/,Elisabeth Denis-Graterolle / Mme Maurice Denis,"Denis-Graterolle, Elisabeth",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/lawrence-lady-chatterleys-lover/,Lady Chatterley's Lover,,"Lawrence, D. H.",1928,,Lending Library Card,"Sylvia Beach, Elisabeth Denis-Graterolle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/964dbe97-240c-4e59-a8ca-c43f25875149/manifest,https://iiif.princeton.edu/loris/figgy_prod/01%2F85%2F35%2F0185352ce4a645fb9698d1bbb7b51071%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-06-05,1934-06-23,https://shakespeareandco.princeton.edu/members/denis-graterolle/,Elisabeth Denis-Graterolle / Mme Maurice Denis,"Denis-Graterolle, Elisabeth",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/lawrence-twilight-italy/,Twilight in Italy,,"Lawrence, D. H.",1916,,Lending Library Card,"Sylvia Beach, Elisabeth Denis-Graterolle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/964dbe97-240c-4e59-a8ca-c43f25875149/manifest,https://iiif.princeton.edu/loris/figgy_prod/01%2F85%2F35%2F0185352ce4a645fb9698d1bbb7b51071%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1934-06-06,1934-12-06,https://shakespeareandco.princeton.edu/members/guillemin-annie/,Annie Guillemin,"Guillemin, Annie",50.00,,6 months,183,1,,1934-06-06,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Annie Guillemin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2d6019d9-34ed-4ca4-97a9-5fd05d8640a7/manifest,https://iiif.princeton.edu/loris/figgy_prod/8c%2Fbb%2Fe1%2F8cbbe1dd84b1489fa79f3b0b7d7b6e3f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-06-06,1934-06-20,https://shakespeareandco.princeton.edu/members/wibbelz-henry/,Henry W. Wibbelz,"Wibbelz, Henry W.",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/gilbert-james-joyces-ulysses/,James Joyce's Ulysses: A Study,,"Gilbert, Stuart",1930,,Lending Library Card,"Sylvia Beach, Henry W. Wibbelz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/225d5fc4-c83d-46e5-b861-ad36ae4548b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/8c%2Fa9%2Fdc%2F8ca9dcbd3cd34139a75596284e09e496%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-06-06,1934-06-12,https://shakespeareandco.princeton.edu/members/peake-catherine/;https://shakespeareandco.princeton.edu/members/peake-charles/,Catherine Marie Knight Peake / Mrs. Charles Peake;Charles Peake,"Peake, Catherine;Peake, Charles",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/vaughan-soldier-gentlewoman/,The Soldier and the Gentlewoman,,"Vaughan, Hilda",1932,,Lending Library Card,"Sylvia Beach, Charles Peake Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5e8684f0-17db-4d9b-8414-54b5c4613b10/manifest,https://iiif.princeton.edu/loris/figgy_prod/0c%2F02%2Fd3%2F0c02d36d98844871b535b29804599544%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-06-06,1934-06-15,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/saintsbury-dryden/,Dryden,,"Saintsbury, George",1881,,Lending Library Card,"Sylvia Beach, Aline Prot's Lending Library Card in Antoinette Bernheim's File, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4a7d497b-2d1d-4e7a-8a3e-781160cbe998/manifest,https://iiif-cloud.princeton.edu/iiif/2/fe%2F14%2Fcf%2Ffe14cfe9ad0c49f3a7d0e7389cce9b9e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-06-06,1934-06-22,https://shakespeareandco.princeton.edu/members/wibbelz-henry/,Henry W. Wibbelz,"Wibbelz, Henry W.",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/gide-strait-gate/,Strait Is the Gate,,"Gide, AndrΓ©",1924,,Lending Library Card,"Sylvia Beach, Henry W. Wibbelz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/225d5fc4-c83d-46e5-b861-ad36ae4548b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/8c%2Fa9%2Fdc%2F8ca9dcbd3cd34139a75596284e09e496%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-06-07,1934-06-09,https://shakespeareandco.princeton.edu/members/eloff-fanie/,Fanie Eloff / Mr. S. J. P. Eloff,"Eloff, Fanie",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/asch-three-cities-trilogy/,Three Cities: A Trilogy,,"Asch, Sholem",1933,,Lending Library Card,"Sylvia Beach, Fanie Eloff Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0a96720e-bd20-4cc9-8eb9-62ce6ee5e6dd/manifest,https://iiif.princeton.edu/loris/figgy_prod/41%2F0f%2F45%2F410f45fef01f4d20bcaf62e73c899215%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-06-08,1934-06-21,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/asbury-barbary-coast-informal/,The Barbary Coast: An Informal History of the San Francisco Underworld,,"Asbury, Herbert",1933,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e7%2F67%2Fe4%2Fe767e4aba183458d8491d96a49bd9896%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1934-06-08,1934-06-08,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,,,50.00,FRF,https://shakespeareandco.princeton.edu/books/joyce-mime-mick-nick/,"The Mime of Mick, Nick, and the Maggies",,"Joyce, James",1934,,Lending Library Card,"Sylvia Beach, James Joyce Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/60df1b72-de14-4053-ac2b-b16671872306/manifest,https://iiif.princeton.edu/loris/figgy_prod/3f%2F05%2Fc4%2F3f05c4ba4908479ead76b36736bb9d19%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1934-06-08,1934-07-08,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",20.00,,1 month,30,2,,1934-06-09,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/e6%2F6f%2F74%2Fe66f74c339014daa83229167df178fa1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-06-08,1934-06-16,https://shakespeareandco.princeton.edu/members/dherbais-de-thun/,Marie-Valerie d'Herbais de Thun,"d'Herbais de Thun, Marie-Valerie",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/johnson-pirate-junk-five/,Pirate Junk: Five Months Captivity with Manchurian Bandits,,"Johnson, Clifford",1934,,Lending Library Card,"Sylvia Beach, Marie-Valerie Herbais de Thun Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/94cf6667-e6c3-451a-9da4-35a58d089850/manifest,https://iiif.princeton.edu/loris/figgy_prod/38%2Ff0%2F98%2F38f09874f57345f4bf007e23065cb827%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1934-06-08,1934-07-08,https://shakespeareandco.princeton.edu/members/dherbais-de-thun/,Marie-Valerie d'Herbais de Thun,"d'Herbais de Thun, Marie-Valerie",12.00,,1 month,30,1,,1934-06-08,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Marie-Valerie Herbais de Thun Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/94cf6667-e6c3-451a-9da4-35a58d089850/manifest,https://iiif.princeton.edu/loris/figgy_prod/38%2Ff0%2F98%2F38f09874f57345f4bf007e23065cb827%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-06-08,1934-06-21,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/bromfield-farm/,The Farm,,"Bromfield, Louis",1933,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e7%2F67%2Fe4%2Fe767e4aba183458d8491d96a49bd9896%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1934-06-08,1934-06-08,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,,,100.00,FRF,https://shakespeareandco.princeton.edu/books/joyce-mime-mick-nick/,"The Mime of Mick, Nick, and the Maggies",,"Joyce, James",1934,,Lending Library Card,"Sylvia Beach, James Joyce Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/60df1b72-de14-4053-ac2b-b16671872306/manifest,https://iiif.princeton.edu/loris/figgy_prod/3f%2F05%2Fc4%2F3f05c4ba4908479ead76b36736bb9d19%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-06-09,1934-06-26,https://shakespeareandco.princeton.edu/members/delimal/,Mme Delimal,"Delimal, Mme",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/lawrence-plumed-serpent/,The Plumed Serpent,,"Lawrence, D. H.",1926,,Lending Library Card,"Sylvia Beach, Madame Delimal Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d7650699-e9d7-4e63-85ff-bce7e9c8dfcd/manifest,https://iiif.princeton.edu/loris/figgy_prod/b1%2Fb8%2F67%2Fb1b8677417e54581bff1177dc38a8c7c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-06-09,1934-06-12,https://shakespeareandco.princeton.edu/members/eloff-fanie/,Fanie Eloff / Mr. S. J. P. Eloff,"Eloff, Fanie",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/crofts-12-30-croydon/,The 12:30 from Croydon,,"Crofts, Freeman Wills",1934,,Lending Library Card,"Sylvia Beach, Fanie Eloff Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/0a96720e-bd20-4cc9-8eb9-62ce6ee5e6dd/manifest,https://iiif.princeton.edu/loris/figgy_prod/41%2F0f%2F45%2F410f45fef01f4d20bcaf62e73c899215%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-06-09,1934-06-22,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/lawrence-escaped-cock/,The Escaped Cock / The Man Who Died,,"Lawrence, D. H.",1929,The Caresse Crosby activities are for the Black Sun Press edition of *The Escaped Cock.*,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/e6%2F6f%2F74%2Fe66f74c339014daa83229167df178fa1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-06-09,1934-06-20,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/eliot-rock/,The Rock,,"Eliot, T. S.",1934,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/7c%2F31%2Fe9%2F7c31e90b6b0b4d9eb7817414c69cda4a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-06-09,1934-06-22,https://shakespeareandco.princeton.edu/members/vieillard/,Gilbert Vieillard,"Vieillard, Gilbert",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/huxley-africa-view/,Africa View,,"Huxley, Julian",1931,,Lending Library Card,"Sylvia Beach, Gilbert Vieillard Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/8cd1d6c8-5108-4d59-9706-8bca70405815/manifest,https://iiif.princeton.edu/loris/figgy_prod/e3%2F2e%2F71%2Fe32e712809fa44df9f8aa0175f1991db%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1934-06-10,1934-07-10,https://shakespeareandco.princeton.edu/members/delimal/,Mme Delimal,"Delimal, Mme",12.00,,1 month,30,,,1934-07-09,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Madame Delimal Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/d7650699-e9d7-4e63-85ff-bce7e9c8dfcd/manifest,;https://iiif.princeton.edu/loris/figgy_prod/b1%2Fb8%2F67%2Fb1b8677417e54581bff1177dc38a8c7c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-06-11,1934-06-15,https://shakespeareandco.princeton.edu/members/burt-maud/,Maud Burt,"Burt, Maud",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/herbert-holy-deadlock/,Holy Deadlock,,"Herbert, A. P.",1934,,Lending Library Card,"Sylvia Beach, Maud Burt Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/84402ab0-3135-4059-bd55-010e23394445/manifest,https://iiif.princeton.edu/loris/figgy_prod/47%2F98%2F43%2F4798436b9f2b475e8d6f91a988ffe2ad%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1934-06-11,1934-09-11,https://shakespeareandco.princeton.edu/members/vieillard/,Gilbert Vieillard,"Vieillard, Gilbert",30.00,,3 months,92,1,,1934-06-09,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Gilbert Vieillard Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/8cd1d6c8-5108-4d59-9706-8bca70405815/manifest,;https://iiif.princeton.edu/loris/figgy_prod/e3%2F2e%2F71%2Fe32e712809fa44df9f8aa0175f1991db%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-06-12,1934-06-26,https://shakespeareandco.princeton.edu/members/peake-catherine/;https://shakespeareandco.princeton.edu/members/peake-charles/,Catherine Marie Knight Peake / Mrs. Charles Peake;Charles Peake,"Peake, Catherine;Peake, Charles",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/nicolson-curzon-last-phase/,"Curzon: The Last Phase, 1919 β 1925, a Study of Post-War Diplomacy",,"Nicolson, Harold George",1934,,Lending Library Card,"Sylvia Beach, Charles Peake Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5e8684f0-17db-4d9b-8414-54b5c4613b10/manifest,https://iiif.princeton.edu/loris/figgy_prod/0c%2F02%2Fd3%2F0c02d36d98844871b535b29804599544%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-06-14,1934-06-15,https://shakespeareandco.princeton.edu/members/burt-maud/,Maud Burt,"Burt, Maud",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/huxley-along-road-notes/,Along the Road: Notes and Essays of a Tourist,,"Huxley, Aldous",1925,,Lending Library Card,"Sylvia Beach, Maud Burt Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/84402ab0-3135-4059-bd55-010e23394445/manifest,https://iiif.princeton.edu/loris/figgy_prod/47%2F98%2F43%2F4798436b9f2b475e8d6f91a988ffe2ad%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1934-06-14,1934-07-14,https://shakespeareandco.princeton.edu/members/maxwell/,Mrs. Maxwell,"Maxwell, Mrs.",25.00,30.00,1 month,30,1,,1934-06-14,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Mrs. Maxwell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6148b048-a591-4aae-8470-52fde178e0aa/manifest,https://iiif.princeton.edu/loris/figgy_prod/a3%2F59%2F56%2Fa359568ae1a7491689f98c55dd398b98%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-06-14,1934-06-22,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/crofts-12-30-croydon/,The 12:30 from Croydon,,"Crofts, Freeman Wills",1934,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/e6%2F43%2F11%2Fe643111d618f45aeb8829844d126a6c8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-06-14,1934-06-22,https://shakespeareandco.princeton.edu/members/burt-maud/,Maud Burt,"Burt, Maud",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/wharton-backward-glance/,A Backward Glance,,"Wharton, Edith",1934,,Lending Library Card,"Sylvia Beach, Maud Burt Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/84402ab0-3135-4059-bd55-010e23394445/manifest,https://iiif.princeton.edu/loris/figgy_prod/47%2F98%2F43%2F4798436b9f2b475e8d6f91a988ffe2ad%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-06-14,1934-06-18,https://shakespeareandco.princeton.edu/members/maxwell/,Mrs. Maxwell,"Maxwell, Mrs.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/stein-autobiography-alice-b/,The Autobiography of Alice B. Toklas,,"Stein, Gertrude",1933,,Lending Library Card,"Sylvia Beach, Mrs. Maxwell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6148b048-a591-4aae-8470-52fde178e0aa/manifest,https://iiif.princeton.edu/loris/figgy_prod/a3%2F59%2F56%2Fa359568ae1a7491689f98c55dd398b98%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-06-15,1934-06-22,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/fallada-little-man-now/,"Little Man, What Now?",,"Fallada, Hans",1933,,Lending Library Card,"Sylvia Beach, Aline Prot's Lending Library Card in Antoinette Bernheim's File, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4a7d497b-2d1d-4e7a-8a3e-781160cbe998/manifest,https://iiif-cloud.princeton.edu/iiif/2/fe%2F14%2Fcf%2Ffe14cfe9ad0c49f3a7d0e7389cce9b9e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-06-15,1934-07-12,https://shakespeareandco.princeton.edu/members/shelley-dorothy/,Dorothy Shelley,"Shelley, Dorothy",,,,,,,,,Returned,27,,,https://shakespeareandco.princeton.edu/books/mansfield-letters-katherine-mansfield/,The Letters of Katherine Mansfield,Vol. 2,"Mansfield, Katherine",1928,,Lending Library Card,"Sylvia Beach, Dorothy Shelley Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dcc58669-efb6-4ace-ab31-a1cb913f3692/manifest,https://iiif.princeton.edu/loris/figgy_prod/74%2F2c%2Fd6%2F742cd61778084ba19317c41ed8865032%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-06-15,1934-06-23,https://shakespeareandco.princeton.edu/members/yarrow-catherine/,Catherine Yarrow,"Yarrow, Catherine",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/ford-best-plays-john/,The Best Plays of John Ford,,"Ford, John",1888,From the [Mermaid Series](https://seriesofseries.owu.edu/mermaid-series/).,Lending Library Card,"Sylvia Beach, Catherine Yarrow Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d0d522e7-9d4e-41ca-8b3b-8fe6ba58e334/manifest,https://iiif.princeton.edu/loris/figgy_prod/38%2Fe4%2F9e%2F38e49ec85ad54b1bb50df436efd43955%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-06-15,1934-07-12,https://shakespeareandco.princeton.edu/members/shelley-dorothy/,Dorothy Shelley,"Shelley, Dorothy",,,,,,,,,Returned,27,,,https://shakespeareandco.princeton.edu/books/joyce-ulysses/,Ulysses,,"Joyce, James",1922,,Lending Library Card,"Sylvia Beach, Dorothy Shelley Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dcc58669-efb6-4ace-ab31-a1cb913f3692/manifest,https://iiif.princeton.edu/loris/figgy_prod/74%2F2c%2Fd6%2F742cd61778084ba19317c41ed8865032%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-06-15,1934-06-20,https://shakespeareandco.princeton.edu/members/wibbelz-henry/,Henry W. Wibbelz,"Wibbelz, Henry W.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/weston-ritual-romance/,From Ritual to Romance,,"Weston, Jessie",1920,,Lending Library Card,"Sylvia Beach, Henry W. Wibbelz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/225d5fc4-c83d-46e5-b861-ad36ae4548b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/8c%2Fa9%2Fdc%2F8ca9dcbd3cd34139a75596284e09e496%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-06-15,1934-07-19,https://shakespeareandco.princeton.edu/members/wibbelz-henry/,Henry W. Wibbelz,"Wibbelz, Henry W.",,,,,,,,,Returned,34,,,https://shakespeareandco.princeton.edu/books/frazier-golden-bough-study/,The Golden Bough: A Study in Comparative Religion,,"Frazer, James George",1890,,Lending Library Card,"Sylvia Beach, Henry W. Wibbelz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/225d5fc4-c83d-46e5-b861-ad36ae4548b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/8c%2Fa9%2Fdc%2F8ca9dcbd3cd34139a75596284e09e496%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1934-06-16,1934-06-16,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,,,30.00,FRF,https://shakespeareandco.princeton.edu/books/beckett-pricks-kicks/,More Pricks Than Kicks,,"Beckett, Samuel",1934,,Lending Library Card,"Sylvia Beach, James Joyce Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/60df1b72-de14-4053-ac2b-b16671872306/manifest,https://iiif.princeton.edu/loris/figgy_prod/3f%2F05%2Fc4%2F3f05c4ba4908479ead76b36736bb9d19%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-06-16,1934-06-21,https://shakespeareandco.princeton.edu/members/dherbais-de-thun/,Marie-Valerie d'Herbais de Thun,"d'Herbais de Thun, Marie-Valerie",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/firbank-artificial-princess/,The Artificial Princess,,"Firbank, Ronald",1934,,Lending Library Card,"Sylvia Beach, Marie-Valerie Herbais de Thun Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/94cf6667-e6c3-451a-9da4-35a58d089850/manifest,https://iiif.princeton.edu/loris/figgy_prod/38%2Ff0%2F98%2F38f09874f57345f4bf007e23065cb827%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1934-06-16,1934-07-16,https://shakespeareandco.princeton.edu/members/duncan-7/,Frances Duncan,"Duncan, Frances",20.00,,1 month,30,1,,1934-06-16,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1934-06-16,1934-07-11,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,25,,,https://shakespeareandco.princeton.edu/books/coyle-french-husband/,The French Husband,,"Coyle, Kathleen",1932,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/da%2F3f%2Fea%2Fda3fea8e737d4c0a840500e2ad11dd27%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1934-06-16,1934-06-16,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,,,50.00,FRF,https://shakespeareandco.princeton.edu/books/joyce-mime-mick-nick/,"The Mime of Mick, Nick, and the Maggies",,"Joyce, James",1934,,Lending Library Card,"Sylvia Beach, James Joyce Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/60df1b72-de14-4053-ac2b-b16671872306/manifest,https://iiif.princeton.edu/loris/figgy_prod/3f%2F05%2Fc4%2F3f05c4ba4908479ead76b36736bb9d19%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-06-18,1934-06-21,https://shakespeareandco.princeton.edu/members/maxwell/,Mrs. Maxwell,"Maxwell, Mrs.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/nijinsky-nijinsky/,Nijinsky,,"Nijinsky, Romola de Pulszky",1933,,Lending Library Card,"Sylvia Beach, Mrs. Maxwell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6148b048-a591-4aae-8470-52fde178e0aa/manifest,https://iiif.princeton.edu/loris/figgy_prod/a3%2F59%2F56%2Fa359568ae1a7491689f98c55dd398b98%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-06-20,1934-06-26,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/maugham-plays/,Plays,"Vol. 5, 1934 Caesar's Wife; East of Suez; The Sacred Flame","Maugham, W. Somerset",,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/7c%2F31%2Fe9%2F7c31e90b6b0b4d9eb7817414c69cda4a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-06-20,1934-07-04,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/beales-memoirs-unemployed/,Memoirs of the Unemployed,,,1934,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/7c%2F31%2Fe9%2F7c31e90b6b0b4d9eb7817414c69cda4a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-06-21,1934-06-22,https://shakespeareandco.princeton.edu/members/maxwell/,Mrs. Maxwell,"Maxwell, Mrs.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/joyce-ulysses/,Ulysses,,"Joyce, James",1922,,Lending Library Card,"Sylvia Beach, Mrs. Maxwell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6148b048-a591-4aae-8470-52fde178e0aa/manifest,https://iiif.princeton.edu/loris/figgy_prod/a3%2F59%2F56%2Fa359568ae1a7491689f98c55dd398b98%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-06-21,,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/myers-murder-yet-come/,Murder Yet to Come,,"Myers, Isabel Briggs",1930,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e7%2F67%2Fe4%2Fe767e4aba183458d8491d96a49bd9896%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-06-21,1934-06-26,https://shakespeareandco.princeton.edu/members/dherbais-de-thun/,Marie-Valerie d'Herbais de Thun,"d'Herbais de Thun, Marie-Valerie",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/johnson-pirate-junk-five/,Pirate Junk: Five Months Captivity with Manchurian Bandits,,"Johnson, Clifford",1934,,Lending Library Card,"Sylvia Beach, Marie-Valerie Herbais de Thun Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/94cf6667-e6c3-451a-9da4-35a58d089850/manifest,https://iiif.princeton.edu/loris/figgy_prod/38%2Ff0%2F98%2F38f09874f57345f4bf007e23065cb827%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-06-21,1934-07-27,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,36,,,https://shakespeareandco.princeton.edu/books/west-judge/,The Judge,,"West, Rebecca",1922,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e7%2F67%2Fe4%2Fe767e4aba183458d8491d96a49bd9896%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-06-21,1934-07-27,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,36,,,https://shakespeareandco.princeton.edu/books/sinclair-creators-comedy/,The Creators: A Comedy,,"Sinclair, May",1910,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e7%2F67%2Fe4%2Fe767e4aba183458d8491d96a49bd9896%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-06-22,1934-06-26,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/carroll-alices-adventures-wonderland/,Alice's Adventures in Wonderland,,"Carroll, Lewis",1865,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/e6%2F6f%2F74%2Fe66f74c339014daa83229167df178fa1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-06-22,1934-06-26,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/lawrence-sea-sardinia/,Sea and Sardinia,,"Lawrence, D. H.",1921,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/e6%2F6f%2F74%2Fe66f74c339014daa83229167df178fa1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-06-22,1934-07-05,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/fausset-john-donne-study/,John Donne: A Study in Discord,,"Fausset, Hugh I'Anson",1924,,Lending Library Card,"Sylvia Beach, Aline Prot's Lending Library Card in Antoinette Bernheim's File, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4a7d497b-2d1d-4e7a-8a3e-781160cbe998/manifest,https://iiif-cloud.princeton.edu/iiif/2/fe%2F14%2Fcf%2Ffe14cfe9ad0c49f3a7d0e7389cce9b9e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-06-22,1934-06-29,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/white-farewell-victoria/,Farewell Victoria,,"White, T. H.",1933,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/e6%2F43%2F11%2Fe643111d618f45aeb8829844d126a6c8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-06-22,1934-07-02,https://shakespeareandco.princeton.edu/members/guillemin-annie/,Annie Guillemin,"Guillemin, Annie",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/forster-passage-india/,A Passage to India,,"Forster, E. M.",1924,,Lending Library Card,"Sylvia Beach, Annie Guillemin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2d6019d9-34ed-4ca4-97a9-5fd05d8640a7/manifest,https://iiif.princeton.edu/loris/figgy_prod/8c%2Fbb%2Fe1%2F8cbbe1dd84b1489fa79f3b0b7d7b6e3f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1934-06-22,1934-07-22,https://shakespeareandco.princeton.edu/members/wibbelz-henry/,Henry W. Wibbelz,"Wibbelz, Henry W.",12.00,,1 month,30,1,,1934-07-23,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Henry W. Wibbelz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/225d5fc4-c83d-46e5-b861-ad36ae4548b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/8c%2Fa9%2Fdc%2F8ca9dcbd3cd34139a75596284e09e496%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-06-22,1934-06-26,https://shakespeareandco.princeton.edu/members/maxwell/,Mrs. Maxwell,"Maxwell, Mrs.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/hall-master-house/,The Master of the House,,"Hall, Radclyffe",1932,,Lending Library Card,"Sylvia Beach, Mrs. Maxwell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6148b048-a591-4aae-8470-52fde178e0aa/manifest,https://iiif.princeton.edu/loris/figgy_prod/a3%2F59%2F56%2Fa359568ae1a7491689f98c55dd398b98%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-06-22,1934-07-19,https://shakespeareandco.princeton.edu/members/wibbelz-henry/,Henry W. Wibbelz,"Wibbelz, Henry W.",,,,,,,,,Returned,27,,,https://shakespeareandco.princeton.edu/books/stendhal-red-black/,The Red and the Black,Vol. 2,Stendhal,1926,"At least two editions of *The Red and the Black* circulated in the lending library. Richard Le Gallienne, Catherine Yarrow, and Henry W. Wibbelz borrowed *The Red and the Black* (New York: Modern Library, 1926); and Robert McAlmon and John d'Arcy Clark borrowed *The Scarlet and the Black* (London: Chatto & Windus, 1927).",Lending Library Card,"Sylvia Beach, Henry W. Wibbelz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/225d5fc4-c83d-46e5-b861-ad36ae4548b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/8c%2Fa9%2Fdc%2F8ca9dcbd3cd34139a75596284e09e496%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-06-22,1934-07-06,https://shakespeareandco.princeton.edu/members/wibbelz-henry/,Henry W. Wibbelz,"Wibbelz, Henry W.",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/stendhal-red-black/,The Red and the Black,Vol. 1,Stendhal,1926,"At least two editions of *The Red and the Black* circulated in the lending library. Richard Le Gallienne, Catherine Yarrow, and Henry W. Wibbelz borrowed *The Red and the Black* (New York: Modern Library, 1926); and Robert McAlmon and John d'Arcy Clark borrowed *The Scarlet and the Black* (London: Chatto & Windus, 1927).",Lending Library Card,"Sylvia Beach, Henry W. Wibbelz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/225d5fc4-c83d-46e5-b861-ad36ae4548b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/8c%2Fa9%2Fdc%2F8ca9dcbd3cd34139a75596284e09e496%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1934-06-22,1934-06-22,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,,,10.75,FRF,https://shakespeareandco.princeton.edu/books/eliot-rock/,The Rock,,"Eliot, T. S.",1934,,Lending Library Card,"Sylvia Beach, James Joyce Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/60df1b72-de14-4053-ac2b-b16671872306/manifest,https://iiif.princeton.edu/loris/figgy_prod/3f%2F05%2Fc4%2F3f05c4ba4908479ead76b36736bb9d19%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1934-06-22,1934-06-22,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,,,50.00,FRF,https://shakespeareandco.princeton.edu/books/joyce-mime-mick-nick/,"The Mime of Mick, Nick, and the Maggies",,"Joyce, James",1934,,Lending Library Card,"Sylvia Beach, James Joyce Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/60df1b72-de14-4053-ac2b-b16671872306/manifest,https://iiif.princeton.edu/loris/figgy_prod/3f%2F05%2Fc4%2F3f05c4ba4908479ead76b36736bb9d19%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-06-23,1934-06-25,https://shakespeareandco.princeton.edu/members/bonnerot-louis/,Louis Bonnerot,"Bonnerot, Louis",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/ballard-cahiers-sud/,Les cahiers du sud,"Vol. 21, no. 162, Jun 1934",,,,Lending Library Card,"Sylvia Beach, Louis Bonnerot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c14cc736-079c-4403-9036-a2de4743414a/manifest,https://iiif.princeton.edu/loris/figgy_prod/9f%2F6c%2F07%2F9f6c0714aef2411d8ae482314a2c165a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-06-23,1934-07-17,https://shakespeareandco.princeton.edu/members/yarrow-catherine/,Catherine Yarrow,"Yarrow, Catherine",,,,,,,,,Returned,24,,,https://shakespeareandco.princeton.edu/books/hemingway-death-afternoon/,Death in the Afternoon,,"Hemingway, Ernest",1932,,Lending Library Card,"Sylvia Beach, Catherine Yarrow Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d0d522e7-9d4e-41ca-8b3b-8fe6ba58e334/manifest,https://iiif.princeton.edu/loris/figgy_prod/38%2Fe4%2F9e%2F38e49ec85ad54b1bb50df436efd43955%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-06-23,1934-07-19,https://shakespeareandco.princeton.edu/members/denis-graterolle/,Elisabeth Denis-Graterolle / Mme Maurice Denis,"Denis-Graterolle, Elisabeth",,,,,,,,,Returned,26,,,https://shakespeareandco.princeton.edu/books/murry-discoveries-essays-literary/,Discoveries: Essays in Literary Criticism,,"Murry, John Middleton",1924,,Lending Library Card,"Sylvia Beach, Elisabeth Denis-Graterolle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/964dbe97-240c-4e59-a8ca-c43f25875149/manifest,https://iiif.princeton.edu/loris/figgy_prod/01%2F85%2F35%2F0185352ce4a645fb9698d1bbb7b51071%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-06-23,1934-07-19,https://shakespeareandco.princeton.edu/members/denis-graterolle/,Elisabeth Denis-Graterolle / Mme Maurice Denis,"Denis-Graterolle, Elisabeth",,,,,,,,,Returned,26,,,https://shakespeareandco.princeton.edu/books/murry-woman-story-h/,Son of Woman: The Story of D. H. Lawrence,,"Murry, John Middleton",1931,,Lending Library Card,"Sylvia Beach, Elisabeth Denis-Graterolle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/964dbe97-240c-4e59-a8ca-c43f25875149/manifest,https://iiif.princeton.edu/loris/figgy_prod/01%2F85%2F35%2F0185352ce4a645fb9698d1bbb7b51071%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1934-06-23,1934-07-23,https://shakespeareandco.princeton.edu/members/ducrocq/,Mme Ducrocq,"Ducrocq, Mme",12.00,30.00,1 month,30,1,,1934-06-23,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1934-06-23,1934-06-23,https://shakespeareandco.princeton.edu/members/bowman-j-m/,J. M. Bowman,"Bowman, J. M.",,,,,,,,60.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1934-06-25,1934-06-25,https://shakespeareandco.princeton.edu/members/cores/,Mrs. C. R. Cores,"Cores, Mrs. C. R.",,,,,,,,100.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1934-06-25,,https://shakespeareandco.princeton.edu/members/tony-mayer/,Thérèse Tony-Mayer,"Tony-Mayer, Thérèse",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/louis-bromfield-today-gone-tomorrow/,Here Today and Gone Tomorrow,,"Bromfield, Louis",1934,,Lending Library Card,"Sylvia Beach, Thérèse Tony-Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/27246b4c-7d99-4dca-b874-ab90bd542cfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/50%2Fa0%2Fff%2F50a0ff19abc240c680a6a33baf060b76%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-06-25,,https://shakespeareandco.princeton.edu/members/tony-mayer/,Thérèse Tony-Mayer,"Tony-Mayer, Thérèse",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/louis-bromfield-today-gone-tomorrow/,Here Today and Gone Tomorrow,,"Bromfield, Louis",1934,,Lending Library Card,"Sylvia Beach, Thérèse Tony-Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/27246b4c-7d99-4dca-b874-ab90bd542cfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/a1%2Fec%2Ff5%2Fa1ecf56bff2e4aefa5c17aaba1dcce85%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1934-06-26,1934-07-26,https://shakespeareandco.princeton.edu/members/denis-graterolle/,Elisabeth Denis-Graterolle / Mme Maurice Denis,"Denis-Graterolle, Elisabeth",12.00,,1 month,30,2,,1934-06-26,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Elisabeth Denis-Graterolle Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/964dbe97-240c-4e59-a8ca-c43f25875149/manifest,https://iiif.princeton.edu/loris/figgy_prod/01%2F85%2F35%2F0185352ce4a645fb9698d1bbb7b51071%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1934-06-26,1934-07-26,https://shakespeareandco.princeton.edu/members/francillon-robert/,Robert Francillon,"Francillon, Robert",12.00,,1 month,30,,,1934-06-26,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Robert Francillon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/293515d1-49ee-47fb-98ae-5a15449080ab/manifest,;https://iiif.princeton.edu/loris/figgy_prod/c0%2F1e%2F78%2Fc01e780cf9574c26a640060f60449980%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-06-26,1934-06-28,https://shakespeareandco.princeton.edu/members/delimal/,Mme Delimal,"Delimal, Mme",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/woolf-flush-biography/,Flush: A Biography,,"Woolf, Virginia",1933,,Lending Library Card,"Sylvia Beach, Madame Delimal Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d7650699-e9d7-4e63-85ff-bce7e9c8dfcd/manifest,https://iiif.princeton.edu/loris/figgy_prod/b1%2Fb8%2F67%2Fb1b8677417e54581bff1177dc38a8c7c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-06-26,1934-07-04,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/lawrence-collected-poems-h/,The Collected Poems of D. H. Lawrence,Vol. 2 Unrhyming Poems,"Lawrence, D. H.",1928,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/e6%2F6f%2F74%2Fe66f74c339014daa83229167df178fa1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-06-26,1934-07-05,https://shakespeareandco.princeton.edu/members/dherbais-de-thun/,Marie-Valerie d'Herbais de Thun,"d'Herbais de Thun, Marie-Valerie",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/laing-cadaver-gideon-wyck/,The Cadaver of Gideon Wyck,,"Laing, Alexander",1934,,Lending Library Card,"Sylvia Beach, Marie-Valerie Herbais de Thun Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/94cf6667-e6c3-451a-9da4-35a58d089850/manifest,https://iiif.princeton.edu/loris/figgy_prod/38%2Ff0%2F98%2F38f09874f57345f4bf007e23065cb827%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-06-26,1934-07-04,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/douglas-looking-back-autobiographical/,Looking Back: An Autobiographical Excursion,,"Douglas, Norman",1933,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/7c%2F31%2Fe9%2F7c31e90b6b0b4d9eb7817414c69cda4a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-06-26,1934-07-10,https://shakespeareandco.princeton.edu/members/peake-catherine/;https://shakespeareandco.princeton.edu/members/peake-charles/,Catherine Marie Knight Peake / Mrs. Charles Peake;Charles Peake,"Peake, Catherine;Peake, Charles",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/bridge-ginger-griffin/,The Ginger Griffin,,"Bridge, Ann",1934,,Lending Library Card,"Sylvia Beach, Charles Peake Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5e8684f0-17db-4d9b-8414-54b5c4613b10/manifest,https://iiif.princeton.edu/loris/figgy_prod/0c%2F02%2Fd3%2F0c02d36d98844871b535b29804599544%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-06-26,1934-07-02,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/carswell-savage-pilgrimage-narrative/,The Savage Pilgrimage: A Narrative of D. H. Lawrence,,"Carswell, Catherine",1932,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/e6%2F6f%2F74%2Fe66f74c339014daa83229167df178fa1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-06-26,1934-07-13,https://shakespeareandco.princeton.edu/members/maxwell/,Mrs. Maxwell,"Maxwell, Mrs.",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/lewis-apes-god/,The Apes of God,,"Lewis, Wyndham",1930,,Lending Library Card,"Sylvia Beach, Mrs. Maxwell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6148b048-a591-4aae-8470-52fde178e0aa/manifest,https://iiif.princeton.edu/loris/figgy_prod/a3%2F59%2F56%2Fa359568ae1a7491689f98c55dd398b98%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-06-27,1934-07-09,https://shakespeareandco.princeton.edu/members/plummer-dorothy/,Dorothy Plummer,"Plummer, Dorothy",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/hardy-jude-obscure/,Jude the Obscure,,"Hardy, Thomas",1895,,Lending Library Card,"Sylvia Beach, Dorothy Plummer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5f53ce0-8ea6-4d1f-b36b-f6e5321bab4c/manifest,https://iiif.princeton.edu/loris/figgy_prod/73%2F61%2F28%2F7361283a6eb946cbbb43d97ca38f1deb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-06-28,1934-07-29,https://shakespeareandco.princeton.edu/members/delimal/,Mme Delimal,"Delimal, Mme",,,,,,,,,Returned,31,,,https://shakespeareandco.princeton.edu/books/white-peacock/,The White Peacock,,"Lawrence, D. H.",1911,,Lending Library Card,"Sylvia Beach, Madame Delimal Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d7650699-e9d7-4e63-85ff-bce7e9c8dfcd/manifest,https://iiif.princeton.edu/loris/figgy_prod/b1%2Fb8%2F67%2Fb1b8677417e54581bff1177dc38a8c7c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1934-06-29,1934-06-29,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,,,50.00,FRF,https://shakespeareandco.princeton.edu/books/joyce-mime-mick-nick/,"The Mime of Mick, Nick, and the Maggies",,"Joyce, James",1934,,Lending Library Card,"Sylvia Beach, James Joyce Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/60df1b72-de14-4053-ac2b-b16671872306/manifest,https://iiif.princeton.edu/loris/figgy_prod/3f%2F05%2Fc4%2F3f05c4ba4908479ead76b36736bb9d19%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-06-29,1934-07-12,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/vandercook-murder-trinidad-case/,"Murder in Trinidad: A Case in the Career of Bertram Lynch, P.C.B.",,"Vandercook, John Womack",1934,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/e6%2F43%2F11%2Fe643111d618f45aeb8829844d126a6c8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-06-29,1934-07-12,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/winwar-poor-splendid-wings/,Poor Splendid Wings: The Rossettis and Their Circle,,"Winwar, Frances",1933,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/e6%2F43%2F11%2Fe643111d618f45aeb8829844d126a6c8%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1934-06-29,1934-06-29,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,,,50.00,FRF,https://shakespeareandco.princeton.edu/books/joyce-mime-mick-nick/,"The Mime of Mick, Nick, and the Maggies",,"Joyce, James",1934,,Lending Library Card,"Sylvia Beach, James Joyce Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/60df1b72-de14-4053-ac2b-b16671872306/manifest,https://iiif.princeton.edu/loris/figgy_prod/3f%2F05%2Fc4%2F3f05c4ba4908479ead76b36736bb9d19%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1934-06-29,1934-06-29,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,,,50.00,FRF,https://shakespeareandco.princeton.edu/books/joyce-mime-mick-nick/,"The Mime of Mick, Nick, and the Maggies",,"Joyce, James",1934,,Lending Library Card,"Sylvia Beach, James Joyce Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/60df1b72-de14-4053-ac2b-b16671872306/manifest,https://iiif.princeton.edu/loris/figgy_prod/3f%2F05%2Fc4%2F3f05c4ba4908479ead76b36736bb9d19%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-07-02,1934-07-03,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/williams-portcullis-room/,The Portcullis Room,,"Williams, Valentine",1934,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/26%2F41%2F4f%2F26414fa5907b409db286adabe4e9330c%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1934-07-02,1934-08-02,https://shakespeareandco.princeton.edu/members/burroughs-m-p/,Mrs. M. P. Burroughs,"Burroughs, Mrs. M. P.",12.00,30.00,1 month,31,1,,1934-07-02,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1934-07-02,1934-07-12,https://shakespeareandco.princeton.edu/members/guillemin-annie/,Annie Guillemin,"Guillemin, Annie",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/richardson-backwater-pilgrimage-2/,Backwater (Pilgrimage 2),,"Richardson, Dorothy M.",1916,,Lending Library Card,"Sylvia Beach, Annie Guillemin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2d6019d9-34ed-4ca4-97a9-5fd05d8640a7/manifest,https://iiif.princeton.edu/loris/figgy_prod/8c%2Fbb%2Fe1%2F8cbbe1dd84b1489fa79f3b0b7d7b6e3f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1934-07-02,,https://shakespeareandco.princeton.edu/members/cores/,Mrs. C. R. Cores,"Cores, Mrs. C. R.",,100.00,,,,Day By Day,1934-07-02,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1934-07-02,1934-07-04,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/murry-reminiscences-h-lawrence/,Reminiscences of D. H. Lawrence,,"Murry, John Middleton",1933,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/e6%2F6f%2F74%2Fe66f74c339014daa83229167df178fa1%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1934-07-02,1934-10-02,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",65.00,,3 months,92,,,1934-07-02,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,;https://iiif-cloud.princeton.edu/iiif/2/26%2F41%2F4f%2F26414fa5907b409db286adabe4e9330c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-07-02,1934-07-12,https://shakespeareandco.princeton.edu/members/van-den-bergh/,Tamara van den Bergh,"van den Bergh, Tamara",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/sassoon-memoirs-fox-hunting/,Memoirs of a Fox-Hunting Man,,"Sassoon, Siegfried",1929,,Lending Library Card,"Sylvia Beach, Miss Tamara van den Bergh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f3a52627-dc5d-410b-aa7f-9d39941f18e8/manifest,https://iiif.princeton.edu/loris/figgy_prod/be%2F36%2F7d%2Fbe367d353e62409993b548c8a1a1b7d2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1934-07-02,1934-08-02,https://shakespeareandco.princeton.edu/members/van-den-bergh/,Tamara van den Bergh,"van den Bergh, Tamara",12.00,30.00,1 month,31,1,,1934-07-02,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Miss Tamara van den Bergh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/f3a52627-dc5d-410b-aa7f-9d39941f18e8/manifest,;https://iiif.princeton.edu/loris/figgy_prod/26%2F82%2Fd3%2F2682d3d4f21f436faeed49b64c3f403f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1934-07-02,1934-07-02,https://shakespeareandco.princeton.edu/members/crehan/,B. J. Crehan,"Crehan, B. J.",,,,,,,,30.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1934-07-02,,https://shakespeareandco.princeton.edu/members/van-den-bergh/,Tamara van den Bergh,"van den Bergh, Tamara",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/lewis-ann-vickers/,Ann Vickers,,"Lewis, Sinclair",1933,,Lending Library Card,"Sylvia Beach, Miss Tamara van den Bergh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f3a52627-dc5d-410b-aa7f-9d39941f18e8/manifest,https://iiif.princeton.edu/loris/figgy_prod/be%2F36%2F7d%2Fbe367d353e62409993b548c8a1a1b7d2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-07-03,,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/rinehart-state-versus-elinor/,The State versus Elinor Norton,,"Rinehart, Mary Roberts",1934,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/26%2F41%2F4f%2F26414fa5907b409db286adabe4e9330c%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1934-07-03,1934-07-03,https://shakespeareandco.princeton.edu/members/avenel-marguerite-d/,Marguerite d'Avenel,"d'Avenel, Marguerite",,,,,,,,30.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1934-07-04,1934-07-09,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/lawrence-england-england-stories/,"England, My England and Other Stories",,"Lawrence, D. H.",1922,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/e6%2F6f%2F74%2Fe66f74c339014daa83229167df178fa1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-07-04,1934-07-12,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/lawrence-sea-sardinia/,Sea and Sardinia,,"Lawrence, D. H.",1921,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/7c%2F31%2Fe9%2F7c31e90b6b0b4d9eb7817414c69cda4a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-07-04,1934-07-12,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/mackenzie-vestal-fire/,Vestal Fire,,"Mackenzie, Compton",1927,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/7c%2F31%2Fe9%2F7c31e90b6b0b4d9eb7817414c69cda4a%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1934-07-04,1934-08-04,https://shakespeareandco.princeton.edu/members/booth-h/,H. Booth,"Booth, H.",60.00,20.00,1 month,31,2,,1934-07-04,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1934-07-04,1934-07-09,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/magnus-memoirs-foreign-legion/,Memoirs of the Foreign Legion,,"Magnus, Maurice",1924,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/e6%2F6f%2F74%2Fe66f74c339014daa83229167df178fa1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-07-05,1934-07-10,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/waddell-peter-abelard-novel/,Peter Abelard: A Novel,,"Waddell, Helen",1933,,Lending Library Card,"Sylvia Beach, Aline Prot's Lending Library Card in Antoinette Bernheim's File, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4a7d497b-2d1d-4e7a-8a3e-781160cbe998/manifest,https://iiif-cloud.princeton.edu/iiif/2/fe%2F14%2Fcf%2Ffe14cfe9ad0c49f3a7d0e7389cce9b9e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-07-05,1934-07-07,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/king-obelists-route/,Obelists en Route,,"King, Charles Daly",1934,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/26%2F41%2F4f%2F26414fa5907b409db286adabe4e9330c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-07-05,1934-07-10,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/shelley-poetical-works-percy/,Shelley's Works,,"Shelley, Percy Bysshe",,"Fernand Colens borrowed the 2 volume Everyman's Library edition of Shelley's poems, edited by A. H. Koszul (1907). Alina Prot borrowed volume 1 of an unidentified edition, and Antoinette Bernheim and Elizabeth Theves borrowed volume 2 of an unidentified edition.",Lending Library Card,"Sylvia Beach, Aline Prot's Lending Library Card in Antoinette Bernheim's File, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4a7d497b-2d1d-4e7a-8a3e-781160cbe998/manifest,https://iiif-cloud.princeton.edu/iiif/2/fe%2F14%2Fcf%2Ffe14cfe9ad0c49f3a7d0e7389cce9b9e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-07-05,,https://shakespeareandco.princeton.edu/members/camille-georgette/,Georgette Camille,"Camille, Georgette",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/richardson-dawns-left-hand/,Dawn's Left Hand (Pilgrimage 10),,"Richardson, Dorothy M.",1931,,Lending Library Card,"Sylvia Beach, Georgette Camille Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/68b3a985-6d7b-43e1-b3d9-c5053eabaa71/manifest,https://iiif.princeton.edu/loris/figgy_prod/0e%2F55%2Ff1%2F0e55f1bfaaf045eabd5200ab1a6f66a5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1934-07-07,1935-01-07,https://shakespeareandco.princeton.edu/members/carr-philip/,Philip Carr,"Carr, Philip",50.00,,6 months,184,,,1934-07-07,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Philip Carr Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/2c296e1a-6bed-41d4-987b-455048b75ef3/manifest,;https://iiif.princeton.edu/loris/figgy_prod/dd%2F5b%2Ff5%2Fdd5bf5ab03994df5b321f07c1da700eb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1934-07-07,1934-07-07,https://shakespeareandco.princeton.edu/members/coestesco-michelle/,Michelle Costesco,"Costesco, Michelle",,,,,,,,30.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1934-07-07,1935-02-27,https://shakespeareandco.princeton.edu/members/carr-philip/,Philip Carr,"Carr, Philip",,,,,,,,,Returned,235,,,https://shakespeareandco.princeton.edu/books/harrison-elizabethan-journal/,An Elizabethan Journal,,"Harrison, G. B.",1929,,Lending Library Card,"Sylvia Beach, Philip Carr Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2c296e1a-6bed-41d4-987b-455048b75ef3/manifest,https://iiif.princeton.edu/loris/figgy_prod/dd%2F5b%2Ff5%2Fdd5bf5ab03994df5b321f07c1da700eb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-07-07,1934-07-10,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/collier-defy-foul-fiend/,"Defy the Foul Fiend: Or, the Misadventures of a Heart",,"Collier, John",1934,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/26%2F41%2F4f%2F26414fa5907b409db286adabe4e9330c%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1934-07-08,1935-01-08,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",90.00,,6 months,184,2,,1934-07-09,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,;https://iiif-cloud.princeton.edu/iiif/2/e6%2F6f%2F74%2Fe66f74c339014daa83229167df178fa1%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1934-07-08,1934-08-08,https://shakespeareandco.princeton.edu/members/dherbais-de-thun/,Marie-Valerie d'Herbais de Thun,"d'Herbais de Thun, Marie-Valerie",25.00,,1 month,31,1,,1934-07-09,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Marie-Valerie Herbais de Thun Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/94cf6667-e6c3-451a-9da4-35a58d089850/manifest,;https://iiif.princeton.edu/loris/figgy_prod/38%2Ff0%2F98%2F38f09874f57345f4bf007e23065cb827%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-07-09,1934-07-11,https://shakespeareandco.princeton.edu/members/bonnerot-louis/,Louis Bonnerot,"Bonnerot, Louis",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/criterion/,The Criterion,,,,"Renamed *The New Criterion* from January 1926 to January 1927, and *The Monthly Criterion* from May 1927 to March 1928.",Lending Library Card,"Sylvia Beach, Louis Bonnerot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c14cc736-079c-4403-9036-a2de4743414a/manifest,https://iiif.princeton.edu/loris/figgy_prod/9f%2F6c%2F07%2F9f6c0714aef2411d8ae482314a2c165a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-07-09,1934-07-17,https://shakespeareandco.princeton.edu/members/dherbais-de-thun/,Marie-Valerie d'Herbais de Thun,"d'Herbais de Thun, Marie-Valerie",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/lanham-sailors-dont-care/,Sailors Don't Care,,"Lanham, Edwin",1929,,Lending Library Card,"Sylvia Beach, Marie-Valerie Herbais de Thun Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/94cf6667-e6c3-451a-9da4-35a58d089850/manifest,https://iiif.princeton.edu/loris/figgy_prod/38%2Ff0%2F98%2F38f09874f57345f4bf007e23065cb827%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-07-09,1934-09-18,https://shakespeareandco.princeton.edu/members/dherbais-de-thun/,Marie-Valerie d'Herbais de Thun,"d'Herbais de Thun, Marie-Valerie",,,,,,,,,Returned,71,,,https://shakespeareandco.princeton.edu/books/webb-death-dovecot-murder/,Death in the Dovecot / Murder at the Women's City Club,,"Webb, Richard Wilson;Kelley, Martha Mott",1932,By Webb and Kelley writing together as [Q. Patrick](https://en.wikipedia.org/wiki/Patrick_Quentin).,Lending Library Card,"Sylvia Beach, Marie-Valerie Herbais de Thun Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/94cf6667-e6c3-451a-9da4-35a58d089850/manifest,https://iiif.princeton.edu/loris/figgy_prod/38%2Ff0%2F98%2F38f09874f57345f4bf007e23065cb827%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1934-07-09,1934-07-09,https://shakespeareandco.princeton.edu/members/gilbert-3/,Gilbert,Gilbert,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1934-07-09,1934-07-13,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/douglas-looking-back-autobiographical/,Looking Back: An Autobiographical Excursion,,"Douglas, Norman",1933,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/e6%2F6f%2F74%2Fe66f74c339014daa83229167df178fa1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-07-09,1934-07-12,https://shakespeareandco.princeton.edu/members/plummer-dorothy/,Dorothy Plummer,"Plummer, Dorothy",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/lawrence-letters-h-lawrence/,The Letters of D. H. Lawrence,,"Lawrence, D. H.",1932,,Lending Library Card,"Sylvia Beach, Dorothy Plummer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5f53ce0-8ea6-4d1f-b36b-f6e5321bab4c/manifest,https://iiif.princeton.edu/loris/figgy_prod/73%2F61%2F28%2F7361283a6eb946cbbb43d97ca38f1deb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-07-10,1934-07-13,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/queen-siamese-twin-mystery/,The Siamese Twin Mystery,,"Dannay, Frederic;Lee, Manfred B.",1933,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/26%2F41%2F4f%2F26414fa5907b409db286adabe4e9330c%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1934-07-10,1934-08-10,https://shakespeareandco.princeton.edu/members/delimal/,Mme Delimal,"Delimal, Mme",12.00,,1 month,31,1,,1934-08-22,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Madame Delimal Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d7650699-e9d7-4e63-85ff-bce7e9c8dfcd/manifest,https://iiif.princeton.edu/loris/figgy_prod/b1%2Fb8%2F67%2Fb1b8677417e54581bff1177dc38a8c7c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-07-10,1934-07-18,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/strachey-queen-victoria/,Queen Victoria,,"Strachey, Giles Lytton",1921,,Lending Library Card,"Sylvia Beach, Aline Prot's Lending Library Card in Antoinette Bernheim's File, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4a7d497b-2d1d-4e7a-8a3e-781160cbe998/manifest,https://iiif-cloud.princeton.edu/iiif/2/fe%2F14%2Fcf%2Ffe14cfe9ad0c49f3a7d0e7389cce9b9e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-07-10,1934-07-18,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/wilder-cabala/,The Cabala,,"Wilder, Thornton",1926,,Lending Library Card,"Sylvia Beach, Aline Prot's Lending Library Card in Antoinette Bernheim's File, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4a7d497b-2d1d-4e7a-8a3e-781160cbe998/manifest,https://iiif-cloud.princeton.edu/iiif/2/fe%2F14%2Fcf%2Ffe14cfe9ad0c49f3a7d0e7389cce9b9e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-07-11,1934-07-25,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/bromfield-modern-hero/,A Modern Hero,,"Bromfield, Louis",1932,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/da%2F3f%2Fea%2Fda3fea8e737d4c0a840500e2ad11dd27%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-07-11,1934-07-19,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/loder-death-thicket/,Death in the Thicket,,"Loder, Vernon",1932,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/da%2F3f%2Fea%2Fda3fea8e737d4c0a840500e2ad11dd27%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-07-12,1934-09-13,https://shakespeareandco.princeton.edu/members/van-den-bergh/,Tamara van den Bergh,"van den Bergh, Tamara",,,,,,,,,Returned,63,,,https://shakespeareandco.princeton.edu/books/green-short-history-english/,A Short History of the English People,,"Green, John Richard",1874,,Lending Library Card,"Sylvia Beach, Miss Tamara van den Bergh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f3a52627-dc5d-410b-aa7f-9d39941f18e8/manifest,https://iiif.princeton.edu/loris/figgy_prod/02%2F7b%2F0d%2F027b0de9b7de4c5bb3f221129c8acb03%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-07-12,1934-09-06,https://shakespeareandco.princeton.edu/members/van-den-bergh/,Tamara van den Bergh,"van den Bergh, Tamara",,,,,,,,,Returned,56,,,https://shakespeareandco.princeton.edu/books/saintsbury-history-elizabethan-literature/,A History of Elizabethan Literature (History of English Literature 1),,"Saintsbury, George",1887,,Lending Library Card,"Sylvia Beach, Miss Tamara van den Bergh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f3a52627-dc5d-410b-aa7f-9d39941f18e8/manifest,https://iiif.princeton.edu/loris/figgy_prod/02%2F7b%2F0d%2F027b0de9b7de4c5bb3f221129c8acb03%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-07-12,1934-07-24,https://shakespeareandco.princeton.edu/members/plummer-dorothy/,Dorothy Plummer,"Plummer, Dorothy",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/duncan-life/,My Life,,"Duncan, Isadora",1927,,Lending Library Card,"Sylvia Beach, Dorothy Plummer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5f53ce0-8ea6-4d1f-b36b-f6e5321bab4c/manifest,https://iiif.princeton.edu/loris/figgy_prod/73%2F61%2F28%2F7361283a6eb946cbbb43d97ca38f1deb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-07-12,1934-09-13,https://shakespeareandco.princeton.edu/members/van-den-bergh/,Tamara van den Bergh,"van den Bergh, Tamara",,,,,,,,,Returned,63,,,https://shakespeareandco.princeton.edu/books/green-short-history-english/,A Short History of the English People,,"Green, John Richard",1874,,Lending Library Card;Lending Library Card,"Sylvia Beach, Miss Tamara van den Bergh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Miss Tamara van den Bergh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f3a52627-dc5d-410b-aa7f-9d39941f18e8/manifest;https://figgy.princeton.edu/concern/scanned_resources/f3a52627-dc5d-410b-aa7f-9d39941f18e8/manifest,https://iiif.princeton.edu/loris/figgy_prod/a0%2F23%2Fb2%2Fa023b2f9c3894186bed79a0ae0ef2a90%2Fintermediate_file.jp2/full/full/0/default.jpg;https://iiif.princeton.edu/loris/figgy_prod/02%2F7b%2F0d%2F027b0de9b7de4c5bb3f221129c8acb03%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-07-12,1934-09-06,https://shakespeareandco.princeton.edu/members/van-den-bergh/,Tamara van den Bergh,"van den Bergh, Tamara",,,,,,,,,Returned,56,,,https://shakespeareandco.princeton.edu/books/black-goldsmith/,Goldsmith,,"Black, William",1878,,Lending Library Card;Lending Library Card,"Sylvia Beach, Miss Tamara van den Bergh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Miss Tamara van den Bergh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f3a52627-dc5d-410b-aa7f-9d39941f18e8/manifest;https://figgy.princeton.edu/concern/scanned_resources/f3a52627-dc5d-410b-aa7f-9d39941f18e8/manifest,https://iiif.princeton.edu/loris/figgy_prod/26%2F82%2Fd3%2F2682d3d4f21f436faeed49b64c3f403f%2Fintermediate_file.jp2/full/full/0/default.jpg;https://iiif.princeton.edu/loris/figgy_prod/be%2F36%2F7d%2Fbe367d353e62409993b548c8a1a1b7d2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1934-07-12,1934-07-12,https://shakespeareandco.princeton.edu/members/van-den-bergh/,Tamara van den Bergh,"van den Bergh, Tamara",,,,,,,,30.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1934-07-12,1934-09-06,https://shakespeareandco.princeton.edu/members/van-den-bergh/,Tamara van den Bergh,"van den Bergh, Tamara",,,,,,,,,Returned,56,,,https://shakespeareandco.princeton.edu/books/thackeray-vanity-fair/,Vanity Fair,,"Thackeray, William Makepeace",1847,,Lending Library Card;Lending Library Card,"Sylvia Beach, Miss Tamara van den Bergh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Miss Tamara van den Bergh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f3a52627-dc5d-410b-aa7f-9d39941f18e8/manifest;https://figgy.princeton.edu/concern/scanned_resources/f3a52627-dc5d-410b-aa7f-9d39941f18e8/manifest,https://iiif.princeton.edu/loris/figgy_prod/a0%2F23%2Fb2%2Fa023b2f9c3894186bed79a0ae0ef2a90%2Fintermediate_file.jp2/full/full/0/default.jpg;https://iiif.princeton.edu/loris/figgy_prod/02%2F7b%2F0d%2F027b0de9b7de4c5bb3f221129c8acb03%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-07-12,1934-07-18,https://shakespeareandco.princeton.edu/members/guillemin-annie/,Annie Guillemin,"Guillemin, Annie",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/richardson-honeycomb-pilgrimage-3/,Honeycomb (Pilgrimage 3),,"Richardson, Dorothy M.",1917,,Lending Library Card,"Sylvia Beach, Annie Guillemin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2d6019d9-34ed-4ca4-97a9-5fd05d8640a7/manifest,https://iiif.princeton.edu/loris/figgy_prod/8c%2Fbb%2Fe1%2F8cbbe1dd84b1489fa79f3b0b7d7b6e3f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-07-12,1934-07-18,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/asch-three-cities-trilogy/,Three Cities: A Trilogy,,"Asch, Sholem",1933,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/e6%2F43%2F11%2Fe643111d618f45aeb8829844d126a6c8%2Fintermediate_file/full/full/0/default.jpg
+Crossed out,1934-07-12,,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/vandercook-murder-trinidad-case/,"Murder in Trinidad: A Case in the Career of Bertram Lynch, P.C.B.",,"Vandercook, John Womack",1934,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/e6%2F43%2F11%2Fe643111d618f45aeb8829844d126a6c8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-07-12,1934-09-06,https://shakespeareandco.princeton.edu/members/van-den-bergh/,Tamara van den Bergh,"van den Bergh, Tamara",,,,,,,,,Returned,56,,,https://shakespeareandco.princeton.edu/books/trollope-thackeray/,Thackeray,,"Trollope, Anthony",1879,,Lending Library Card,"Sylvia Beach, Miss Tamara van den Bergh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f3a52627-dc5d-410b-aa7f-9d39941f18e8/manifest,https://iiif.princeton.edu/loris/figgy_prod/26%2F82%2Fd3%2F2682d3d4f21f436faeed49b64c3f403f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-07-12,1934-09-06,https://shakespeareandco.princeton.edu/members/van-den-bergh/,Tamara van den Bergh,"van den Bergh, Tamara",,,,,,,,,Returned,56,,,https://shakespeareandco.princeton.edu/books/lee-life-william-shakespeare/,A Life of William Shakespeare,,"Lee, Sidney",1898,,Lending Library Card;Lending Library Card,"Sylvia Beach, Miss Tamara van den Bergh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Miss Tamara van den Bergh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f3a52627-dc5d-410b-aa7f-9d39941f18e8/manifest;https://figgy.princeton.edu/concern/scanned_resources/f3a52627-dc5d-410b-aa7f-9d39941f18e8/manifest,https://iiif.princeton.edu/loris/figgy_prod/02%2F7b%2F0d%2F027b0de9b7de4c5bb3f221129c8acb03%2Fintermediate_file.jp2/full/full/0/default.jpg;https://iiif.princeton.edu/loris/figgy_prod/a0%2F23%2Fb2%2Fa023b2f9c3894186bed79a0ae0ef2a90%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-07-12,1934-08-02,https://shakespeareandco.princeton.edu/members/leyris-pierre/,Pierre Leyris,"Leyris, Pierre",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/osullivan-twenty-years-growing/,Twenty Years A-Growing,,"O'Sullivan, Maurice",1933,,Lending Library Card,"Sylvia Beach, Pierre Leyris Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6c75c34b-de6f-4465-baee-8f7cd76f5c87/manifest,https://iiif-cloud.princeton.edu/iiif/2/eb%2F32%2F1e%2Feb321e7572324744932b1d81997b548e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-07-12,1934-09-06,https://shakespeareandco.princeton.edu/members/van-den-bergh/,Tamara van den Bergh,"van den Bergh, Tamara",,,,,,,,,Returned,56,,,https://shakespeareandco.princeton.edu/books/goldsmith-vicar-wakefield/,The Vicar of Wakefield,,"Goldsmith, Oliver",1766,,Lending Library Card;Lending Library Card,"Sylvia Beach, Miss Tamara van den Bergh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Miss Tamara van den Bergh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f3a52627-dc5d-410b-aa7f-9d39941f18e8/manifest;https://figgy.princeton.edu/concern/scanned_resources/f3a52627-dc5d-410b-aa7f-9d39941f18e8/manifest,https://iiif.princeton.edu/loris/figgy_prod/26%2F82%2Fd3%2F2682d3d4f21f436faeed49b64c3f403f%2Fintermediate_file.jp2/full/full/0/default.jpg;https://iiif.princeton.edu/loris/figgy_prod/be%2F36%2F7d%2Fbe367d353e62409993b548c8a1a1b7d2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1934-07-12,1934-08-12,https://shakespeareandco.princeton.edu/members/leyris-pierre/,Pierre Leyris,"Leyris, Pierre",12.00,,1 month,31,,,1934-07-12,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Pierre Leyris Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6c75c34b-de6f-4465-baee-8f7cd76f5c87/manifest,https://iiif-cloud.princeton.edu/iiif/2/eb%2F32%2F1e%2Feb321e7572324744932b1d81997b548e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-07-12,1934-09-13,https://shakespeareandco.princeton.edu/members/van-den-bergh/,Tamara van den Bergh,"van den Bergh, Tamara",,,,,,,,,Returned,63,,,https://shakespeareandco.princeton.edu/books/myers-wordsworth/,Wordsworth,,"Myers, F. W. H.",,,Lending Library Card;Lending Library Card,"Sylvia Beach, Miss Tamara van den Bergh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Miss Tamara van den Bergh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f3a52627-dc5d-410b-aa7f-9d39941f18e8/manifest;https://figgy.princeton.edu/concern/scanned_resources/f3a52627-dc5d-410b-aa7f-9d39941f18e8/manifest,https://iiif.princeton.edu/loris/figgy_prod/26%2F82%2Fd3%2F2682d3d4f21f436faeed49b64c3f403f%2Fintermediate_file.jp2/full/full/0/default.jpg;https://iiif.princeton.edu/loris/figgy_prod/be%2F36%2F7d%2Fbe367d353e62409993b548c8a1a1b7d2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-07-12,1934-07-25,https://shakespeareandco.princeton.edu/members/shelley-dorothy/,Dorothy Shelley,"Shelley, Dorothy",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/hemingway-death-afternoon/,Death in the Afternoon,,"Hemingway, Ernest",1932,,Lending Library Card,"Sylvia Beach, Dorothy Shelley Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dcc58669-efb6-4ace-ab31-a1cb913f3692/manifest,https://iiif.princeton.edu/loris/figgy_prod/74%2F2c%2Fd6%2F742cd61778084ba19317c41ed8865032%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-07-12,1934-07-25,https://shakespeareandco.princeton.edu/members/shelley-dorothy/,Dorothy Shelley,"Shelley, Dorothy",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/nijinsky-nijinsky/,Nijinsky,,"Nijinsky, Romola de Pulszky",1933,,Lending Library Card,"Sylvia Beach, Dorothy Shelley Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dcc58669-efb6-4ace-ab31-a1cb913f3692/manifest,https://iiif.princeton.edu/loris/figgy_prod/74%2F2c%2Fd6%2F742cd61778084ba19317c41ed8865032%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-07-12,1934-09-06,https://shakespeareandco.princeton.edu/members/van-den-bergh/,Tamara van den Bergh,"van den Bergh, Tamara",,,,,,,,,Bought,56,,,https://shakespeareandco.princeton.edu/books/hazlitt-literature-age-elizabeth/,The Literature of the Age of Elizabeth and Characters of Shakespeare's Plays,,"Hazlitt, William",,,Lending Library Card;Lending Library Card,"Sylvia Beach, Miss Tamara van den Bergh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Miss Tamara van den Bergh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f3a52627-dc5d-410b-aa7f-9d39941f18e8/manifest;https://figgy.princeton.edu/concern/scanned_resources/f3a52627-dc5d-410b-aa7f-9d39941f18e8/manifest,https://iiif.princeton.edu/loris/figgy_prod/a0%2F23%2Fb2%2Fa023b2f9c3894186bed79a0ae0ef2a90%2Fintermediate_file.jp2/full/full/0/default.jpg;https://iiif.princeton.edu/loris/figgy_prod/02%2F7b%2F0d%2F027b0de9b7de4c5bb3f221129c8acb03%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-07-12,1934-09-06,https://shakespeareandco.princeton.edu/members/van-den-bergh/,Tamara van den Bergh,"van den Bergh, Tamara",,,,,,,,,Returned,56,,,https://shakespeareandco.princeton.edu/books/bridges-poetical-works/,Poetical Works,,"Bridges, Robert",,Mlle Valerio and Tamara van den Bergh borrowed an unspecified edition of Robert Bridges's *Poems.* The other lending library members borrowed an unspecified edition of Robert Bridges's *Poetical Works.*,Lending Library Card;Lending Library Card,"Sylvia Beach, Miss Tamara van den Bergh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Miss Tamara van den Bergh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f3a52627-dc5d-410b-aa7f-9d39941f18e8/manifest;https://figgy.princeton.edu/concern/scanned_resources/f3a52627-dc5d-410b-aa7f-9d39941f18e8/manifest,https://iiif.princeton.edu/loris/figgy_prod/a0%2F23%2Fb2%2Fa023b2f9c3894186bed79a0ae0ef2a90%2Fintermediate_file.jp2/full/full/0/default.jpg;https://iiif.princeton.edu/loris/figgy_prod/be%2F36%2F7d%2Fbe367d353e62409993b548c8a1a1b7d2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-07-12,1934-09-13,https://shakespeareandco.princeton.edu/members/van-den-bergh/,Tamara van den Bergh,"van den Bergh, Tamara",,,,,,,,,Returned,63,,,https://shakespeareandco.princeton.edu/books/saintsbury-dryden/,Dryden,,"Saintsbury, George",1881,,Lending Library Card;Lending Library Card,"Sylvia Beach, Miss Tamara van den Bergh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Miss Tamara van den Bergh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f3a52627-dc5d-410b-aa7f-9d39941f18e8/manifest;https://figgy.princeton.edu/concern/scanned_resources/f3a52627-dc5d-410b-aa7f-9d39941f18e8/manifest,https://iiif.princeton.edu/loris/figgy_prod/26%2F82%2Fd3%2F2682d3d4f21f436faeed49b64c3f403f%2Fintermediate_file.jp2/full/full/0/default.jpg;https://iiif.princeton.edu/loris/figgy_prod/be%2F36%2F7d%2Fbe367d353e62409993b548c8a1a1b7d2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-07-12,1934-07-28,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/faulkner-doctor-martino-stories/,Doctor Martino and Other Stories,,"Faulkner, William",1934,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/7c%2F31%2Fe9%2F7c31e90b6b0b4d9eb7817414c69cda4a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-07-12,1934-07-28,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/golding-james-joyce/,James Joyce,,"Golding, Louis",1933,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/7c%2F31%2Fe9%2F7c31e90b6b0b4d9eb7817414c69cda4a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-07-12,,https://shakespeareandco.princeton.edu/members/van-den-bergh/,Tamara van den Bergh,"van den Bergh, Tamara",,,,,,,,,Bought,,,,https://shakespeareandco.princeton.edu/books/sidney-apology-poetry/,An Apology for Poetry,,"Sidney, Philip",1595,,Lending Library Card;Lending Library Card;Lending Library Card,"Sylvia Beach, Miss Tamara van den Bergh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Miss Tamara van den Bergh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Miss Tamara van den Bergh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f3a52627-dc5d-410b-aa7f-9d39941f18e8/manifest;https://figgy.princeton.edu/concern/scanned_resources/f3a52627-dc5d-410b-aa7f-9d39941f18e8/manifest;https://figgy.princeton.edu/concern/scanned_resources/f3a52627-dc5d-410b-aa7f-9d39941f18e8/manifest,https://iiif.princeton.edu/loris/figgy_prod/26%2F82%2Fd3%2F2682d3d4f21f436faeed49b64c3f403f%2Fintermediate_file.jp2/full/full/0/default.jpg;https://iiif.princeton.edu/loris/figgy_prod/be%2F36%2F7d%2Fbe367d353e62409993b548c8a1a1b7d2%2Fintermediate_file.jp2/full/full/0/default.jpg;https://iiif.princeton.edu/loris/figgy_prod/a0%2F23%2Fb2%2Fa023b2f9c3894186bed79a0ae0ef2a90%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-07-12,1934-09-13,https://shakespeareandco.princeton.edu/members/van-den-bergh/,Tamara van den Bergh,"van den Bergh, Tamara",,,,,,,,,Returned,63,,,https://shakespeareandco.princeton.edu/books/wordsworth-prelude/,The Prelude,,"Wordsworth, William",,,Lending Library Card;Lending Library Card,"Sylvia Beach, Miss Tamara van den Bergh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Miss Tamara van den Bergh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f3a52627-dc5d-410b-aa7f-9d39941f18e8/manifest;https://figgy.princeton.edu/concern/scanned_resources/f3a52627-dc5d-410b-aa7f-9d39941f18e8/manifest,https://iiif.princeton.edu/loris/figgy_prod/26%2F82%2Fd3%2F2682d3d4f21f436faeed49b64c3f403f%2Fintermediate_file.jp2/full/full/0/default.jpg;https://iiif.princeton.edu/loris/figgy_prod/be%2F36%2F7d%2Fbe367d353e62409993b548c8a1a1b7d2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-07-13,1934-07-16,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/louis-bromfield-today-gone-tomorrow/,Here Today and Gone Tomorrow,,"Bromfield, Louis",1934,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/0a%2F3d%2Fba%2F0a3dbaf96a524faa81a5d5b923208c01%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-07-13,1934-07-31,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/davies-life-known-voices/,Life as We Have Known It: The Voices of Working-Class Women,,,1931,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/e6%2F6f%2F74%2Fe66f74c339014daa83229167df178fa1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-07-13,1934-08-01,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/maugham-chinese-screen/,On a Chinese Screen,,"Maugham, W. Somerset",1922,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/e6%2F6f%2F74%2Fe66f74c339014daa83229167df178fa1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-07-13,1934-08-01,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/lawrence-women-love/,Women in Love,,"Lawrence, D. H.",1920,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/e6%2F6f%2F74%2Fe66f74c339014daa83229167df178fa1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-07-16,1934-07-20,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/mitchison-vienna-diary/,Vienna Diary,,"Mitchison, Naomi",1934,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/0a%2F3d%2Fba%2F0a3dbaf96a524faa81a5d5b923208c01%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1934-07-17,1934-10-17,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",100.00,,3 months,92,2,,1934-08-02,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/a5%2F6a%2F1c%2Fa56a1cb5380647fbab725eb33ac49f9a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-07-17,1934-07-18,https://shakespeareandco.princeton.edu/members/yarrow-catherine/,Catherine Yarrow,"Yarrow, Catherine",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/firbank-artificial-princess/,The Artificial Princess,,"Firbank, Ronald",1934,,Lending Library Card,"Sylvia Beach, Catherine Yarrow Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d0d522e7-9d4e-41ca-8b3b-8fe6ba58e334/manifest,https://iiif.princeton.edu/loris/figgy_prod/38%2Fe4%2F9e%2F38e49ec85ad54b1bb50df436efd43955%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-07-17,1934-08-06,https://shakespeareandco.princeton.edu/members/harmsworth-desmond/,Desmond Harmsworth,"Harmsworth, Desmond",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/mackenzie-vestal-fire/,Vestal Fire,,"Mackenzie, Compton",1927,,Lending Library Card,"Sylvia Beach, Desmond Harmsworth Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/debdcef4-167e-4d5f-bc28-e744fa306807/manifest,https://iiif.princeton.edu/loris/figgy_prod/81%2F34%2F85%2F8134857fb049433f83927e97786089fb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-07-18,1934-08-13,https://shakespeareandco.princeton.edu/members/yarrow-catherine/,Catherine Yarrow,"Yarrow, Catherine",,,,,,,,,Returned,26,,,https://shakespeareandco.princeton.edu/books/james-aspern-papers/,The Aspern Papers,,"James, Henry",1888,,Lending Library Card,"Sylvia Beach, Catherine Yarrow Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d0d522e7-9d4e-41ca-8b3b-8fe6ba58e334/manifest,https://iiif.princeton.edu/loris/figgy_prod/38%2Fe4%2F9e%2F38e49ec85ad54b1bb50df436efd43955%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1934-07-18,1934-07-18,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,,,3.45,FRF,https://shakespeareandco.princeton.edu/books/martin-new-statesman-nation/,The New Statesman and Nation,"Vol. 8, no. 177, Jul 14, 1934",,,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/1a%2F70%2Fc5%2F1a70c5f26391434ab607acb8b9b3e538%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-07-18,1934-07-27,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/williams-portcullis-room/,The Portcullis Room,,"Williams, Valentine",1934,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/e6%2F43%2F11%2Fe643111d618f45aeb8829844d126a6c8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-07-18,1934-07-30,https://shakespeareandco.princeton.edu/members/guillemin-annie/,Annie Guillemin,"Guillemin, Annie",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/richardson-tunnel-pilgrimage-4/,The Tunnel (Pilgrimage 4),,"Richardson, Dorothy M.",1919,,Lending Library Card,"Sylvia Beach, Annie Guillemin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2d6019d9-34ed-4ca4-97a9-5fd05d8640a7/manifest,https://iiif.princeton.edu/loris/figgy_prod/8c%2Fbb%2Fe1%2F8cbbe1dd84b1489fa79f3b0b7d7b6e3f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-07-18,1934-09-05,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",,,,,,,,,Returned,49,,,https://shakespeareandco.princeton.edu/books/butler-way-flesh/,The Way of All Flesh,,"Butler, Samuel",1903,,Lending Library Card,"Sylvia Beach, Aline Prot's Lending Library Card in Antoinette Bernheim's File, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4a7d497b-2d1d-4e7a-8a3e-781160cbe998/manifest,https://iiif-cloud.princeton.edu/iiif/2/fe%2F14%2Fcf%2Ffe14cfe9ad0c49f3a7d0e7389cce9b9e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-07-18,1934-09-05,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",,,,,,,,,Returned,49,,,https://shakespeareandco.princeton.edu/books/morgan-fountain/,The Fountain,,"Morgan, Charles",1932,,Lending Library Card,"Sylvia Beach, Aline Prot's Lending Library Card in Antoinette Bernheim's File, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4a7d497b-2d1d-4e7a-8a3e-781160cbe998/manifest,https://iiif-cloud.princeton.edu/iiif/2/fe%2F14%2Fcf%2Ffe14cfe9ad0c49f3a7d0e7389cce9b9e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-07-19,1934-08-02,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/christie-thirteen-problems/,The Thirteen Problems,,"Christie, Agatha",1932,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/da%2F3f%2Fea%2Fda3fea8e737d4c0a840500e2ad11dd27%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1934-07-20,1934-07-20,https://shakespeareandco.princeton.edu/members/francillon-robert/,Robert Francillon,"Francillon, Robert",,,,,,,,38.00,,,,FRF,,,,,,,Lending Library Card;Address Book,"Sylvia Beach, Robert Francillon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/293515d1-49ee-47fb-98ae-5a15449080ab/manifest;,https://iiif.princeton.edu/loris/figgy_prod/c0%2F1e%2F78%2Fc01e780cf9574c26a640060f60449980%2Fintermediate_file.jp2/full/full/0/default.jpg;
+Borrow,1934-07-20,1934-07-23,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/crofts-12-30-croydon/,The 12:30 from Croydon,,"Crofts, Freeman Wills",1934,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/0a%2F3d%2Fba%2F0a3dbaf96a524faa81a5d5b923208c01%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1934-07-21,1934-07-21,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,,,3.45,FRF,https://shakespeareandco.princeton.edu/books/martin-new-statesman-nation/,The New Statesman and Nation,"Vol. 8, no. 178, Jul 21, 1934",,,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/1a%2F70%2Fc5%2F1a70c5f26391434ab607acb8b9b3e538%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1934-07-22,1934-08-22,https://shakespeareandco.princeton.edu/members/wibbelz-henry/,Henry W. Wibbelz,"Wibbelz, Henry W.",,,1 month,31,1,,1934-10-10,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Henry W. Wibbelz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/225d5fc4-c83d-46e5-b861-ad36ae4548b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/8c%2Fa9%2Fdc%2F8ca9dcbd3cd34139a75596284e09e496%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-07-23,1934-08-02,https://shakespeareandco.princeton.edu/members/wibbelz-henry/,Henry W. Wibbelz,"Wibbelz, Henry W.",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/ferber-cimarron/,Cimarron,,"Ferber, Edna",1929,,Lending Library Card,"Sylvia Beach, Henry W. Wibbelz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/225d5fc4-c83d-46e5-b861-ad36ae4548b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/8c%2Fa9%2Fdc%2F8ca9dcbd3cd34139a75596284e09e496%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-07-23,1934-07-24,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/hammett-thin-man/,The Thin Man,,"Hammett, Dashiell",1934,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/0a%2F3d%2Fba%2F0a3dbaf96a524faa81a5d5b923208c01%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-07-23,1934-09-28,https://shakespeareandco.princeton.edu/members/wibbelz-henry/,Henry W. Wibbelz,"Wibbelz, Henry W.",,,,,,,,,Returned,67,,,https://shakespeareandco.princeton.edu/books/evans-wentz-tibets-great-yogi/,"Tibet's Great YogΔ«, Milarepa",,,1928,,Lending Library Card,"Sylvia Beach, Henry W. Wibbelz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/225d5fc4-c83d-46e5-b861-ad36ae4548b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/8c%2Fa9%2Fdc%2F8ca9dcbd3cd34139a75596284e09e496%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-07-23,1934-09-28,https://shakespeareandco.princeton.edu/members/wibbelz-henry/,Henry W. Wibbelz,"Wibbelz, Henry W.",,,,,,,,,Returned,67,,,https://shakespeareandco.princeton.edu/books/du-maurier-trilby/,Trilby,,"Du Maurier, George",1894,,Lending Library Card,"Sylvia Beach, Henry W. Wibbelz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/225d5fc4-c83d-46e5-b861-ad36ae4548b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/8c%2Fa9%2Fdc%2F8ca9dcbd3cd34139a75596284e09e496%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-07-23,1934-08-06,https://shakespeareandco.princeton.edu/members/wibbelz-henry/,Henry W. Wibbelz,"Wibbelz, Henry W.",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/lawrence-england-england-stories/,"England, My England and Other Stories",,"Lawrence, D. H.",1922,,Lending Library Card,"Sylvia Beach, Henry W. Wibbelz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/225d5fc4-c83d-46e5-b861-ad36ae4548b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/8c%2Fa9%2Fdc%2F8ca9dcbd3cd34139a75596284e09e496%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-07-24,1934-10-13,https://shakespeareandco.princeton.edu/members/wibbelz-henry/,Henry W. Wibbelz,"Wibbelz, Henry W.",,,,,,,,,Returned,81,,,https://shakespeareandco.princeton.edu/books/richardson-backwater-pilgrimage-2/,Backwater (Pilgrimage 2),,"Richardson, Dorothy M.",1916,,Lending Library Card,"Sylvia Beach, Henry W. Wibbelz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/225d5fc4-c83d-46e5-b861-ad36ae4548b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/8c%2Fa9%2Fdc%2F8ca9dcbd3cd34139a75596284e09e496%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-07-24,1934-07-25,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/stern-pelican-walking/,Pelican Walking,,"Stern, G. B.",1934,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/0a%2F3d%2Fba%2F0a3dbaf96a524faa81a5d5b923208c01%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-07-24,1934-08-22,https://shakespeareandco.princeton.edu/members/wibbelz-henry/,Henry W. Wibbelz,"Wibbelz, Henry W.",,,,,,,,,Returned,29,,,https://shakespeareandco.princeton.edu/books/richardson-pointed-roofs/,Pointed Roofs (Pilgrimage 1),,"Richardson, Dorothy M.",1915,,Lending Library Card,"Sylvia Beach, Henry W. Wibbelz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/225d5fc4-c83d-46e5-b861-ad36ae4548b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/8c%2Fa9%2Fdc%2F8ca9dcbd3cd34139a75596284e09e496%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-07-24,1934-09-28,https://shakespeareandco.princeton.edu/members/wibbelz-henry/,Henry W. Wibbelz,"Wibbelz, Henry W.",,,,,,,,,Returned,66,,,https://shakespeareandco.princeton.edu/books/middleton-thomas-middleton/,The Best Plays of Thomas Middleton,"Vol. 1, 1887 A Trick to Catch the Old One; The Changeling; A Chaste Maid in Cheapside; Women Beware Women; The Spanish Gypsy","Middleton, Thomas",,From the [Mermaid Series](https://seriesofseries.owu.edu/mermaid-series/).,Lending Library Card,"Sylvia Beach, Henry W. Wibbelz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/225d5fc4-c83d-46e5-b861-ad36ae4548b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/8c%2Fa9%2Fdc%2F8ca9dcbd3cd34139a75596284e09e496%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-07-25,1934-07-28,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/mann-tales-jacob/,The Tales of Jacob,,"Mann, Thomas",1933,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/0a%2F3d%2Fba%2F0a3dbaf96a524faa81a5d5b923208c01%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-07-25,1934-08-06,https://shakespeareandco.princeton.edu/members/shelley-dorothy/,Dorothy Shelley,"Shelley, Dorothy",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/kennedy-constant-nymph/,The Constant Nymph,,"Kennedy, Margaret",1924,,Lending Library Card,"Sylvia Beach, Dorothy Shelley Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dcc58669-efb6-4ace-ab31-a1cb913f3692/manifest,https://iiif.princeton.edu/loris/figgy_prod/74%2F2c%2Fd6%2F742cd61778084ba19317c41ed8865032%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-07-25,1934-07-30,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/boyle-year-last/,Year before Last,,"Boyle, Kay",1932,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/da%2F3f%2Fea%2Fda3fea8e737d4c0a840500e2ad11dd27%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-07-25,1934-08-06,https://shakespeareandco.princeton.edu/members/shelley-dorothy/,Dorothy Shelley,"Shelley, Dorothy",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/paul-gaugin/,Paul Gauguin,,,,"Unidentified. John Gould Fletcher's *Paul Gauguin: His Life and Art* (1921), Robert Rey's *Gauguin* (1924), or Beril Becker's *Paul Gauguin: The Calm Madman* (1931), etc.",Lending Library Card,"Sylvia Beach, Dorothy Shelley Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dcc58669-efb6-4ace-ab31-a1cb913f3692/manifest,https://iiif.princeton.edu/loris/figgy_prod/74%2F2c%2Fd6%2F742cd61778084ba19317c41ed8865032%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-07-27,1934-09-07,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,42,,,https://shakespeareandco.princeton.edu/books/hammett-thin-man/,The Thin Man,,"Hammett, Dashiell",1934,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/e6%2F43%2F11%2Fe643111d618f45aeb8829844d126a6c8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-07-27,1934-08-03,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/thompson-breakfast-bed/,Breakfast in Bed,,"Thompson, Sylvia",1934,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e7%2F67%2Fe4%2Fe767e4aba183458d8491d96a49bd9896%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-07-27,1934-08-06,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/lawrence-reflections-death-porcupine/,Reflections on the Death of a Porcupine and Other Essays,,"Lawrence, D. H.",1925,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5d%2Fd5%2Fd7%2F5dd5d73d2e8b41eaa75eafd050537f72%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-07-27,1934-08-04,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/mckay-banjo-story-without/,Banjo: A Story without a Plot,,"McKay, Claude",1929,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5d%2Fd5%2Fd7%2F5dd5d73d2e8b41eaa75eafd050537f72%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-07-28,1934-08-14,https://shakespeareandco.princeton.edu/members/shelley-dorothy/,Dorothy Shelley,"Shelley, Dorothy",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/hemingway-sun-also-rises/,The Sun Also Rises,,"Hemingway, Ernest",1926,,Lending Library Card,"Sylvia Beach, Dorothy Shelley Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dcc58669-efb6-4ace-ab31-a1cb913f3692/manifest,https://iiif.princeton.edu/loris/figgy_prod/74%2F2c%2Fd6%2F742cd61778084ba19317c41ed8865032%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-07-28,1934-08-14,https://shakespeareandco.princeton.edu/members/shelley-dorothy/,Dorothy Shelley,"Shelley, Dorothy",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/bronte-jane-eyre/,Jane Eyre,,"BrontΓ«, Charlotte",1847,,Lending Library Card,"Sylvia Beach, Dorothy Shelley Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dcc58669-efb6-4ace-ab31-a1cb913f3692/manifest,https://iiif.princeton.edu/loris/figgy_prod/74%2F2c%2Fd6%2F742cd61778084ba19317c41ed8865032%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1934-07-28,1934-07-28,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,,,3.45,FRF,https://shakespeareandco.princeton.edu/books/martin-new-statesman-nation/,The New Statesman and Nation,"Vol. 8, no. 179, Jul 28, 1934",,,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/1a%2F70%2Fc5%2F1a70c5f26391434ab607acb8b9b3e538%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-07-30,1934-08-08,https://shakespeareandco.princeton.edu/members/guillemin-annie/,Annie Guillemin,"Guillemin, Annie",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/richardson-interim-pilgrimage-5/,Interim (Pilgrimage 5),,"Richardson, Dorothy M.",1920,,Lending Library Card,"Sylvia Beach, Annie Guillemin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2d6019d9-34ed-4ca4-97a9-5fd05d8640a7/manifest,https://iiif.princeton.edu/loris/figgy_prod/8c%2Fbb%2Fe1%2F8cbbe1dd84b1489fa79f3b0b7d7b6e3f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-07-30,1934-08-05,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/la-farge-sparks-fly-upward/,Sparks Fly Upward,,"La Farge, Oliver",1932,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/da%2F3f%2Fea%2Fda3fea8e737d4c0a840500e2ad11dd27%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-07-31,1934-08-06,https://shakespeareandco.princeton.edu/members/bonnerot-louis/,Louis Bonnerot,"Bonnerot, Louis",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/lewis-paleface-philosophy-melting/,"Paleface: The Philosophy of the ""Melting-Pot""",,"Lewis, Wyndham",1929,,Lending Library Card,"Sylvia Beach, Louis Bonnerot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c14cc736-079c-4403-9036-a2de4743414a/manifest,https://iiif.princeton.edu/loris/figgy_prod/9f%2F6c%2F07%2F9f6c0714aef2411d8ae482314a2c165a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-07-31,1934-08-01,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/mackenzie-darkening-green/,The Darkening Green,,"Mackenzie, Compton",1934,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/0a%2F3d%2Fba%2F0a3dbaf96a524faa81a5d5b923208c01%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1934-07-31,,https://shakespeareandco.princeton.edu/members/borglum/,S. P. Borglum,"Borglum, S. P.",,30.00,,,,Day By Day,1934-07-31,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1934-08-01,1934-08-14,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/gosse-silhouettes/,Silhouettes,,"Gosse, Edmund",1925,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/e6%2F6f%2F74%2Fe66f74c339014daa83229167df178fa1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-08-01,1934-08-03,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/bridge-ginger-griffin/,The Ginger Griffin,,"Bridge, Ann",1934,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/0a%2F3d%2Fba%2F0a3dbaf96a524faa81a5d5b923208c01%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-08-01,1934-08-03,https://shakespeareandco.princeton.edu/members/claudius/,Agnes Claudius,"Claudius, Agnes",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/woolf-flush-biography/,Flush: A Biography,,"Woolf, Virginia",1933,,Lending Library Card,"Sylvia Beach, Agnes Claudius Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18a9262d-8ea3-4d0c-9b36-8a1c638950fa/manifest,https://iiif.princeton.edu/loris/figgy_prod/3f%2F38%2F05%2F3f3805f16e1646c8a58bbad3bbc86c95%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-08-01,1934-08-14,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/douglas-south-wind/,South Wind,,"Douglas, Norman",1917,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/e6%2F6f%2F74%2Fe66f74c339014daa83229167df178fa1%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-08-01,1934-09-19,https://shakespeareandco.princeton.edu/members/dherbais-de-thun/,Marie-Valerie d'Herbais de Thun,"d'Herbais de Thun, Marie-Valerie",,,,,,,,,Returned,49,,,https://shakespeareandco.princeton.edu/books/james-american/,The American,,"James, Henry",1877,,Lending Library Card,"Sylvia Beach, Marie-Valerie Herbais de Thun Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/94cf6667-e6c3-451a-9da4-35a58d089850/manifest,https://iiif.princeton.edu/loris/figgy_prod/38%2Ff0%2F98%2F38f09874f57345f4bf007e23065cb827%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1934-08-01,1934-09-01,https://shakespeareandco.princeton.edu/members/claudius/,Agnes Claudius,"Claudius, Agnes",12.00,,1 month,31,1,,1934-08-01,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Agnes Claudius Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/18a9262d-8ea3-4d0c-9b36-8a1c638950fa/manifest,;https://iiif.princeton.edu/loris/figgy_prod/3f%2F38%2F05%2F3f3805f16e1646c8a58bbad3bbc86c95%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1934-08-01,,https://shakespeareandco.princeton.edu/members/jones-7/,Jones,Jones,,30.00,,,,Day By Day,1934-08-01,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1934-08-02,1934-08-05,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/bentley-inheritance/,Inheritance,,"Bentley, Phyllis Eleanor",1932,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/da%2F3f%2Fea%2Fda3fea8e737d4c0a840500e2ad11dd27%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-08-03,1934-09-28,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,56,,,https://shakespeareandco.princeton.edu/books/stern-little-red-horses/,Little Red Horses,,"Stern, G. B.",1932,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e7%2F67%2Fe4%2Fe767e4aba183458d8491d96a49bd9896%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1934-08-03,1934-08-03,https://shakespeareandco.princeton.edu/members/borglum/,S. P. Borglum,"Borglum, S. P.",,,,,,,,30.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1934-08-03,1934-08-09,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/stern-little-red-horses/,Little Red Horses,,"Stern, G. B.",1932,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/a5%2F6a%2F1c%2Fa56a1cb5380647fbab725eb33ac49f9a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-08-03,1934-08-04,https://shakespeareandco.princeton.edu/members/claudius/,Agnes Claudius,"Claudius, Agnes",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/cain-postman-always-rings/,The Postman Always Rings Twice,,"Cain, James M.",1934,,Lending Library Card,"Sylvia Beach, Agnes Claudius Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18a9262d-8ea3-4d0c-9b36-8a1c638950fa/manifest,https://iiif.princeton.edu/loris/figgy_prod/3f%2F38%2F05%2F3f3805f16e1646c8a58bbad3bbc86c95%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-08-03,1934-08-04,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/bailey-shadow-wall/,Shadow on the Wall,,"Bailey, H. C.",1934,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/0a%2F3d%2Fba%2F0a3dbaf96a524faa81a5d5b923208c01%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-08-03,1934-09-28,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,56,,,https://shakespeareandco.princeton.edu/books/thompson-chariot-wheels/,Chariot Wheels,,"Thompson, Sylvia",1929,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e7%2F67%2Fe4%2Fe767e4aba183458d8491d96a49bd9896%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-08-03,1934-09-28,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,56,,,https://shakespeareandco.princeton.edu/books/bentley-inheritance/,Inheritance,,"Bentley, Phyllis Eleanor",1932,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e7%2F67%2Fe4%2Fe767e4aba183458d8491d96a49bd9896%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-08-03,1934-09-28,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,56,,,https://shakespeareandco.princeton.edu/books/smedley-daughter-earth/,Daughter of Earth,,"Smedley, Agnes",1929,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e7%2F67%2Fe4%2Fe767e4aba183458d8491d96a49bd9896%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-08-03,1934-09-28,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,56,,,https://shakespeareandco.princeton.edu/books/vaughan-soldier-gentlewoman/,The Soldier and the Gentlewoman,,"Vaughan, Hilda",1932,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e7%2F67%2Fe4%2Fe767e4aba183458d8491d96a49bd9896%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1934-08-04,1934-08-04,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,,,3.45,FRF,https://shakespeareandco.princeton.edu/books/martin-new-statesman-nation/,The New Statesman and Nation,"Vol. 8, no. 180, Aug 4, 1934",,,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/1a%2F70%2Fc5%2F1a70c5f26391434ab607acb8b9b3e538%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-08-04,1934-08-14,https://shakespeareandco.princeton.edu/members/claudius/,Agnes Claudius,"Claudius, Agnes",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/mitchison-vienna-diary/,Vienna Diary,,"Mitchison, Naomi",1934,,Lending Library Card,"Sylvia Beach, Agnes Claudius Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18a9262d-8ea3-4d0c-9b36-8a1c638950fa/manifest,https://iiif.princeton.edu/loris/figgy_prod/3f%2F38%2F05%2F3f3805f16e1646c8a58bbad3bbc86c95%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-08-04,1934-08-06,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/thompson-breakfast-bed/,Breakfast in Bed,,"Thompson, Sylvia",1934,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/0a%2F3d%2Fba%2F0a3dbaf96a524faa81a5d5b923208c01%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-08-05,1934-08-09,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/boyle-plagued-nightingale/,Plagued by the Nightingale,,"Boyle, Kay",1931,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/a5%2F6a%2F1c%2Fa56a1cb5380647fbab725eb33ac49f9a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-08-06,1934-08-23,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/oneill-mourning-becomes-electra/,Mourning Becomes Electra,,"O'Neill, Eugene",1931,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5d%2Fd5%2Fd7%2F5dd5d73d2e8b41eaa75eafd050537f72%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-08-06,1934-08-23,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/austen-sense-sensibility/,Sense and Sensibility,,"Austen, Jane",1811,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5d%2Fd5%2Fd7%2F5dd5d73d2e8b41eaa75eafd050537f72%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1934-08-06,1934-09-06,https://shakespeareandco.princeton.edu/members/lamy-marthe/,Marthe Lamy,"Lamy, Marthe",12.00,30.00,1 month,31,1,,1934-08-06,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Marthe Lamy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/c715a1d2-668f-44c0-b48d-5f245d0752ba/manifest,;https://iiif-cloud.princeton.edu/iiif/2/3b%2F2f%2Fe4%2F3b2fe425ed074e15a19472a16e67e511%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-08-06,1934-08-24,https://shakespeareandco.princeton.edu/members/lamy-marthe/,Marthe Lamy,"Lamy, Marthe",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/faulkner-light-august/,Light in August,,"Faulkner, William",1932,,Lending Library Card,"Sylvia Beach, Marthe Lamy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c715a1d2-668f-44c0-b48d-5f245d0752ba/manifest,https://iiif-cloud.princeton.edu/iiif/2/3b%2F2f%2Fe4%2F3b2fe425ed074e15a19472a16e67e511%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-08-06,1934-08-08,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/carter-slow-death-geneva/,Slow Death at Geneva,,Diplomat,1934,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/0a%2F3d%2Fba%2F0a3dbaf96a524faa81a5d5b923208c01%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-08-08,1934-08-09,https://shakespeareandco.princeton.edu/members/yarrow-catherine/,Catherine Yarrow,"Yarrow, Catherine",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/bosanquet-days-attica/,Days in Attica,,"Bosanquet, Ellen Sophia",1914,,Lending Library Card,"Sylvia Beach, Catherine Yarrow Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d0d522e7-9d4e-41ca-8b3b-8fe6ba58e334/manifest,https://iiif.princeton.edu/loris/figgy_prod/38%2Fe4%2F9e%2F38e49ec85ad54b1bb50df436efd43955%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-08-08,1934-08-10,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/delafield-thank-heaven-fasting/,Thank Heaven Fasting,,"Delafield, E. M.",1932,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/0a%2F3d%2Fba%2F0a3dbaf96a524faa81a5d5b923208c01%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-08-08,1934-08-09,https://shakespeareandco.princeton.edu/members/yarrow-catherine/,Catherine Yarrow,"Yarrow, Catherine",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/modern-greece/,Modern Greece,,,,"Unidentified. Felicia Hemans's *Modern Greece* (1817), George Towle's *Modern Greece* (1877), or John Mavrogordato's *Modern Greece* (1931), etc.",Lending Library Card,"Sylvia Beach, Catherine Yarrow Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d0d522e7-9d4e-41ca-8b3b-8fe6ba58e334/manifest,https://iiif.princeton.edu/loris/figgy_prod/38%2Fe4%2F9e%2F38e49ec85ad54b1bb50df436efd43955%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-08-08,1934-08-09,https://shakespeareandco.princeton.edu/members/yarrow-catherine/,Catherine Yarrow,"Yarrow, Catherine",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/dickinson-greek-view-life/,The Greek View of Life,,"Dickinson, G. Lowes",1920,,Lending Library Card,"Sylvia Beach, Catherine Yarrow Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d0d522e7-9d4e-41ca-8b3b-8fe6ba58e334/manifest,https://iiif.princeton.edu/loris/figgy_prod/38%2Fe4%2F9e%2F38e49ec85ad54b1bb50df436efd43955%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-08-09,1934-08-12,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/oppenheim-ostrekoff-jewels/,The Ostrekoff Jewels,,"Oppenheim, E. Phillips",1932,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/a5%2F6a%2F1c%2Fa56a1cb5380647fbab725eb33ac49f9a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-08-09,1934-08-24,https://shakespeareandco.princeton.edu/members/guillemin-annie/,Annie Guillemin,"Guillemin, Annie",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/richardson-deadlock-pilgrimage-6/,Deadlock (Pilgrimage 6),,"Richardson, Dorothy M.",1921,,Lending Library Card,"Sylvia Beach, Annie Guillemin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2d6019d9-34ed-4ca4-97a9-5fd05d8640a7/manifest,https://iiif.princeton.edu/loris/figgy_prod/5a%2Ffc%2F38%2F5afc38c7321c4497adcc378d8774e24d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-08-09,1934-08-20,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/irwin-royal-flush-story/,Royal Flush: The Story of Minette,,"Irwin, Margaret",1932,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/a5%2F6a%2F1c%2Fa56a1cb5380647fbab725eb33ac49f9a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1934-08-09,1934-09-09,https://shakespeareandco.princeton.edu/members/carroll-3/,Miss Carroll,"Carroll, Miss",12.00,,1 month,31,,,1934-08-27,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1934-08-09,1934-10-02,https://shakespeareandco.princeton.edu/members/yarrow-catherine/,Catherine Yarrow,"Yarrow, Catherine",,,,,,,,,Returned,54,,,https://shakespeareandco.princeton.edu/books/james-portrait-lady/,The Portrait of a Lady,,"James, Henry",1881,,Lending Library Card,"Sylvia Beach, Catherine Yarrow Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d0d522e7-9d4e-41ca-8b3b-8fe6ba58e334/manifest,https://iiif.princeton.edu/loris/figgy_prod/38%2Fe4%2F9e%2F38e49ec85ad54b1bb50df436efd43955%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-08-10,1934-08-23,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/faulkner-lay-dying/,As I Lay Dying,,"Faulkner, William",1930,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5d%2Fd5%2Fd7%2F5dd5d73d2e8b41eaa75eafd050537f72%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1934-08-10,1934-08-10,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,,,3.45,FRF,https://shakespeareandco.princeton.edu/books/martin-new-statesman-nation/,The New Statesman and Nation,"Vol. 8, no. 181, Aug 11, 1934",,,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/1a%2F70%2Fc5%2F1a70c5f26391434ab607acb8b9b3e538%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-08-10,1934-08-14,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/asch-three-cities-trilogy/,Three Cities: A Trilogy,,"Asch, Sholem",1933,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/0a%2F3d%2Fba%2F0a3dbaf96a524faa81a5d5b923208c01%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-08-12,1934-08-18,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/jameson-richer-dust/,A Richer Dust,,"Jameson, Storm",1932,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/a5%2F6a%2F1c%2Fa56a1cb5380647fbab725eb33ac49f9a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1934-08-13,,https://shakespeareandco.princeton.edu/members/collinet/,M. Collinet,"Collinet, M.",12.00,30.00,,,,,1934-08-13,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1934-08-14,1934-08-27,https://shakespeareandco.princeton.edu/members/claudius/,Agnes Claudius,"Claudius, Agnes",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/lloyd-egypt-since-cromer/,Egypt Since Cromer,,"Lloyd, George Ambrose, Baron",1933,,Lending Library Card,"Sylvia Beach, Agnes Claudius Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18a9262d-8ea3-4d0c-9b36-8a1c638950fa/manifest,https://iiif.princeton.edu/loris/figgy_prod/3f%2F38%2F05%2F3f3805f16e1646c8a58bbad3bbc86c95%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-08-14,1934-08-17,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/frazier-adonis-attis-osiris/,Adonis Attis Osiris: Studies in the History of Oriental Religion,,"Frazer, James George",1907,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/0a%2F3d%2Fba%2F0a3dbaf96a524faa81a5d5b923208c01%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-08-14,1934-08-21,https://shakespeareandco.princeton.edu/members/shelley-dorothy/,Dorothy Shelley,"Shelley, Dorothy",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/heyward-mambas-daughters/,Mamba's Daughters,,"Heyward, DuBose",1928,,Lending Library Card,"Sylvia Beach, Dorothy Shelley Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dcc58669-efb6-4ace-ab31-a1cb913f3692/manifest,https://iiif.princeton.edu/loris/figgy_prod/74%2F2c%2Fd6%2F742cd61778084ba19317c41ed8865032%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-08-14,1934-08-29,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/brewster-h-lawrence-reminiscences/,D. H. Lawrence: Reminiscences and Correspondence,,"Brewster, Earl Henry;Brewster, Achsah",1934,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/94%2F03%2F1e%2F94031e37cbfb46c1993af351d4f6ea4c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-08-14,1934-08-29,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/woolf-common-reader-second/,The Common Reader: Second Series,,"Woolf, Virginia",1932,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/94%2F03%2F1e%2F94031e37cbfb46c1993af351d4f6ea4c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-08-14,1934-08-21,https://shakespeareandco.princeton.edu/members/shelley-dorothy/,Dorothy Shelley,"Shelley, Dorothy",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/hudson-green-mansions-romance/,Green Mansions: A Romance of the Tropical Forest,,"Hudson, W. H.",1904,,Lending Library Card,"Sylvia Beach, Dorothy Shelley Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dcc58669-efb6-4ace-ab31-a1cb913f3692/manifest,https://iiif.princeton.edu/loris/figgy_prod/74%2F2c%2Fd6%2F742cd61778084ba19317c41ed8865032%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-08-16,1934-09-26,https://shakespeareandco.princeton.edu/members/tony-mayer/,Thérèse Tony-Mayer,"Tony-Mayer, Thérèse",,,,,,,,,Returned,41,,,https://shakespeareandco.princeton.edu/books/liddell-hart-e-lawrence-arabia/,T. E. Lawrence in Arabia and After,,"Liddell Hart, Basil Henry",1934,,Lending Library Card,"Sylvia Beach, Thérèse Tony-Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/27246b4c-7d99-4dca-b874-ab90bd542cfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/a1%2Fec%2Ff5%2Fa1ecf56bff2e4aefa5c17aaba1dcce85%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-08-17,1934-08-20,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/waugh-balliols/,The Balliols,,"Waugh, Alec",1934,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/0a%2F3d%2Fba%2F0a3dbaf96a524faa81a5d5b923208c01%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1934-08-18,1934-08-18,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,,,10.00,FRF,https://shakespeareandco.princeton.edu/books/macbride-huxley/,Huxley,,"MacBride, Ernest",1934,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/1a%2F70%2Fc5%2F1a70c5f26391434ab607acb8b9b3e538%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1934-08-18,1934-08-18,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,,,4.60,FRF,https://shakespeareandco.princeton.edu/books/martin-new-statesman-nation/,The New Statesman and Nation,,,,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/1a%2F70%2Fc5%2F1a70c5f26391434ab607acb8b9b3e538%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1934-08-18,1934-08-18,https://shakespeareandco.princeton.edu/members/white-3/,White,White,,,,,,,,30.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1934-08-20,1934-08-21,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/punshon-cottage-murder/,The Cottage Murder,,"Punshon, E. R.",1931,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/0a%2F3d%2Fba%2F0a3dbaf96a524faa81a5d5b923208c01%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-08-21,1934-08-23,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/kingsley-westward-ho-voyages/,"Westward Ho! or, The Voyages and Adventures of Sir Amyas Leigh, Knight, of Burrough, in the County of Devon, in the Reign of Her Most Glorious Majesty Queen Elizabeth",,"Kingsley, Charles",1855,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/0a%2F3d%2Fba%2F0a3dbaf96a524faa81a5d5b923208c01%2Fintermediate_file/full/full/0/default.jpg
+Crossed out,1934-08-21,,https://shakespeareandco.princeton.edu/members/shelley-dorothy/,Dorothy Shelley,"Shelley, Dorothy",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/dickens-bleak-house/,Bleak House,,"Dickens, Charles",1853,,Lending Library Card,"Sylvia Beach, Dorothy Shelley Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dcc58669-efb6-4ace-ab31-a1cb913f3692/manifest,https://iiif.princeton.edu/loris/figgy_prod/74%2F2c%2Fd6%2F742cd61778084ba19317c41ed8865032%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-08-21,1934-09-04,https://shakespeareandco.princeton.edu/members/shelley-dorothy/,Dorothy Shelley,"Shelley, Dorothy",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/young-medici/,The Medici,,"Young, George Frederick",1909,,Lending Library Card,"Sylvia Beach, Dorothy Shelley Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dcc58669-efb6-4ace-ab31-a1cb913f3692/manifest,https://iiif.princeton.edu/loris/figgy_prod/74%2F2c%2Fd6%2F742cd61778084ba19317c41ed8865032%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-08-21,1934-09-04,https://shakespeareandco.princeton.edu/members/shelley-dorothy/,Dorothy Shelley,"Shelley, Dorothy",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/stephens-crock-gold/,The Crock of Gold,,"Stephens, James",1912,,Lending Library Card,"Sylvia Beach, Dorothy Shelley Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dcc58669-efb6-4ace-ab31-a1cb913f3692/manifest,https://iiif.princeton.edu/loris/figgy_prod/74%2F2c%2Fd6%2F742cd61778084ba19317c41ed8865032%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1934-08-22,1934-08-22,https://shakespeareandco.princeton.edu/members/bullowa-arthur/,Arthur Bullowa,"Bullowa, Arthur",,,,,,,,30.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1934-08-22,1934-08-24,https://shakespeareandco.princeton.edu/members/delimal/,Mme Delimal,"Delimal, Mme",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/national-geographic/,National Geographic,"Vol. 65, no. 5, May 1934",,,,Lending Library Card,"Sylvia Beach, Madame Delimal Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d7650699-e9d7-4e63-85ff-bce7e9c8dfcd/manifest,https://iiif.princeton.edu/loris/figgy_prod/b1%2Fb8%2F67%2Fb1b8677417e54581bff1177dc38a8c7c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-08-22,1934-11-05,https://shakespeareandco.princeton.edu/members/delimal/,Mme Delimal,"Delimal, Mme",,,,,,,,,Returned,75,,,https://shakespeareandco.princeton.edu/books/lawrence-letters-h-lawrence/,The Letters of D. H. Lawrence,,"Lawrence, D. H.",1932,,Lending Library Card,"Sylvia Beach, Madame Delimal Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d7650699-e9d7-4e63-85ff-bce7e9c8dfcd/manifest,https://iiif.princeton.edu/loris/figgy_prod/b1%2Fb8%2F67%2Fb1b8677417e54581bff1177dc38a8c7c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1934-08-22,1934-09-22,https://shakespeareandco.princeton.edu/members/wibbelz-henry/,Henry W. Wibbelz,"Wibbelz, Henry W.",,,1 month,31,1,,1934-10-10,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Henry W. Wibbelz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/225d5fc4-c83d-46e5-b861-ad36ae4548b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/8c%2Fa9%2Fdc%2F8ca9dcbd3cd34139a75596284e09e496%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1934-08-23,,https://shakespeareandco.princeton.edu/members/montricher-de-3/,de Montricher,de Montricher,,25.00,,,,Day By Day,1934-08-23,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1934-08-23,1934-08-24,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/allingham-police-funeral/,Police at the Funeral,,"Allingham, Margery",1931,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/0a%2F3d%2Fba%2F0a3dbaf96a524faa81a5d5b923208c01%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1934-08-23,,https://shakespeareandco.princeton.edu/members/mack/,Mack,Mack,25.00,50.00,,,1,,1934-08-23,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1934-08-24,,https://shakespeareandco.princeton.edu/members/davidson-louise/,Louise Davidson,"Davidson, Louise",25.00,,,,,,1934-08-24,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1934-08-24,1934-09-06,https://shakespeareandco.princeton.edu/members/lamy-marthe/,Marthe Lamy,"Lamy, Marthe",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/faulkner-lay-dying/,As I Lay Dying,,"Faulkner, William",1930,,Lending Library Card,"Sylvia Beach, Marthe Lamy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c715a1d2-668f-44c0-b48d-5f245d0752ba/manifest,https://iiif-cloud.princeton.edu/iiif/2/3b%2F2f%2Fe4%2F3b2fe425ed074e15a19472a16e67e511%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-08-24,1934-08-27,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/galsworthy-river/,Over the River (End of Chapter),,"Galsworthy, John",1933,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/0a%2F3d%2Fba%2F0a3dbaf96a524faa81a5d5b923208c01%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-08-24,1934-08-31,https://shakespeareandco.princeton.edu/members/guillemin-annie/,Annie Guillemin,"Guillemin, Annie",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/richardson-revolving-lights-pilgrimage/,Revolving Lights (Pilgrimage 7),,"Richardson, Dorothy M.",1923,,Lending Library Card,"Sylvia Beach, Annie Guillemin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2d6019d9-34ed-4ca4-97a9-5fd05d8640a7/manifest,https://iiif.princeton.edu/loris/figgy_prod/5a%2Ffc%2F38%2F5afc38c7321c4497adcc378d8774e24d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1934-08-25,1934-08-25,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,,,3.45,FRF,https://shakespeareandco.princeton.edu/books/martin-new-statesman-nation/,The New Statesman and Nation,"Vol. 8, no. 183, Aug 25, 1934",,,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/1a%2F70%2Fc5%2F1a70c5f26391434ab607acb8b9b3e538%2Fintermediate_file/full/full/0/default.jpg
+Supplement,1934-08-27,,https://shakespeareandco.princeton.edu/members/mack/,Mack,Mack,15.00,,,,2,,1934-08-27,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1934-08-27,1934-08-29,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/mackenzie-water-brain/,Water on the Brain,,"Mackenzie, Compton",1933,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/0a%2F3d%2Fba%2F0a3dbaf96a524faa81a5d5b923208c01%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-08-27,1934-08-28,https://shakespeareandco.princeton.edu/members/claudius/,Agnes Claudius,"Claudius, Agnes",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/hammett-thin-man/,The Thin Man,,"Hammett, Dashiell",1934,,Lending Library Card,"Sylvia Beach, Agnes Claudius Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18a9262d-8ea3-4d0c-9b36-8a1c638950fa/manifest,https://iiif.princeton.edu/loris/figgy_prod/3f%2F38%2F05%2F3f3805f16e1646c8a58bbad3bbc86c95%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1934-08-28,1934-09-28,https://shakespeareandco.princeton.edu/members/montricher-de-3/,de Montricher,de Montricher,12.00,18.00,1 month,31,1,,1934-08-28,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1934-08-28,1934-08-29,https://shakespeareandco.princeton.edu/members/claudius/,Agnes Claudius,"Claudius, Agnes",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/ross-new-yorker/,The New Yorker,,,,,Lending Library Card,"Sylvia Beach, Agnes Claudius Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18a9262d-8ea3-4d0c-9b36-8a1c638950fa/manifest,https://iiif.princeton.edu/loris/figgy_prod/3f%2F38%2F05%2F3f3805f16e1646c8a58bbad3bbc86c95%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-08-28,1934-08-29,https://shakespeareandco.princeton.edu/members/claudius/,Agnes Claudius,"Claudius, Agnes",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/hemingway-winner-take-nothing/,Winner Take Nothing,,"Hemingway, Ernest",1933,,Lending Library Card,"Sylvia Beach, Agnes Claudius Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18a9262d-8ea3-4d0c-9b36-8a1c638950fa/manifest,https://iiif.princeton.edu/loris/figgy_prod/3f%2F38%2F05%2F3f3805f16e1646c8a58bbad3bbc86c95%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-08-29,1934-09-06,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/stern-little-red-horses/,Little Red Horses,,"Stern, G. B.",1932,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/a5%2F6a%2F1c%2Fa56a1cb5380647fbab725eb33ac49f9a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-08-29,1934-08-30,https://shakespeareandco.princeton.edu/members/claudius/,Agnes Claudius,"Claudius, Agnes",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/le-gallienne-33/,At 33,,"Le Gallienne, Eva",1934,,Lending Library Card,"Sylvia Beach, Agnes Claudius Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18a9262d-8ea3-4d0c-9b36-8a1c638950fa/manifest,https://iiif.princeton.edu/loris/figgy_prod/3f%2F38%2F05%2F3f3805f16e1646c8a58bbad3bbc86c95%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-08-29,1934-09-06,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/buchan-gap-curtain/,The Gap in the Curtain,,"Buchan, John",1932,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/a5%2F6a%2F1c%2Fa56a1cb5380647fbab725eb33ac49f9a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-08-29,1934-09-13,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/richardson-pointed-roofs/,Pointed Roofs (Pilgrimage 1),,"Richardson, Dorothy M.",1915,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/94%2F03%2F1e%2F94031e37cbfb46c1993af351d4f6ea4c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-08-29,,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/harris-bernard-shaw/,Bernard Shaw: An Unauthorized Biography Based on Firsthand Information,,"Harris, Frank",1931,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/94%2F03%2F1e%2F94031e37cbfb46c1993af351d4f6ea4c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-08-29,1934-08-31,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/lowndes-vasty-deep/,From the Vasty Deep,,"Lowndes, Marie Belloc",1921,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/0a%2F3d%2Fba%2F0a3dbaf96a524faa81a5d5b923208c01%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1934-08-29,1934-08-29,https://shakespeareandco.princeton.edu/members/walker-4/,Walker,Walker,,,,,,,,30.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Subscription,1934-08-30,1934-09-30,https://shakespeareandco.princeton.edu/members/denoel-pierre/,Pierre Denoel,"Denoel, Pierre",12.00,30.00,1 month,31,1,,1934-08-30,,,,,FRF,,,,,,,Logbook;Lending Library Card;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Pierre Denoel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/5638f32b-e6bb-41e9-b0c4-bd60d68fa1fd/manifest;,;https://iiif.princeton.edu/loris/figgy_prod/a3%2F96%2Fa9%2Fa396a935e8a544bd96145b13dbf85e3e%2Fintermediate_file.jp2/full/full/0/default.jpg;
+Borrow,1934-08-30,1934-09-10,https://shakespeareandco.princeton.edu/members/claudius/,Agnes Claudius,"Claudius, Agnes",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/chekhov-cherry-orchard/,The Cherry Orchard,,"Chekhov, Anton",1904,,Lending Library Card,"Sylvia Beach, Agnes Claudius Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18a9262d-8ea3-4d0c-9b36-8a1c638950fa/manifest,https://iiif.princeton.edu/loris/figgy_prod/3f%2F38%2F05%2F3f3805f16e1646c8a58bbad3bbc86c95%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-08-30,1934-09-05,https://shakespeareandco.princeton.edu/members/claudius/,Agnes Claudius,"Claudius, Agnes",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/chekhov-letters-anton-pavlovitch/,The Letters of Anton Pavlovitch Tchehov to Olga Leonardovna Knipper,,"Chekhov, Anton",1925,,Lending Library Card,"Sylvia Beach, Agnes Claudius Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18a9262d-8ea3-4d0c-9b36-8a1c638950fa/manifest,https://iiif.princeton.edu/loris/figgy_prod/3f%2F38%2F05%2F3f3805f16e1646c8a58bbad3bbc86c95%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-08-30,1934-08-31,https://shakespeareandco.princeton.edu/members/claudius/,Agnes Claudius,"Claudius, Agnes",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/ibsen-wild-duck/,The Wild Duck,,"Ibsen, Henrik",1884,,Lending Library Card,"Sylvia Beach, Agnes Claudius Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18a9262d-8ea3-4d0c-9b36-8a1c638950fa/manifest,https://iiif.princeton.edu/loris/figgy_prod/3f%2F38%2F05%2F3f3805f16e1646c8a58bbad3bbc86c95%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-08-30,1934-10-30,https://shakespeareandco.princeton.edu/members/denoel-pierre/,Pierre Denoel,"Denoel, Pierre",,,,,,,,,Returned,61,,,https://shakespeareandco.princeton.edu/books/faulkner-doctor-martino-stories/,Doctor Martino and Other Stories,,"Faulkner, William",1934,,Lending Library Card,"Sylvia Beach, Pierre Denoel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5638f32b-e6bb-41e9-b0c4-bd60d68fa1fd/manifest,https://iiif.princeton.edu/loris/figgy_prod/a3%2F96%2Fa9%2Fa396a935e8a544bd96145b13dbf85e3e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-08-31,1934-09-05,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/miles-blind-men-crossing/,Blind Men Crossing a Bridge,,"Miles, Susan",1934,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/0a%2F3d%2Fba%2F0a3dbaf96a524faa81a5d5b923208c01%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-08-31,1934-09-05,https://shakespeareandco.princeton.edu/members/guillemin-annie/,Annie Guillemin,"Guillemin, Annie",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/richardson-trap-pilgrimage-8/,The Trap (Pilgrimage 8),,"Richardson, Dorothy M.",1925,,Lending Library Card,"Sylvia Beach, Annie Guillemin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2d6019d9-34ed-4ca4-97a9-5fd05d8640a7/manifest,https://iiif.princeton.edu/loris/figgy_prod/5a%2Ffc%2F38%2F5afc38c7321c4497adcc378d8774e24d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-09-04,1934-09-17,https://shakespeareandco.princeton.edu/members/shelley-dorothy/,Dorothy Shelley,"Shelley, Dorothy",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/doyle-round-fire-stories/,Round the Fire Stories,,"Doyle, Arthur Conan",1908,,Lending Library Card,"Sylvia Beach, Dorothy Shelley Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dcc58669-efb6-4ace-ab31-a1cb913f3692/manifest,https://iiif.princeton.edu/loris/figgy_prod/74%2F2c%2Fd6%2F742cd61778084ba19317c41ed8865032%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-09-04,1934-09-17,https://shakespeareandco.princeton.edu/members/shelley-dorothy/,Dorothy Shelley,"Shelley, Dorothy",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/lawrence-virgin-gipsy/,The Virgin and the Gipsy,,"Lawrence, D. H.",1930,,Lending Library Card,"Sylvia Beach, Dorothy Shelley Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dcc58669-efb6-4ace-ab31-a1cb913f3692/manifest,https://iiif.princeton.edu/loris/figgy_prod/74%2F2c%2Fd6%2F742cd61778084ba19317c41ed8865032%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-09-04,1934-09-17,https://shakespeareandco.princeton.edu/members/shelley-dorothy/,Dorothy Shelley,"Shelley, Dorothy",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/delafield-thank-heaven-fasting/,Thank Heaven Fasting,,"Delafield, E. M.",1932,,Lending Library Card,"Sylvia Beach, Dorothy Shelley Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dcc58669-efb6-4ace-ab31-a1cb913f3692/manifest,https://iiif.princeton.edu/loris/figgy_prod/74%2F2c%2Fd6%2F742cd61778084ba19317c41ed8865032%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-09-04,1934-09-17,https://shakespeareandco.princeton.edu/members/shelley-dorothy/,Dorothy Shelley,"Shelley, Dorothy",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/duncan-life/,My Life,,"Duncan, Isadora",1927,,Lending Library Card,"Sylvia Beach, Dorothy Shelley Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dcc58669-efb6-4ace-ab31-a1cb913f3692/manifest,https://iiif.princeton.edu/loris/figgy_prod/74%2F2c%2Fd6%2F742cd61778084ba19317c41ed8865032%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-09-05,1934-09-07,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/kaye-smith-ploughmans-progress/,The Ploughman's Progress,,"Kaye-Smith, Sheila",1933,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/0a%2F3d%2Fba%2F0a3dbaf96a524faa81a5d5b923208c01%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-09-05,1934-09-20,https://shakespeareandco.princeton.edu/members/guillemin-annie/,Annie Guillemin,"Guillemin, Annie",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/richardson-dawns-left-hand/,Dawn's Left Hand (Pilgrimage 10),,"Richardson, Dorothy M.",1931,,Lending Library Card,"Sylvia Beach, Annie Guillemin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2d6019d9-34ed-4ca4-97a9-5fd05d8640a7/manifest,https://iiif.princeton.edu/loris/figgy_prod/5a%2Ffc%2F38%2F5afc38c7321c4497adcc378d8774e24d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-09-05,1934-09-20,https://shakespeareandco.princeton.edu/members/guillemin-annie/,Annie Guillemin,"Guillemin, Annie",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/richardson-oberland-pilgrimage-9/,Oberland (Pilgrimage 9),,"Richardson, Dorothy M.",1927,,Lending Library Card,"Sylvia Beach, Annie Guillemin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2d6019d9-34ed-4ca4-97a9-5fd05d8640a7/manifest,https://iiif.princeton.edu/loris/figgy_prod/5a%2Ffc%2F38%2F5afc38c7321c4497adcc378d8774e24d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-09-05,1934-10-18,https://shakespeareandco.princeton.edu/members/shelley-dorothy/,Dorothy Shelley,"Shelley, Dorothy",,,,,,,,,Returned,43,,,https://shakespeareandco.princeton.edu/books/bronte-villette/,Villette,,"BrontΓ«, Charlotte",1853,,Lending Library Card,"Sylvia Beach, Dorothy Shelley Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dcc58669-efb6-4ace-ab31-a1cb913f3692/manifest,https://iiif.princeton.edu/loris/figgy_prod/74%2F2c%2Fd6%2F742cd61778084ba19317c41ed8865032%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-09-05,1934-09-17,https://shakespeareandco.princeton.edu/members/shelley-dorothy/,Dorothy Shelley,"Shelley, Dorothy",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/dickens-bleak-house/,Bleak House,,"Dickens, Charles",1853,,Lending Library Card,"Sylvia Beach, Dorothy Shelley Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dcc58669-efb6-4ace-ab31-a1cb913f3692/manifest,https://iiif.princeton.edu/loris/figgy_prod/74%2F2c%2Fd6%2F742cd61778084ba19317c41ed8865032%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1934-09-05,1934-11-05,https://shakespeareandco.princeton.edu/members/delimal/,Mme Delimal,"Delimal, Mme",30.00,,2 months,61,,,1934-10-05,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Madame Delimal Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/d7650699-e9d7-4e63-85ff-bce7e9c8dfcd/manifest,;https://iiif.princeton.edu/loris/figgy_prod/b1%2Fb8%2F67%2Fb1b8677417e54581bff1177dc38a8c7c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-09-06,1934-09-08,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/jones-morning-cloud/,Morning and Cloud,,"Jones, E. B. C.",1932,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/a5%2F6a%2F1c%2Fa56a1cb5380647fbab725eb33ac49f9a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1934-09-06,1934-12-06,https://shakespeareandco.princeton.edu/members/van-den-bergh/,Tamara van den Bergh,"van den Bergh, Tamara",60.00,50.00,3 months,91,2,,1934-11-23,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Miss Tamara van den Bergh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f3a52627-dc5d-410b-aa7f-9d39941f18e8/manifest,https://iiif.princeton.edu/loris/figgy_prod/a0%2F23%2Fb2%2Fa023b2f9c3894186bed79a0ae0ef2a90%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1934-09-06,1934-10-06,https://shakespeareandco.princeton.edu/members/lamy-marthe/,Marthe Lamy,"Lamy, Marthe",12.00,,1 month,30,1,,1934-09-06,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Marthe Lamy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c715a1d2-668f-44c0-b48d-5f245d0752ba/manifest,https://iiif-cloud.princeton.edu/iiif/2/3b%2F2f%2Fe4%2F3b2fe425ed074e15a19472a16e67e511%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-09-06,1934-09-10,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/yeats-brown-golden-horn/,Golden Horn,,"Yeats-Brown, Francis",1932,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/a5%2F6a%2F1c%2Fa56a1cb5380647fbab725eb33ac49f9a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-09-07,1934-09-08,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/delafield-provincial-lady-america/,The Provincial Lady in America,,"Delafield, E. M.",1934,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/0a%2F3d%2Fba%2F0a3dbaf96a524faa81a5d5b923208c01%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-09-07,1934-09-11,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/louis-bromfield-today-gone-tomorrow/,Here Today and Gone Tomorrow,,"Bromfield, Louis",1934,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/e6%2F43%2F11%2Fe643111d618f45aeb8829844d126a6c8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-09-08,1934-09-13,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/mackail-ian-felicity/,Ian and Felicity,,"Mackail, Denis",1932,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/a5%2F6a%2F1c%2Fa56a1cb5380647fbab725eb33ac49f9a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-09-08,1934-09-10,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/young-little-world/,This Little World,,"Young, Francis Brett",1934,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/0a%2F3d%2Fba%2F0a3dbaf96a524faa81a5d5b923208c01%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1934-09-08,1935-03-08,https://shakespeareandco.princeton.edu/members/tony-mayer/,Thérèse Tony-Mayer,"Tony-Mayer, Thérèse",10.00,,6 months,181,1,,1934-10-10,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Thérèse Tony-Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/27246b4c-7d99-4dca-b874-ab90bd542cfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/a1%2Fec%2Ff5%2Fa1ecf56bff2e4aefa5c17aaba1dcce85%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-09-10,1934-09-14,https://shakespeareandco.princeton.edu/members/claudius/,Agnes Claudius,"Claudius, Agnes",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/wharton-backward-glance/,A Backward Glance,,"Wharton, Edith",1934,,Lending Library Card,"Sylvia Beach, Agnes Claudius Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18a9262d-8ea3-4d0c-9b36-8a1c638950fa/manifest,https://iiif.princeton.edu/loris/figgy_prod/3f%2F38%2F05%2F3f3805f16e1646c8a58bbad3bbc86c95%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-09-10,1934-09-11,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/farjeon-mystery-dead-mans/,The Mystery of Dead Man's Heath,,"Farjeon, Joseph Jefferson",1934,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/0a%2F3d%2Fba%2F0a3dbaf96a524faa81a5d5b923208c01%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-09-10,1934-09-13,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/de-la-roche-lark-ascending/,Lark Ascending,,"De la Roche, Mazo",1932,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/a5%2F6a%2F1c%2Fa56a1cb5380647fbab725eb33ac49f9a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-09-11,1934-09-14,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/baring-lonely-lady-dulwich/,The Lonely Lady of Dulwich,,"Baring, Maurice",1934,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/e6%2F43%2F11%2Fe643111d618f45aeb8829844d126a6c8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-09-11,1934-09-12,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/lewis-dew-grass/,Dew on the Grass,,"Lewis, Eiluned",1934,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/0a%2F3d%2Fba%2F0a3dbaf96a524faa81a5d5b923208c01%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-09-12,1934-09-18,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/strachey-coming-struggle-power/,The Coming Struggle for Power,,"Strachey, John",1933,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/3c%2Faa%2F4f%2F3caa4f8e37954ba7a197d68f47529504%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-09-12,1934-09-18,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/mitchison-vienna-diary/,Vienna Diary,,"Mitchison, Naomi",1934,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/3c%2Faa%2F4f%2F3caa4f8e37954ba7a197d68f47529504%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1934-09-12,1935-03-12,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",100.00,,6 months,181,2,,1934-09-12,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/3c%2Faa%2F4f%2F3caa4f8e37954ba7a197d68f47529504%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-09-13,1934-09-24,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/huxley-antic-hay/,Antic Hay,,"Huxley, Aldous",1923,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/94%2F03%2F1e%2F94031e37cbfb46c1993af351d4f6ea4c%2Fintermediate_file/full/full/0/default.jpg
+Crossed out,1934-09-13,,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/bell-hamwood-papers-ladies/,The Hamwood Papers of the Ladies of Llangollen and Caroline Hamilton,,,1930,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/94%2F03%2F1e%2F94031e37cbfb46c1993af351d4f6ea4c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-09-13,1934-10-06,https://shakespeareandco.princeton.edu/members/van-den-bergh/,Tamara van den Bergh,"van den Bergh, Tamara",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/trollope-thackeray/,Thackeray,,"Trollope, Anthony",1879,,Lending Library Card,"Sylvia Beach, Miss Tamara van den Bergh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f3a52627-dc5d-410b-aa7f-9d39941f18e8/manifest,https://iiif.princeton.edu/loris/figgy_prod/02%2F7b%2F0d%2F027b0de9b7de4c5bb3f221129c8acb03%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1934-09-13,1935-09-13,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",157.50,,1 year,365,1,,1934-09-20,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/e6%2F43%2F11%2Fe643111d618f45aeb8829844d126a6c8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-09-13,1934-09-21,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/mackail-square-circle/,The Square Circle,,"Mackail, Denis",1930,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/a5%2F6a%2F1c%2Fa56a1cb5380647fbab725eb33ac49f9a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-09-13,1934-09-21,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/storm/,Storm,,,,"Unidentified. Wilbur Daniel Steele's *Storm* (1914), LΓ©onie Aminoff's *Storm* (1929), or Peter Neagoe's *Storm* (1932), etc.",Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/a5%2F6a%2F1c%2Fa56a1cb5380647fbab725eb33ac49f9a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-09-13,1934-09-24,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/gosse-father-study-two/,Father and Son: A Study of Two Temperaments,,"Gosse, Edmund",1907,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/94%2F03%2F1e%2F94031e37cbfb46c1993af351d4f6ea4c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-09-14,1934-09-20,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/king-obelists-route/,Obelists en Route,,"King, Charles Daly",1934,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/e6%2F43%2F11%2Fe643111d618f45aeb8829844d126a6c8%2Fintermediate_file/full/full/0/default.jpg
+Crossed out,1934-09-17,,https://shakespeareandco.princeton.edu/members/shelley-dorothy/,Dorothy Shelley,"Shelley, Dorothy",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/chekhov-darling-stories/,The Darling and Other Stories,,"Chekhov, Anton",1916,,Lending Library Card,"Sylvia Beach, Dorothy Shelley Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dcc58669-efb6-4ace-ab31-a1cb913f3692/manifest,https://iiif.princeton.edu/loris/figgy_prod/74%2F2c%2Fd6%2F742cd61778084ba19317c41ed8865032%2Fintermediate_file.jp2/full/full/0/default.jpg
+Crossed out,1934-09-17,,https://shakespeareandco.princeton.edu/members/shelley-dorothy/,Dorothy Shelley,"Shelley, Dorothy",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/turgenev-smoke/,Smoke,,"Turgenev, Ivan",1896,,Lending Library Card,"Sylvia Beach, Dorothy Shelley Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dcc58669-efb6-4ace-ab31-a1cb913f3692/manifest,https://iiif.princeton.edu/loris/figgy_prod/74%2F2c%2Fd6%2F742cd61778084ba19317c41ed8865032%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-09-17,1934-10-18,https://shakespeareandco.princeton.edu/members/shelley-dorothy/,Dorothy Shelley,"Shelley, Dorothy",,,,,,,,,Returned,31,,,https://shakespeareandco.princeton.edu/books/morgan-portrait-mirror/,Portrait in a Mirror,,"Morgan, Charles",1929,,Lending Library Card,"Sylvia Beach, Dorothy Shelley Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dcc58669-efb6-4ace-ab31-a1cb913f3692/manifest,https://iiif.princeton.edu/loris/figgy_prod/74%2F2c%2Fd6%2F742cd61778084ba19317c41ed8865032%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-09-17,1934-10-18,https://shakespeareandco.princeton.edu/members/shelley-dorothy/,Dorothy Shelley,"Shelley, Dorothy",,,,,,,,,Returned,31,,,https://shakespeareandco.princeton.edu/books/cather-antonia/,My Antonia,,"Cather, Willa",1918,,Lending Library Card,"Sylvia Beach, Dorothy Shelley Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/dcc58669-efb6-4ace-ab31-a1cb913f3692/manifest,https://iiif.princeton.edu/loris/figgy_prod/74%2F2c%2Fd6%2F742cd61778084ba19317c41ed8865032%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-09-18,1934-09-24,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/stein-autobiography-alice-b/,The Autobiography of Alice B. Toklas,,"Stein, Gertrude",1933,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/ca%2Fcc%2F7a%2Fcacc7a45f8bb4fef849b0017203955d8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-09-18,1934-09-24,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/sayers-nine-tailors/,The Nine Tailors,,"Sayers, Dorothy L.",1934,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/ca%2Fcc%2F7a%2Fcacc7a45f8bb4fef849b0017203955d8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-09-18,1934-09-20,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/klotz-berlin-diaries/,The Berlin Diaries,,,1934,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/3c%2Faa%2F4f%2F3caa4f8e37954ba7a197d68f47529504%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-09-18,1934-09-20,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/christie-murder-orient-express/,Murder on the Orient Express,,"Christie, Agatha",1934,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/3c%2Faa%2F4f%2F3caa4f8e37954ba7a197d68f47529504%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-09-18,1934-09-28,https://shakespeareandco.princeton.edu/members/lamy-marthe/,Marthe Lamy,"Lamy, Marthe",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/richardson-pointed-roofs/,Pointed Roofs (Pilgrimage 1),,"Richardson, Dorothy M.",1915,,Lending Library Card,"Sylvia Beach, Marthe Lamy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c715a1d2-668f-44c0-b48d-5f245d0752ba/manifest,https://iiif-cloud.princeton.edu/iiif/2/3b%2F2f%2Fe4%2F3b2fe425ed074e15a19472a16e67e511%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1934-09-19,,https://shakespeareandco.princeton.edu/members/dennis-mary-cable/,Mary Cable Dennis / Mrs. A. L. P. Dennis,"Dennis, Mary Cable",,,,,,,1934-09-19,,,,,FRF,,,,,,,Lending Library Card;Address Book,"Sylvia Beach, Mrs. A. L. P. Dennis (Mary Cable Dennis) Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/07d1ecd7-bf00-4e85-ae58-5c0f9cbe6648/manifest;,https://iiif.princeton.edu/loris/figgy_prod/26%2Fb8%2Ff6%2F26b8f6aafcb745a5b28f88954199e6e2%2Fintermediate_file.jp2/full/full/0/default.jpg;
+Borrow,1934-09-19,1934-09-27,https://shakespeareandco.princeton.edu/members/dennis-mary-cable/,Mary Cable Dennis / Mrs. A. L. P. Dennis,"Dennis, Mary Cable",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/ransome-oscar-wilde-critical/,Oscar Wilde: A Critical Study,,"Ransome, Arthur",1912,,Lending Library Card,"Sylvia Beach, Mrs. A. L. P. Dennis (Mary Cable Dennis) Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/07d1ecd7-bf00-4e85-ae58-5c0f9cbe6648/manifest,https://iiif.princeton.edu/loris/figgy_prod/26%2Fb8%2Ff6%2F26b8f6aafcb745a5b28f88954199e6e2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-09-19,1934-09-27,https://shakespeareandco.princeton.edu/members/dennis-mary-cable/,Mary Cable Dennis / Mrs. A. L. P. Dennis,"Dennis, Mary Cable",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/harris-oscar-wilde-life/,Oscar Wilde: His Life and Confessions,Vol. 2,"Harris, Frank",1916,,Lending Library Card,"Sylvia Beach, Mrs. A. L. P. Dennis (Mary Cable Dennis) Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/07d1ecd7-bf00-4e85-ae58-5c0f9cbe6648/manifest,https://iiif.princeton.edu/loris/figgy_prod/26%2Fb8%2Ff6%2F26b8f6aafcb745a5b28f88954199e6e2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-09-19,1934-10-01,https://shakespeareandco.princeton.edu/members/morison-theodore/,Theodore Morison,"Morison, Theodore",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/huxley-brave-new-world/,Brave New World,,"Huxley, Aldous",1932,,Lending Library Card,"Sylvia Beach, Theodore Morison Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fe5921d0-c250-4421-a61f-5773b4b2e563/manifest,https://iiif.princeton.edu/loris/figgy_prod/46%2Fcc%2Fd3%2F46ccd3da779e4ed39a60542e88becb96%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1934-09-19,1935-03-19,https://shakespeareandco.princeton.edu/members/morison-theodore/,Theodore Morison,"Morison, Theodore",50.00,,6 months,181,1,,1934-09-19,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Theodore Morison Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fe5921d0-c250-4421-a61f-5773b4b2e563/manifest,https://iiif.princeton.edu/loris/figgy_prod/46%2Fcc%2Fd3%2F46ccd3da779e4ed39a60542e88becb96%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-09-19,1934-09-27,https://shakespeareandco.princeton.edu/members/dennis-mary-cable/,Mary Cable Dennis / Mrs. A. L. P. Dennis,"Dennis, Mary Cable",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/sherard-life-oscar-wilde/,The Life of Oscar Wilde,,"Sherard, Robert Harborough",1906,,Lending Library Card,"Sylvia Beach, Mrs. A. L. P. Dennis (Mary Cable Dennis) Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/07d1ecd7-bf00-4e85-ae58-5c0f9cbe6648/manifest,https://iiif.princeton.edu/loris/figgy_prod/26%2Fb8%2Ff6%2F26b8f6aafcb745a5b28f88954199e6e2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-09-20,1934-10-22,https://shakespeareandco.princeton.edu/members/guillemin-annie/,Annie Guillemin,"Guillemin, Annie",,,,,,,,,Returned,32,,,https://shakespeareandco.princeton.edu/books/lewis-free-air/,Free Air,,"Lewis, Sinclair",1919,,Lending Library Card,"Sylvia Beach, Annie Guillemin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2d6019d9-34ed-4ca4-97a9-5fd05d8640a7/manifest,https://iiif.princeton.edu/loris/figgy_prod/5a%2Ffc%2F38%2F5afc38c7321c4497adcc378d8774e24d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-09-20,1934-10-22,https://shakespeareandco.princeton.edu/members/guillemin-annie/,Annie Guillemin,"Guillemin, Annie",,,,,,,,,Returned,32,,,https://shakespeareandco.princeton.edu/books/golding-magnolia-street/,Magnolia Street,,"Golding, Louis",1932,,Lending Library Card,"Sylvia Beach, Annie Guillemin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2d6019d9-34ed-4ca4-97a9-5fd05d8640a7/manifest,https://iiif.princeton.edu/loris/figgy_prod/5a%2Ffc%2F38%2F5afc38c7321c4497adcc378d8774e24d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-09-20,1934-10-12,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/stead-salzburg-tales/,The Salzburg Tales,,"Stead, Christina",1934,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/e6%2F43%2F11%2Fe643111d618f45aeb8829844d126a6c8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-09-20,1934-09-24,https://shakespeareandco.princeton.edu/members/burt-maud/,Maud Burt,"Burt, Maud",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/obrien-ante-room/,The Ante-Room,,"O'Brien, Kate",1934,,Lending Library Card,"Sylvia Beach, Maud Burt Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/84402ab0-3135-4059-bd55-010e23394445/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2Fc8%2Fab%2F65c8ab878cfc46bbb6614d86cfecbf51%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-09-20,1934-09-24,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/nicolson-curzon-last-phase/,"Curzon: The Last Phase, 1919 β 1925, a Study of Post-War Diplomacy",,"Nicolson, Harold George",1934,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/ca%2Fcc%2F7a%2Fcacc7a45f8bb4fef849b0017203955d8%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1934-09-21,1934-10-21,https://shakespeareandco.princeton.edu/members/caillois/;https://shakespeareandco.princeton.edu/members/petitjean/,Roger Caillois;Armand Petitjean,"Caillois, Roger;Petitjean, Armand",12.00,,1 month,30,1,,1934-09-21,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Roger Caillois/ Armand Petitjean Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/58386f27-2a95-4138-a30e-4dde3aeb0aaa/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2F00%2Fcd%2F5e00cdaa323542559393d3d06aef50f8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-09-21,1934-10-08,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/fletcher-dressing-room-murder/,The Dressing Room Murder,,"Fletcher, Joseph Smith",1931,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/a5%2F6a%2F1c%2Fa56a1cb5380647fbab725eb33ac49f9a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-09-21,1934-10-12,https://shakespeareandco.princeton.edu/members/caillois/;https://shakespeareandco.princeton.edu/members/petitjean/,Roger Caillois;Armand Petitjean,"Caillois, Roger;Petitjean, Armand",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/st-ignatius/,St. Ignatius,,,,Unidentified. Likely Francis Thompson's [*Saint Ignatius Loyola*](https://shakespeareandco.princeton.edu/books/thompson-saint-ignatius-loyola/) (1909).,Lending Library Card,"Sylvia Beach, Roger Caillois/ Armand Petitjean Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/58386f27-2a95-4138-a30e-4dde3aeb0aaa/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2F00%2Fcd%2F5e00cdaa323542559393d3d06aef50f8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-09-24,1934-09-28,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/huxley-beyond-mexique-bay/,Beyond the Mexique Bay,,"Huxley, Aldous",1934,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/ca%2Fcc%2F7a%2Fcacc7a45f8bb4fef849b0017203955d8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-09-24,1934-09-28,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/martin-new-statesman-nation/,The New Statesman and Nation,,,,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/ca%2Fcc%2F7a%2Fcacc7a45f8bb4fef849b0017203955d8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-09-24,1934-09-28,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/mackworth-time-tide/,Time and Tide,,,,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/ca%2Fcc%2F7a%2Fcacc7a45f8bb4fef849b0017203955d8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-09-24,1934-10-03,https://shakespeareandco.princeton.edu/members/burt-maud/,Maud Burt,"Burt, Maud",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/miles-blind-men-crossing/,Blind Men Crossing a Bridge,,"Miles, Susan",1934,,Lending Library Card,"Sylvia Beach, Maud Burt Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/84402ab0-3135-4059-bd55-010e23394445/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2Fc8%2Fab%2F65c8ab878cfc46bbb6614d86cfecbf51%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-09-24,1934-09-26,https://shakespeareandco.princeton.edu/members/williamson-scott-graham/,Scott Graham Williamson,"Williamson, Scott Graham",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/lawrence-lady-chatterleys-lover/,Lady Chatterley's Lover,,"Lawrence, D. H.",1928,,Lending Library Card,"Sylvia Beach, Scott Graham Williamson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1aef8298-ddd1-40ce-960b-35c8a434379a/manifest,https://iiif.princeton.edu/loris/figgy_prod/aa%2Fca%2F7b%2Faaca7b12c9b44df093872fee08caa9d7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1934-09-24,1934-10-24,https://shakespeareandco.princeton.edu/members/vox-maximilien/,Maximilien Vox / Samuel William ThΓ©odore Monod / Mr. Monod-Vox,"Vox, Maximilien",12.00,30.00,1 month,30,1,,1934-09-24,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Maximilien Vox Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd769a65-ce70-4407-accf-660fd5c71c29/manifest,https://iiif.princeton.edu/loris/figgy_prod/16%2Fa6%2Fa8%2F16a6a84e1eb944479fec1e280f2c60e2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-09-24,,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/huxley-barren-leaves/,Those Barren Leaves,,"Huxley, Aldous",1925,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/94%2F03%2F1e%2F94031e37cbfb46c1993af351d4f6ea4c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-09-24,1934-10-04,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/strachey-elizabeth-essex-tragic/,Elizabeth and Essex: A Tragic History,,"Strachey, Giles Lytton",1928,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/94%2F03%2F1e%2F94031e37cbfb46c1993af351d4f6ea4c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-09-24,1934-09-28,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/wharton-backward-glance/,A Backward Glance,,"Wharton, Edith",1934,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/ca%2Fcc%2F7a%2Fcacc7a45f8bb4fef849b0017203955d8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-09-24,1934-10-04,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/delafield-diary-provincial-lady/,Diary of a Provincial Lady,,"Delafield, E. M.",1930,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/94%2F03%2F1e%2F94031e37cbfb46c1993af351d4f6ea4c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-09-24,1934-11-05,https://shakespeareandco.princeton.edu/members/vox-maximilien/,Maximilien Vox / Samuel William ThΓ©odore Monod / Mr. Monod-Vox,"Vox, Maximilien",,,,,,,,,Returned,42,,,https://shakespeareandco.princeton.edu/books/lewis-elmer-gantry/,Elmer Gantry,,"Lewis, Sinclair",1927,,Lending Library Card,"Sylvia Beach, Maximilien Vox Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd769a65-ce70-4407-accf-660fd5c71c29/manifest,https://iiif.princeton.edu/loris/figgy_prod/16%2Fa6%2Fa8%2F16a6a84e1eb944479fec1e280f2c60e2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-09-26,,https://shakespeareandco.princeton.edu/members/morison-theodore/,Theodore Morison,"Morison, Theodore",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/hampson-treatment-poverty-cambridgeshire/,"The Treatment of Poverty in Cambridgeshire, 1597 β 1834",,"Hampson, Ethel Mary",1934,,Lending Library Card,"Sylvia Beach, Theodore Morison Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fe5921d0-c250-4421-a61f-5773b4b2e563/manifest,https://iiif.princeton.edu/loris/figgy_prod/46%2Fcc%2Fd3%2F46ccd3da779e4ed39a60542e88becb96%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-09-26,1934-11-15,https://shakespeareandco.princeton.edu/members/fombeure/,Maurice Fombeure,"Fombeure, Maurice",,,,,,,,,Returned,50,,,https://shakespeareandco.princeton.edu/books/lawrence-woman-rode-away/,The Woman Who Rode Away,,"Lawrence, D. H.",1928,,Lending Library Card,"Sylvia Beach, Maurice Fombeure Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/855766c8-eed4-4870-9f00-6ba30bc0e6b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/ff%2Fb5%2F45%2Fffb545bb498747799d7a383facb9e987%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-09-26,1934-11-15,https://shakespeareandco.princeton.edu/members/fombeure/,Maurice Fombeure,"Fombeure, Maurice",,,,,,,,,Returned,50,,,https://shakespeareandco.princeton.edu/books/hemingway-men-without-women/,Men without Women,,"Hemingway, Ernest",1927,,Lending Library Card,"Sylvia Beach, Maurice Fombeure Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/855766c8-eed4-4870-9f00-6ba30bc0e6b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/ff%2Fb5%2F45%2Fffb545bb498747799d7a383facb9e987%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-09-27,,https://shakespeareandco.princeton.edu/members/morison-theodore/,Theodore Morison,"Morison, Theodore",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/macartney-national-states-national/,National States and National Minorities,,"Macartney, C. A.",1934,,Lending Library Card,"Sylvia Beach, Theodore Morison Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fe5921d0-c250-4421-a61f-5773b4b2e563/manifest,https://iiif.princeton.edu/loris/figgy_prod/46%2Fcc%2Fd3%2F46ccd3da779e4ed39a60542e88becb96%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-09-27,1934-10-03,https://shakespeareandco.princeton.edu/members/dennis-mary-cable/,Mary Cable Dennis / Mrs. A. L. P. Dennis,"Dennis, Mary Cable",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/strachey-characters-commentaries/,Characters and Commentaries,,"Strachey, Giles Lytton",1933,,Lending Library Card,"Sylvia Beach, Mrs. A. L. P. Dennis (Mary Cable Dennis) Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/07d1ecd7-bf00-4e85-ae58-5c0f9cbe6648/manifest,https://iiif.princeton.edu/loris/figgy_prod/26%2Fb8%2Ff6%2F26b8f6aafcb745a5b28f88954199e6e2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-09-27,1934-10-03,https://shakespeareandco.princeton.edu/members/dennis-mary-cable/,Mary Cable Dennis / Mrs. A. L. P. Dennis,"Dennis, Mary Cable",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/wilde-profundis/,De Profundis,,"Wilde, Oscar",1905,,Lending Library Card,"Sylvia Beach, Mrs. A. L. P. Dennis (Mary Cable Dennis) Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/07d1ecd7-bf00-4e85-ae58-5c0f9cbe6648/manifest,https://iiif.princeton.edu/loris/figgy_prod/26%2Fb8%2Ff6%2F26b8f6aafcb745a5b28f88954199e6e2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-09-28,1934-10-29,https://shakespeareandco.princeton.edu/members/lamy-marthe/,Marthe Lamy,"Lamy, Marthe",,,,,,,,,Returned,31,,,https://shakespeareandco.princeton.edu/books/faulkner-lay-dying/,As I Lay Dying,,"Faulkner, William",1930,,Lending Library Card,"Sylvia Beach, Marthe Lamy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c715a1d2-668f-44c0-b48d-5f245d0752ba/manifest,https://iiif-cloud.princeton.edu/iiif/2/3b%2F2f%2Fe4%2F3b2fe425ed074e15a19472a16e67e511%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-09-28,1934-10-08,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/burnett-story-anthology-1931/,"A Story Anthology, 1931 β 1933",,,1933,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/ca%2Fcc%2F7a%2Fcacc7a45f8bb4fef849b0017203955d8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-09-28,1934-10-06,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/fitzgerald-tender-night/,Tender Is the Night,,"Fitzgerald, F. Scott",1934,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/ca%2Fcc%2F7a%2Fcacc7a45f8bb4fef849b0017203955d8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-09-28,1934-10-01,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/king-obelists-route/,Obelists en Route,,"King, Charles Daly",1934,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/ca%2Fcc%2F7a%2Fcacc7a45f8bb4fef849b0017203955d8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-09-28,1934-10-01,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/queen-siamese-twin-mystery/,The Siamese Twin Mystery,,"Dannay, Frederic;Lee, Manfred B.",1933,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/ca%2Fcc%2F7a%2Fcacc7a45f8bb4fef849b0017203955d8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-09-28,1934-10-05,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/stern-pelican-walking/,Pelican Walking,,"Stern, G. B.",1934,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e7%2F67%2Fe4%2Fe767e4aba183458d8491d96a49bd9896%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-09-28,1934-10-01,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/kirstein-hound-horn/,Hound & Horn,"Vol. 7, no. 3, Apr β Jun 1934",,,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/ca%2Fcc%2F7a%2Fcacc7a45f8bb4fef849b0017203955d8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-09-28,1934-10-01,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/mackworth-time-tide/,Time and Tide,,,,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/ca%2Fcc%2F7a%2Fcacc7a45f8bb4fef849b0017203955d8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-09-28,1934-10-05,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/allen-anthony-adverse/,Anthony Adverse,,"Allen, Hervey",1933,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e7%2F67%2Fe4%2Fe767e4aba183458d8491d96a49bd9896%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1934-09-30,1934-10-30,https://shakespeareandco.princeton.edu/members/denoel-pierre/,Pierre Denoel,"Denoel, Pierre",15.00,,1 month,30,1,,1934-10-30,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Pierre Denoel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5638f32b-e6bb-41e9-b0c4-bd60d68fa1fd/manifest,https://iiif.princeton.edu/loris/figgy_prod/a3%2F96%2Fa9%2Fa396a935e8a544bd96145b13dbf85e3e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-10-01,1934-10-06,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/kirchwey-nation/,The Nation,,,,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/ca%2Fcc%2F7a%2Fcacc7a45f8bb4fef849b0017203955d8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-10-01,1934-10-06,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/martin-new-statesman-nation/,The New Statesman and Nation,,,,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/ca%2Fcc%2F7a%2Fcacc7a45f8bb4fef849b0017203955d8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-10-02,1934-10-12,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/froude-reign-queen-elizabeth/,The Reign of Queen Elizabeth,Vol. 1,"Froude, James Anthony",1911,Likely the Everyman's Library edition.,Lending Library Card,"Sylvia Beach, Aline Prot's Lending Library Card in Antoinette Bernheim's File, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4a7d497b-2d1d-4e7a-8a3e-781160cbe998/manifest,https://iiif-cloud.princeton.edu/iiif/2/fe%2F14%2Fcf%2Ffe14cfe9ad0c49f3a7d0e7389cce9b9e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-10-02,1934-10,https://shakespeareandco.princeton.edu/members/yarrow-catherine/,Catherine Yarrow,"Yarrow, Catherine",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/wassermann-maurizius-case/,The Maurizius Case,,"Wassermann, Jakob",1930,,Lending Library Card,"Sylvia Beach, Catherine Yarrow Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d0d522e7-9d4e-41ca-8b3b-8fe6ba58e334/manifest,https://iiif.princeton.edu/loris/figgy_prod/38%2Fe4%2F9e%2F38e49ec85ad54b1bb50df436efd43955%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-10-02,1934-10-06,https://shakespeareandco.princeton.edu/members/yarrow-catherine/,Catherine Yarrow,"Yarrow, Catherine",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/lawrence-reflections-death-porcupine/,Reflections on the Death of a Porcupine and Other Essays,,"Lawrence, D. H.",1925,,Lending Library Card,"Sylvia Beach, Catherine Yarrow Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d0d522e7-9d4e-41ca-8b3b-8fe6ba58e334/manifest,https://iiif.princeton.edu/loris/figgy_prod/38%2Fe4%2F9e%2F38e49ec85ad54b1bb50df436efd43955%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-10-02,1934-10-10,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/brittain-testament-youth/,Testament of Youth,,"Brittain, Vera",1933,,Lending Library Card,"Sylvia Beach, Aline Prot's Lending Library Card in Antoinette Bernheim's File, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4a7d497b-2d1d-4e7a-8a3e-781160cbe998/manifest,https://iiif-cloud.princeton.edu/iiif/2/fe%2F14%2Fcf%2Ffe14cfe9ad0c49f3a7d0e7389cce9b9e%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1934-10-02,1935-04-02,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",,90.00,6 months,182,2,,1934-10-02,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Aline Prot's Lending Library Card in Antoinette Bernheim's File, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4a7d497b-2d1d-4e7a-8a3e-781160cbe998/manifest,https://iiif-cloud.princeton.edu/iiif/2/fe%2F14%2Fcf%2Ffe14cfe9ad0c49f3a7d0e7389cce9b9e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-10-03,1934-10-05,https://shakespeareandco.princeton.edu/members/burt-maud/,Maud Burt,"Burt, Maud",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/eliot-use-poetry-use/,The Use of Poetry and the Use of Criticism: Studies in the Relation of Criticism to Poetry in England,,"Eliot, T. S.",1933,,Lending Library Card,"Sylvia Beach, Maud Burt Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/84402ab0-3135-4059-bd55-010e23394445/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2Fc8%2Fab%2F65c8ab878cfc46bbb6614d86cfecbf51%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-10-03,1934-10-11,https://shakespeareandco.princeton.edu/members/dennis-mary-cable/,Mary Cable Dennis / Mrs. A. L. P. Dennis,"Dennis, Mary Cable",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/zweig-marie-antoinette-portrait/,Marie Antoinette: The Portrait of an Average Woman,,"Zweig, Stefan",1932,,Lending Library Card,"Sylvia Beach, Mrs. A. L. P. Dennis (Mary Cable Dennis) Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/07d1ecd7-bf00-4e85-ae58-5c0f9cbe6648/manifest,https://iiif.princeton.edu/loris/figgy_prod/26%2Fb8%2Ff6%2F26b8f6aafcb745a5b28f88954199e6e2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1934-10-04,1934-10-04,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,,,3.00,FRF,https://shakespeareandco.princeton.edu/books/martin-new-statesman-nation/,The New Statesman and Nation,,,,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/1a%2F70%2Fc5%2F1a70c5f26391434ab607acb8b9b3e538%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1934-10-04,1934-10-04,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,,,5.00,FRF,https://shakespeareandco.princeton.edu/books/croly-new-republic/,The New Republic,,,,"Antoinette Bernheim's lending library card includes the following notation next to her borrow on March 1, 1939: 39/10/2. There is no issue of *The New Republic* on that date.",Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/1a%2F70%2Fc5%2F1a70c5f26391434ab607acb8b9b3e538%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1934-10-04,1934-10-04,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,,,15.00,FRF,https://shakespeareandco.princeton.edu/books/martin-new-statesman-nation/,The New Statesman and Nation,,,,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/1a%2F70%2Fc5%2F1a70c5f26391434ab607acb8b9b3e538%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-10-04,1934-10-05,https://shakespeareandco.princeton.edu/members/bonnerot-louis/,Louis Bonnerot,"Bonnerot, Louis",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/saturday-review/,Saturday Review,,,,Unidentified. Either [*The Saturday Review of Literature*](https://shakespeareandco.princeton.edu/books/canby-saturday-review-literature/) or the [*Saturday Review*](https://en.wikipedia.org/wiki/Saturday_Review_(London_newspaper)).,Lending Library Card,"Sylvia Beach, Louis Bonnerot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c14cc736-079c-4403-9036-a2de4743414a/manifest,https://iiif.princeton.edu/loris/figgy_prod/9f%2F6c%2F07%2F9f6c0714aef2411d8ae482314a2c165a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-10-04,1934-10-05,https://shakespeareandco.princeton.edu/members/bonnerot-louis/,Louis Bonnerot,"Bonnerot, Louis",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/spender-poems/,Poems,,"Spender, Stephen",1933,,Lending Library Card,"Sylvia Beach, Louis Bonnerot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c14cc736-079c-4403-9036-a2de4743414a/manifest,https://iiif.princeton.edu/loris/figgy_prod/9f%2F6c%2F07%2F9f6c0714aef2411d8ae482314a2c165a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1934-10-04,1934-10-04,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,,,3.00,FRF,https://shakespeareandco.princeton.edu/books/martin-new-statesman-nation/,The New Statesman and Nation,,,,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/1a%2F70%2Fc5%2F1a70c5f26391434ab607acb8b9b3e538%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1934-10-04,1934-10-04,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,,,3.00,FRF,https://shakespeareandco.princeton.edu/books/martin-new-statesman-nation/,The New Statesman and Nation,,,,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/1a%2F70%2Fc5%2F1a70c5f26391434ab607acb8b9b3e538%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-10-04,1934-10-23,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/bentley-inheritance/,Inheritance,,"Bentley, Phyllis Eleanor",1932,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/94%2F03%2F1e%2F94031e37cbfb46c1993af351d4f6ea4c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-10-04,1934-10-23,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/fleming-brazilian-adventure/,Brazilian Adventure,,"Fleming, Peter",1933,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/94%2F03%2F1e%2F94031e37cbfb46c1993af351d4f6ea4c%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1934-10-04,1934-10-04,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,,,3.00,FRF,https://shakespeareandco.princeton.edu/books/martin-new-statesman-nation/,The New Statesman and Nation,,,,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/1a%2F70%2Fc5%2F1a70c5f26391434ab607acb8b9b3e538%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-10-05,1934-10-11,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/waugh-balliols/,The Balliols,,"Waugh, Alec",1934,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e7%2F67%2Fe4%2Fe767e4aba183458d8491d96a49bd9896%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-10-05,1934-10-08,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/anderson-beyond-desire/,Beyond Desire,,"Anderson, Sherwood",1932,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/a5%2F6a%2F1c%2Fa56a1cb5380647fbab725eb33ac49f9a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-10-05,1934-10-16,https://shakespeareandco.princeton.edu/members/burt-maud/,Maud Burt,"Burt, Maud",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/wells-experiment-autobiography-discoveries/,Experiment in Autobiography: Discoveries and Conclusions of a Very Ordinary Brain (Since 1866),,"Wells, H. G.",1934,,Lending Library Card,"Sylvia Beach, Maud Burt Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/84402ab0-3135-4059-bd55-010e23394445/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2Fc8%2Fab%2F65c8ab878cfc46bbb6614d86cfecbf51%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1934-10-06,1934-10-06,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,,,3.00,FRF,https://shakespeareandco.princeton.edu/books/grigson-new-verse/,New Verse,,,,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/1a%2F70%2Fc5%2F1a70c5f26391434ab607acb8b9b3e538%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-10-06,1934-10-22,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/osullivan-twenty-years-growing/,Twenty Years A-Growing,,"O'Sullivan, Maurice",1933,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5d%2Fd5%2Fd7%2F5dd5d73d2e8b41eaa75eafd050537f72%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-10-06,1934-10-08,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/kirchwey-nation/,The Nation,,,,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/ca%2Fcc%2F7a%2Fcacc7a45f8bb4fef849b0017203955d8%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1934-10-06,1934-10-06,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,,,3.00,FRF,https://shakespeareandco.princeton.edu/books/martin-new-statesman-nation/,The New Statesman and Nation,,,,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/1a%2F70%2Fc5%2F1a70c5f26391434ab607acb8b9b3e538%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-10-06,1934-10-08,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/mackworth-time-tide/,Time and Tide,,,,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/ca%2Fcc%2F7a%2Fcacc7a45f8bb4fef849b0017203955d8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-10-06,1934-10-10,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/oflaherty-shame-devil/,Shame the Devil,,"O'Flaherty, Liam",1934,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/ca%2Fcc%2F7a%2Fcacc7a45f8bb4fef849b0017203955d8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-10-06,1934-10-08,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/carter-slow-death-geneva/,Slow Death at Geneva,,Diplomat,1934,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/ca%2Fcc%2F7a%2Fcacc7a45f8bb4fef849b0017203955d8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-10-06,1934-10-10,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/nicolson-people-things-wireless/,People and Things: Wireless Talks,,"Nicolson, Harold George",1931,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/ca%2Fcc%2F7a%2Fcacc7a45f8bb4fef849b0017203955d8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-10-06,1934-10-22,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/lewis-dew-grass/,Dew on the Grass,,"Lewis, Eiluned",1934,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5d%2Fd5%2Fd7%2F5dd5d73d2e8b41eaa75eafd050537f72%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-10-08,1934-10-27,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/best-story-anthology/,My Best Story: An Anthology of Stories Chosen by Their Own Authors,,,1929,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/a5%2F6a%2F1c%2Fa56a1cb5380647fbab725eb33ac49f9a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-10-08,1934-10-17,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/irwin-none-pretty/,None So Pretty,,"Irwin, Margaret",1930,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/a5%2F6a%2F1c%2Fa56a1cb5380647fbab725eb33ac49f9a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-10-08,1934-10-16,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/martin-new-statesman-nation/,The New Statesman and Nation,,,,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/ca%2Fcc%2F7a%2Fcacc7a45f8bb4fef849b0017203955d8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-10-09,1934-10-19,https://shakespeareandco.princeton.edu/members/dennis-mary-cable/,Mary Cable Dennis / Mrs. A. L. P. Dennis,"Dennis, Mary Cable",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/klotz-berlin-diaries/,The Berlin Diaries,,,1934,,Lending Library Card,"Sylvia Beach, Mrs. A. L. P. Dennis (Mary Cable Dennis) Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/07d1ecd7-bf00-4e85-ae58-5c0f9cbe6648/manifest,https://iiif.princeton.edu/loris/figgy_prod/26%2Fb8%2Ff6%2F26b8f6aafcb745a5b28f88954199e6e2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1934-10-09,1934-11-09,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",15.00,,1 month,31,1,,1934-10-09,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/e0%2Fe7%2Fab%2Fe0e7abbc278c479ea60884b471709177%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-10-09,1934-10-11,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/jesperson-language-nature-development/,"Language: Its Nature, Development, and Origin",,"Jesperson, Otto",1922,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/e0%2Fe7%2Fab%2Fe0e7abbc278c479ea60884b471709177%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-10-09,1934-10-19,https://shakespeareandco.princeton.edu/members/dennis-mary-cable/,Mary Cable Dennis / Mrs. A. L. P. Dennis,"Dennis, Mary Cable",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/birrell-six-women-world/,"Six Women of the World: Anna Comnena, Bianca Cappello, Christina of Sweden, La Duchesse Du Maine, Mrs. Montagu, Mary Shelley",,"Mitchison, Naomi;Bax, Clifford;Harrison, Ada;Birrell, Francis;Busse, John;Church, Richard",1930,,Lending Library Card,"Sylvia Beach, Mrs. A. L. P. Dennis (Mary Cable Dennis) Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/07d1ecd7-bf00-4e85-ae58-5c0f9cbe6648/manifest,https://iiif.princeton.edu/loris/figgy_prod/26%2Fb8%2Ff6%2F26b8f6aafcb745a5b28f88954199e6e2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-10-10,1934-10-25,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/forster-goldsworthy-lowes-dickinson/,Goldsworthy Lowes Dickinson,,"Forster, E. M.",1934,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/ca%2Fcc%2F7a%2Fcacc7a45f8bb4fef849b0017203955d8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-10-10,1934-10-13,https://shakespeareandco.princeton.edu/members/bonnerot-louis/,Louis Bonnerot,"Bonnerot, Louis",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/criterion/,The Criterion,,,,"Renamed *The New Criterion* from January 1926 to January 1927, and *The Monthly Criterion* from May 1927 to March 1928.",Lending Library Card,"Sylvia Beach, Louis Bonnerot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c14cc736-079c-4403-9036-a2de4743414a/manifest,https://iiif.princeton.edu/loris/figgy_prod/9f%2F6c%2F07%2F9f6c0714aef2411d8ae482314a2c165a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-10-10,1934-10-16,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/collier-defy-foul-fiend/,"Defy the Foul Fiend: Or, the Misadventures of a Heart",,"Collier, John",1934,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/ca%2Fcc%2F7a%2Fcacc7a45f8bb4fef849b0017203955d8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-10-10,1934-10-12,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/macaulay-potterism/,Potterism,,"Macaulay, Rose",1920,,Lending Library Card,"Sylvia Beach, Aline Prot's Lending Library Card in Antoinette Bernheim's File, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4a7d497b-2d1d-4e7a-8a3e-781160cbe998/manifest,https://iiif-cloud.princeton.edu/iiif/2/fe%2F14%2Fcf%2Ffe14cfe9ad0c49f3a7d0e7389cce9b9e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-10-10,1934-11-12,https://shakespeareandco.princeton.edu/members/wibbelz-henry/,Henry W. Wibbelz,"Wibbelz, Henry W.",,,,,,,,,Returned,33,,,https://shakespeareandco.princeton.edu/books/dostoyevsky-possessed/,The Possessed,,"Dostoyevsky, Fyodor",1872,,Lending Library Card,"Sylvia Beach, Henry W. Wibbelz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/225d5fc4-c83d-46e5-b861-ad36ae4548b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/8c%2Fa9%2Fdc%2F8ca9dcbd3cd34139a75596284e09e496%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-10-10,1934-10-12,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/hart-crooked-lane/,The Crooked Lane,,"Hart, Frances Noyes",1934,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/ca%2Fcc%2F7a%2Fcacc7a45f8bb4fef849b0017203955d8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-10-11,1934-10-18,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/fitzgerald-tender-night/,Tender Is the Night,,"Fitzgerald, F. Scott",1934,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e7%2F67%2Fe4%2Fe767e4aba183458d8491d96a49bd9896%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-10-11,1934-10-23,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/jesperson-growth-structure-english/,Growth and Structure of the English Language,,"Jesperson, Otto",1905,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/e0%2Fe7%2Fab%2Fe0e7abbc278c479ea60884b471709177%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-10-11,1934-10-18,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/firbank-artificial-princess/,The Artificial Princess,,"Firbank, Ronald",1934,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/e7%2F67%2Fe4%2Fe767e4aba183458d8491d96a49bd9896%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-10-12,1934-10-23,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/le-gallienne-33/,At 33,,"Le Gallienne, Eva",1934,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/a7%2F45%2F47%2Fa74547cd48204a11ac6cb55e08bf2c0c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-10-12,1934-10-16,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/mackworth-time-tide/,Time and Tide,,,,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/ca%2Fcc%2F7a%2Fcacc7a45f8bb4fef849b0017203955d8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-10-12,1934-10-22,https://shakespeareandco.princeton.edu/members/tony-mayer/,Thérèse Tony-Mayer,"Tony-Mayer, Thérèse",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/nijinsky-nijinsky/,Nijinsky,,"Nijinsky, Romola de Pulszky",1933,,Lending Library Card,"Sylvia Beach, Thérèse Tony-Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/27246b4c-7d99-4dca-b874-ab90bd542cfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/a1%2Fec%2Ff5%2Fa1ecf56bff2e4aefa5c17aaba1dcce85%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1934-10-12,1934-11-12,https://shakespeareandco.princeton.edu/members/crosse-p/,P. Crosse,"Crosse, P.",15.00,30.00,1 month,31,1,,1934-10-12,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1934-10-12,1934-10-26,https://shakespeareandco.princeton.edu/members/caillois/;https://shakespeareandco.princeton.edu/members/petitjean/,Roger Caillois;Armand Petitjean,"Caillois, Roger;Petitjean, Armand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/ford-best-plays-john/,The Best Plays of John Ford,,"Ford, John",1888,From the [Mermaid Series](https://seriesofseries.owu.edu/mermaid-series/).,Lending Library Card,"Sylvia Beach, Roger Caillois/ Armand Petitjean Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/58386f27-2a95-4138-a30e-4dde3aeb0aaa/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2F00%2Fcd%2F5e00cdaa323542559393d3d06aef50f8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-10-12,1934-10-23,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/froude-reign-queen-elizabeth/,The Reign of Queen Elizabeth,Vol. 2,"Froude, James Anthony",1911,Likely the Everyman's Library edition.,Lending Library Card,"Sylvia Beach, Aline Prot's Lending Library Card in Antoinette Bernheim's File, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4a7d497b-2d1d-4e7a-8a3e-781160cbe998/manifest,https://iiif-cloud.princeton.edu/iiif/2/fe%2F14%2Fcf%2Ffe14cfe9ad0c49f3a7d0e7389cce9b9e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-10-12,1934-10-17,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/hemingway-farewell-arms/,A Farewell to Arms,,"Hemingway, Ernest",1929,,Lending Library Card,"Sylvia Beach, Aline Prot's Lending Library Card in Antoinette Bernheim's File, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4a7d497b-2d1d-4e7a-8a3e-781160cbe998/manifest,https://iiif-cloud.princeton.edu/iiif/2/fe%2F14%2Fcf%2Ffe14cfe9ad0c49f3a7d0e7389cce9b9e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-10-12,1934-10-18,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/jesse-pin-see-peepshow/,A Pin to See the Peepshow,,"Jesse, F. Tennyson",1934,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/e6%2F43%2F11%2Fe643111d618f45aeb8829844d126a6c8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-10-12,1934-10-23,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/golding-doomington-wanderer/,The Doomington Wanderer,,"Golding, Louis",1934,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/a7%2F45%2F47%2Fa74547cd48204a11ac6cb55e08bf2c0c%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1934-10-12,1934-11-12,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",25.00,60.00,1 month,31,2,,1934-10-12,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,;https://iiif-cloud.princeton.edu/iiif/2/a7%2F45%2F47%2Fa74547cd48204a11ac6cb55e08bf2c0c%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1934-10-13,1934-10-13,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,,,5.00,FRF,https://shakespeareandco.princeton.edu/books/croly-new-republic/,The New Republic,,,,"Antoinette Bernheim's lending library card includes the following notation next to her borrow on March 1, 1939: 39/10/2. There is no issue of *The New Republic* on that date.",Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/1a%2F70%2Fc5%2F1a70c5f26391434ab607acb8b9b3e538%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1934-10-13,1934-10-13,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,,,3.00,FRF,https://shakespeareandco.princeton.edu/books/martin-new-statesman-nation/,The New Statesman and Nation,,,,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/1a%2F70%2Fc5%2F1a70c5f26391434ab607acb8b9b3e538%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-10-15,1934-12-14,https://shakespeareandco.princeton.edu/members/plummer-dorothy/,Dorothy Plummer,"Plummer, Dorothy",,,,,,,,,Returned,60,,,https://shakespeareandco.princeton.edu/books/hardy-jude-obscure/,Jude the Obscure,,"Hardy, Thomas",1895,,Lending Library Card,"Sylvia Beach, Dorothy Plummer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5f53ce0-8ea6-4d1f-b36b-f6e5321bab4c/manifest,https://iiif.princeton.edu/loris/figgy_prod/73%2F61%2F28%2F7361283a6eb946cbbb43d97ca38f1deb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-10-15,1934-11-03,https://shakespeareandco.princeton.edu/members/yarrow-catherine/,Catherine Yarrow,"Yarrow, Catherine",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/nietzsche-thus-spake-zarathustra/,Thus Spake Zarathustra: A Book for All and None,,"Nietzsche, Friedrich",1883,,Lending Library Card,"Sylvia Beach, Catherine Yarrow Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d0d522e7-9d4e-41ca-8b3b-8fe6ba58e334/manifest,https://iiif.princeton.edu/loris/figgy_prod/38%2Fe4%2F9e%2F38e49ec85ad54b1bb50df436efd43955%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-10-16,1934-10-25,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/wells-experiment-autobiography-discoveries/,Experiment in Autobiography: Discoveries and Conclusions of a Very Ordinary Brain (Since 1866),Vol. 1,"Wells, H. G.",1934,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/ca%2Fcc%2F7a%2Fcacc7a45f8bb4fef849b0017203955d8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-10-16,1934-10-19,https://shakespeareandco.princeton.edu/members/burt-maud/,Maud Burt,"Burt, Maud",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/saintsbury-prefaces-essays/,Prefaces and Essays,,"Saintsbury, George",1933,,Lending Library Card,"Sylvia Beach, Maud Burt Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/84402ab0-3135-4059-bd55-010e23394445/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2Fc8%2Fab%2F65c8ab878cfc46bbb6614d86cfecbf51%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-10-16,1934-10-19,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/freeman-defence-dr-thorndyke/,For the Defence; Dr. Thorndyke,,"Freeman, R. Austin",1934,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/ca%2Fcc%2F7a%2Fcacc7a45f8bb4fef849b0017203955d8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-10-17,1934-10-20,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/galsworthy-river/,Over the River (End of Chapter),,"Galsworthy, John",1933,,Lending Library Card,"Sylvia Beach, Aline Prot's Lending Library Card in Antoinette Bernheim's File, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4a7d497b-2d1d-4e7a-8a3e-781160cbe998/manifest,https://iiif-cloud.princeton.edu/iiif/2/fe%2F14%2Fcf%2Ffe14cfe9ad0c49f3a7d0e7389cce9b9e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-10-17,1934-10-28,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/death-august/,Death in August,,,,Unidentified. Likely William Faulkner's [*Light in August*](https://shakespeareandco.princeton.edu/books/faulkner-light-august/) (1932).,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/a5%2F6a%2F1c%2Fa56a1cb5380647fbab725eb33ac49f9a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1934-10-17,1934-11-17,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",40.00,,1 month,31,1,,1934-11-14,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/a5%2F6a%2F1c%2Fa56a1cb5380647fbab725eb33ac49f9a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1934-10-17,1934-10-17,https://shakespeareandco.princeton.edu/members/vurpilloi/,Vurpilloi,Vurpilloi,,,,,,,,30.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1934-10-19,1934-10-30,https://shakespeareandco.princeton.edu/members/dennis-mary-cable/,Mary Cable Dennis / Mrs. A. L. P. Dennis,"Dennis, Mary Cable",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/anthony-catherine-great/,Catherine the Great,,"Anthony, Katharine Susan",1925,,Lending Library Card,"Sylvia Beach, Mrs. A. L. P. Dennis (Mary Cable Dennis) Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/07d1ecd7-bf00-4e85-ae58-5c0f9cbe6648/manifest,https://iiif.princeton.edu/loris/figgy_prod/26%2Fb8%2Ff6%2F26b8f6aafcb745a5b28f88954199e6e2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-10-19,1934-10-26,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/connington-ha-ha-case/,The Ha-Ha Case,,"Connington, J. J.",1934,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/e6%2F43%2F11%2Fe643111d618f45aeb8829844d126a6c8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-10-19,1934-10-30,https://shakespeareandco.princeton.edu/members/dennis-mary-cable/,Mary Cable Dennis / Mrs. A. L. P. Dennis,"Dennis, Mary Cable",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/bentley-modern-tragedy/,A Modern Tragedy,,"Bentley, Phyllis Eleanor",1934,,Lending Library Card,"Sylvia Beach, Mrs. A. L. P. Dennis (Mary Cable Dennis) Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/07d1ecd7-bf00-4e85-ae58-5c0f9cbe6648/manifest,https://iiif.princeton.edu/loris/figgy_prod/26%2Fb8%2Ff6%2F26b8f6aafcb745a5b28f88954199e6e2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-10-19,,https://shakespeareandco.princeton.edu/members/burt-maud/,Maud Burt,"Burt, Maud",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/masefield-taking-gry/,The Taking of the Gry,,"Masefield, John",1934,,Lending Library Card,"Sylvia Beach, Maud Burt Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/84402ab0-3135-4059-bd55-010e23394445/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2Fc8%2Fab%2F65c8ab878cfc46bbb6614d86cfecbf51%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-10-19,1934-10-30,https://shakespeareandco.princeton.edu/members/dennis-mary-cable/,Mary Cable Dennis / Mrs. A. L. P. Dennis,"Dennis, Mary Cable",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/tilly-memoirs-comte-alexandre/,Memoirs of the Comte Alexandre de Tilly,,"Tilly, Alexandre de",1933,,Lending Library Card,"Sylvia Beach, Mrs. A. L. P. Dennis (Mary Cable Dennis) Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/07d1ecd7-bf00-4e85-ae58-5c0f9cbe6648/manifest,https://iiif.princeton.edu/loris/figgy_prod/26%2Fb8%2Ff6%2F26b8f6aafcb745a5b28f88954199e6e2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-10-20,1934-11-03,https://shakespeareandco.princeton.edu/members/prot/,Aline Prot,"Prot, Aline",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/galsworthy-dark-flower/,The Dark Flower,,"Galsworthy, John",1913,,Lending Library Card,"Sylvia Beach, Aline Prot's Lending Library Card in Antoinette Bernheim's File, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4a7d497b-2d1d-4e7a-8a3e-781160cbe998/manifest,https://iiif-cloud.princeton.edu/iiif/2/fe%2F14%2Fcf%2Ffe14cfe9ad0c49f3a7d0e7389cce9b9e%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1934-10-21,1934-11-21,https://shakespeareandco.princeton.edu/members/caillois/;https://shakespeareandco.princeton.edu/members/petitjean/,Roger Caillois;Armand Petitjean,"Caillois, Roger;Petitjean, Armand",512.00,,1 month,31,1,,1934-10-21,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Roger Caillois/ Armand Petitjean Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/58386f27-2a95-4138-a30e-4dde3aeb0aaa/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2F00%2Fcd%2F5e00cdaa323542559393d3d06aef50f8%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1934-10-22,1934-10-22,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,,,3.00,FRF,https://shakespeareandco.princeton.edu/books/martin-new-statesman-nation/,The New Statesman and Nation,,,,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/1a%2F70%2Fc5%2F1a70c5f26391434ab607acb8b9b3e538%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-10-22,1934-11-06,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/budgen-james-joyce-making/,James Joyce and the Making of Ulysses,,"Budgen, Frank",1934,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5d%2Fd5%2Fd7%2F5dd5d73d2e8b41eaa75eafd050537f72%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-10-22,1934-11-02,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/baring-lonely-lady-dulwich/,The Lonely Lady of Dulwich,,"Baring, Maurice",1934,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5d%2Fd5%2Fd7%2F5dd5d73d2e8b41eaa75eafd050537f72%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-10-22,1934-11-14,https://shakespeareandco.princeton.edu/members/guillemin-annie/,Annie Guillemin,"Guillemin, Annie",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/forster-howards-end/,Howards End,,"Forster, E. M.",1910,,Lending Library Card,"Sylvia Beach, Annie Guillemin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2d6019d9-34ed-4ca4-97a9-5fd05d8640a7/manifest,https://iiif.princeton.edu/loris/figgy_prod/5a%2Ffc%2F38%2F5afc38c7321c4497adcc378d8774e24d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-10-22,1934-11-27,https://shakespeareandco.princeton.edu/members/tony-mayer/,Thérèse Tony-Mayer,"Tony-Mayer, Thérèse",,,,,,,,,Returned,36,,,https://shakespeareandco.princeton.edu/books/huxley-beyond-mexique-bay/,Beyond the Mexique Bay,,"Huxley, Aldous",1934,,Lending Library Card,"Sylvia Beach, Thérèse Tony-Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/27246b4c-7d99-4dca-b874-ab90bd542cfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/a1%2Fec%2Ff5%2Fa1ecf56bff2e4aefa5c17aaba1dcce85%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1934-10-22,1934-10-22,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,,,5.00,FRF,https://shakespeareandco.princeton.edu/books/croly-new-republic/,The New Republic,,,,"Antoinette Bernheim's lending library card includes the following notation next to her borrow on March 1, 1939: 39/10/2. There is no issue of *The New Republic* on that date.",Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/1a%2F70%2Fc5%2F1a70c5f26391434ab607acb8b9b3e538%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-10-23,1934-11-19,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,27,,,https://shakespeareandco.princeton.edu/books/ford-nightingale/,It Was the Nightingale,,"Ford, Ford Madox",1933,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/a7%2F45%2F47%2Fa74547cd48204a11ac6cb55e08bf2c0c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-10-23,1934-11-03,https://shakespeareandco.princeton.edu/members/bernheim-antoinette/,Antoinette Bernheim,"Bernheim, Antoinette",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/joyce-dubliners/,Dubliners,,"Joyce, James",1914,,Lending Library Card,"Sylvia Beach, Antoinette Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5b0acd5e-3121-468b-8dc7-846b4a08dafb/manifest,https://iiif-cloud.princeton.edu/iiif/2/3d%2Ffd%2F92%2F3dfd92dc212a4912aa80151e98eea833%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-10-23,1934-11-14,https://shakespeareandco.princeton.edu/members/wilde-dorothy/,Dolly Wilde / Miss Dorothy Wilde,"Wilde, Dolly",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/fitzgerald-tender-night/,Tender Is the Night,,"Fitzgerald, F. Scott",1934,,Lending Library Card,"Sylvia Beach, Dorothy Wilde Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/eb6baa82-5eaa-490b-870d-ed4851bc7a52/manifest,https://iiif-cloud.princeton.edu/iiif/2/a7%2F45%2F47%2Fa74547cd48204a11ac6cb55e08bf2c0c%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1934-10-23,1934-10-23,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,60.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1934-10-24,1935-04-24,https://shakespeareandco.princeton.edu/members/vox-maximilien/,Maximilien Vox / Samuel William ThΓ©odore Monod / Mr. Monod-Vox,"Vox, Maximilien",70.00,,6 months,182,1,,1934-10-24,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Maximilien Vox Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd769a65-ce70-4407-accf-660fd5c71c29/manifest,https://iiif.princeton.edu/loris/figgy_prod/16%2Fa6%2Fa8%2F16a6a84e1eb944479fec1e280f2c60e2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1934-10-24,1934-11-24,https://shakespeareandco.princeton.edu/members/sonnabend-7/,Sonnabend,Sonnabend,15.00,,1 month,31,1,,1934-10-24,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1934-10-25,1934-10-29,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/mackworth-time-tide/,Time and Tide,,,,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/ca%2Fcc%2F7a%2Fcacc7a45f8bb4fef849b0017203955d8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-10-25,1934-10-26,https://shakespeareandco.princeton.edu/members/philipson/,Philipson,Philipson,,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/martin-new-statesman-nation/,The New Statesman and Nation,,,,,Lending Library Card,"Sylvia Beach, Philipson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6ec58e2b-c89a-4f64-a8f9-43cfac5b3be9/manifest,https://iiif.princeton.edu/loris/figgy_prod/32%2F01%2Fb3%2F3201b33aabb6473b886827c186f0d6ec%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-10-25,1934-10-29,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/martin-new-statesman-nation/,The New Statesman and Nation,,,,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/ca%2Fcc%2F7a%2Fcacc7a45f8bb4fef849b0017203955d8%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1934-10-25,1934-10-25,https://shakespeareandco.princeton.edu/members/cuvellier/,Anne Marie Cuvellier,"Cuvellier, Anne Marie",,,,,,,,30.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1934-10-25,1934-10-25,https://shakespeareandco.princeton.edu/members/alluirsi-jean/,Jean Alluirsi,"Alluirsi, Jean",,,,,,,,30.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1934-10-25,1934-10-31,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/obrien-ante-room/,The Ante-Room,,"O'Brien, Kate",1934,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/3a%2Fa5%2F3b%2F3aa53b27338545bfbc02b4bef71fd290%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-10-25,1934-10-29,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/aldington-women-must-work/,Women Must Work: A Novel,,"Aldington, Richard",1934,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/ca%2Fcc%2F7a%2Fcacc7a45f8bb4fef849b0017203955d8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-10-25,1934-10-26,https://shakespeareandco.princeton.edu/members/philipson/,Philipson,Philipson,,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/martin-new-statesman-nation/,The New Statesman and Nation,,,,,Lending Library Card,"Sylvia Beach, Philipson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6ec58e2b-c89a-4f64-a8f9-43cfac5b3be9/manifest,https://iiif.princeton.edu/loris/figgy_prod/32%2F01%2Fb3%2F3201b33aabb6473b886827c186f0d6ec%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-10-26,1934-11-13,https://shakespeareandco.princeton.edu/members/caillois/;https://shakespeareandco.princeton.edu/members/petitjean/,Roger Caillois;Armand Petitjean,"Caillois, Roger;Petitjean, Armand",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/croce-history-europe-nineteenth/,History of Europe in the Nineteenth Century,,"Croce, Benedetto",1933,,Lending Library Card,"Sylvia Beach, Roger Caillois/ Armand Petitjean Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/58386f27-2a95-4138-a30e-4dde3aeb0aaa/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2F00%2Fcd%2F5e00cdaa323542559393d3d06aef50f8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-10-26,1934-11-09,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/beresford-peckover/,Peckover,,"Beresford, J. D.",1934,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/e6%2F43%2F11%2Fe643111d618f45aeb8829844d126a6c8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-10-26,1934-11-07,https://shakespeareandco.princeton.edu/members/burt-maud/,Maud Burt,"Burt, Maud",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/fleming-brazilian-adventure/,Brazilian Adventure,,"Fleming, Peter",1933,,Lending Library Card,"Sylvia Beach, Maud Burt Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/84402ab0-3135-4059-bd55-010e23394445/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2Fc8%2Fab%2F65c8ab878cfc46bbb6614d86cfecbf51%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-10-26,1934-10-31,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/jesperson-growth-structure-english/,Growth and Structure of the English Language,,"Jesperson, Otto",1905,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/e0%2Fe7%2Fab%2Fe0e7abbc278c479ea60884b471709177%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-10-27,1934-11-08,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/baum-helene/,Helene,,"Baum, Vicki",1932,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/a5%2F6a%2F1c%2Fa56a1cb5380647fbab725eb33ac49f9a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-10-28,1934-11-14,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/anderson-beyond-desire/,Beyond Desire,,"Anderson, Sherwood",1932,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/a5%2F6a%2F1c%2Fa56a1cb5380647fbab725eb33ac49f9a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-10-29,1934-11-02,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/mendes-pitch-lake-story/,Pitch Lake: A Story from Trinidad,,"Mendes, Alfred Hubert",1934,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/ca%2Fcc%2F7a%2Fcacc7a45f8bb4fef849b0017203955d8%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1934-10-29,1934-10-29,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,,,10.00,FRF,https://shakespeareandco.princeton.edu/books/croly-new-republic/,The New Republic,,,,"Antoinette Bernheim's lending library card includes the following notation next to her borrow on March 1, 1939: 39/10/2. There is no issue of *The New Republic* on that date.",Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/1a%2F70%2Fc5%2F1a70c5f26391434ab607acb8b9b3e538%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1934-10-29,1934-10-29,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,,,3.00,FRF,https://shakespeareandco.princeton.edu/books/martin-new-statesman-nation/,The New Statesman and Nation,,,,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/1a%2F70%2Fc5%2F1a70c5f26391434ab607acb8b9b3e538%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-10-29,1934-11-07,https://shakespeareandco.princeton.edu/members/lamy-marthe/,Marthe Lamy,"Lamy, Marthe",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/richardson-backwater-pilgrimage-2/,Backwater (Pilgrimage 2),,"Richardson, Dorothy M.",1916,,Lending Library Card,"Sylvia Beach, Marthe Lamy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c715a1d2-668f-44c0-b48d-5f245d0752ba/manifest,https://iiif-cloud.princeton.edu/iiif/2/3b%2F2f%2Fe4%2F3b2fe425ed074e15a19472a16e67e511%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-10-29,1934-11-02,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/mackworth-time-tide/,Time and Tide,,,,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/ca%2Fcc%2F7a%2Fcacc7a45f8bb4fef849b0017203955d8%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1934-10-30,1934-10-30,https://shakespeareandco.princeton.edu/members/denoel-pierre/,Pierre Denoel,"Denoel, Pierre",,,,,,,,30.00,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Pierre Denoel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5638f32b-e6bb-41e9-b0c4-bd60d68fa1fd/manifest,https://iiif.princeton.edu/loris/figgy_prod/a3%2F96%2Fa9%2Fa396a935e8a544bd96145b13dbf85e3e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-10-30,1934-11-07,https://shakespeareandco.princeton.edu/members/denoel-pierre/,Pierre Denoel,"Denoel, Pierre",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/golding-doomington-wanderer/,The Doomington Wanderer,,"Golding, Louis",1934,,Lending Library Card,"Sylvia Beach, Pierre Denoel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5638f32b-e6bb-41e9-b0c4-bd60d68fa1fd/manifest,https://iiif.princeton.edu/loris/figgy_prod/a3%2F96%2Fa9%2Fa396a935e8a544bd96145b13dbf85e3e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-10-30,1934-11-19,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/faulkner-lay-dying/,As I Lay Dying,,"Faulkner, William",1930,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/94%2F03%2F1e%2F94031e37cbfb46c1993af351d4f6ea4c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-10-30,1934-11-19,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/bell-hamwood-papers-ladies/,The Hamwood Papers of the Ladies of Llangollen and Caroline Hamilton,,,1930,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/94%2F03%2F1e%2F94031e37cbfb46c1993af351d4f6ea4c%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1934-10-30,1934-11-30,https://shakespeareandco.princeton.edu/members/denoel-pierre/,Pierre Denoel,"Denoel, Pierre",25.00,30.00,1 month,31,1,,1934-10-30,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Pierre Denoel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/5638f32b-e6bb-41e9-b0c4-bd60d68fa1fd/manifest,;https://iiif.princeton.edu/loris/figgy_prod/a3%2F96%2Fa9%2Fa396a935e8a544bd96145b13dbf85e3e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-10-30,1934-11-19,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/lewis-dew-grass/,Dew on the Grass,,"Lewis, Eiluned",1934,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/94%2F03%2F1e%2F94031e37cbfb46c1993af351d4f6ea4c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-10-31,1934-11-08,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/delafield-provincial-lady-america/,The Provincial Lady in America,,"Delafield, E. M.",1934,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/3a%2Fa5%2F3b%2F3aa53b27338545bfbc02b4bef71fd290%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-10-31,1934-11-03,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/ford-return-yesterday/,To Return to Yesterday: Reminiscences 1894 βΒ 1914,,"Ford, Ford Madox",1931,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/e0%2Fe7%2Fab%2Fe0e7abbc278c479ea60884b471709177%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-11-02,1934-11-05,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/martin-new-statesman-nation/,The New Statesman and Nation,,,,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/ca%2Fcc%2F7a%2Fcacc7a45f8bb4fef849b0017203955d8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-11-02,1934-11-29,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,27,,,https://shakespeareandco.princeton.edu/books/yeats-letters-new-island/,Letters to the New Island,,"Yeats, William Butler",1934,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5d%2Fd5%2Fd7%2F5dd5d73d2e8b41eaa75eafd050537f72%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-11-02,1934-11-08,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/miles-blind-men-crossing/,Blind Men Crossing a Bridge,,"Miles, Susan",1934,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2Ffa%2F72%2F21fa72d047dc41398c298fa0522406e8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-11-02,1934-11-08,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/nicolson-peacemaking-1919/,Peacemaking 1919,,"Nicolson, Harold George",1933,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2Ffa%2F72%2F21fa72d047dc41398c298fa0522406e8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-11-02,1934-11-08,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/swift/,Swift,,,,"Unidentified. By or about Jonathan Swift. Likely Mario Rossi and Joseph M. Hone's *Swift: or, The Egotist* (1934).",Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2Ffa%2F72%2F21fa72d047dc41398c298fa0522406e8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-11-02,1934-11-05,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/mackworth-time-tide/,Time and Tide,,,,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/ca%2Fcc%2F7a%2Fcacc7a45f8bb4fef849b0017203955d8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-11-03,1934-11-15,https://shakespeareandco.princeton.edu/members/bernheim-antoinette/,Antoinette Bernheim,"Bernheim, Antoinette",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/hudson-green-mansions-romance/,Green Mansions: A Romance of the Tropical Forest,,"Hudson, W. H.",1904,,Lending Library Card,"Sylvia Beach, Antoinette Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5b0acd5e-3121-468b-8dc7-846b4a08dafb/manifest,https://iiif-cloud.princeton.edu/iiif/2/3d%2Ffd%2F92%2F3dfd92dc212a4912aa80151e98eea833%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-11-03,1934-11-09,https://shakespeareandco.princeton.edu/members/bernheim-antoinette/,Antoinette Bernheim,"Bernheim, Antoinette",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/lawrence-aarons-rod/,Aaron's Rod,,"Lawrence, D. H.",1922,,Lending Library Card,"Sylvia Beach, Antoinette Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5b0acd5e-3121-468b-8dc7-846b4a08dafb/manifest,https://iiif-cloud.princeton.edu/iiif/2/3d%2Ffd%2F92%2F3dfd92dc212a4912aa80151e98eea833%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1934-11-03,1935-05-03,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",70.00,30.00,6 months,181,1,,1934-11-03,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest,;https://iiif.princeton.edu/loris/figgy_prod/56%2F0d%2F24%2F560d24c0dfa94677ae04cf2db490c371%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-11-03,1934-11-28,https://shakespeareandco.princeton.edu/members/bernheim-francoise/,FranΓ§oise Bernheim,"Bernheim, FranΓ§oise",,,,,,,,,Returned,25,,,https://shakespeareandco.princeton.edu/books/kaye-smith-shepherds-sackcloth/,Shepherds in Sackcloth,,"Kaye-Smith, Sheila",1930,,Lending Library Card,"Sylvia Beach, FranΓ§oise Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5e7f717b-973d-41b9-8fbb-c14306386d92/manifest,https://iiif-cloud.princeton.edu/iiif/2/68%2F8d%2F3c%2F688d3c18dba14f33bb55ff95ea34e190%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-11-03,1934-12-01,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,Returned,28,,,https://shakespeareandco.princeton.edu/books/smith-words-idioms-studies/,Words and Idioms: Studies in the English Language,,"Smith, Logan Pearsall",1925,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/e0%2Fe7%2Fab%2Fe0e7abbc278c479ea60884b471709177%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-11-03,1934-11-13,https://shakespeareandco.princeton.edu/members/yarrow-catherine/,Catherine Yarrow,"Yarrow, Catherine",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/freud-totem-taboo/,Totem and Taboo,,"Freud, Sigmund",1919,,Lending Library Card,"Sylvia Beach, Catherine Yarrow Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d0d522e7-9d4e-41ca-8b3b-8fe6ba58e334/manifest,https://iiif.princeton.edu/loris/figgy_prod/38%2Fe4%2F9e%2F38e49ec85ad54b1bb50df436efd43955%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-11-03,1934-11-08,https://shakespeareandco.princeton.edu/members/yarrow-catherine/,Catherine Yarrow,"Yarrow, Catherine",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/spender-poems/,Poems,,"Spender, Stephen",1933,,Lending Library Card,"Sylvia Beach, Catherine Yarrow Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d0d522e7-9d4e-41ca-8b3b-8fe6ba58e334/manifest,https://iiif.princeton.edu/loris/figgy_prod/38%2Fe4%2F9e%2F38e49ec85ad54b1bb50df436efd43955%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-11-04,1934-11-05,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/synge-plays/,Plays,,"Synge, John Millington",,Suzanne Mespoulet borrowed the Tauchnitz edition of Synge's *Plays* (1922).,Lending Library Card,"Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F0d%2F24%2F560d24c0dfa94677ae04cf2db490c371%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-11-05,1934-11-06,https://shakespeareandco.princeton.edu/members/delimal/,Mme Delimal,"Delimal, Mme",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/national-geographic/,National Geographic,,,,,Lending Library Card,"Sylvia Beach, Madame Delimal Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d7650699-e9d7-4e63-85ff-bce7e9c8dfcd/manifest,https://iiif.princeton.edu/loris/figgy_prod/b1%2Fb8%2F67%2Fb1b8677417e54581bff1177dc38a8c7c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-11-05,1934-11-27,https://shakespeareandco.princeton.edu/members/delimal/,Mme Delimal,"Delimal, Mme",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/lawrence-rainbow/,The Rainbow,,"Lawrence, D. H.",1915,,Lending Library Card,"Sylvia Beach, Madame Delimal Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d7650699-e9d7-4e63-85ff-bce7e9c8dfcd/manifest,https://iiif.princeton.edu/loris/figgy_prod/b1%2Fb8%2F67%2Fb1b8677417e54581bff1177dc38a8c7c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1934-11-05,1934-12-05,https://shakespeareandco.princeton.edu/members/delimal/,Mme Delimal,"Delimal, Mme",15.00,,1 month,30,1,,1934-11-05,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Madame Delimal Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/d7650699-e9d7-4e63-85ff-bce7e9c8dfcd/manifest,;https://iiif.princeton.edu/loris/figgy_prod/b1%2Fb8%2F67%2Fb1b8677417e54581bff1177dc38a8c7c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-11-05,1934-12-04,https://shakespeareandco.princeton.edu/members/vox-maximilien/,Maximilien Vox / Samuel William ThΓ©odore Monod / Mr. Monod-Vox,"Vox, Maximilien",,,,,,,,,Returned,29,,,https://shakespeareandco.princeton.edu/books/lewis-man-knew-coolidge/,"The Man Who Knew Coolidge: Being the Soul of Lowell Schmaltz, Constructive and Nordic Citizen",,"Lewis, Sinclair",1928,,Lending Library Card,"Sylvia Beach, Maximilien Vox Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd769a65-ce70-4407-accf-660fd5c71c29/manifest,https://iiif.princeton.edu/loris/figgy_prod/16%2Fa6%2Fa8%2F16a6a84e1eb944479fec1e280f2c60e2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-11-05,1934-11-07,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/aldington-women-must-work/,Women Must Work: A Novel,,"Aldington, Richard",1934,,Lending Library Card,"Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F0d%2F24%2F560d24c0dfa94677ae04cf2db490c371%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-11-06,1934-11-09,https://shakespeareandco.princeton.edu/members/de-roos-elisabeth/;https://shakespeareandco.princeton.edu/members/perron-eddy/,Elisabeth de Roos / Mrs. du Perron;E. du Perron / Eddy du Perron,"de Roos, Elisabeth;du Perron, Eddy",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/leavis-scrutiny-quarterly-review/,Scrutiny: A Quarterly Review,"Vol. 2, no. 4, Mar, 1934",,,,Lending Library Card,"The lending library card of Charles Edgar βEddyβ du Perron and Elisabeth de Roos is part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Borrow,1934-11-06,1934-11-09,https://shakespeareandco.princeton.edu/members/de-roos-elisabeth/;https://shakespeareandco.princeton.edu/members/perron-eddy/,Elisabeth de Roos / Mrs. du Perron;E. du Perron / Eddy du Perron,"de Roos, Elisabeth;du Perron, Eddy",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/mitchison-vienna-diary/,Vienna Diary,,"Mitchison, Naomi",1934,,Lending Library Card,"The lending library card of Charles Edgar βEddyβ du Perron and Elisabeth de Roos is part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Subscription,1934-11-06,1934-12-06,https://shakespeareandco.princeton.edu/members/exideuil/,Pierre d'Exideuil,"d'Exideuil, Pierre",15.00,50.00,1 month,30,1,,1934-11-06,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Pierre d'Exideuil Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/04d706fd-7092-4310-bbbc-bad04c7772dd/manifest,;https://iiif.princeton.edu/loris/figgy_prod/e4%2F56%2F47%2Fe45647ee52cd4cbe935c2fd2d58581af%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1934-11-06,1934-12-06,https://shakespeareandco.princeton.edu/members/de-roos-elisabeth/;https://shakespeareandco.princeton.edu/members/perron-eddy/,Elisabeth de Roos / Mrs. du Perron;E. du Perron / Eddy du Perron,"de Roos, Elisabeth;du Perron, Eddy",22.50,30.00,1 month,30,1,,1934-11-06,,,,,FRF,,,,,,,Lending Library Card,"The lending library card of Charles Edgar βEddyβ du Perron and Elisabeth de Roos is part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Borrow,1934-11-06,1934-11-16,https://shakespeareandco.princeton.edu/members/exideuil/,Pierre d'Exideuil,"d'Exideuil, Pierre",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/summers-restoration-comedies/,Restoration Comedies,,"Killigrew, Thomas;Ravenscroft, Edward;Crown, John",1921,,Lending Library Card,"Sylvia Beach, Pierre d'Exideuil Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04d706fd-7092-4310-bbbc-bad04c7772dd/manifest,https://iiif.princeton.edu/loris/figgy_prod/e4%2F56%2F47%2Fe45647ee52cd4cbe935c2fd2d58581af%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-11-06,1934-11-15,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/oflaherty-shame-devil/,Shame the Devil,,"O'Flaherty, Liam",1934,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5d%2Fd5%2Fd7%2F5dd5d73d2e8b41eaa75eafd050537f72%2Fintermediate_file/full/full/0/default.jpg
+Separate Payment,1934-11-06,1934-11-06,https://shakespeareandco.princeton.edu/members/samson-2/,Samson,Samson,62.00,,,,,,1934-11-06,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1934-11-07,1934-11-28,https://shakespeareandco.princeton.edu/members/denoel-pierre/,Pierre Denoel,"Denoel, Pierre",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/best-adventure-story/,My Best Adventure Story: An Anthology of Stories Chosen by Their Own Authors,,,1934,,Lending Library Card,"Sylvia Beach, Pierre Denoel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5638f32b-e6bb-41e9-b0c4-bd60d68fa1fd/manifest,https://iiif.princeton.edu/loris/figgy_prod/a3%2F96%2Fa9%2Fa396a935e8a544bd96145b13dbf85e3e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-11-07,1934-11-28,https://shakespeareandco.princeton.edu/members/denoel-pierre/,Pierre Denoel,"Denoel, Pierre",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/dickson-lovat-dicksons-magazine/,Lovat Dickson's Magazine,"Vol. 2, no. 4, Apr 1934",,,,Lending Library Card,"Sylvia Beach, Pierre Denoel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5638f32b-e6bb-41e9-b0c4-bd60d68fa1fd/manifest,https://iiif.princeton.edu/loris/figgy_prod/a3%2F96%2Fa9%2Fa396a935e8a544bd96145b13dbf85e3e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1934-11-07,1934-11-07,https://shakespeareandco.princeton.edu/members/banelet-mme/,Mme Barrelet,"Barrelet, Mme",,,,,,,,30.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1934-11-07,1934-11-29,https://shakespeareandco.princeton.edu/members/burt-maud/,Maud Burt,"Burt, Maud",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/mackenzie-darkening-green/,The Darkening Green,,"Mackenzie, Compton",1934,,Lending Library Card,"Sylvia Beach, Maud Burt Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/84402ab0-3135-4059-bd55-010e23394445/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2Fc8%2Fab%2F65c8ab878cfc46bbb6614d86cfecbf51%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-11-07,1934-11-10,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/crane-bridge/,The Bridge,,"Crane, Hart",1930,,Lending Library Card,"Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F0d%2F24%2F560d24c0dfa94677ae04cf2db490c371%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1934-11-07,1934-12-07,https://shakespeareandco.princeton.edu/members/lamy-marthe/,Marthe Lamy,"Lamy, Marthe",12.00,,1 month,30,1,,1934-11-07,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Marthe Lamy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c715a1d2-668f-44c0-b48d-5f245d0752ba/manifest,https://iiif-cloud.princeton.edu/iiif/2/3b%2F2f%2Fe4%2F3b2fe425ed074e15a19472a16e67e511%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-11-07,,https://shakespeareandco.princeton.edu/members/lamy-marthe/,Marthe Lamy,"Lamy, Marthe",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/richardson-honeycomb-pilgrimage-3/,Honeycomb (Pilgrimage 3),,"Richardson, Dorothy M.",1917,,Lending Library Card,"Sylvia Beach, Marthe Lamy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c715a1d2-668f-44c0-b48d-5f245d0752ba/manifest,https://iiif-cloud.princeton.edu/iiif/2/3b%2F2f%2Fe4%2F3b2fe425ed074e15a19472a16e67e511%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-11-08,1934-11-19,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/wells-experiment-autobiography-discoveries/,Experiment in Autobiography: Discoveries and Conclusions of a Very Ordinary Brain (Since 1866),Vol. 2,"Wells, H. G.",1934,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2Ffa%2F72%2F21fa72d047dc41398c298fa0522406e8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-11-08,1934-11-19,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/james-alice-james-brothers/,"Alice James: Her Brothers, Her Journal",,"James, Alice",1934,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2Ffa%2F72%2F21fa72d047dc41398c298fa0522406e8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-11-08,1934-11-16,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/miles-blind-men-crossing/,Blind Men Crossing a Bridge,,"Miles, Susan",1934,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/3a%2Fa5%2F3b%2F3aa53b27338545bfbc02b4bef71fd290%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-11-08,1934-11-10,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/martin-new-statesman-nation/,The New Statesman and Nation,,,,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2Ffa%2F72%2F21fa72d047dc41398c298fa0522406e8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-11-08,1934-11-14,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/callaghan-broken-journey/,A Broken Journey,,"Callaghan, Morley",1932,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/a5%2F6a%2F1c%2Fa56a1cb5380647fbab725eb33ac49f9a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-11-09,1934-11-29,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/burnett-story-anthology-1931/,"A Story Anthology, 1931 β 1933",,,1933,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/e6%2F43%2F11%2Fe643111d618f45aeb8829844d126a6c8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-11-09,,https://shakespeareandco.princeton.edu/members/bernheim-antoinette/,Antoinette Bernheim,"Bernheim, Antoinette",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/lawrence-women-love/,Women in Love,,"Lawrence, D. H.",1920,,Lending Library Card,"Sylvia Beach, Antoinette Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5b0acd5e-3121-468b-8dc7-846b4a08dafb/manifest,https://iiif-cloud.princeton.edu/iiif/2/3d%2Ffd%2F92%2F3dfd92dc212a4912aa80151e98eea833%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1934-11-09,1934-12-09,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",15.00,,1 month,30,1,,1934-10-23,,,,,FRF,,,,,,,Lending Library Card;Logbook,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest;,https://iiif.princeton.edu/loris/figgy_prod/9d%2F97%2F6e%2F9d976e57833f41c3b362aafa315a35e5%2Fintermediate_file.jp2/full/full/0/default.jpg;
+Borrow,1934-11-09,1934-11-13,https://shakespeareandco.princeton.edu/members/de-roos-elisabeth/;https://shakespeareandco.princeton.edu/members/perron-eddy/,Elisabeth de Roos / Mrs. du Perron;E. du Perron / Eddy du Perron,"de Roos, Elisabeth;du Perron, Eddy",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/richardson-end-childhood-stories/,The End of a Childhood and Other Stories,,"Richardson, Henry Handel",1934,,Lending Library Card,"The lending library card of Charles Edgar βEddyβ du Perron and Elisabeth de Roos is part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Borrow,1934-11-10,1934-11-16,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/zweig-erasmus-rotterdam/,Erasmus of Rotterdam,,"Zweig, Stefan",1934,,Lending Library Card,"Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F0d%2F24%2F560d24c0dfa94677ae04cf2db490c371%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-11-10,1934-11-12,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/grigson-new-verse/,New Verse,"no. 11, Oct 1934",,,,Lending Library Card,"Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F0d%2F24%2F560d24c0dfa94677ae04cf2db490c371%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-11-10,1934-11-13,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/mackworth-time-tide/,Time and Tide,"Vol. 15, no. 45, Nov 10, 1934",,,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2Ffa%2F72%2F21fa72d047dc41398c298fa0522406e8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-11-10,1934-11-14,https://shakespeareandco.princeton.edu/members/wibbelz-henry/,Henry W. Wibbelz,"Wibbelz, Henry W.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/pinero-second-mrs-tanqueray/,The Second Mrs. Tanqueray: A Play,,"Pinero, Arthur Wing",1894,,Lending Library Card,"Sylvia Beach, Henry W. Wibbelz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/225d5fc4-c83d-46e5-b861-ad36ae4548b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/8c%2Fa9%2Fdc%2F8ca9dcbd3cd34139a75596284e09e496%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-11-10,1934-11-13,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/martin-new-statesman-nation/,The New Statesman and Nation,,,,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2Ffa%2F72%2F21fa72d047dc41398c298fa0522406e8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-11-13,1934-11-18,https://shakespeareandco.princeton.edu/members/yarrow-catherine/,Catherine Yarrow,"Yarrow, Catherine",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/ellis-analysis-sexual-impulse/,Analysis of the Sexual Impulse; Love and Pain; The Sexual Impulse in Women (Studies in the Psychology of Sex 3),,"Ellis, Havelock",1903,,Lending Library Card,"Sylvia Beach, Catherine Yarrow Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d0d522e7-9d4e-41ca-8b3b-8fe6ba58e334/manifest,https://iiif.princeton.edu/loris/figgy_prod/38%2Fe4%2F9e%2F38e49ec85ad54b1bb50df436efd43955%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-11-13,1934-11-18,https://shakespeareandco.princeton.edu/members/yarrow-catherine/,Catherine Yarrow,"Yarrow, Catherine",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/ellis-eonism-supplementary-studies/,Eonism and Other Supplementary Studies (Studies in the Psychology of Sex 7),,"Ellis, Havelock",1928,,Lending Library Card,"Sylvia Beach, Catherine Yarrow Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d0d522e7-9d4e-41ca-8b3b-8fe6ba58e334/manifest,https://iiif.princeton.edu/loris/figgy_prod/38%2Fe4%2F9e%2F38e49ec85ad54b1bb50df436efd43955%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-11-13,1934-11-22,https://shakespeareandco.princeton.edu/members/de-roos-elisabeth/;https://shakespeareandco.princeton.edu/members/perron-eddy/,Elisabeth de Roos / Mrs. du Perron;E. du Perron / Eddy du Perron,"de Roos, Elisabeth;du Perron, Eddy",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/sackville-west-dark-island/,The Dark Island,,"Sackville-West, Vita",1934,,Lending Library Card,"The lending library card of Charles Edgar βEddyβ du Perron and Elisabeth de Roos is part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Borrow,1934-11-13,1934-11-26,https://shakespeareandco.princeton.edu/members/caillois/;https://shakespeareandco.princeton.edu/members/petitjean/,Roger Caillois;Armand Petitjean,"Caillois, Roger;Petitjean, Armand",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/day-lewis-hope-poetry/,A Hope for Poetry,,"Day Lewis, C.",1934,,Lending Library Card,"Sylvia Beach, Roger Caillois/ Armand Petitjean Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/58386f27-2a95-4138-a30e-4dde3aeb0aaa/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2F00%2Fcd%2F5e00cdaa323542559393d3d06aef50f8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-11-14,1934-12-01,https://shakespeareandco.princeton.edu/members/wibbelz-henry/,Henry W. Wibbelz,"Wibbelz, Henry W.",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/gide-dostoevsky/,Dostoevsky,,"Gide, AndrΓ©",1925,,Lending Library Card,"Sylvia Beach, Henry W. Wibbelz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/225d5fc4-c83d-46e5-b861-ad36ae4548b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/30%2Fd6%2F9f%2F30d69f3cae0d4af189b9671bc81dbde3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-11-14,1934-11-23,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/ashton-belinda-grove/,Belinda Grove,,"Ashton, Helen",1932,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/a5%2F6a%2F1c%2Fa56a1cb5380647fbab725eb33ac49f9a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-11-14,1934-11-17,https://shakespeareandco.princeton.edu/members/guillemin-annie/,Annie Guillemin,"Guillemin, Annie",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/golding-doomington-wanderer/,The Doomington Wanderer,,"Golding, Louis",1934,,Lending Library Card,"Sylvia Beach, Annie Guillemin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2d6019d9-34ed-4ca4-97a9-5fd05d8640a7/manifest,https://iiif.princeton.edu/loris/figgy_prod/5a%2Ffc%2F38%2F5afc38c7321c4497adcc378d8774e24d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-11-14,1934-11-28,https://shakespeareandco.princeton.edu/members/mcgrew-marie-carroll/,Marie Carroll McGrew / Mrs. Tarn McGrew,"McGrew, Marie Carroll",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/sackville-west-family-history/,Family History,,"Sackville-West, Vita",1932,,Lending Library Card,"Sylvia Beach, Marie Carroll McGrew Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ebf5ee3-31a8-45e8-b769-91d617456b0a/manifest,https://iiif.princeton.edu/loris/figgy_prod/a5%2F6a%2F1c%2Fa56a1cb5380647fbab725eb33ac49f9a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1934-11-15,,https://shakespeareandco.princeton.edu/members/ladieu/,Ladieu,Ladieu,40.00,10.00,,,,,1934-11-15,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1934-11-15,1934-11-29,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/forster-goldsworthy-lowes-dickinson/,Goldsworthy Lowes Dickinson,,"Forster, E. M.",1934,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5d%2Fd5%2Fd7%2F5dd5d73d2e8b41eaa75eafd050537f72%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-11-15,1934-12-03,https://shakespeareandco.princeton.edu/members/bidoire-boulenger/,Miss Boulenger / Mme Bidoire,"Bidoire, Mme",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/thompson-breakfast-bed/,Breakfast in Bed,,"Thompson, Sylvia",1934,,Lending Library Card,"Sylvia Beach, Boulenger Bidoire Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7f3ef4f0-6ce0-43d1-b96a-1328f891536c/manifest,https://iiif-cloud.princeton.edu/iiif/2/4b%2F5b%2Fe1%2F4b5be155079545a19ff743d77214f7b8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-11-15,1934-12-01,https://shakespeareandco.princeton.edu/members/bernheim-antoinette/,Antoinette Bernheim,"Bernheim, Antoinette",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/flecker-hassan/,Hassan,,"Flecker, James Elroy",1922,,Lending Library Card,"Sylvia Beach, Antoinette Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5b0acd5e-3121-468b-8dc7-846b4a08dafb/manifest,https://iiif-cloud.princeton.edu/iiif/2/3d%2Ffd%2F92%2F3dfd92dc212a4912aa80151e98eea833%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-11-15,1934-11-29,https://shakespeareandco.princeton.edu/members/bernheim-antoinette/,Antoinette Bernheim,"Bernheim, Antoinette",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/shaw-apple-cart-political/,The Apple Cart: A Political Extravaganza,,"Shaw, George Bernard",1930,,Lending Library Card,"Sylvia Beach, Antoinette Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5b0acd5e-3121-468b-8dc7-846b4a08dafb/manifest,https://iiif-cloud.princeton.edu/iiif/2/3d%2Ffd%2F92%2F3dfd92dc212a4912aa80151e98eea833%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-11-16,1934-11,https://shakespeareandco.princeton.edu/members/exideuil/,Pierre d'Exideuil,"d'Exideuil, Pierre",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/eliot-selected-essays-1917/,"Selected Essays, 1917 β 1932",,"Eliot, T. S.",1932,,Lending Library Card,"Sylvia Beach, Pierre d'Exideuil Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04d706fd-7092-4310-bbbc-bad04c7772dd/manifest,https://iiif.princeton.edu/loris/figgy_prod/e4%2F56%2F47%2Fe45647ee52cd4cbe935c2fd2d58581af%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-11-16,1934-11-26,https://shakespeareandco.princeton.edu/members/peake-catherine/;https://shakespeareandco.princeton.edu/members/peake-charles/,Catherine Marie Knight Peake / Mrs. Charles Peake;Charles Peake,"Peake, Catherine;Peake, Charles",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/johnson-pirate-junk-five/,Pirate Junk: Five Months Captivity with Manchurian Bandits,,"Johnson, Clifford",1934,,Lending Library Card,"Sylvia Beach, Charles Peake Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5e8684f0-17db-4d9b-8414-54b5c4613b10/manifest,https://iiif.princeton.edu/loris/figgy_prod/0c%2F02%2Fd3%2F0c02d36d98844871b535b29804599544%2Fintermediate_file.jp2/full/full/0/default.jpg
+Crossed out,1934-11-16,,https://shakespeareandco.princeton.edu/members/peake-catherine/;https://shakespeareandco.princeton.edu/members/peake-charles/,Catherine Marie Knight Peake / Mrs. Charles Peake;Charles Peake,"Peake, Catherine;Peake, Charles",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/joyce-ulysses/,Ulysses,,"Joyce, James",1922,,Lending Library Card,"Sylvia Beach, Charles Peake Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5e8684f0-17db-4d9b-8414-54b5c4613b10/manifest,https://iiif.princeton.edu/loris/figgy_prod/0c%2F02%2Fd3%2F0c02d36d98844871b535b29804599544%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-11-16,1934-11-22,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/stein-autobiography-alice-b/,The Autobiography of Alice B. Toklas,,"Stein, Gertrude",1933,,Lending Library Card,"Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F0d%2F24%2F560d24c0dfa94677ae04cf2db490c371%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-11-16,1934-11-23,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/nijinsky-nijinsky/,Nijinsky,,"Nijinsky, Romola de Pulszky",1933,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/3a%2Fa5%2F3b%2F3aa53b27338545bfbc02b4bef71fd290%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1934-11-17,1934-12-17,https://shakespeareandco.princeton.edu/members/rirachowsky-fanny/,Fanny Rirachowsky,"Rirachowsky, Fanny",15.00,,1 month,30,1,,1934-11-17,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Fanny Rirachowsky Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ed53891-0a1b-4bc4-8b10-d7d32f46663a/manifest,https://iiif-cloud.princeton.edu/iiif/2/f0%2F00%2F80%2Ff00080476a8a4a4bb23537892b912580%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-11-17,1934-11-22,https://shakespeareandco.princeton.edu/members/rirachowsky-fanny/,Fanny Rirachowsky,"Rirachowsky, Fanny",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/buck-good-earth/,The Good Earth,,"Buck, Pearl S.",1931,,Lending Library Card,"Sylvia Beach, Fanny Rirachowsky Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ed53891-0a1b-4bc4-8b10-d7d32f46663a/manifest,https://iiif-cloud.princeton.edu/iiif/2/f0%2F00%2F80%2Ff00080476a8a4a4bb23537892b912580%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1934-11-17,1934-12-17,https://shakespeareandco.princeton.edu/members/prochasson/,Alice Prochasson,"Prochasson, Alice",15.00,30.00,1 month,30,1,,1934-11-17,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Alice Prochasson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/341b2429-d37f-490f-aa21-167ae02af0db/manifest,https://iiif.princeton.edu/loris/figgy_prod/86%2F6c%2F0f%2F866c0fa9caf446f083cc6c5b953fc93c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1934-11-17,1934-11-17,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,,,3.00,FRF,https://shakespeareandco.princeton.edu/books/martin-new-statesman-nation/,The New Statesman and Nation,,,,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5d%2Fd5%2Fd7%2F5dd5d73d2e8b41eaa75eafd050537f72%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-11-17,1934-11-20,https://shakespeareandco.princeton.edu/members/prochasson/,Alice Prochasson,"Prochasson, Alice",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/richardson-pointed-roofs/,Pointed Roofs (Pilgrimage 1),,"Richardson, Dorothy M.",1915,,Lending Library Card,"Sylvia Beach, Alice Prochasson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/341b2429-d37f-490f-aa21-167ae02af0db/manifest,https://iiif.princeton.edu/loris/figgy_prod/86%2F6c%2F0f%2F866c0fa9caf446f083cc6c5b953fc93c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-11-17,1934-12-01,https://shakespeareandco.princeton.edu/members/guillemin-annie/,Annie Guillemin,"Guillemin, Annie",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/anderson-beyond-desire/,Beyond Desire,,"Anderson, Sherwood",1932,,Lending Library Card,"Sylvia Beach, Annie Guillemin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2d6019d9-34ed-4ca4-97a9-5fd05d8640a7/manifest,https://iiif.princeton.edu/loris/figgy_prod/5a%2Ffc%2F38%2F5afc38c7321c4497adcc378d8774e24d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-11-18,1934-12-10,https://shakespeareandco.princeton.edu/members/yarrow-catherine/,Catherine Yarrow,"Yarrow, Catherine",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/blake-blakes-works/,Willam Blake's Works,,"Blake, William",,"At least three editions of Blake's collected works circulated in the lending library. Monique de Vigan borrowed The Poetical Works of William Blake, edited by William Michael Rossetti (Bell, 1874). Jean PrΓ©vost, John Rodker, Guy de Pourtales, Catherine Yarrow, Ella Cassigne, FranΓ§oise Bernheim, and Francoise de Marcilly (in 1939) borrowed The Poetical Works of William Blake, edited by John Sampson (Oxford, 1905). Armand Petitjean, Antoinette Bernheim, and Francoise de Marcilly (in 1938) borrowed Poetry and Prose of William Blake, edited by Geoffrey Keynes (Nonesuch, 1927).",Lending Library Card,"Sylvia Beach, Catherine Yarrow Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d0d522e7-9d4e-41ca-8b3b-8fe6ba58e334/manifest,https://iiif.princeton.edu/loris/figgy_prod/38%2Fe4%2F9e%2F38e49ec85ad54b1bb50df436efd43955%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-11-19,1934-11-21,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/mackworth-time-tide/,Time and Tide,"Vol. 15, no. 46, Nov 17, 1934",,,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2Ffa%2F72%2F21fa72d047dc41398c298fa0522406e8%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1934-11-19,1934-11-19,https://shakespeareandco.princeton.edu/members/crosse-p/,P. Crosse,"Crosse, P.",,,,,,,,30.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1934-11-19,1934-11-21,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/martin-new-statesman-nation/,The New Statesman and Nation,"Vol. 8, no. 195, Nov 17, 1934",,,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2Ffa%2F72%2F21fa72d047dc41398c298fa0522406e8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-11-19,1934-11-27,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/lawrence-lost-girl/,The Lost Girl,,"Lawrence, D. H.",1920,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/94%2F03%2F1e%2F94031e37cbfb46c1993af351d4f6ea4c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-11-19,1934-11-27,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/huxley-music-night-stories/,Music at Night and Other Essays,,"Huxley, Aldous",1931,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/94%2F03%2F1e%2F94031e37cbfb46c1993af351d4f6ea4c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-11-20,1934-12-21,https://shakespeareandco.princeton.edu/members/prochasson/,Alice Prochasson,"Prochasson, Alice",,,,,,,,,Returned,31,,,https://shakespeareandco.princeton.edu/books/richardson-tunnel-pilgrimage-4/,The Tunnel (Pilgrimage 4),,"Richardson, Dorothy M.",1919,,Lending Library Card,"Sylvia Beach, Alice Prochasson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/341b2429-d37f-490f-aa21-167ae02af0db/manifest,https://iiif.princeton.edu/loris/figgy_prod/86%2F6c%2F0f%2F866c0fa9caf446f083cc6c5b953fc93c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-11-20,1934-12-06,https://shakespeareandco.princeton.edu/members/prochasson/,Alice Prochasson,"Prochasson, Alice",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/richardson-honeycomb-pilgrimage-3/,Honeycomb (Pilgrimage 3),,"Richardson, Dorothy M.",1917,,Lending Library Card,"Sylvia Beach, Alice Prochasson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/341b2429-d37f-490f-aa21-167ae02af0db/manifest,https://iiif.princeton.edu/loris/figgy_prod/86%2F6c%2F0f%2F866c0fa9caf446f083cc6c5b953fc93c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-11-20,1934-12-14,https://shakespeareandco.princeton.edu/members/lamy-marthe/,Marthe Lamy,"Lamy, Marthe",,,,,,,,,Returned,24,,,https://shakespeareandco.princeton.edu/books/herbert-holy-deadlock/,Holy Deadlock,,"Herbert, A. P.",1934,,Lending Library Card,"Sylvia Beach, Marthe Lamy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c715a1d2-668f-44c0-b48d-5f245d0752ba/manifest,https://iiif-cloud.princeton.edu/iiif/2/3b%2F2f%2Fe4%2F3b2fe425ed074e15a19472a16e67e511%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-11-20,1934-12-03,https://shakespeareandco.princeton.edu/members/wendel/,Hélène de Wendel / Comtesse de Noailles,"de Wendel, Hélène",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/jerome-passing-third-floor/,The Passing of the Third Floor Back,,"Jerome, Jerome K.",1908,,Lending Library Card,"Sylvia Beach, Madame Hélène Wendel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c70e230a-8313-4c53-9939-22beb5f809b6/manifest,https://iiif-cloud.princeton.edu/iiif/2/8a%2Fbe%2Fec%2F8abeec2451b647e0954a7a53d5eae991%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-11-20,1934-12-03,https://shakespeareandco.princeton.edu/members/wendel/,Hélène de Wendel / Comtesse de Noailles,"de Wendel, Hélène",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/grierson-background-english-literature/,The Background of English Literature,,"Grierson, H. J. C.",1926,,Lending Library Card,"Sylvia Beach, Madame Hélène Wendel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c70e230a-8313-4c53-9939-22beb5f809b6/manifest,https://iiif-cloud.princeton.edu/iiif/2/8a%2Fbe%2Fec%2F8abeec2451b647e0954a7a53d5eae991%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1934-11-20,1935-05-20,https://shakespeareandco.princeton.edu/members/wendel/,HΓ©lΓ¨ne de Wendel / Comtesse de Noailles,"de Wendel, HΓ©lΓ¨ne",,60.00,6 months,181,2,,1934-11-20,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Madame HΓ©lΓ¨ne Wendel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/c70e230a-8313-4c53-9939-22beb5f809b6/manifest,;https://iiif-cloud.princeton.edu/iiif/2/8a%2Fbe%2Fec%2F8abeec2451b647e0954a7a53d5eae991%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-11-21,1934-11-26,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/arnim-jasmine-farm/,Jasmine Farm,,"Arnim, Elizabeth von",1934,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2Ffa%2F72%2F21fa72d047dc41398c298fa0522406e8%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1934-11-21,1934-12-21,https://shakespeareandco.princeton.edu/members/caillois/;https://shakespeareandco.princeton.edu/members/petitjean/,Roger Caillois;Armand Petitjean,"Caillois, Roger;Petitjean, Armand",15.00,,1 month,30,1,,1934-11-21,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Roger Caillois/ Armand Petitjean Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/58386f27-2a95-4138-a30e-4dde3aeb0aaa/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2F00%2Fcd%2F5e00cdaa323542559393d3d06aef50f8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-11-21,1934-11-26,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/van-dine-casino-murder-case/,The Casino Murder Case: A Philo Vance Mystery,,"Van Dine, S. S.",1934,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2Ffa%2F72%2F21fa72d047dc41398c298fa0522406e8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-11-21,1934-11-28,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/famous-plays-1934/,Famous Plays of 1934,,,1934,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2Ffa%2F72%2F21fa72d047dc41398c298fa0522406e8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-11-22,1934-12-03,https://shakespeareandco.princeton.edu/members/de-roos-elisabeth/;https://shakespeareandco.princeton.edu/members/perron-eddy/,Elisabeth de Roos / Mrs. du Perron;E. du Perron / Eddy du Perron,"de Roos, Elisabeth;du Perron, Eddy",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/miles-blind-men-crossing/,Blind Men Crossing a Bridge,,"Miles, Susan",1934,,Lending Library Card,"The lending library card of Charles Edgar βEddyβ du Perron and Elisabeth de Roos is part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Borrow,1934-11-22,1934-11-29,https://shakespeareandco.princeton.edu/members/rirachowsky-fanny/,Fanny Rirachowsky,"Rirachowsky, Fanny",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/woolf-orlando-biography/,Orlando: A Biography,,"Woolf, Virginia",1928,,Lending Library Card,"Sylvia Beach, Fanny Rirachowsky Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ed53891-0a1b-4bc4-8b10-d7d32f46663a/manifest,https://iiif-cloud.princeton.edu/iiif/2/f0%2F00%2F80%2Ff00080476a8a4a4bb23537892b912580%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-11-22,1934-11-24,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/rice-plays-elmer-rice/,"Plays of Elmer Rice: Containing the Adding Machine, Street Scene, See Naples and Die, Counsellor-at-Law",,"Rice, Elmer",1933,,Lending Library Card,"Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F0d%2F24%2F560d24c0dfa94677ae04cf2db490c371%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1934-11-23,1934-11-23,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,,,3.00,FRF,https://shakespeareandco.princeton.edu/books/martin-new-statesman-nation/,The New Statesman and Nation,,,,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5d%2Fd5%2Fd7%2F5dd5d73d2e8b41eaa75eafd050537f72%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-11-23,1934-11-29,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/wells-experiment-autobiography-discoveries/,Experiment in Autobiography: Discoveries and Conclusions of a Very Ordinary Brain (Since 1866),Vol. 1,"Wells, H. G.",1934,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/3a%2Fa5%2F3b%2F3aa53b27338545bfbc02b4bef71fd290%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,,1934-11-23,https://shakespeareandco.princeton.edu/members/van-den-bergh/,Tamara van den Bergh,"van den Bergh, Tamara",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/woolf-mrs-dalloway/,Mrs. Dalloway,,"Woolf, Virginia",1925,,Lending Library Card,"Sylvia Beach, Miss Tamara van den Bergh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f3a52627-dc5d-410b-aa7f-9d39941f18e8/manifest,https://iiif.princeton.edu/loris/figgy_prod/a0%2F23%2Fb2%2Fa023b2f9c3894186bed79a0ae0ef2a90%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-11-23,1934-12-11,https://shakespeareandco.princeton.edu/members/van-den-bergh/,Tamara van den Bergh,"van den Bergh, Tamara",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/lewis-babbitt/,Babbitt,,"Lewis, Sinclair",1922,,Lending Library Card,"Sylvia Beach, Miss Tamara van den Bergh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f3a52627-dc5d-410b-aa7f-9d39941f18e8/manifest,https://iiif.princeton.edu/loris/figgy_prod/a0%2F23%2Fb2%2Fa023b2f9c3894186bed79a0ae0ef2a90%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-11-24,1934-12-03,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/read-art-now-introduction/,Art Now: An Introduction to the Theory of Modern Painting and Sculpture,,"Read, Herbert",1933,,Lending Library Card,"Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F0d%2F24%2F560d24c0dfa94677ae04cf2db490c371%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-11-24,1935-01-02,https://shakespeareandco.princeton.edu/members/leyris-pierre/,Pierre Leyris,"Leyris, Pierre",,,,,,,,,Returned,39,,,https://shakespeareandco.princeton.edu/books/sackville-west-dark-island/,The Dark Island,,"Sackville-West, Vita",1934,,Lending Library Card,"Sylvia Beach, Pierre Leyris Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6c75c34b-de6f-4465-baee-8f7cd76f5c87/manifest,https://iiif-cloud.princeton.edu/iiif/2/eb%2F32%2F1e%2Feb321e7572324744932b1d81997b548e%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1934-11-24,1934-12-24,https://shakespeareandco.princeton.edu/members/leyris-pierre/,Pierre Leyris,"Leyris, Pierre",,30.00,1 month,30,1,,1934-11-24,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Pierre Leyris Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/6c75c34b-de6f-4465-baee-8f7cd76f5c87/manifest,;https://iiif-cloud.princeton.edu/iiif/2/eb%2F32%2F1e%2Feb321e7572324744932b1d81997b548e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-11-26,1934-11-28,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/mackworth-time-tide/,Time and Tide,"Vol. 15, no. 47, Nov 24, 1934",,,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2Ffa%2F72%2F21fa72d047dc41398c298fa0522406e8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-11-26,1934-12-15,https://shakespeareandco.princeton.edu/members/peake-catherine/;https://shakespeareandco.princeton.edu/members/peake-charles/,Catherine Marie Knight Peake / Mrs. Charles Peake;Charles Peake,"Peake, Catherine;Peake, Charles",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/bell-hamwood-papers-ladies/,The Hamwood Papers of the Ladies of Llangollen and Caroline Hamilton,,,1930,,Lending Library Card,"Sylvia Beach, Charles Peake Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5e8684f0-17db-4d9b-8414-54b5c4613b10/manifest,https://iiif.princeton.edu/loris/figgy_prod/0c%2F02%2Fd3%2F0c02d36d98844871b535b29804599544%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-11-26,1934-12-04,https://shakespeareandco.princeton.edu/members/caillois/;https://shakespeareandco.princeton.edu/members/petitjean/,Roger Caillois;Armand Petitjean,"Caillois, Roger;Petitjean, Armand",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/spender-vienna/,Vienna,,"Spender, Stephen",1934,,Lending Library Card,"Sylvia Beach, Roger Caillois/ Armand Petitjean Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/58386f27-2a95-4138-a30e-4dde3aeb0aaa/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2F00%2Fcd%2F5e00cdaa323542559393d3d06aef50f8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-11-26,1934-11-28,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/martin-new-statesman-nation/,The New Statesman and Nation,"Vol. 8, no. 196, Nov 24, 1934",,,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2Ffa%2F72%2F21fa72d047dc41398c298fa0522406e8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-11-26,1934-12-10,https://shakespeareandco.princeton.edu/members/caillois/;https://shakespeareandco.princeton.edu/members/petitjean/,Roger Caillois;Armand Petitjean,"Caillois, Roger;Petitjean, Armand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/monnier-fableaux/,Fableaux,,"Monnier, Adrienne",1932,,Lending Library Card,"Sylvia Beach, Roger Caillois/ Armand Petitjean Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/58386f27-2a95-4138-a30e-4dde3aeb0aaa/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2F00%2Fcd%2F5e00cdaa323542559393d3d06aef50f8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-11-26,1934-12-03,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/brewster-h-lawrence-reminiscences/,D. H. Lawrence: Reminiscences and Correspondence,,"Brewster, Earl Henry;Brewster, Achsah",1934,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2Ffa%2F72%2F21fa72d047dc41398c298fa0522406e8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-11-26,1934-12-11,https://shakespeareandco.princeton.edu/members/van-den-bergh/,Tamara van den Bergh,"van den Bergh, Tamara",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/trollope-thackeray/,Thackeray,,"Trollope, Anthony",1879,,Lending Library Card,"Sylvia Beach, Miss Tamara van den Bergh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f3a52627-dc5d-410b-aa7f-9d39941f18e8/manifest,https://iiif.princeton.edu/loris/figgy_prod/a0%2F23%2Fb2%2Fa023b2f9c3894186bed79a0ae0ef2a90%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-11-27,1934-12-13,https://shakespeareandco.princeton.edu/members/delimal/,Mme Delimal,"Delimal, Mme",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/lawrence-sea-sardinia/,Sea and Sardinia,,"Lawrence, D. H.",1921,,Lending Library Card,"Sylvia Beach, Madame Delimal Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d7650699-e9d7-4e63-85ff-bce7e9c8dfcd/manifest,https://iiif.princeton.edu/loris/figgy_prod/09%2F74%2F1b%2F09741b95533642218a7f3992da9fea4c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-11-27,1934-12-04,https://shakespeareandco.princeton.edu/members/leyris-pierre/,Pierre Leyris,"Leyris, Pierre",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/richardson-pointed-roofs/,Pointed Roofs (Pilgrimage 1),,"Richardson, Dorothy M.",1915,,Lending Library Card,"Sylvia Beach, Pierre Leyris Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6c75c34b-de6f-4465-baee-8f7cd76f5c87/manifest,https://iiif-cloud.princeton.edu/iiif/2/eb%2F32%2F1e%2Feb321e7572324744932b1d81997b548e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-11-27,1934-12-01,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/ponsonby-english-diaries/,English Diaries,,"Ponsonby, Arthur",1923,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/94%2F03%2F1e%2F94031e37cbfb46c1993af351d4f6ea4c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-11-27,1934-12-22,https://shakespeareandco.princeton.edu/members/tony-mayer/,Thérèse Tony-Mayer,"Tony-Mayer, Thérèse",,,,,,,,,Returned,25,,,https://shakespeareandco.princeton.edu/books/stein-three-lives/,Three Lives,,"Stein, Gertrude",1909,,Lending Library Card,"Sylvia Beach, Thérèse Tony-Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/27246b4c-7d99-4dca-b874-ab90bd542cfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/a1%2Fec%2Ff5%2Fa1ecf56bff2e4aefa5c17aaba1dcce85%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-11-27,1934-12-01,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/lawrence-psychoanalysis-unconscious/,Psychoanalysis and the Unconscious,,"Lawrence, D. H.",1921,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/94%2F03%2F1e%2F94031e37cbfb46c1993af351d4f6ea4c%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1934-11-27,1934-11-27,https://shakespeareandco.princeton.edu/members/church-henry/,Henry Church,"Church, Henry",,,,,,,,,,,30.00,FRF,https://shakespeareandco.princeton.edu/books/phare-poetry-gerard-manley/,The Poetry of Gerard Manley Hopkins: A Survey and Commentary,,"Phare, Elsie Elizabeth",1933,,Lending Library Card,"Sylvia Beach, Henry Church Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4f79663d-da9d-460a-bbd7-44cd14c2cc0f/manifest,https://iiif-cloud.princeton.edu/iiif/2/82%2Ffb%2Fee%2F82fbeee2fa2a4685962e25c031da5007%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1934-11-28,1934-11-28,https://shakespeareandco.princeton.edu/members/wibbelz-henry/,Henry W. Wibbelz,"Wibbelz, Henry W.",,,,,,,,,,,19.00,FRF,https://shakespeareandco.princeton.edu/books/eckersley-concise-english-grammar/,A Concise English Grammar for Foreign Students,,"Eckersley, C. E.",1934,,Lending Library Card,"Sylvia Beach, Henry W. Wibbelz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/225d5fc4-c83d-46e5-b861-ad36ae4548b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/30%2Fd6%2F9f%2F30d69f3cae0d4af189b9671bc81dbde3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1934-11-28,1934-11-28,https://shakespeareandco.princeton.edu/members/denoel-pierre/,Pierre Denoel,"Denoel, Pierre",,,,,,,,30.00,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Pierre Denoel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5638f32b-e6bb-41e9-b0c4-bd60d68fa1fd/manifest,https://iiif.princeton.edu/loris/figgy_prod/a3%2F96%2Fa9%2Fa396a935e8a544bd96145b13dbf85e3e%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-11-28,1934-12-09,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/croce-history-europe-nineteenth/,History of Europe in the Nineteenth Century,,"Croce, Benedetto",1933,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2Ffa%2F72%2F21fa72d047dc41398c298fa0522406e8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-11-28,1935-02-14,https://shakespeareandco.princeton.edu/members/wibbelz-henry/,Henry W. Wibbelz,"Wibbelz, Henry W.",,,,,,,,,Returned,78,,,https://shakespeareandco.princeton.edu/books/harlan-miners-speak/,Harlan Miners Speak,,"Dreiser, Theodore;Cohen, Lester;Levy, Melvin P.;Walker, Charles R.;Walker, Adelaide;Wakefield, Jesse;Anderson, Sherwood;Rochester, Anna;Johnson, Arnold;Dos Passos, John;Crawford, Bruce;Israel, Boris",1932,,Lending Library Card,"Sylvia Beach, Henry W. Wibbelz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/225d5fc4-c83d-46e5-b861-ad36ae4548b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/30%2Fd6%2F9f%2F30d69f3cae0d4af189b9671bc81dbde3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-11-28,1934-12-11,https://shakespeareandco.princeton.edu/members/bernheim-francoise/,FranΓ§oise Bernheim,"Bernheim, FranΓ§oise",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/powys-white-paternoster-stories/,The White Paternoster and Other Stories,,"Powys, Theodore Francis",1930,,Lending Library Card,"Sylvia Beach, FranΓ§oise Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5e7f717b-973d-41b9-8fbb-c14306386d92/manifest,https://iiif-cloud.princeton.edu/iiif/2/68%2F8d%2F3c%2F688d3c18dba14f33bb55ff95ea34e190%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-11-28,1934-11-28,https://shakespeareandco.princeton.edu/members/bernheim-francoise/,FranΓ§oise Bernheim,"Bernheim, FranΓ§oise",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/priestley-good-companions/,The Good Companions,,"Priestley, J. B.",1929,,Lending Library Card,"Sylvia Beach, FranΓ§oise Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5e7f717b-973d-41b9-8fbb-c14306386d92/manifest,https://iiif-cloud.princeton.edu/iiif/2/68%2F8d%2F3c%2F688d3c18dba14f33bb55ff95ea34e190%2Fintermediate_file/full/full/0/default.jpg
+Separate Payment,1934-11-28,1934-11-28,https://shakespeareandco.princeton.edu/members/leyris-pierre/,Pierre Leyris,"Leyris, Pierre",15.00,,,,,,1934-11-28,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1934-11-29,1934-12-10,https://shakespeareandco.princeton.edu/members/rirachowsky-fanny/,Fanny Rirachowsky,"Rirachowsky, Fanny",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/faulkner-lay-dying/,As I Lay Dying,,"Faulkner, William",1930,,Lending Library Card,"Sylvia Beach, Fanny Rirachowsky Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ed53891-0a1b-4bc4-8b10-d7d32f46663a/manifest,https://iiif-cloud.princeton.edu/iiif/2/f0%2F00%2F80%2Ff00080476a8a4a4bb23537892b912580%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-11-29,1934-12-19,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/lewis-men-without-art/,Men without Art,,"Lewis, Wyndham",1934,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5d%2Fd5%2Fd7%2F5dd5d73d2e8b41eaa75eafd050537f72%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-11-29,1934-12-15,https://shakespeareandco.princeton.edu/members/bernheim-antoinette/,Antoinette Bernheim,"Bernheim, Antoinette",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/huxley-barren-leaves/,Those Barren Leaves,,"Huxley, Aldous",1925,,Lending Library Card,"Sylvia Beach, Antoinette Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5b0acd5e-3121-468b-8dc7-846b4a08dafb/manifest,https://iiif-cloud.princeton.edu/iiif/2/3d%2Ffd%2F92%2F3dfd92dc212a4912aa80151e98eea833%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-11-29,1934-12-07,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/vulliamy-scarweather/,Scarweather,,"Rolls, Anthony",1934,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/3a%2Fa5%2F3b%2F3aa53b27338545bfbc02b4bef71fd290%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-11-29,1934-12-28,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,29,,,https://shakespeareandco.princeton.edu/books/golding-doomington-wanderer/,The Doomington Wanderer,,"Golding, Louis",1934,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/e6%2F43%2F11%2Fe643111d618f45aeb8829844d126a6c8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-11-29,1934-12-13,https://shakespeareandco.princeton.edu/members/burt-maud/,Maud Burt,"Burt, Maud",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/forster-goldsworthy-lowes-dickinson/,Goldsworthy Lowes Dickinson,,"Forster, E. M.",1934,,Lending Library Card,"Sylvia Beach, Maud Burt Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/84402ab0-3135-4059-bd55-010e23394445/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2Fc8%2Fab%2F65c8ab878cfc46bbb6614d86cfecbf51%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-11-29,1934-12-11,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/massingham-friend-shelley-memoir/,Friend of Shelley: A Memoir of Edward John Trelawny,,"Massingham, Harold John",1930,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5d%2Fd5%2Fd7%2F5dd5d73d2e8b41eaa75eafd050537f72%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-12-01,1934-12-21,https://shakespeareandco.princeton.edu/members/bernheim-antoinette/,Antoinette Bernheim,"Bernheim, Antoinette",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/aldington-colonels-daughter/,The Colonel's Daughter,,"Aldington, Richard",1931,,Lending Library Card,"Sylvia Beach, Antoinette Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5b0acd5e-3121-468b-8dc7-846b4a08dafb/manifest,https://iiif-cloud.princeton.edu/iiif/2/3d%2Ffd%2F92%2F3dfd92dc212a4912aa80151e98eea833%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-12-01,1934-12-08,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/mencken-american-language/,The American Language,,"Mencken, H. L.",1919,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/9d%2F97%2F6e%2F9d976e57833f41c3b362aafa315a35e5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1934-12-01,1934-12-01,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,,,3.00,FRF,https://shakespeareandco.princeton.edu/books/martin-new-statesman-nation/,The New Statesman and Nation,,,,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5d%2Fd5%2Fd7%2F5dd5d73d2e8b41eaa75eafd050537f72%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-12-01,1934-12-11,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/burney-diary-letters-madame/,The Diary and Letters of Madame D'Arblay,Vol. 1,"Burney, Fanny",1842,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/94%2F03%2F1e%2F94031e37cbfb46c1993af351d4f6ea4c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-12-01,1934-12-04,https://shakespeareandco.princeton.edu/members/guillemin-annie/,Annie Guillemin,"Guillemin, Annie",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/dreiser-sister-carrie/,Sister Carrie,,"Dreiser, Theodore",1900,,Lending Library Card,"Sylvia Beach, Annie Guillemin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2d6019d9-34ed-4ca4-97a9-5fd05d8640a7/manifest,https://iiif.princeton.edu/loris/figgy_prod/5a%2Ffc%2F38%2F5afc38c7321c4497adcc378d8774e24d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-12-01,1934-12-14,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/lawrence-aarons-rod/,Aaron's Rod,,"Lawrence, D. H.",1922,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/94%2F03%2F1e%2F94031e37cbfb46c1993af351d4f6ea4c%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1934-12-01,1935-03-01,https://shakespeareandco.princeton.edu/members/peake-catherine/;https://shakespeareandco.princeton.edu/members/peake-charles/,Catherine Marie Knight Peake / Mrs. Charles Peake;Charles Peake,"Peake, Catherine;Peake, Charles",65.00,,3 months,90,,,1934-12-15,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Charles Peake Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/5e8684f0-17db-4d9b-8414-54b5c4613b10/manifest,;https://iiif.princeton.edu/loris/figgy_prod/0c%2F02%2Fd3%2F0c02d36d98844871b535b29804599544%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-12-03,1934-12-17,https://shakespeareandco.princeton.edu/members/wendel/,Hélène de Wendel / Comtesse de Noailles,"de Wendel, Hélène",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/lawrence-sons-lovers/,Sons and Lovers,,"Lawrence, D. H.",1913,,Lending Library Card,"Sylvia Beach, Madame Hélène Wendel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c70e230a-8313-4c53-9939-22beb5f809b6/manifest,https://iiif-cloud.princeton.edu/iiif/2/8a%2Fbe%2Fec%2F8abeec2451b647e0954a7a53d5eae991%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-12-03,1934-12-05,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/irwin-proud-servant-story/,The Proud Servant: The Story of Montrose,,"Irwin, Margaret",1934,,Lending Library Card,"Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F0d%2F24%2F560d24c0dfa94677ae04cf2db490c371%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-12-03,,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/mackworth-time-tide/,Time and Tide,"Vol. 15, no. 48, Dec 1, 1934",,,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2Ffa%2F72%2F21fa72d047dc41398c298fa0522406e8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-12-03,1934-12-03,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/ohara-appointment-samarra/,Appointment in Samarra,,"O'Hara, John",1934,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2Ffa%2F72%2F21fa72d047dc41398c298fa0522406e8%2Fintermediate_file/full/full/0/default.jpg
+Supplement,1934-12-03,1935-05-20,https://shakespeareandco.princeton.edu/members/wendel/,HΓ©lΓ¨ne de Wendel / Comtesse de Noailles,"de Wendel, HΓ©lΓ¨ne",100.00,,24 weeks,168,2,,1934-12-03,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1934-12-03,1934-12-17,https://shakespeareandco.princeton.edu/members/wendel/,HΓ©lΓ¨ne de Wendel / Comtesse de Noailles,"de Wendel, HΓ©lΓ¨ne",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/wilson-axels-castle-study/,Axel's Castle: A Study in the Imaginative Literature of 1870 β 1930,,"Wilson, Edmund",1931,,Lending Library Card,"Sylvia Beach, Madame HΓ©lΓ¨ne Wendel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c70e230a-8313-4c53-9939-22beb5f809b6/manifest,https://iiif-cloud.princeton.edu/iiif/2/8a%2Fbe%2Fec%2F8abeec2451b647e0954a7a53d5eae991%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-12-03,1934-12-06,https://shakespeareandco.princeton.edu/members/de-roos-elisabeth/;https://shakespeareandco.princeton.edu/members/perron-eddy/,Elisabeth de Roos / Mrs. du Perron;E. du Perron / Eddy du Perron,"de Roos, Elisabeth;du Perron, Eddy",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/burnett-story-anthology-1931/,"A Story Anthology, 1931 β 1933",,,1933,,Lending Library Card,"The lending library card of Charles Edgar βEddyβ du Perron and Elisabeth de Roos is part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Borrow,1934-12-03,1934-12-17,https://shakespeareandco.princeton.edu/members/bidoire-boulenger/,Miss Boulenger / Mme Bidoire,"Bidoire, Mme",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/maugham-altogether-collected-stories/,Altogether: Being the Collected Stories of W. Somerset Maugham,,"Maugham, W. Somerset",1934,,Lending Library Card,"Sylvia Beach, Boulenger Bidoire Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7f3ef4f0-6ce0-43d1-b96a-1328f891536c/manifest,https://iiif-cloud.princeton.edu/iiif/2/4b%2F5b%2Fe1%2F4b5be155079545a19ff743d77214f7b8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-12-03,,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/martin-new-statesman-nation/,The New Statesman and Nation,"Vol. 8, no. 197, Dec 1, 1934",,,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2Ffa%2F72%2F21fa72d047dc41398c298fa0522406e8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-12-04,1934-12-12,https://shakespeareandco.princeton.edu/members/leyris-pierre/,Pierre Leyris,"Leyris, Pierre",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/collins-woman-white/,The Woman in White,,"Collins, Wilkie",1860,,Lending Library Card,"Sylvia Beach, Pierre Leyris Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6c75c34b-de6f-4465-baee-8f7cd76f5c87/manifest,https://iiif-cloud.princeton.edu/iiif/2/eb%2F32%2F1e%2Feb321e7572324744932b1d81997b548e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-12-04,1934-12-12,https://shakespeareandco.princeton.edu/members/leyris-pierre/,Pierre Leyris,"Leyris, Pierre",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/firbank-flower-beneath-foot/,The Flower Beneath the Foot: Being a Record of the Early Life of St. Laura de Nazianzi and the Times in Which She Lived,,"Firbank, Ronald",1923,,Lending Library Card,"Sylvia Beach, Pierre Leyris Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6c75c34b-de6f-4465-baee-8f7cd76f5c87/manifest,https://iiif-cloud.princeton.edu/iiif/2/eb%2F32%2F1e%2Feb321e7572324744932b1d81997b548e%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-12-04,1934-12-17,https://shakespeareandco.princeton.edu/members/caillois/;https://shakespeareandco.princeton.edu/members/petitjean/,Roger Caillois;Armand Petitjean,"Caillois, Roger;Petitjean, Armand",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/lewis-paleface-philosophy-melting/,"Paleface: The Philosophy of the ""Melting-Pot""",,"Lewis, Wyndham",1929,,Lending Library Card,"Sylvia Beach, Roger Caillois/ Armand Petitjean Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/58386f27-2a95-4138-a30e-4dde3aeb0aaa/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2F00%2Fcd%2F5e00cdaa323542559393d3d06aef50f8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-12-04,1934-12-17,https://shakespeareandco.princeton.edu/members/guillemin-annie/,Annie Guillemin,"Guillemin, Annie",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/buck-sons/,Sons,,"Buck, Pearl S.",1932,,Lending Library Card,"Sylvia Beach, Annie Guillemin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2d6019d9-34ed-4ca4-97a9-5fd05d8640a7/manifest,https://iiif.princeton.edu/loris/figgy_prod/5a%2Ffc%2F38%2F5afc38c7321c4497adcc378d8774e24d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-12-05,1934-12-14,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/huxley-antic-hay/,Antic Hay,,"Huxley, Aldous",1923,,Lending Library Card,"Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F0d%2F24%2F560d24c0dfa94677ae04cf2db490c371%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1934-12-05,1935-01-05,https://shakespeareandco.princeton.edu/members/delimal/,Mme Delimal,"Delimal, Mme",15.00,,1 month,31,1,,1934-12-13,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Madame Delimal Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d7650699-e9d7-4e63-85ff-bce7e9c8dfcd/manifest,https://iiif.princeton.edu/loris/figgy_prod/09%2F74%2F1b%2F09741b95533642218a7f3992da9fea4c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1934-12-06,1934-12-06,https://shakespeareandco.princeton.edu/members/de-roos-elisabeth/;https://shakespeareandco.princeton.edu/members/perron-eddy/,Elisabeth de Roos / Mrs. du Perron;E. du Perron / Eddy du Perron,"de Roos, Elisabeth;du Perron, Eddy",,,,,,,,30.00,,,,FRF,,,,,,,Lending Library Card,"The lending library card of Charles Edgar βEddyβ du Perron and Elisabeth de Roos is part of the Carlton Lake Collection of Maurice Saillet, Sylvia Beach, and Shakespeare and Company at the Harry Ransom Humanities Research Center, the University of Texas at Austin. For more information, visit: https://norman.hrc.utexas.edu/fasearch/findingAid.cfm?eadid=00116.",,
+Renewal,1934-12-06,1935-03-06,https://shakespeareandco.princeton.edu/members/van-den-bergh/,Tamara van den Bergh,"van den Bergh, Tamara",40.00,,3 months,90,2,,1934-12-11,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Miss Tamara van den Bergh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f3a52627-dc5d-410b-aa7f-9d39941f18e8/manifest,https://iiif.princeton.edu/loris/figgy_prod/a0%2F23%2Fb2%2Fa023b2f9c3894186bed79a0ae0ef2a90%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1934-12-06,1935-03-06,https://shakespeareandco.princeton.edu/members/guillemin-annie/,Annie Guillemin,"Guillemin, Annie",40.00,,3 months,90,1,,1934-12-06,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Annie Guillemin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2d6019d9-34ed-4ca4-97a9-5fd05d8640a7/manifest,https://iiif.princeton.edu/loris/figgy_prod/5a%2Ffc%2F38%2F5afc38c7321c4497adcc378d8774e24d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-12-07,1934-12-14,https://shakespeareandco.princeton.edu/members/maxwell/,Mrs. Maxwell,"Maxwell, Mrs.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/lewis-time-western-man/,Time and Western Man,,"Lewis, Wyndham",1927,,Lending Library Card,"Sylvia Beach, Mrs. Maxwell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6148b048-a591-4aae-8470-52fde178e0aa/manifest,https://iiif.princeton.edu/loris/figgy_prod/a3%2F59%2F56%2Fa359568ae1a7491689f98c55dd398b98%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-12-07,1934-12-14,https://shakespeareandco.princeton.edu/members/maxwell/,Mrs. Maxwell,"Maxwell, Mrs.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/murry-reminiscences-h-lawrence/,Reminiscences of D. H. Lawrence,,"Murry, John Middleton",1933,,Lending Library Card,"Sylvia Beach, Mrs. Maxwell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6148b048-a591-4aae-8470-52fde178e0aa/manifest,https://iiif.princeton.edu/loris/figgy_prod/a3%2F59%2F56%2Fa359568ae1a7491689f98c55dd398b98%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-12-07,1934-12-14,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/wells-experiment-autobiography-discoveries/,Experiment in Autobiography: Discoveries and Conclusions of a Very Ordinary Brain (Since 1866),Vol. 2,"Wells, H. G.",1934,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/3a%2Fa5%2F3b%2F3aa53b27338545bfbc02b4bef71fd290%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1934-12-07,1935-03-07,https://shakespeareandco.princeton.edu/members/maxwell/,Mrs. Maxwell,"Maxwell, Mrs.",100.00,60.00,3 months,90,2,,1934-12-07,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Mrs. Maxwell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6148b048-a591-4aae-8470-52fde178e0aa/manifest,https://iiif.princeton.edu/loris/figgy_prod/a3%2F59%2F56%2Fa359568ae1a7491689f98c55dd398b98%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-12-08,1934-12-18,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/lewis-main-street-story/,Main Street: The Story of Carol Kennicott,,"Lewis, Sinclair",1920,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/9d%2F97%2F6e%2F9d976e57833f41c3b362aafa315a35e5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1934-12-08,1934-12-08,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,,,3.00,FRF,https://shakespeareandco.princeton.edu/books/martin-new-statesman-nation/,The New Statesman and Nation,"Vol. 8, no. 198, Dec 8, 1934",,,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5d%2Fd5%2Fd7%2F5dd5d73d2e8b41eaa75eafd050537f72%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-12-08,1934-12-13,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/gutman-seven-years-harvest/,"Seven Years' Harvest: An Anthology of the Bermondsey Books, 1923 β 1930",,,1934,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2Ffa%2F72%2F21fa72d047dc41398c298fa0522406e8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-12-08,1934-12-13,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/bridge-ginger-griffin/,The Ginger Griffin,,"Bridge, Ann",1934,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2Ffa%2F72%2F21fa72d047dc41398c298fa0522406e8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-12-08,1934-12-13,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/martin-new-statesman-nation/,The New Statesman and Nation,,,,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2Ffa%2F72%2F21fa72d047dc41398c298fa0522406e8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-12-08,1934-12-13,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/ford-today-tomorrow/,Today and Tomorrow,,"Ford, Henry",1926,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2Ffa%2F72%2F21fa72d047dc41398c298fa0522406e8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-12-08,1934-12-13,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/mackworth-time-tide/,Time and Tide,"Vol. 15, no. 49, Dec 8, 1934",,,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2Ffa%2F72%2F21fa72d047dc41398c298fa0522406e8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-12-09,1935-01-05,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,Returned,27,,,https://shakespeareandco.princeton.edu/books/forster-room-view/,A Room with a View,,"Forster, E. M.",,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/9d%2F97%2F6e%2F9d976e57833f41c3b362aafa315a35e5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1934-12-09,1935-01-09,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",15.00,,1 month,31,1,,1934-11-24,,,,,FRF,,,,,,,Lending Library Card;Logbook,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest;,https://iiif.princeton.edu/loris/figgy_prod/9d%2F97%2F6e%2F9d976e57833f41c3b362aafa315a35e5%2Fintermediate_file.jp2/full/full/0/default.jpg;
+Renewal,1934-12-09,,https://shakespeareandco.princeton.edu/members/guibet/,Guibet,Guibet,15.00,,,,1,,1934-12-04,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1934-12-10,1934-12-26,https://shakespeareandco.princeton.edu/members/rirachowsky-fanny/,Fanny Rirachowsky,"Rirachowsky, Fanny",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/lawrence-letters-h-lawrence/,The Letters of D. H. Lawrence,,"Lawrence, D. H.",1932,,Lending Library Card,"Sylvia Beach, Fanny Rirachowsky Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ed53891-0a1b-4bc4-8b10-d7d32f46663a/manifest,https://iiif-cloud.princeton.edu/iiif/2/f0%2F00%2F80%2Ff00080476a8a4a4bb23537892b912580%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-12-10,1934-12-14,https://shakespeareandco.princeton.edu/members/yarrow-catherine/,Catherine Yarrow,"Yarrow, Catherine",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/butler-way-flesh/,The Way of All Flesh,,"Butler, Samuel",1903,,Lending Library Card,"Sylvia Beach, Catherine Yarrow Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d0d522e7-9d4e-41ca-8b3b-8fe6ba58e334/manifest,https://iiif.princeton.edu/loris/figgy_prod/38%2Fe4%2F9e%2F38e49ec85ad54b1bb50df436efd43955%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-12-11,1935-01-08,https://shakespeareandco.princeton.edu/members/bernheim-francoise/,FranΓ§oise Bernheim,"Bernheim, FranΓ§oise",,,,,,,,,Returned,28,,,https://shakespeareandco.princeton.edu/books/millin-coming-lord/,The Coming of the Lord,,"Millin, Sarah Gertrude",1928,,Lending Library Card,"Sylvia Beach, FranΓ§oise Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5e7f717b-973d-41b9-8fbb-c14306386d92/manifest,https://iiif-cloud.princeton.edu/iiif/2/68%2F8d%2F3c%2F688d3c18dba14f33bb55ff95ea34e190%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-12-11,1934-12-14,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/wells-first-men-moon/,The First Men in the Moon,,"Wells, H. G.",1901,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/94%2F03%2F1e%2F94031e37cbfb46c1993af351d4f6ea4c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-12-11,1934-12-13,https://shakespeareandco.princeton.edu/members/dherbais-de-thun/,Marie-Valerie d'Herbais de Thun,"d'Herbais de Thun, Marie-Valerie",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/stoker-dracula/,Dracula,,"Stoker, Bram",1897,,Lending Library Card,"Sylvia Beach, Marie-Valerie Herbais de Thun Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/94cf6667-e6c3-451a-9da4-35a58d089850/manifest,https://iiif.princeton.edu/loris/figgy_prod/38%2Ff0%2F98%2F38f09874f57345f4bf007e23065cb827%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-12-11,1934-12-14,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/burney-diary-letters-madame/,The Diary and Letters of Madame D'Arblay,"Vol. 2, Vol. 3","Burney, Fanny",1842,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/94%2F03%2F1e%2F94031e37cbfb46c1993af351d4f6ea4c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-12-11,1934-12-18,https://shakespeareandco.princeton.edu/members/dherbais-de-thun/,Marie-Valerie d'Herbais de Thun,"d'Herbais de Thun, Marie-Valerie",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/rolls-vicars-experiments/,The Vicar's Experiments,,"Rolls, Anthony",1932,,Lending Library Card,"Sylvia Beach, Marie-Valerie Herbais de Thun Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/94cf6667-e6c3-451a-9da4-35a58d089850/manifest,https://iiif.princeton.edu/loris/figgy_prod/38%2Ff0%2F98%2F38f09874f57345f4bf007e23065cb827%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-12-11,1934-12-17,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/lawrence-collected-poems-h/,The Collected Poems of D. H. Lawrence,Vol. 2 Unrhyming Poems,"Lawrence, D. H.",1928,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/94%2F03%2F1e%2F94031e37cbfb46c1993af351d4f6ea4c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-12-11,1935-01-07,https://shakespeareandco.princeton.edu/members/van-den-bergh/,Tamara van den Bergh,"van den Bergh, Tamara",,,,,,,,,Returned,27,,,https://shakespeareandco.princeton.edu/books/beerbohm-zuleika-dobson/,Zuleika Dobson,,"Beerbohm, Max",1911,,Lending Library Card,"Sylvia Beach, Miss Tamara van den Bergh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f3a52627-dc5d-410b-aa7f-9d39941f18e8/manifest,https://iiif.princeton.edu/loris/figgy_prod/a0%2F23%2Fb2%2Fa023b2f9c3894186bed79a0ae0ef2a90%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-12-12,1934-12-21,https://shakespeareandco.princeton.edu/members/leyris-pierre/,Pierre Leyris,"Leyris, Pierre",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/anderson-many-marriages/,Many Marriages,,"Anderson, Sherwood",1923,,Lending Library Card,"Sylvia Beach, Pierre Leyris Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6c75c34b-de6f-4465-baee-8f7cd76f5c87/manifest,https://iiif-cloud.princeton.edu/iiif/2/eb%2F32%2F1e%2Feb321e7572324744932b1d81997b548e%2Fintermediate_file/full/full/0/default.jpg
+Generic,1934-12-13,,https://shakespeareandco.princeton.edu/members/wibbelz-henry/,Henry W. Wibbelz,"Wibbelz, Henry W.",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/engle-american-song-book/,American Song: A Book of Poems,,"Engle, Paul",1934,,Lending Library Card,"Sylvia Beach, Henry W. Wibbelz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/225d5fc4-c83d-46e5-b861-ad36ae4548b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/30%2Fd6%2F9f%2F30d69f3cae0d4af189b9671bc81dbde3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-12-13,1934-12-18,https://shakespeareandco.princeton.edu/members/dherbais-de-thun/,Marie-Valerie d'Herbais de Thun,"d'Herbais de Thun, Marie-Valerie",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/wild-crimes-cases-1933/,Crimes and Cases of 1933,,"Wild, Roland",1934,,Lending Library Card,"Sylvia Beach, Marie-Valerie Herbais de Thun Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/94cf6667-e6c3-451a-9da4-35a58d089850/manifest,https://iiif.princeton.edu/loris/figgy_prod/38%2Ff0%2F98%2F38f09874f57345f4bf007e23065cb827%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1934-12-13,1935-03-13,https://shakespeareandco.princeton.edu/members/decharme/,Odile Decharme,"Decharme, Odile",40.00,30.00,3 months,90,1,,1934-12-13,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1934-12-13,1934-12-26,https://shakespeareandco.princeton.edu/members/delimal/,Mme Delimal,"Delimal, Mme",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/kennedy-constant-nymph/,The Constant Nymph,,"Kennedy, Margaret",1924,,Lending Library Card,"Sylvia Beach, Madame Delimal Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d7650699-e9d7-4e63-85ff-bce7e9c8dfcd/manifest,https://iiif.princeton.edu/loris/figgy_prod/09%2F74%2F1b%2F09741b95533642218a7f3992da9fea4c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-12-13,1935-01-04,https://shakespeareandco.princeton.edu/members/burt-maud/,Maud Burt,"Burt, Maud",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/nijinsky-nijinsky/,Nijinsky,,"Nijinsky, Romola de Pulszky",1933,,Lending Library Card,"Sylvia Beach, Maud Burt Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/84402ab0-3135-4059-bd55-010e23394445/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2Fc8%2Fab%2F65c8ab878cfc46bbb6614d86cfecbf51%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-12-13,1934-12-18,https://shakespeareandco.princeton.edu/members/dherbais-de-thun/,Marie-Valerie d'Herbais de Thun,"d'Herbais de Thun, Marie-Valerie",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/nicolson-people/,Some People,,"Nicolson, Harold George",1926,,Lending Library Card,"Sylvia Beach, Marie-Valerie Herbais de Thun Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/94cf6667-e6c3-451a-9da4-35a58d089850/manifest,https://iiif.princeton.edu/loris/figgy_prod/38%2Ff0%2F98%2F38f09874f57345f4bf007e23065cb827%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-12-14,1934-12-17,https://shakespeareandco.princeton.edu/members/maxwell/,Mrs. Maxwell,"Maxwell, Mrs.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/maccarthy-portraits/,Portraits,,"MacCarthy, Desmond",1931,,Lending Library Card,"Sylvia Beach, Mrs. Maxwell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6148b048-a591-4aae-8470-52fde178e0aa/manifest,https://iiif.princeton.edu/loris/figgy_prod/a3%2F59%2F56%2Fa359568ae1a7491689f98c55dd398b98%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-12-14,1934-12-21,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/fleming-ones-company-journey/,One's Company: A Journey to China,,"Fleming, Peter",1934,,Lending Library Card,"Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F0d%2F24%2F560d24c0dfa94677ae04cf2db490c371%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-12-14,1934-12-18,https://shakespeareandco.princeton.edu/members/yarrow-catherine/,Catherine Yarrow,"Yarrow, Catherine",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/lofting-story-doctor-doolittle/,The Story of Doctor Dolittle,,"Lofting, Hugh",1920,,Lending Library Card,"Sylvia Beach, Catherine Yarrow Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d0d522e7-9d4e-41ca-8b3b-8fe6ba58e334/manifest,https://iiif.princeton.edu/loris/figgy_prod/38%2Fe4%2F9e%2F38e49ec85ad54b1bb50df436efd43955%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-12-14,1934-12-17,https://shakespeareandco.princeton.edu/members/maxwell/,Mrs. Maxwell,"Maxwell, Mrs.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/murry-unknown-god-essays/,To the Unknown God: Essays towards a Religion,,"Murry, John Middleton",1924,,Lending Library Card,"Sylvia Beach, Mrs. Maxwell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6148b048-a591-4aae-8470-52fde178e0aa/manifest,https://iiif.princeton.edu/loris/figgy_prod/a3%2F59%2F56%2Fa359568ae1a7491689f98c55dd398b98%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-12-14,1934-12-21,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/young-red-rose/,So Red the Rose,,"Young, Stark",1934,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/3a%2Fa5%2F3b%2F3aa53b27338545bfbc02b4bef71fd290%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-12-15,1934-12-21,https://shakespeareandco.princeton.edu/members/bernheim-antoinette/,Antoinette Bernheim,"Bernheim, Antoinette",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/shaw-plays-pleasant-unpleasant/,Plays: Pleasant and Unpleasant,Vol. 2 Pleasant Plays,"Shaw, George Bernard",1898,,Lending Library Card,"Sylvia Beach, Antoinette Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5b0acd5e-3121-468b-8dc7-846b4a08dafb/manifest,https://iiif-cloud.princeton.edu/iiif/2/3d%2Ffd%2F92%2F3dfd92dc212a4912aa80151e98eea833%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-12-17,1935-01-18,https://shakespeareandco.princeton.edu/members/caillois/;https://shakespeareandco.princeton.edu/members/petitjean/,Roger Caillois;Armand Petitjean,"Caillois, Roger;Petitjean, Armand",,,,,,,,,Returned,32,,,https://shakespeareandco.princeton.edu/books/pound-make-new/,Make It New,,"Pound, Ezra",1934,,Lending Library Card,"Sylvia Beach, Roger Caillois/ Armand Petitjean Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/58386f27-2a95-4138-a30e-4dde3aeb0aaa/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2F00%2Fcd%2F5e00cdaa323542559393d3d06aef50f8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-12-17,1934-12-24,https://shakespeareandco.princeton.edu/members/maxwell/,Mrs. Maxwell,"Maxwell, Mrs.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/crane-pocahontas/,Pocahontas,,"Crane, Nathalia",1930,,Lending Library Card,"Sylvia Beach, Mrs. Maxwell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6148b048-a591-4aae-8470-52fde178e0aa/manifest,https://iiif.princeton.edu/loris/figgy_prod/a3%2F59%2F56%2Fa359568ae1a7491689f98c55dd398b98%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-12-17,1934-12-24,https://shakespeareandco.princeton.edu/members/maxwell/,Mrs. Maxwell,"Maxwell, Mrs.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/sitwell-far-home-stories/,"Far from My Home: Stories, Long and Short",,"Sitwell, Sacheverell",1931,,Lending Library Card,"Sylvia Beach, Mrs. Maxwell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6148b048-a591-4aae-8470-52fde178e0aa/manifest,https://iiif.princeton.edu/loris/figgy_prod/a3%2F59%2F56%2Fa359568ae1a7491689f98c55dd398b98%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-12-17,1934-12-19,https://shakespeareandco.princeton.edu/members/bidoire-boulenger/,Miss Boulenger / Mme Bidoire,"Bidoire, Mme",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/hemingway-men-without-women/,Men without Women,,"Hemingway, Ernest",1927,,Lending Library Card,"Sylvia Beach, Boulenger Bidoire Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7f3ef4f0-6ce0-43d1-b96a-1328f891536c/manifest,https://iiif-cloud.princeton.edu/iiif/2/4b%2F5b%2Fe1%2F4b5be155079545a19ff743d77214f7b8%2Fintermediate_file/full/full/0/default.jpg
+Crossed out,1934-12-17,,https://shakespeareandco.princeton.edu/members/bidoire-boulenger/,Miss Boulenger / Mme Bidoire,"Bidoire, Mme",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/hemingway-time/,In Our Time,,"Hemingway, Ernest",,Unidentified edition. Either Hemingway's *in our time* (1924) or *In Our Time* (1925).,Lending Library Card,"Sylvia Beach, Boulenger Bidoire Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7f3ef4f0-6ce0-43d1-b96a-1328f891536c/manifest,https://iiif-cloud.princeton.edu/iiif/2/4b%2F5b%2Fe1%2F4b5be155079545a19ff743d77214f7b8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-12-17,1934-12-22,https://shakespeareandco.princeton.edu/members/guillemin-annie/,Annie Guillemin,"Guillemin, Annie",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/buck-mother/,The Mother,,"Buck, Pearl S.",1934,,Lending Library Card,"Sylvia Beach, Annie Guillemin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2d6019d9-34ed-4ca4-97a9-5fd05d8640a7/manifest,https://iiif.princeton.edu/loris/figgy_prod/5a%2Ffc%2F38%2F5afc38c7321c4497adcc378d8774e24d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-12-17,1935-01-07,https://shakespeareandco.princeton.edu/members/wendel/,Hélène de Wendel / Comtesse de Noailles,"de Wendel, Hélène",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/yeats-reveries-childhood-youth/,Reveries over Childhood and Youth,,"Yeats, William Butler",1915,,Lending Library Card,"Sylvia Beach, Madame Hélène Wendel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c70e230a-8313-4c53-9939-22beb5f809b6/manifest,https://iiif-cloud.princeton.edu/iiif/2/8a%2Fbe%2Fec%2F8abeec2451b647e0954a7a53d5eae991%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-12-17,1934-12-19,https://shakespeareandco.princeton.edu/members/bidoire-boulenger/,Miss Boulenger / Mme Bidoire,"Bidoire, Mme",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/parker-pleasures/,After Such Pleasures,,"Parker, Dorothy",1933,,Lending Library Card,"Sylvia Beach, Boulenger Bidoire Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7f3ef4f0-6ce0-43d1-b96a-1328f891536c/manifest,https://iiif-cloud.princeton.edu/iiif/2/4b%2F5b%2Fe1%2F4b5be155079545a19ff743d77214f7b8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-12-17,1935-01-04,https://shakespeareandco.princeton.edu/members/vox-maximilien/,Maximilien Vox / Samuel William ThΓ©odore Monod / Mr. Monod-Vox,"Vox, Maximilien",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/henry-four-million/,The Four Million,,"Henry, O.",1906,,Lending Library Card,"Sylvia Beach, Maximilien Vox Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd769a65-ce70-4407-accf-660fd5c71c29/manifest,https://iiif.princeton.edu/loris/figgy_prod/16%2Fa6%2Fa8%2F16a6a84e1eb944479fec1e280f2c60e2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1934-12-17,1935-01-17,https://shakespeareandco.princeton.edu/members/prochasson/,Alice Prochasson,"Prochasson, Alice",15.00,,1 month,31,1,,1934-12-17,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Alice Prochasson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/341b2429-d37f-490f-aa21-167ae02af0db/manifest,https://iiif.princeton.edu/loris/figgy_prod/86%2F6c%2F0f%2F866c0fa9caf446f083cc6c5b953fc93c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1934-12-17,1935-01-17,https://shakespeareandco.princeton.edu/members/rirachowsky-fanny/,Fanny Rirachowsky,"Rirachowsky, Fanny",15.00,,1 month,31,1,,1934-12-26,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Fanny Rirachowsky Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/3ed53891-0a1b-4bc4-8b10-d7d32f46663a/manifest,;https://iiif-cloud.princeton.edu/iiif/2/f0%2F00%2F80%2Ff00080476a8a4a4bb23537892b912580%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-12-17,1935-01-07,https://shakespeareandco.princeton.edu/members/wendel/,Hélène de Wendel / Comtesse de Noailles,"de Wendel, Hélène",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/joyce-portrait-artist-young/,A Portrait of the Artist as a Young Man,,"Joyce, James",1916,,Lending Library Card,"Sylvia Beach, Madame Hélène Wendel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c70e230a-8313-4c53-9939-22beb5f809b6/manifest,https://iiif-cloud.princeton.edu/iiif/2/8a%2Fbe%2Fec%2F8abeec2451b647e0954a7a53d5eae991%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-12-17,1934-12-19,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/lawrence-wind/,"Not I, but the Wind",,"Lawrence, Frieda",1934,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/94%2F03%2F1e%2F94031e37cbfb46c1993af351d4f6ea4c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-12-18,1934-12-26,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/martin-new-statesman-nation/,The New Statesman and Nation,,,,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2Ffa%2F72%2F21fa72d047dc41398c298fa0522406e8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-12-18,,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/mackworth-time-tide/,Time and Tide,"Vol. 15, no. 50, Dec 15, 1934",,,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2Ffa%2F72%2F21fa72d047dc41398c298fa0522406e8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-12-18,1934-12-28,https://shakespeareandco.princeton.edu/members/yarrow-catherine/,Catherine Yarrow,"Yarrow, Catherine",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/wilder-heavens-destination/,Heaven's My Destination,,"Wilder, Thornton",1934,,Lending Library Card,"Sylvia Beach, Catherine Yarrow Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d0d522e7-9d4e-41ca-8b3b-8fe6ba58e334/manifest,https://iiif.princeton.edu/loris/figgy_prod/38%2Fe4%2F9e%2F38e49ec85ad54b1bb50df436efd43955%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-12-19,1934-12-26,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/thompson-breakfast-bed/,Breakfast in Bed,,"Thompson, Sylvia",1934,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/94%2F03%2F1e%2F94031e37cbfb46c1993af351d4f6ea4c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-12-19,,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/stead-seven-poor-men/,Seven Poor Men of Sydney,,"Stead, Christina",1934,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5d%2Fd5%2Fd7%2F5dd5d73d2e8b41eaa75eafd050537f72%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1934-12-19,1934-12-19,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,,,3.00,FRF,https://shakespeareandco.princeton.edu/books/martin-new-statesman-nation/,The New Statesman and Nation,"Vol. 8, no. 199, Dec 15, 1934",,,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5d%2Fd5%2Fd7%2F5dd5d73d2e8b41eaa75eafd050537f72%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-12-19,1934-12-26,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/lawrence-apocalypse/,Apocalypse,,"Lawrence, D. H.",1931,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/94%2F03%2F1e%2F94031e37cbfb46c1993af351d4f6ea4c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-12-19,1934-12-28,https://shakespeareandco.princeton.edu/members/bidoire-boulenger/,Miss Boulenger / Mme Bidoire,"Bidoire, Mme",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/maugham-human-bondage/,Of Human Bondage,,"Maugham, W. Somerset",1915,,Lending Library Card,"Sylvia Beach, Boulenger Bidoire Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7f3ef4f0-6ce0-43d1-b96a-1328f891536c/manifest,https://iiif-cloud.princeton.edu/iiif/2/4b%2F5b%2Fe1%2F4b5be155079545a19ff743d77214f7b8%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1934-12-21,1934-12-21,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,,,3.00,FRF,https://shakespeareandco.princeton.edu/books/martin-new-statesman-nation/,The New Statesman and Nation,"Vol. 8, no. 200, Dec 22, 1934",,,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5d%2Fd5%2Fd7%2F5dd5d73d2e8b41eaa75eafd050537f72%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-12-21,1935-01-21,https://shakespeareandco.princeton.edu/members/bernheim-antoinette/,Antoinette Bernheim,"Bernheim, Antoinette",,,,,,,,,Returned,31,,,https://shakespeareandco.princeton.edu/books/dreiser-american-tragedy/,An American Tragedy,,"Dreiser, Theodore",1925,,Lending Library Card,"Sylvia Beach, Antoinette Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5b0acd5e-3121-468b-8dc7-846b4a08dafb/manifest,https://iiif-cloud.princeton.edu/iiif/2/3d%2Ffd%2F92%2F3dfd92dc212a4912aa80151e98eea833%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-12-21,1935-01-15,https://shakespeareandco.princeton.edu/members/bernheim-antoinette/,Antoinette Bernheim,"Bernheim, Antoinette",,,,,,,,,Returned,25,,,https://shakespeareandco.princeton.edu/books/maugham-painted-veil/,The Painted Veil,,"Maugham, W. Somerset",1925,,Lending Library Card,"Sylvia Beach, Antoinette Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5b0acd5e-3121-468b-8dc7-846b4a08dafb/manifest,https://iiif-cloud.princeton.edu/iiif/2/3d%2Ffd%2F92%2F3dfd92dc212a4912aa80151e98eea833%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-12-21,1935-01-21,https://shakespeareandco.princeton.edu/members/bernheim-antoinette/,Antoinette Bernheim,"Bernheim, Antoinette",,,,,,,,,Returned,31,,,https://shakespeareandco.princeton.edu/books/tagore-gitanjali/,Gitanjali,,"Tagore, Rabindranath",1912,,Lending Library Card,"Sylvia Beach, Antoinette Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5b0acd5e-3121-468b-8dc7-846b4a08dafb/manifest,https://iiif-cloud.princeton.edu/iiif/2/3d%2Ffd%2F92%2F3dfd92dc212a4912aa80151e98eea833%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-12-21,1934-12-24,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/hall-miss-ogilvy-finds/,Miss Ogilvy Finds Herself,,"Hall, Radclyffe",1934,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/3a%2Fa5%2F3b%2F3aa53b27338545bfbc02b4bef71fd290%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1934-12-21,1934-12-21,https://shakespeareandco.princeton.edu/members/blaauw-a-j/,A. J. Blaauw,"Blaauw, A. J.",,,,,,,,60.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1934-12-21,1935-01-09,https://shakespeareandco.princeton.edu/members/prochasson/,Alice Prochasson,"Prochasson, Alice",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/richardson-deadlock-pilgrimage-6/,Deadlock (Pilgrimage 6),,"Richardson, Dorothy M.",1921,,Lending Library Card,"Sylvia Beach, Alice Prochasson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/341b2429-d37f-490f-aa21-167ae02af0db/manifest,https://iiif.princeton.edu/loris/figgy_prod/86%2F6c%2F0f%2F866c0fa9caf446f083cc6c5b953fc93c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-12-21,1935-01-09,https://shakespeareandco.princeton.edu/members/prochasson/,Alice Prochasson,"Prochasson, Alice",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/richardson-interim-pilgrimage-5/,Interim (Pilgrimage 5),,"Richardson, Dorothy M.",1920,,Lending Library Card,"Sylvia Beach, Alice Prochasson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/341b2429-d37f-490f-aa21-167ae02af0db/manifest,https://iiif.princeton.edu/loris/figgy_prod/86%2F6c%2F0f%2F866c0fa9caf446f083cc6c5b953fc93c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-12-21,1935-01-08,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/oneill-mourning-becomes-electra/,Mourning Becomes Electra,,"O'Neill, Eugene",1931,,Lending Library Card,"Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F0d%2F24%2F560d24c0dfa94677ae04cf2db490c371%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-12-22,1934-12-26,https://shakespeareandco.princeton.edu/members/tony-mayer/,Thérèse Tony-Mayer,"Tony-Mayer, Thérèse",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/kaye-smith-susan-spray/,Susan Spray,,"Kaye-Smith, Sheila",1931,,Lending Library Card,"Sylvia Beach, Thérèse Tony-Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/27246b4c-7d99-4dca-b874-ab90bd542cfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/a1%2Fec%2Ff5%2Fa1ecf56bff2e4aefa5c17aaba1dcce85%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-12-22,1935-01-19,https://shakespeareandco.princeton.edu/members/tony-mayer/,Thérèse Tony-Mayer,"Tony-Mayer, Thérèse",,,,,,,,,Returned,28,,,https://shakespeareandco.princeton.edu/books/mowrer-american-world/,This American World,,"Mowrer, Edgar Ansel",1928,,Lending Library Card,"Sylvia Beach, Thérèse Tony-Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/27246b4c-7d99-4dca-b874-ab90bd542cfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/a1%2Fec%2Ff5%2Fa1ecf56bff2e4aefa5c17aaba1dcce85%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-12-22,1935-01-09,https://shakespeareandco.princeton.edu/members/guillemin-annie/,Annie Guillemin,"Guillemin, Annie",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/butler-way-flesh/,The Way of All Flesh,,"Butler, Samuel",1903,,Lending Library Card,"Sylvia Beach, Annie Guillemin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2d6019d9-34ed-4ca4-97a9-5fd05d8640a7/manifest,https://iiif.princeton.edu/loris/figgy_prod/5a%2Ffc%2F38%2F5afc38c7321c4497adcc378d8774e24d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-12-24,1934-12-31,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/louis-bromfield-today-gone-tomorrow/,Here Today and Gone Tomorrow,,"Bromfield, Louis",1934,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/3a%2Fa5%2F3b%2F3aa53b27338545bfbc02b4bef71fd290%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-12-24,1934-12-29,https://shakespeareandco.princeton.edu/members/maxwell/,Mrs. Maxwell,"Maxwell, Mrs.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/chekhov-cherry-orchard/,The Cherry Orchard,,"Chekhov, Anton",1904,,Lending Library Card,"Sylvia Beach, Mrs. Maxwell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6148b048-a591-4aae-8470-52fde178e0aa/manifest,https://iiif.princeton.edu/loris/figgy_prod/a3%2F59%2F56%2Fa359568ae1a7491689f98c55dd398b98%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-12-24,1934-12-29,https://shakespeareandco.princeton.edu/members/maxwell/,Mrs. Maxwell,"Maxwell, Mrs.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/butts-macedonian/,The Macedonian,,"Butts, Mary",1933,,Lending Library Card,"Sylvia Beach, Mrs. Maxwell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6148b048-a591-4aae-8470-52fde178e0aa/manifest,https://iiif.princeton.edu/loris/figgy_prod/a3%2F59%2F56%2Fa359568ae1a7491689f98c55dd398b98%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-12-26,1935-01-03,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/lawrence-kangaroo/,Kangaroo,,"Lawrence, D. H.",1923,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/94%2F03%2F1e%2F94031e37cbfb46c1993af351d4f6ea4c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-12-26,1935-01-02,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/nicolson-swinburne/,Swinburne,,"Nicolson, Harold George",1926,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2Ffa%2F72%2F21fa72d047dc41398c298fa0522406e8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-12-26,1935-01-05,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/stribling-unfinished-cathedral/,Unfinished Cathedral,,"Stribling, Thomas Sigismund",1934,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2Ffa%2F72%2F21fa72d047dc41398c298fa0522406e8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-12-26,1935-01-02,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/maugham-altogether-collected-stories/,Altogether: Being the Collected Stories of W. Somerset Maugham,,"Maugham, W. Somerset",1934,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2Ffa%2F72%2F21fa72d047dc41398c298fa0522406e8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-12-26,1934-12-29,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/dowden-shakspere-critical-study/,Shakespeare: A Critical Study of His Mind and Art,,"Dowden, Edward",1875,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/94%2F03%2F1e%2F94031e37cbfb46c1993af351d4f6ea4c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-12-26,1934-12-28,https://shakespeareandco.princeton.edu/members/rirachowsky-fanny/,Fanny Rirachowsky,"Rirachowsky, Fanny",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/huxley-point-counter-point/,Point Counter Point,,"Huxley, Aldous",1928,,Lending Library Card,"Sylvia Beach, Fanny Rirachowsky Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ed53891-0a1b-4bc4-8b10-d7d32f46663a/manifest,https://iiif-cloud.princeton.edu/iiif/2/f0%2F00%2F80%2Ff00080476a8a4a4bb23537892b912580%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-12-26,1935-01-02,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/mackworth-time-tide/,Time and Tide,"Vol. 15, no. 51, Dec 22, 1934",,,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2Ffa%2F72%2F21fa72d047dc41398c298fa0522406e8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-12-26,1935-01-02,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/martin-new-statesman-nation/,The New Statesman and Nation,"Vol. 8, no. 200, Dec 22, 1934",,,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/21%2Ffa%2F72%2F21fa72d047dc41398c298fa0522406e8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-12-26,1935-01-19,https://shakespeareandco.princeton.edu/members/tony-mayer/,Thérèse Tony-Mayer,"Tony-Mayer, Thérèse",,,,,,,,,Returned,24,,,https://shakespeareandco.princeton.edu/books/strachey-eminent-victorians/,Eminent Victorians,,"Strachey, Giles Lytton",1918,,Lending Library Card,"Sylvia Beach, Thérèse Tony-Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/27246b4c-7d99-4dca-b874-ab90bd542cfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/a1%2Fec%2Ff5%2Fa1ecf56bff2e4aefa5c17aaba1dcce85%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-12-27,1935-02-04,https://shakespeareandco.princeton.edu/members/delimal/,Mme Delimal,"Delimal, Mme",,,,,,,,,Returned,39,,,https://shakespeareandco.princeton.edu/books/lawrence-women-love/,Women in Love,,"Lawrence, D. H.",1920,,Lending Library Card,"Sylvia Beach, Madame Delimal Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d7650699-e9d7-4e63-85ff-bce7e9c8dfcd/manifest,https://iiif.princeton.edu/loris/figgy_prod/09%2F74%2F1b%2F09741b95533642218a7f3992da9fea4c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-12-28,1935-01-16,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/famous-plays-1934/,Famous Plays of 1934,,,1934,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/e6%2F43%2F11%2Fe643111d618f45aeb8829844d126a6c8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-12-28,1935-01-15,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/collier-defy-foul-fiend/,"Defy the Foul Fiend: Or, the Misadventures of a Heart",,"Collier, John",1934,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/e6%2F43%2F11%2Fe643111d618f45aeb8829844d126a6c8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-12-28,1935-10-25,https://shakespeareandco.princeton.edu/members/bonnerot-louis/,Louis Bonnerot,"Bonnerot, Louis",,,,,,,,,Returned,301,,,https://shakespeareandco.princeton.edu/books/grigson-new-verse/,New Verse,,,,,Lending Library Card,"Sylvia Beach, Louis Bonnerot Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c14cc736-079c-4403-9036-a2de4743414a/manifest,https://iiif.princeton.edu/loris/figgy_prod/9f%2F6c%2F07%2F9f6c0714aef2411d8ae482314a2c165a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1934-12-28,1934-12-28,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,,,3.00,FRF,https://shakespeareandco.princeton.edu/books/martin-new-statesman-nation/,The New Statesman and Nation,,,,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5d%2Fd5%2Fd7%2F5dd5d73d2e8b41eaa75eafd050537f72%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-12-28,1935-01-02,https://shakespeareandco.princeton.edu/members/yarrow-catherine/,Catherine Yarrow,"Yarrow, Catherine",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/davies-life-known-voices/,Life as We Have Known It: The Voices of Working-Class Women,,,1931,,Lending Library Card,"Sylvia Beach, Catherine Yarrow Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d0d522e7-9d4e-41ca-8b3b-8fe6ba58e334/manifest,https://iiif.princeton.edu/loris/figgy_prod/38%2Fe4%2F9e%2F38e49ec85ad54b1bb50df436efd43955%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-12-28,1935-01-04,https://shakespeareandco.princeton.edu/members/bidoire-boulenger/,Miss Boulenger / Mme Bidoire,"Bidoire, Mme",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/hemingway-time/,In Our Time,,"Hemingway, Ernest",,Unidentified edition. Either Hemingway's *in our time* (1924) or *In Our Time* (1925).,Lending Library Card,"Sylvia Beach, Boulenger Bidoire Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7f3ef4f0-6ce0-43d1-b96a-1328f891536c/manifest,https://iiif-cloud.princeton.edu/iiif/2/4b%2F5b%2Fe1%2F4b5be155079545a19ff743d77214f7b8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-12-28,1935-01-15,https://shakespeareandco.princeton.edu/members/bidoire-boulenger/,Miss Boulenger / Mme Bidoire,"Bidoire, Mme",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/maugham-moon-sixpence/,The Moon and Sixpence,,"Maugham, W. Somerset",1919,,Lending Library Card,"Sylvia Beach, Boulenger Bidoire Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7f3ef4f0-6ce0-43d1-b96a-1328f891536c/manifest,https://iiif-cloud.princeton.edu/iiif/2/4b%2F5b%2Fe1%2F4b5be155079545a19ff743d77214f7b8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-12-28,1934-12-31,https://shakespeareandco.princeton.edu/members/rirachowsky-fanny/,Fanny Rirachowsky,"Rirachowsky, Fanny",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/harris-oscar-wilde-life/,Oscar Wilde: His Life and Confessions,Vol. 1,"Harris, Frank",1916,,Lending Library Card,"Sylvia Beach, Fanny Rirachowsky Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ed53891-0a1b-4bc4-8b10-d7d32f46663a/manifest,https://iiif-cloud.princeton.edu/iiif/2/f0%2F00%2F80%2Ff00080476a8a4a4bb23537892b912580%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-12-29,1935-01-03,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/chambers-short-life-shakespeare/,A Short Life of Shakespeare,,"Chambers, E. K.",1933,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/94%2F03%2F1e%2F94031e37cbfb46c1993af351d4f6ea4c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1934-12-29,1935-01-09,https://shakespeareandco.princeton.edu/members/maxwell/,Mrs. Maxwell,"Maxwell, Mrs.",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/lewis-men-without-art/,Men without Art,,"Lewis, Wyndham",1934,,Lending Library Card,"Sylvia Beach, Mrs. Maxwell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6148b048-a591-4aae-8470-52fde178e0aa/manifest,https://iiif.princeton.edu/loris/figgy_prod/a3%2F59%2F56%2Fa359568ae1a7491689f98c55dd398b98%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-12-29,1935-01-09,https://shakespeareandco.princeton.edu/members/maxwell/,Mrs. Maxwell,"Maxwell, Mrs.",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/lawrence-wind/,"Not I, but the Wind",,"Lawrence, Frieda",1934,,Lending Library Card,"Sylvia Beach, Mrs. Maxwell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6148b048-a591-4aae-8470-52fde178e0aa/manifest,https://iiif.princeton.edu/loris/figgy_prod/a3%2F59%2F56%2Fa359568ae1a7491689f98c55dd398b98%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-12-31,1935-01-04,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/ashton-hornets-nest/,Hornets' Nest,,"Ashton, Helen",1934,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/3a%2Fa5%2F3b%2F3aa53b27338545bfbc02b4bef71fd290%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1934-12-31,1935-01-02,https://shakespeareandco.princeton.edu/members/rirachowsky-fanny/,Fanny Rirachowsky,"Rirachowsky, Fanny",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/harris-oscar-wilde-life/,Oscar Wilde: His Life and Confessions,Vol. 2,"Harris, Frank",1916,,Lending Library Card,"Sylvia Beach, Fanny Rirachowsky Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ed53891-0a1b-4bc4-8b10-d7d32f46663a/manifest,https://iiif-cloud.princeton.edu/iiif/2/2c%2Fe2%2F41%2F2ce24179ad9943f384d53e6947c82f6c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-01-02,1935-01-05,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/lincoln-february-hill/,February Hill,,"Lincoln, Victoria",1934,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/b0%2Fc0%2Fad%2Fb0c0ad5c86664a81b0badbc2b9faff4d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-01-02,1935-01-05,https://shakespeareandco.princeton.edu/members/rirachowsky-fanny/,Fanny Rirachowsky,"Rirachowsky, Fanny",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/baring-daphne-adeane/,Daphne Adeane,,"Baring, Maurice",1927,,Lending Library Card,"Sylvia Beach, Fanny Rirachowsky Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ed53891-0a1b-4bc4-8b10-d7d32f46663a/manifest,https://iiif-cloud.princeton.edu/iiif/2/2c%2Fe2%2F41%2F2ce24179ad9943f384d53e6947c82f6c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-01-02,1935-01-11,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/wilder-heavens-destination/,Heaven's My Destination,,"Wilder, Thornton",1934,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/b0%2Fc0%2Fad%2Fb0c0ad5c86664a81b0badbc2b9faff4d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-01-02,1935-01-04,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/martin-new-statesman-nation/,The New Statesman and Nation,"Vol. 8, no. 201, Dec 29, 1934",,,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/b0%2Fc0%2Fad%2Fb0c0ad5c86664a81b0badbc2b9faff4d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-01-02,1935-01-04,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/mackworth-time-tide/,Time and Tide,"Vol. 15, no. 52, Dec 29, 1934",,,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/b0%2Fc0%2Fad%2Fb0c0ad5c86664a81b0badbc2b9faff4d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-01-02,1935-01-12,https://shakespeareandco.princeton.edu/members/yarrow-catherine/,Catherine Yarrow,"Yarrow, Catherine",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/bronte-jane-eyre/,Jane Eyre,,"BrontΓ«, Charlotte",1847,,Lending Library Card,"Sylvia Beach, Catherine Yarrow Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d0d522e7-9d4e-41ca-8b3b-8fe6ba58e334/manifest,https://iiif.princeton.edu/loris/figgy_prod/38%2Fe4%2F9e%2F38e49ec85ad54b1bb50df436efd43955%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-01-02,1935-01-10,https://shakespeareandco.princeton.edu/members/plummer-dorothy/,Dorothy Plummer,"Plummer, Dorothy",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/oflaherty-shame-devil/,Shame the Devil,,"O'Flaherty, Liam",1934,,Lending Library Card,"Sylvia Beach, Dorothy Plummer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5f53ce0-8ea6-4d1f-b36b-f6e5321bab4c/manifest,https://iiif.princeton.edu/loris/figgy_prod/73%2F61%2F28%2F7361283a6eb946cbbb43d97ca38f1deb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-01-04,1935-01-09,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/aldington-women-must-work/,Women Must Work: A Novel,,"Aldington, Richard",1934,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/3a%2Fa5%2F3b%2F3aa53b27338545bfbc02b4bef71fd290%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-01-04,1935-01-14,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/new-masses/,New Masses,,,,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/b0%2Fc0%2Fad%2Fb0c0ad5c86664a81b0badbc2b9faff4d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-01-04,1935-01-22,https://shakespeareandco.princeton.edu/members/wibbelz-henry/,Henry W. Wibbelz,"Wibbelz, Henry W.",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/boyle-plagued-nightingale/,Plagued by the Nightingale,,"Boyle, Kay",1931,,Lending Library Card,"Sylvia Beach, Henry W. Wibbelz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/225d5fc4-c83d-46e5-b861-ad36ae4548b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/30%2Fd6%2F9f%2F30d69f3cae0d4af189b9671bc81dbde3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1935-01-04,1935-01-04,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,,,3.00,FRF,https://shakespeareandco.princeton.edu/books/martin-new-statesman-nation/,The New Statesman and Nation,,,,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5d%2Fd5%2Fd7%2F5dd5d73d2e8b41eaa75eafd050537f72%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-01-04,1935-01-12,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/forster-goldsworthy-lowes-dickinson/,Goldsworthy Lowes Dickinson,,"Forster, E. M.",1934,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/9d%2F97%2F6e%2F9d976e57833f41c3b362aafa315a35e5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1935-01-05,1935-02-05,https://shakespeareandco.princeton.edu/members/delimal/,Mme Delimal,"Delimal, Mme",15.00,,1 month,31,1,,1935-02-05,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Madame Delimal Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/d7650699-e9d7-4e63-85ff-bce7e9c8dfcd/manifest,;https://iiif.princeton.edu/loris/figgy_prod/09%2F74%2F1b%2F09741b95533642218a7f3992da9fea4c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-01-05,1935-01-07,https://shakespeareandco.princeton.edu/members/rirachowsky-fanny/,Fanny Rirachowsky,"Rirachowsky, Fanny",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/lehmann-note-music/,A Note in Music,,"Lehmann, Rosamond",1930,,Lending Library Card,"Sylvia Beach, Fanny Rirachowsky Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ed53891-0a1b-4bc4-8b10-d7d32f46663a/manifest,https://iiif-cloud.princeton.edu/iiif/2/2c%2Fe2%2F41%2F2ce24179ad9943f384d53e6947c82f6c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-01-05,1935-01-11,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/woolf-waves/,The Waves,,"Woolf, Virginia",1931,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/45%2F51%2F1f%2F45511f74f3ab463aa6894aec541b2a94%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-01-05,1935-01-11,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/moult-mary-webb-life/,Mary Webb: Her Life and Work,,"Moult, Thomas",1931,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/45%2F51%2F1f%2F45511f74f3ab463aa6894aec541b2a94%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1935-01-07,1935-02-07,https://shakespeareandco.princeton.edu/members/fabre-cecile/,CΓ©cile Fabre,"Fabre, CΓ©cile",25.00,30.00,1 month,31,1,,1935-01-07,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, CΓ©cile Fabre Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6b0a269e-1341-4286-9cc3-f52802e7f785/manifest,https://iiif.princeton.edu/loris/figgy_prod/ac%2Fc1%2F58%2Facc15802ba8442a7aa5ebd29a95d489a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-01-07,1935-01-12,https://shakespeareandco.princeton.edu/members/fabre-cecile/,CΓ©cile Fabre,"Fabre, CΓ©cile",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/thompson-breakfast-bed/,Breakfast in Bed,,"Thompson, Sylvia",1934,,Lending Library Card,"Sylvia Beach, CΓ©cile Fabre Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6b0a269e-1341-4286-9cc3-f52802e7f785/manifest,https://iiif.princeton.edu/loris/figgy_prod/ac%2Fc1%2F58%2Facc15802ba8442a7aa5ebd29a95d489a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-01-07,1935-02-06,https://shakespeareandco.princeton.edu/members/wendel/,Hélène de Wendel / Comtesse de Noailles,"de Wendel, Hélène",,,,,,,,,Returned,30,,,https://shakespeareandco.princeton.edu/books/yeats-cutting-agate/,The Cutting of an Agate,,"Yeats, William Butler",1912,,Lending Library Card,"Sylvia Beach, Madame Hélène Wendel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c70e230a-8313-4c53-9939-22beb5f809b6/manifest,https://iiif-cloud.princeton.edu/iiif/2/8a%2Fbe%2Fec%2F8abeec2451b647e0954a7a53d5eae991%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-01-07,1935-01-22,https://shakespeareandco.princeton.edu/members/wendel/,Hélène de Wendel / Comtesse de Noailles,"de Wendel, Hélène",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/joyce-ulysses/,Ulysses,,"Joyce, James",1922,,Lending Library Card,"Sylvia Beach, Madame Hélène Wendel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c70e230a-8313-4c53-9939-22beb5f809b6/manifest,https://iiif-cloud.princeton.edu/iiif/2/8a%2Fbe%2Fec%2F8abeec2451b647e0954a7a53d5eae991%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-01-07,1935-01-16,https://shakespeareandco.princeton.edu/members/van-den-bergh/,Tamara van den Bergh,"van den Bergh, Tamara",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/bacon-essays-counsels-civil/,"The Essays or Counsels, Civil and Moral, of Francis Bacon",,"Bacon, Francis",1890,,Lending Library Card,"Sylvia Beach, Miss Tamara van den Bergh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f3a52627-dc5d-410b-aa7f-9d39941f18e8/manifest,https://iiif.princeton.edu/loris/figgy_prod/a0%2F23%2Fb2%2Fa023b2f9c3894186bed79a0ae0ef2a90%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-01-07,1935-01-09,https://shakespeareandco.princeton.edu/members/van-den-bergh/,Tamara van den Bergh,"van den Bergh, Tamara",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/sturt-francis-bacon-biography/,Francis Bacon: A Biography,,"Sturt, Mary",1932,,Lending Library Card,"Sylvia Beach, Miss Tamara van den Bergh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f3a52627-dc5d-410b-aa7f-9d39941f18e8/manifest,https://iiif.princeton.edu/loris/figgy_prod/a0%2F23%2Fb2%2Fa023b2f9c3894186bed79a0ae0ef2a90%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-01-07,1935-01-16,https://shakespeareandco.princeton.edu/members/van-den-bergh/,Tamara van den Bergh,"van den Bergh, Tamara",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/macaulay-essay-bacon/,Essay on Bacon,,"Macaulay, Thomas Babington",1915,,Lending Library Card,"Sylvia Beach, Miss Tamara van den Bergh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f3a52627-dc5d-410b-aa7f-9d39941f18e8/manifest,https://iiif.princeton.edu/loris/figgy_prod/a0%2F23%2Fb2%2Fa023b2f9c3894186bed79a0ae0ef2a90%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-01-07,1935-01-12,https://shakespeareandco.princeton.edu/members/rirachowsky-fanny/,Fanny Rirachowsky,"Rirachowsky, Fanny",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/hawthorne-scarlet-letter/,The Scarlet Letter,,"Hawthorne, Nathaniel",1850,,Lending Library Card,"Sylvia Beach, Fanny Rirachowsky Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ed53891-0a1b-4bc4-8b10-d7d32f46663a/manifest,https://iiif-cloud.princeton.edu/iiif/2/2c%2Fe2%2F41%2F2ce24179ad9943f384d53e6947c82f6c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-01-08,1935-01-30,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/frazier-golden-bough-study/,The Golden Bough: A Study in Comparative Religion,,"Frazer, James George",1890,,Lending Library Card,"Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F0d%2F24%2F560d24c0dfa94677ae04cf2db490c371%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-01-08,1935-01-16,https://shakespeareandco.princeton.edu/members/bernheim-francoise/,FranΓ§oise Bernheim,"Bernheim, FranΓ§oise",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/bennett-imperial-palace/,Imperial Palace,,"Bennett, Arnold",1930,,Lending Library Card,"Sylvia Beach, FranΓ§oise Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5e7f717b-973d-41b9-8fbb-c14306386d92/manifest,https://iiif-cloud.princeton.edu/iiif/2/68%2F8d%2F3c%2F688d3c18dba14f33bb55ff95ea34e190%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1935-01-08,1935-07-08,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",90.00,,6 months,181,1,,1935-01-11,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/45%2F51%2F1f%2F45511f74f3ab463aa6894aec541b2a94%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-01-09,1935-01-19,https://shakespeareandco.princeton.edu/members/guillemin-annie/,Annie Guillemin,"Guillemin, Annie",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/kennedy-ladies-lyndon/,The Ladies of Lyndon,,"Kennedy, Margaret",1923,,Lending Library Card,"Sylvia Beach, Annie Guillemin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2d6019d9-34ed-4ca4-97a9-5fd05d8640a7/manifest,https://iiif.princeton.edu/loris/figgy_prod/5a%2Ffc%2F38%2F5afc38c7321c4497adcc378d8774e24d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1935-01-09,1935-01-09,https://shakespeareandco.princeton.edu/members/church-henry/,Henry Church,"Church, Henry",,,,,,,,,,,36.00,FRF,https://shakespeareandco.princeton.edu/books/macleish-conquistador/,Conquistador,,"MacLeish, Archibald",1933,,Lending Library Card,"Sylvia Beach, Henry Church Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4f79663d-da9d-460a-bbd7-44cd14c2cc0f/manifest,https://iiif-cloud.princeton.edu/iiif/2/82%2Ffb%2Fee%2F82fbeee2fa2a4685962e25c031da5007%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-01-09,1935-01-15,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/wassermann-joseph-kerkhovens-third/,Joseph Kerkhoven's Third Existence,,"Wassermann, Jakob",1934,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/3a%2Fa5%2F3b%2F3aa53b27338545bfbc02b4bef71fd290%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1935-01-09,1935-01-09,https://shakespeareandco.princeton.edu/members/church-henry/,Henry Church,"Church, Henry",,,,,,,,,,,36.00,FRF,https://shakespeareandco.princeton.edu/books/richardson-dawns-left-hand/,Dawn's Left Hand (Pilgrimage 10),,"Richardson, Dorothy M.",1931,,Lending Library Card,"Sylvia Beach, Henry Church Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4f79663d-da9d-460a-bbd7-44cd14c2cc0f/manifest,https://iiif-cloud.princeton.edu/iiif/2/82%2Ffb%2Fee%2F82fbeee2fa2a4685962e25c031da5007%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1935-01-09,1935-01-09,https://shakespeareandco.princeton.edu/members/church-henry/,Henry Church,"Church, Henry",,,,,,,,,,,36.00,FRF,https://shakespeareandco.princeton.edu/books/lahey-gerard-manley-hopkins/,Gerard Manley Hopkins,,"Lahey, Gerald F.",1930,,Lending Library Card,"Sylvia Beach, Henry Church Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4f79663d-da9d-460a-bbd7-44cd14c2cc0f/manifest,https://iiif-cloud.princeton.edu/iiif/2/82%2Ffb%2Fee%2F82fbeee2fa2a4685962e25c031da5007%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1935-01-09,1935-02-09,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",15.00,,1 month,31,1,,1935-01-18,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/9d%2F97%2F6e%2F9d976e57833f41c3b362aafa315a35e5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-01-09,1935-01-14,https://shakespeareandco.princeton.edu/members/maxwell/,Mrs. Maxwell,"Maxwell, Mrs.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/ford-wicked-man/,When the Wicked Man,,"Ford, Ford Madox",1932,,Lending Library Card,"Sylvia Beach, Mrs. Maxwell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6148b048-a591-4aae-8470-52fde178e0aa/manifest,https://iiif.princeton.edu/loris/figgy_prod/a3%2F59%2F56%2Fa359568ae1a7491689f98c55dd398b98%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-01-09,1935-01-14,https://shakespeareandco.princeton.edu/members/maxwell/,Mrs. Maxwell,"Maxwell, Mrs.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/borden-mary-nazareth/,Mary of Nazareth,,"Borden, Mary",1933,,Lending Library Card,"Sylvia Beach, Mrs. Maxwell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6148b048-a591-4aae-8470-52fde178e0aa/manifest,https://iiif.princeton.edu/loris/figgy_prod/a3%2F59%2F56%2Fa359568ae1a7491689f98c55dd398b98%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1935-01-09,1935-01-09,https://shakespeareandco.princeton.edu/members/church-henry/,Henry Church,"Church, Henry",,,,,,,,,,,27.00,FRF,https://shakespeareandco.princeton.edu/books/richardson-backwater-pilgrimage-2/,Backwater (Pilgrimage 2),,"Richardson, Dorothy M.",1916,,Lending Library Card,"Sylvia Beach, Henry Church Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4f79663d-da9d-460a-bbd7-44cd14c2cc0f/manifest,https://iiif-cloud.princeton.edu/iiif/2/82%2Ffb%2Fee%2F82fbeee2fa2a4685962e25c031da5007%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-01-10,1935-02-02,https://shakespeareandco.princeton.edu/members/prochasson/,Alice Prochasson,"Prochasson, Alice",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/collins-doctor-looks-literature/,The Doctor Looks at Literature: Psychological Studies of Life and Letters,,"Collins, Joseph",1923,,Lending Library Card,"Sylvia Beach, Alice Prochasson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/341b2429-d37f-490f-aa21-167ae02af0db/manifest,https://iiif.princeton.edu/loris/figgy_prod/86%2F6c%2F0f%2F866c0fa9caf446f083cc6c5b953fc93c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-01-10,1935-02-24,https://shakespeareandco.princeton.edu/members/prochasson/,Alice Prochasson,"Prochasson, Alice",,,,,,,,,Returned,45,,,https://shakespeareandco.princeton.edu/books/beach-twentieth-century-novel/,The Twentieth Century Novel: Studies in Technique,,"Beach, Joseph",1932,,Lending Library Card,"Sylvia Beach, Alice Prochasson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/341b2429-d37f-490f-aa21-167ae02af0db/manifest,https://iiif.princeton.edu/loris/figgy_prod/86%2F6c%2F0f%2F866c0fa9caf446f083cc6c5b953fc93c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-01-10,,https://shakespeareandco.princeton.edu/members/plummer-dorothy/,Dorothy Plummer,"Plummer, Dorothy",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/synge-aran-islands/,The Aran Islands,,"Synge, John Millington",1906,,Lending Library Card,"Sylvia Beach, Dorothy Plummer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5f53ce0-8ea6-4d1f-b36b-f6e5321bab4c/manifest,https://iiif.princeton.edu/loris/figgy_prod/73%2F61%2F28%2F7361283a6eb946cbbb43d97ca38f1deb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1935-01-11,1935-07-11,https://shakespeareandco.princeton.edu/members/massey/,Adelaide W. Massey / A. W. Massey,"Massey, Adelaide W.",100.00,,6 months,181,2,,1935-01-11,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, A. W. Massey Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c4712c46-76f3-4581-99d6-d0ffd31b4138/manifest,https://iiif-cloud.princeton.edu/iiif/2/a4%2F76%2Ffd%2Fa476fd809f344e05836ec8137b929e52%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-01-11,1935-01-30,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/lawrence-sea-sardinia/,Sea and Sardinia,,"Lawrence, D. H.",1921,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/45%2F51%2F1f%2F45511f74f3ab463aa6894aec541b2a94%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-01-11,1935-01-25,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/james-princess-casamassima/,The Princess Casamassima,,"James, Henry",1886,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/45%2F51%2F1f%2F45511f74f3ab463aa6894aec541b2a94%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-01-11,1935-01-30,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/lawrence-rainbow/,The Rainbow,,"Lawrence, D. H.",1915,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/45%2F51%2F1f%2F45511f74f3ab463aa6894aec541b2a94%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-01-11,1935-01-22,https://shakespeareandco.princeton.edu/members/massey/,Adelaide W. Massey / A. W. Massey,"Massey, Adelaide W.",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/boyle-first-lover-stories/,The First Lover and Other Stories,,"Boyle, Kay",1933,,Lending Library Card,"Sylvia Beach, A. W. Massey Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c4712c46-76f3-4581-99d6-d0ffd31b4138/manifest,https://iiif-cloud.princeton.edu/iiif/2/a4%2F76%2Ffd%2Fa476fd809f344e05836ec8137b929e52%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-01-11,1935-01-22,https://shakespeareandco.princeton.edu/members/massey/,Adelaide W. Massey / A. W. Massey,"Massey, Adelaide W.",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/boyle-year-last/,Year before Last,,"Boyle, Kay",1932,,Lending Library Card,"Sylvia Beach, A. W. Massey Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c4712c46-76f3-4581-99d6-d0ffd31b4138/manifest,https://iiif-cloud.princeton.edu/iiif/2/a4%2F76%2Ffd%2Fa476fd809f344e05836ec8137b929e52%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-01-12,1935-01-26,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/stead-salzburg-tales/,The Salzburg Tales,,"Stead, Christina",1934,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5d%2Fd5%2Fd7%2F5dd5d73d2e8b41eaa75eafd050537f72%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-01-12,1935-02-02,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/herrick-herrick-poetical-works/,Herrick's Poetical Works,,"Herrick, Robert",,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5d%2Fd5%2Fd7%2F5dd5d73d2e8b41eaa75eafd050537f72%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-01-12,1935-01-17,https://shakespeareandco.princeton.edu/members/yarrow-catherine/,Catherine Yarrow,"Yarrow, Catherine",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/bronte-tenant-wildfell-hall/,The Tenant of Wildfell Hall,2 vols.,"BrontΓ«, Anne",1848,,Lending Library Card,"Sylvia Beach, Catherine Yarrow Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d0d522e7-9d4e-41ca-8b3b-8fe6ba58e334/manifest,https://iiif.princeton.edu/loris/figgy_prod/43%2F3f%2F02%2F433f021568d741549eee31ab87bf14ea%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-01-12,1935-01-19,https://shakespeareandco.princeton.edu/members/mazon/,Mme Mazon,"Mazon, Mme",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/yeats-four-plays-dancers/,Four Plays for Dancers,,"Yeats, William Butler",1921,,Lending Library Card,"Sylvia Beach, Madame Mazon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/faf25016-678e-49d8-b616-45145b11e1ab/manifest,https://iiif.princeton.edu/loris/figgy_prod/20%2F58%2Fe7%2F2058e76aee8f4e7a87ca6b5333faf1cd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-01-12,1935-01-30,https://shakespeareandco.princeton.edu/members/rirachowsky-fanny/,Fanny Rirachowsky,"Rirachowsky, Fanny",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/stein-autobiography-alice-b/,The Autobiography of Alice B. Toklas,,"Stein, Gertrude",1933,,Lending Library Card,"Sylvia Beach, Fanny Rirachowsky Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ed53891-0a1b-4bc4-8b10-d7d32f46663a/manifest,https://iiif-cloud.princeton.edu/iiif/2/2c%2Fe2%2F41%2F2ce24179ad9943f384d53e6947c82f6c%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1935-01-12,1935-04-12,https://shakespeareandco.princeton.edu/members/mazon/,Mme Mazon,"Mazon, Mme",40.00,30.00,3 months,90,1,,1935-01-12,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Madame Mazon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/faf25016-678e-49d8-b616-45145b11e1ab/manifest,https://iiif.princeton.edu/loris/figgy_prod/20%2F58%2Fe7%2F2058e76aee8f4e7a87ca6b5333faf1cd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-01-12,1935-02-07,https://shakespeareandco.princeton.edu/members/fabre-cecile/,CΓ©cile Fabre,"Fabre, CΓ©cile",,,,,,,,,Returned,26,,,https://shakespeareandco.princeton.edu/books/lewis-work-art/,Work of Art,,"Lewis, Sinclair",1934,,Lending Library Card,"Sylvia Beach, CΓ©cile Fabre Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6b0a269e-1341-4286-9cc3-f52802e7f785/manifest,https://iiif.princeton.edu/loris/figgy_prod/ac%2Fc1%2F58%2Facc15802ba8442a7aa5ebd29a95d489a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1935-01-12,1935-01-12,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,,,3.00,FRF,https://shakespeareandco.princeton.edu/books/martin-new-statesman-nation/,The New Statesman and Nation,"Vol. 9, no. 203, Jan 12, 1935",,,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5d%2Fd5%2Fd7%2F5dd5d73d2e8b41eaa75eafd050537f72%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1935-01-12,1935-01-12,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,,,3.00,FRF,https://shakespeareandco.princeton.edu/books/mackworth-time-tide/,Time and Tide,,,,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5d%2Fd5%2Fd7%2F5dd5d73d2e8b41eaa75eafd050537f72%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-01-12,1935-01-18,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/cooper-deerslayer/,The Deerslayer,,"Cooper, James Fenimore",1841,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/9d%2F97%2F6e%2F9d976e57833f41c3b362aafa315a35e5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-01-12,1935-01-19,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/brooks-emerson-others/,Emerson and Others,,"Brooks, Van Wyck",1927,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/9d%2F97%2F6e%2F9d976e57833f41c3b362aafa315a35e5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1935-01-13,1935-01-13,https://shakespeareandco.princeton.edu/members/church-henry/,Henry Church,"Church, Henry",,,,,,,,,,,58.00,FRF,https://shakespeareandco.princeton.edu/books/macleish-poems-1924-1933/,"Poems, 1924 β 1933",,"MacLeish, Archibald",1933,,Lending Library Card,"Sylvia Beach, Henry Church Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4f79663d-da9d-460a-bbd7-44cd14c2cc0f/manifest,https://iiif-cloud.princeton.edu/iiif/2/82%2Ffb%2Fee%2F82fbeee2fa2a4685962e25c031da5007%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-01-14,1935-01-21,https://shakespeareandco.princeton.edu/members/maxwell/,Mrs. Maxwell,"Maxwell, Mrs.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/hemingway-men-without-women/,Men without Women,,"Hemingway, Ernest",1927,,Lending Library Card,"Sylvia Beach, Mrs. Maxwell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6148b048-a591-4aae-8470-52fde178e0aa/manifest,https://iiif.princeton.edu/loris/figgy_prod/a3%2F59%2F56%2Fa359568ae1a7491689f98c55dd398b98%2Fintermediate_file.jp2/full/full/0/default.jpg
+Crossed out,1935-01-14,,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/lawrence-collected-poems-h/,The Collected Poems of D. H. Lawrence,,"Lawrence, D. H.",1928,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/b0%2Fc0%2Fad%2Fb0c0ad5c86664a81b0badbc2b9faff4d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-01-14,1935-06-24,https://shakespeareandco.princeton.edu/members/vox-maximilien/,Maximilien Vox / Samuel William ThΓ©odore Monod / Mr. Monod-Vox,"Vox, Maximilien",,,,,,,,,Returned,161,,,https://shakespeareandco.princeton.edu/books/queen-siamese-twin-mystery/,The Siamese Twin Mystery,,"Dannay, Frederic;Lee, Manfred B.",1933,,Lending Library Card,"Sylvia Beach, Maximilien Vox Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd769a65-ce70-4407-accf-660fd5c71c29/manifest,https://iiif.princeton.edu/loris/figgy_prod/16%2Fa6%2Fa8%2F16a6a84e1eb944479fec1e280f2c60e2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-01-14,1935-01-21,https://shakespeareandco.princeton.edu/members/maxwell/,Mrs. Maxwell,"Maxwell, Mrs.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/hall-miss-ogilvy-finds/,Miss Ogilvy Finds Herself,,"Hall, Radclyffe",1934,,Lending Library Card,"Sylvia Beach, Mrs. Maxwell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6148b048-a591-4aae-8470-52fde178e0aa/manifest,https://iiif.princeton.edu/loris/figgy_prod/a3%2F59%2F56%2Fa359568ae1a7491689f98c55dd398b98%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-01-14,1935-06-24,https://shakespeareandco.princeton.edu/members/vox-maximilien/,Maximilien Vox / Samuel William ThΓ©odore Monod / Mr. Monod-Vox,"Vox, Maximilien",,,,,,,,,Returned,161,,,https://shakespeareandco.princeton.edu/books/henry-roads-destiny/,Roads of Destiny,,"Henry, O.",1909,,Lending Library Card,"Sylvia Beach, Maximilien Vox Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/bd769a65-ce70-4407-accf-660fd5c71c29/manifest,https://iiif.princeton.edu/loris/figgy_prod/16%2Fa6%2Fa8%2F16a6a84e1eb944479fec1e280f2c60e2%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-01-14,1935-01-16,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/wallace-sinister-alibi/,Sinister Alibi,,"Wallace, Carlton",1934,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/b0%2Fc0%2Fad%2Fb0c0ad5c86664a81b0badbc2b9faff4d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-01-14,1935-01-16,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/oldfield-ivor-trent/,This Was Ivor Trent,,"Oldfield, Claude Houghton",1935,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/b0%2Fc0%2Fad%2Fb0c0ad5c86664a81b0badbc2b9faff4d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-01-14,1935-01-16,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/lawrence-wind/,"Not I, but the Wind",,"Lawrence, Frieda",1934,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/b0%2Fc0%2Fad%2Fb0c0ad5c86664a81b0badbc2b9faff4d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-01-15,1935-01-30,https://shakespeareandco.princeton.edu/members/bernheim-antoinette/,Antoinette Bernheim,"Bernheim, Antoinette",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/brooke-history-early-english/,The History of Early English Literature,,"Brooke, Stopford Augustus",1892,,Lending Library Card,"Sylvia Beach, Antoinette Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5b0acd5e-3121-468b-8dc7-846b4a08dafb/manifest,https://iiif-cloud.princeton.edu/iiif/2/3d%2Ffd%2F92%2F3dfd92dc212a4912aa80151e98eea833%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-01-15,1935-01-25,https://shakespeareandco.princeton.edu/members/bidoire-boulenger/,Miss Boulenger / Mme Bidoire,"Bidoire, Mme",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/young-red-rose/,So Red the Rose,,"Young, Stark",1934,,Lending Library Card,"Sylvia Beach, Boulenger Bidoire Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7f3ef4f0-6ce0-43d1-b96a-1328f891536c/manifest,https://iiif-cloud.princeton.edu/iiif/2/4b%2F5b%2Fe1%2F4b5be155079545a19ff743d77214f7b8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-01-15,1935-01-25,https://shakespeareandco.princeton.edu/members/bidoire-boulenger/,Miss Boulenger / Mme Bidoire,"Bidoire, Mme",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/douglas-south-wind/,South Wind,,"Douglas, Norman",1917,,Lending Library Card,"Sylvia Beach, Boulenger Bidoire Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7f3ef4f0-6ce0-43d1-b96a-1328f891536c/manifest,https://iiif-cloud.princeton.edu/iiif/2/4b%2F5b%2Fe1%2F4b5be155079545a19ff743d77214f7b8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-01-15,1935-01-22,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/mottram-banquet/,The Banquet,,"Mottram, R. H.",1934,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/3a%2Fa5%2F3b%2F3aa53b27338545bfbc02b4bef71fd290%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-01-16,1935-01-29,https://shakespeareandco.princeton.edu/members/van-den-bergh/,Tamara van den Bergh,"van den Bergh, Tamara",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/woolf-mrs-dalloway/,Mrs. Dalloway,,"Woolf, Virginia",1925,,Lending Library Card,"Sylvia Beach, Miss Tamara van den Bergh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f3a52627-dc5d-410b-aa7f-9d39941f18e8/manifest,https://iiif.princeton.edu/loris/figgy_prod/a0%2F23%2Fb2%2Fa023b2f9c3894186bed79a0ae0ef2a90%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-01-16,1935-01-21,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/louis-bromfield-today-gone-tomorrow/,Here Today and Gone Tomorrow,,"Bromfield, Louis",1934,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/b0%2Fc0%2Fad%2Fb0c0ad5c86664a81b0badbc2b9faff4d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-01-16,1935-01-21,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/gilfillan-went-pit-college/,I Went to Pit College,,"Gilfillan, Lauren",1934,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/b0%2Fc0%2Fad%2Fb0c0ad5c86664a81b0badbc2b9faff4d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-01-16,1935-01-22,https://shakespeareandco.princeton.edu/members/bernheim-francoise/,FranΓ§oise Bernheim,"Bernheim, FranΓ§oise",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/stern-mosaic/,Mosaic,,"Stern, G. B.",1930,,Lending Library Card,"Sylvia Beach, FranΓ§oise Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5e7f717b-973d-41b9-8fbb-c14306386d92/manifest,https://iiif-cloud.princeton.edu/iiif/2/68%2F8d%2F3c%2F688d3c18dba14f33bb55ff95ea34e190%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-01-16,1935-01-24,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/freeman-defence-dr-thorndyke/,For the Defence; Dr. Thorndyke,,"Freeman, R. Austin",1934,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/cc%2Ffa%2F5d%2Fccfa5dcefcc7400ca591e470e0d28a7a%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1935-01-17,1935-02-17,https://shakespeareandco.princeton.edu/members/rirachowsky-fanny/,Fanny Rirachowsky,"Rirachowsky, Fanny",15.00,,1 month,31,1,,1935-02-08,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Fanny Rirachowsky Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/3ed53891-0a1b-4bc4-8b10-d7d32f46663a/manifest,;https://iiif-cloud.princeton.edu/iiif/2/2c%2Fe2%2F41%2F2ce24179ad9943f384d53e6947c82f6c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-01-17,1935-01-21,https://shakespeareandco.princeton.edu/members/yarrow-catherine/,Catherine Yarrow,"Yarrow, Catherine",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/eliot-mill-floss/,The Mill on the Floss,,"Eliot, George",1860,,Lending Library Card,"Sylvia Beach, Catherine Yarrow Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d0d522e7-9d4e-41ca-8b3b-8fe6ba58e334/manifest,https://iiif.princeton.edu/loris/figgy_prod/43%2F3f%2F02%2F433f021568d741549eee31ab87bf14ea%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-01-17,1935-02-09,https://shakespeareandco.princeton.edu/members/yarrow-catherine/,Catherine Yarrow,"Yarrow, Catherine",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/gaskell-life-charlotte-bronte/,The Life of Charlotte BrontΓ«,,"Gaskell, Elizabeth",1857,,Lending Library Card,"Sylvia Beach, Catherine Yarrow Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d0d522e7-9d4e-41ca-8b3b-8fe6ba58e334/manifest,https://iiif.princeton.edu/loris/figgy_prod/43%2F3f%2F02%2F433f021568d741549eee31ab87bf14ea%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1935-01-18,1935-01-18,https://shakespeareandco.princeton.edu/members/church-henry/,Henry Church,"Church, Henry",,,,,,,,,,,27.00,FRF,https://shakespeareandco.princeton.edu/books/richardson-honeycomb-pilgrimage-3/,Honeycomb (Pilgrimage 3),,"Richardson, Dorothy M.",1917,,Lending Library Card,"Sylvia Beach, Henry Church Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4f79663d-da9d-460a-bbd7-44cd14c2cc0f/manifest,https://iiif-cloud.princeton.edu/iiif/2/82%2Ffb%2Fee%2F82fbeee2fa2a4685962e25c031da5007%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-01-18,1935-01-19,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/brooks-wine-puritans/,The Wine of the Puritans,,"Brooks, Van Wyck",1908,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/9d%2F97%2F6e%2F9d976e57833f41c3b362aafa315a35e5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1935-01-18,1935-01-18,https://shakespeareandco.princeton.edu/members/church-henry/,Henry Church,"Church, Henry",,,,,,,,,,,17.50,FRF,https://shakespeareandco.princeton.edu/books/douglas-old-calabria/,Old Calabria,,"Douglas, Norman",1915,,Lending Library Card,"Sylvia Beach, Henry Church Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4f79663d-da9d-460a-bbd7-44cd14c2cc0f/manifest,https://iiif-cloud.princeton.edu/iiif/2/82%2Ffb%2Fee%2F82fbeee2fa2a4685962e25c031da5007%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1935-01-18,1935-01-18,https://shakespeareandco.princeton.edu/members/church-henry/,Henry Church,"Church, Henry",,,,,,,,,,,27.00,FRF,https://shakespeareandco.princeton.edu/books/richardson-pointed-roofs/,Pointed Roofs (Pilgrimage 1),,"Richardson, Dorothy M.",1915,,Lending Library Card,"Sylvia Beach, Henry Church Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4f79663d-da9d-460a-bbd7-44cd14c2cc0f/manifest,https://iiif-cloud.princeton.edu/iiif/2/82%2Ffb%2Fee%2F82fbeee2fa2a4685962e25c031da5007%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1935-01-18,1935-01-18,https://shakespeareandco.princeton.edu/members/church-henry/,Henry Church,"Church, Henry",,,,,,,,,,,17.50,FRF,https://shakespeareandco.princeton.edu/books/owen-poems-wilfred-owen/,The Poems of Wilfred Owen,,"Owen, Wilfred",1931,,Lending Library Card,"Sylvia Beach, Henry Church Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4f79663d-da9d-460a-bbd7-44cd14c2cc0f/manifest,https://iiif-cloud.princeton.edu/iiif/2/82%2Ffb%2Fee%2F82fbeee2fa2a4685962e25c031da5007%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1935-01-18,1935-01-18,https://shakespeareandco.princeton.edu/members/church-henry/,Henry Church,"Church, Henry",,,,,,,,,,,53.00,FRF,https://shakespeareandco.princeton.edu/books/james-alice-james-brothers/,"Alice James: Her Brothers, Her Journal",,"James, Alice",1934,,Lending Library Card,"Sylvia Beach, Henry Church Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4f79663d-da9d-460a-bbd7-44cd14c2cc0f/manifest,https://iiif-cloud.princeton.edu/iiif/2/82%2Ffb%2Fee%2F82fbeee2fa2a4685962e25c031da5007%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-01-19,1935-01-28,https://shakespeareandco.princeton.edu/members/tony-mayer/,Thérèse Tony-Mayer,"Tony-Mayer, Thérèse",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/bibesco-portrait-caroline/,Portrait of Caroline,,"Bibesco, Elizabeth",1931,,Lending Library Card,"Sylvia Beach, Thérèse Tony-Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/27246b4c-7d99-4dca-b874-ab90bd542cfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/a1%2Fec%2Ff5%2Fa1ecf56bff2e4aefa5c17aaba1dcce85%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-01-19,1935-01-21,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/franklin-poor-richards-almanac/,Poor Richard's Almanac,,"Franklin, Benjamin",,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/9d%2F97%2F6e%2F9d976e57833f41c3b362aafa315a35e5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-01-19,1935-01-29,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/forster-goldsworthy-lowes-dickinson/,Goldsworthy Lowes Dickinson,,"Forster, E. M.",1934,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/9d%2F97%2F6e%2F9d976e57833f41c3b362aafa315a35e5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-01-19,1935-01-22,https://shakespeareandco.princeton.edu/members/mazon/,Mme Mazon,"Mazon, Mme",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/yeats-autobiographies/,Autobiographies,,"Yeats, William Butler",1926,,Lending Library Card,"Sylvia Beach, Madame Mazon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/faf25016-678e-49d8-b616-45145b11e1ab/manifest,https://iiif.princeton.edu/loris/figgy_prod/20%2F58%2Fe7%2F2058e76aee8f4e7a87ca6b5333faf1cd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-01-19,1935-02-01,https://shakespeareandco.princeton.edu/members/guillemin-annie/,Annie Guillemin,"Guillemin, Annie",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/anderson-dark-laughter/,Dark Laughter,,"Anderson, Sherwood",1926,,Lending Library Card,"Sylvia Beach, Annie Guillemin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2d6019d9-34ed-4ca4-97a9-5fd05d8640a7/manifest,https://iiif.princeton.edu/loris/figgy_prod/5a%2Ffc%2F38%2F5afc38c7321c4497adcc378d8774e24d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-01-21,1935-01-23,https://shakespeareandco.princeton.edu/members/maxwell/,Mrs. Maxwell,"Maxwell, Mrs.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/katherine-mansfield/,Katherine Mansfield,,,,Unidentified. By or about Katherine Mansfield.,Lending Library Card,"Sylvia Beach, Mrs. Maxwell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6148b048-a591-4aae-8470-52fde178e0aa/manifest,https://iiif.princeton.edu/loris/figgy_prod/a3%2F59%2F56%2Fa359568ae1a7491689f98c55dd398b98%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-01-21,1935-01-23,https://shakespeareandco.princeton.edu/members/maxwell/,Mrs. Maxwell,"Maxwell, Mrs.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/sackville-west-dark-island/,The Dark Island,,"Sackville-West, Vita",1934,,Lending Library Card,"Sylvia Beach, Mrs. Maxwell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6148b048-a591-4aae-8470-52fde178e0aa/manifest,https://iiif.princeton.edu/loris/figgy_prod/a3%2F59%2F56%2Fa359568ae1a7491689f98c55dd398b98%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-01-21,1935-01-23,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/eastman-literary-mind-place/,The Literary Mind: Its Place in an Age of Science,,"Eastman, Max",1931,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/b0%2Fc0%2Fad%2Fb0c0ad5c86664a81b0badbc2b9faff4d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-01-21,1935-01-26,https://shakespeareandco.princeton.edu/members/bernheim-antoinette/,Antoinette Bernheim,"Bernheim, Antoinette",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/kennedy-constant-nymph/,The Constant Nymph,,"Kennedy, Margaret",1924,,Lending Library Card,"Sylvia Beach, Antoinette Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5b0acd5e-3121-468b-8dc7-846b4a08dafb/manifest,https://iiif-cloud.princeton.edu/iiif/2/3d%2Ffd%2F92%2F3dfd92dc212a4912aa80151e98eea833%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-01-21,1935-02-09,https://shakespeareandco.princeton.edu/members/yarrow-catherine/,Catherine Yarrow,"Yarrow, Catherine",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/duncan-life/,My Life,,"Duncan, Isadora",1927,,Lending Library Card,"Sylvia Beach, Catherine Yarrow Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d0d522e7-9d4e-41ca-8b3b-8fe6ba58e334/manifest,https://iiif.princeton.edu/loris/figgy_prod/43%2F3f%2F02%2F433f021568d741549eee31ab87bf14ea%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-01-21,1935-01-28,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/brett-lawrence-brett-friendship/,Lawrence and Brett: A Friendship,,"Brett, Dorothy",1933,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/b0%2Fc0%2Fad%2Fb0c0ad5c86664a81b0badbc2b9faff4d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-01-21,1935-01-30,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/wassermann-joseph-kerkhovens-third/,Joseph Kerkhoven's Third Existence,,"Wassermann, Jakob",1934,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/b0%2Fc0%2Fad%2Fb0c0ad5c86664a81b0badbc2b9faff4d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-01-21,1935-01-22,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/wells-tono-bungay/,Tono-Bungay,,"Wells, H. G.",1909,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/9d%2F97%2F6e%2F9d976e57833f41c3b362aafa315a35e5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-01-21,1935-01-22,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/galsworthy-white-monkey/,The White Monkey (A Modern Comedy),,"Galsworthy, John",1924,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/9d%2F97%2F6e%2F9d976e57833f41c3b362aafa315a35e5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-01-22,1935-01-26,https://shakespeareandco.princeton.edu/members/mazon/,Mme Mazon,"Mazon, Mme",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/dunsany-fifty-one-tales/,Fifty-One Tales,,"Dunsany, Lord",1915,,Lending Library Card,"Sylvia Beach, Madame Mazon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/faf25016-678e-49d8-b616-45145b11e1ab/manifest,https://iiif.princeton.edu/loris/figgy_prod/20%2F58%2Fe7%2F2058e76aee8f4e7a87ca6b5333faf1cd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-01-22,1935-01-26,https://shakespeareandco.princeton.edu/members/mazon/,Mme Mazon,"Mazon, Mme",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/yeats-plays/,Plays,,"Yeats, William Butler",,Unidentified edition or editions.,Lending Library Card,"Sylvia Beach, Madame Mazon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/faf25016-678e-49d8-b616-45145b11e1ab/manifest,https://iiif.princeton.edu/loris/figgy_prod/20%2F58%2Fe7%2F2058e76aee8f4e7a87ca6b5333faf1cd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-01-22,1935-01-26,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/oldfield-ivor-trent/,This Was Ivor Trent,,"Oldfield, Claude Houghton",1935,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/3a%2Fa5%2F3b%2F3aa53b27338545bfbc02b4bef71fd290%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-01-22,1935-02-04,https://shakespeareandco.princeton.edu/members/bernheim-francoise/,FranΓ§oise Bernheim,"Bernheim, FranΓ§oise",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/lawrence-virgin-gipsy/,The Virgin and the Gipsy,,"Lawrence, D. H.",1930,,Lending Library Card,"Sylvia Beach, FranΓ§oise Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5e7f717b-973d-41b9-8fbb-c14306386d92/manifest,https://iiif-cloud.princeton.edu/iiif/2/68%2F8d%2F3c%2F688d3c18dba14f33bb55ff95ea34e190%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-01-22,1935-02-06,https://shakespeareandco.princeton.edu/members/wendel/,Hélène de Wendel / Comtesse de Noailles,"de Wendel, Hélène",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/brewster-modern-fiction/,Modern Fiction,,"Brewster, Dorothy;Burrell, Angus",1934,,Lending Library Card,"Sylvia Beach, Madame Hélène Wendel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c70e230a-8313-4c53-9939-22beb5f809b6/manifest,https://iiif-cloud.princeton.edu/iiif/2/8a%2Fbe%2Fec%2F8abeec2451b647e0954a7a53d5eae991%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-01-22,1935-01-29,https://shakespeareandco.princeton.edu/members/massey/,Adelaide W. Massey / A. W. Massey,"Massey, Adelaide W.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/woolf-mrs-dalloway/,Mrs. Dalloway,,"Woolf, Virginia",1925,,Lending Library Card,"Sylvia Beach, A. W. Massey Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c4712c46-76f3-4581-99d6-d0ffd31b4138/manifest,https://iiif-cloud.princeton.edu/iiif/2/a4%2F76%2Ffd%2Fa476fd809f344e05836ec8137b929e52%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-01-22,1935-01-29,https://shakespeareandco.princeton.edu/members/massey/,Adelaide W. Massey / A. W. Massey,"Massey, Adelaide W.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/johnson-negro-americans-now/,"Negro Americans, What Now?",,"Johnson, James Weldon",1934,,Lending Library Card,"Sylvia Beach, A. W. Massey Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c4712c46-76f3-4581-99d6-d0ffd31b4138/manifest,https://iiif-cloud.princeton.edu/iiif/2/a4%2F76%2Ffd%2Fa476fd809f344e05836ec8137b929e52%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-01-23,1935-01-26,https://shakespeareandco.princeton.edu/members/maxwell/,Mrs. Maxwell,"Maxwell, Mrs.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/shaw-adventures-black-girl/,The Adventures of the Black Girl in Her Search for God,,"Shaw, George Bernard",1932,,Lending Library Card,"Sylvia Beach, Mrs. Maxwell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6148b048-a591-4aae-8470-52fde178e0aa/manifest,https://iiif.princeton.edu/loris/figgy_prod/a3%2F59%2F56%2Fa359568ae1a7491689f98c55dd398b98%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-01-23,1935-01-26,https://shakespeareandco.princeton.edu/members/maxwell/,Mrs. Maxwell,"Maxwell, Mrs.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/bartlett-nazi-germany-explained/,Nazi Germany Explained,,"Bartlett, Vernon",1933,,Lending Library Card,"Sylvia Beach, Mrs. Maxwell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6148b048-a591-4aae-8470-52fde178e0aa/manifest,https://iiif.princeton.edu/loris/figgy_prod/a3%2F59%2F56%2Fa359568ae1a7491689f98c55dd398b98%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1935-01-23,1935-01-23,https://shakespeareandco.princeton.edu/members/bredin/,Mme F. Bredin,"Bredin, Mme F.",,,,,,,,30.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1935-01-23,1935-02-05,https://shakespeareandco.princeton.edu/members/van-den-bergh/,Tamara van den Bergh,"van den Bergh, Tamara",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/macaulay-macaulay-bacon/,Macaulay on Bacon,,"Macaulay, Thomas Babington",,,Lending Library Card,"Sylvia Beach, Miss Tamara van den Bergh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f3a52627-dc5d-410b-aa7f-9d39941f18e8/manifest,https://iiif.princeton.edu/loris/figgy_prod/a0%2F23%2Fb2%2Fa023b2f9c3894186bed79a0ae0ef2a90%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-01-23,1935-01-28,https://shakespeareandco.princeton.edu/members/wibbelz-henry/,Henry W. Wibbelz,"Wibbelz, Henry W.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/boyle-year-last/,Year before Last,,"Boyle, Kay",1932,,Lending Library Card,"Sylvia Beach, Henry W. Wibbelz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/225d5fc4-c83d-46e5-b861-ad36ae4548b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/30%2Fd6%2F9f%2F30d69f3cae0d4af189b9671bc81dbde3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-01-24,1935-01-29,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/christie-didnt-ask-evans/,Why Didn't They Ask Evans?,,"Christie, Agatha",1934,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/cc%2Ffa%2F5d%2Fccfa5dcefcc7400ca591e470e0d28a7a%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1935-01-24,1935-01-24,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,,,33.00,FRF,https://shakespeareandco.princeton.edu/books/beckett-pricks-kicks/,More Pricks Than Kicks,,"Beckett, Samuel",1934,,Lending Library Card,"Sylvia Beach, James Joyce Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/60df1b72-de14-4053-ac2b-b16671872306/manifest,https://iiif.princeton.edu/loris/figgy_prod/67%2Fd5%2F25%2F67d52501a3de43098a30d8e69a5bd8e9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1935-01-24,1935-01-24,https://shakespeareandco.princeton.edu/members/joyce-james/,James Joyce,"Joyce, James",,,,,,,,,,,16.50,FRF,https://shakespeareandco.princeton.edu/books/macgreevy-poems/,Poems,,"MacGreevy, Thomas",1934,,Lending Library Card,"Sylvia Beach, James Joyce Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/60df1b72-de14-4053-ac2b-b16671872306/manifest,https://iiif.princeton.edu/loris/figgy_prod/67%2Fd5%2F25%2F67d52501a3de43098a30d8e69a5bd8e9%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-01-25,1935-02-16,https://shakespeareandco.princeton.edu/members/plummer-dorothy/,Dorothy Plummer,"Plummer, Dorothy",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/mencken-american-mercury/,The American Mercury,"Vol. 31, no. 123, Mar 1934",,,,Lending Library Card,"Sylvia Beach, Dorothy Plummer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5f53ce0-8ea6-4d1f-b36b-f6e5321bab4c/manifest,https://iiif.princeton.edu/loris/figgy_prod/73%2F61%2F28%2F7361283a6eb946cbbb43d97ca38f1deb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-01-25,1935-01-30,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/warner-lolly-willowes/,Lolly Willowes,,"Warner, Sylvia Townsend",1926,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/45%2F51%2F1f%2F45511f74f3ab463aa6894aec541b2a94%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-01-25,1935-02-04,https://shakespeareandco.princeton.edu/members/bidoire-boulenger/,Miss Boulenger / Mme Bidoire,"Bidoire, Mme",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/caldwell-gods-little-acre/,God's Little Acre,,"Caldwell, Erskine Preston",1933,,Lending Library Card,"Sylvia Beach, Boulenger Bidoire Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7f3ef4f0-6ce0-43d1-b96a-1328f891536c/manifest,https://iiif-cloud.princeton.edu/iiif/2/4b%2F5b%2Fe1%2F4b5be155079545a19ff743d77214f7b8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-01-26,1935-02-02,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/lawrence-wind/,"Not I, but the Wind",,"Lawrence, Frieda",1934,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5b%2Fae%2F7a%2F5bae7a078f9c45b2a2914cfee78e2313%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-01-26,1935-02-08,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/hopkins-letters-gerard-manley/,The Letters of Gerard Manley Hopkins to Robert Bridges and The Correspondence of Gerard Manley Hopkins to Richard Watson Dixon,"Vol. 1, 1935 The Letters of Gerard Manley Hopkins to Robert Bridges","Hopkins, Gerard Manley",1935,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5b%2Fae%2F7a%2F5bae7a078f9c45b2a2914cfee78e2313%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-01-26,1935-01-31,https://shakespeareandco.princeton.edu/members/bernheim-antoinette/,Antoinette Bernheim,"Bernheim, Antoinette",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/douglas-south-wind/,South Wind,,"Douglas, Norman",1917,,Lending Library Card,"Sylvia Beach, Antoinette Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5b0acd5e-3121-468b-8dc7-846b4a08dafb/manifest,https://iiif-cloud.princeton.edu/iiif/2/3d%2Ffd%2F92%2F3dfd92dc212a4912aa80151e98eea833%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-01-26,1935-01-29,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/brooks-life-emerson/,The Life of Emerson,,"Brooks, Van Wyck",1932,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/9d%2F97%2F6e%2F9d976e57833f41c3b362aafa315a35e5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-01-26,1935-01-31,https://shakespeareandco.princeton.edu/members/maxwell/,Mrs. Maxwell,"Maxwell, Mrs.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/woolf-orlando-biography/,Orlando: A Biography,,"Woolf, Virginia",1928,,Lending Library Card,"Sylvia Beach, Mrs. Maxwell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6148b048-a591-4aae-8470-52fde178e0aa/manifest,https://iiif.princeton.edu/loris/figgy_prod/a3%2F59%2F56%2Fa359568ae1a7491689f98c55dd398b98%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-01-26,1935-01-31,https://shakespeareandco.princeton.edu/members/maxwell/,Mrs. Maxwell,"Maxwell, Mrs.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/woolf-flush-biography/,Flush: A Biography,,"Woolf, Virginia",1933,,Lending Library Card,"Sylvia Beach, Mrs. Maxwell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6148b048-a591-4aae-8470-52fde178e0aa/manifest,https://iiif.princeton.edu/loris/figgy_prod/a3%2F59%2F56%2Fa359568ae1a7491689f98c55dd398b98%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-01-26,1935-01-28,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/roberts-guests-arrive/,The Guests Arrive,,"Roberts, Cecil",1934,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/3a%2Fa5%2F3b%2F3aa53b27338545bfbc02b4bef71fd290%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-01-26,1935-01-31,https://shakespeareandco.princeton.edu/members/mazon/,Mme Mazon,"Mazon, Mme",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/plays/,Plays,,,,Unidentified. Likely W. B. Yeats's [*Collected Plays*](https://shakespeareandco.princeton.edu/books/yeats-collected-plays-w/) (1934).,Lending Library Card,"Sylvia Beach, Madame Mazon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/faf25016-678e-49d8-b616-45145b11e1ab/manifest,https://iiif.princeton.edu/loris/figgy_prod/20%2F58%2Fe7%2F2058e76aee8f4e7a87ca6b5333faf1cd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-01-26,1935-01-31,https://shakespeareandco.princeton.edu/members/mazon/,Mme Mazon,"Mazon, Mme",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/barrie-peter-pan/,Peter Pan,,"Barrie, J. M.",,"Unidentified. Either *Peter Pan, or The Boy Who Wouldn't Grow Up* (1904) or *Peter Pan in Kensington Gardens* (1906).",Lending Library Card,"Sylvia Beach, Madame Mazon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/faf25016-678e-49d8-b616-45145b11e1ab/manifest,https://iiif.princeton.edu/loris/figgy_prod/20%2F58%2Fe7%2F2058e76aee8f4e7a87ca6b5333faf1cd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-01-28,1935-02-28,https://shakespeareandco.princeton.edu/members/wibbelz-henry/,Henry W. Wibbelz,"Wibbelz, Henry W.",,,,,,,,,Returned,31,,,https://shakespeareandco.princeton.edu/books/clouston-lunatic-large-novel/,The Lunatic at Large: A Novel,,"Clouston, J. Storer",1899,,Lending Library Card,"Sylvia Beach, Henry W. Wibbelz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/225d5fc4-c83d-46e5-b861-ad36ae4548b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/30%2Fd6%2F9f%2F30d69f3cae0d4af189b9671bc81dbde3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-01-28,1935-02-02,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/francis/,Francis I,,,,Unidentified. Either Jehanne d'Orliac's *Francis I: Prince of the Renaissance* (1932) or Francis Hackett's *Francis the First* (1934).,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/3a%2Fa5%2F3b%2F3aa53b27338545bfbc02b4bef71fd290%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-01-28,1935-01-30,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/martin-new-statesman-nation/,The New Statesman and Nation,"Vol. 9, no. 205, Jan 26, 1935",,,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/b0%2Fc0%2Fad%2Fb0c0ad5c86664a81b0badbc2b9faff4d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-01-28,1935-01-30,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/mackworth-time-tide/,Time and Tide,,,,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/b0%2Fc0%2Fad%2Fb0c0ad5c86664a81b0badbc2b9faff4d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-01-28,1935-02-01,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/maugham-plays/,Plays,"Vol. 5, 1934 Caesar's Wife; East of Suez; The Sacred Flame","Maugham, W. Somerset",,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/b0%2Fc0%2Fad%2Fb0c0ad5c86664a81b0badbc2b9faff4d%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1935-01-28,1935-02-28,https://shakespeareandco.princeton.edu/members/manziarly/,Marcelle de Manziarly,"de Manziarly, Marcelle",25.00,50.00,1 month,31,1,,1935-01-28,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Marcelle Manziarly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/4519d283-b8b9-4a86-9bf1-2c55f27482df/manifest,;https://iiif.princeton.edu/loris/figgy_prod/f4%2Ff8%2Ffe%2Ff4f8fe0f2fef4a99871220ac00c89b71%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-01-28,1935-12-30,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,336,,,https://shakespeareandco.princeton.edu/books/christie-didnt-ask-evans/,Why Didn't They Ask Evans?,,"Christie, Agatha",1934,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/41%2Feb%2Fc6%2F41ebc64c969a462a93b3674e19454d43%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-01-28,1935-02-04,https://shakespeareandco.princeton.edu/members/manziarly/,Marcelle de Manziarly,"de Manziarly, Marcelle",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/faulkner-doctor-martino-stories/,Doctor Martino and Other Stories,,"Faulkner, William",1934,,Lending Library Card,"Sylvia Beach, Marcelle Manziarly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4519d283-b8b9-4a86-9bf1-2c55f27482df/manifest,https://iiif.princeton.edu/loris/figgy_prod/f4%2Ff8%2Ffe%2Ff4f8fe0f2fef4a99871220ac00c89b71%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-01-28,1935-02-28,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,31,,,https://shakespeareandco.princeton.edu/books/adams-letters-henry-adams/,The Letters of Henry Adams,,"Adams, Henry",1930,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/b0%2Fc0%2Fad%2Fb0c0ad5c86664a81b0badbc2b9faff4d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-01-28,1935-01-30,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/canby-saturday-review-literature/,Saturday Review of Literature,,,,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/b0%2Fc0%2Fad%2Fb0c0ad5c86664a81b0badbc2b9faff4d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-01-28,1935-02-11,https://shakespeareandco.princeton.edu/members/wibbelz-henry/,Henry W. Wibbelz,"Wibbelz, Henry W.",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/wodehouse-little-nugget/,The Little Nugget,,"Wodehouse, P. G.",1913,,Lending Library Card,"Sylvia Beach, Henry W. Wibbelz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/225d5fc4-c83d-46e5-b861-ad36ae4548b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/30%2Fd6%2F9f%2F30d69f3cae0d4af189b9671bc81dbde3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-01-28,1935-02-06,https://shakespeareandco.princeton.edu/members/wibbelz-henry/,Henry W. Wibbelz,"Wibbelz, Henry W.",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/hardy-jude-obscure/,Jude the Obscure,,"Hardy, Thomas",1895,,Lending Library Card,"Sylvia Beach, Henry W. Wibbelz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/225d5fc4-c83d-46e5-b861-ad36ae4548b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/30%2Fd6%2F9f%2F30d69f3cae0d4af189b9671bc81dbde3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-01-28,1935-03-01,https://shakespeareandco.princeton.edu/members/tony-mayer/,Thérèse Tony-Mayer,"Tony-Mayer, Thérèse",,,,,,,,,Returned,32,,,https://shakespeareandco.princeton.edu/books/queen-victoria/,Queen Victoria,,,,Unidentified. Lytton Strachey's *Queen Victoria* (1921) or E. F. Benson's *Queen Victoria* (1935).,Lending Library Card,"Sylvia Beach, Thérèse Tony-Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/27246b4c-7d99-4dca-b874-ab90bd542cfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/a1%2Fec%2Ff5%2Fa1ecf56bff2e4aefa5c17aaba1dcce85%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-01-29,1935-02-06,https://shakespeareandco.princeton.edu/members/wibbelz-henry/,Henry W. Wibbelz,"Wibbelz, Henry W.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/petronius-petronius-seneca-apocolocyntosis/,"Petronius; Seneca, Apocolocyntosis",,Petronius;Seneca,1913,,Lending Library Card,"Sylvia Beach, Henry W. Wibbelz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/225d5fc4-c83d-46e5-b861-ad36ae4548b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/30%2Fd6%2F9f%2F30d69f3cae0d4af189b9671bc81dbde3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-01-29,1935-02-12,https://shakespeareandco.princeton.edu/members/van-den-bergh/,Tamara van den Bergh,"van den Bergh, Tamara",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/le-gallienne-33/,At 33,,"Le Gallienne, Eva",1934,,Lending Library Card,"Sylvia Beach, Miss Tamara van den Bergh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f3a52627-dc5d-410b-aa7f-9d39941f18e8/manifest,https://iiif.princeton.edu/loris/figgy_prod/a0%2F23%2Fb2%2Fa023b2f9c3894186bed79a0ae0ef2a90%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-01-29,1935-02-06,https://shakespeareandco.princeton.edu/members/wibbelz-henry/,Henry W. Wibbelz,"Wibbelz, Henry W.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/leacock-footlights/,Over the Footlights,,"Leacock, Stephen",1923,,Lending Library Card,"Sylvia Beach, Henry W. Wibbelz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/225d5fc4-c83d-46e5-b861-ad36ae4548b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/30%2Fd6%2F9f%2F30d69f3cae0d4af189b9671bc81dbde3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-01-29,1935-02-15,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/masefield-enslaved-poems/,Enslaved and Other Poems,,"Masefield, John",1920,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/cc%2Ffa%2F5d%2Fccfa5dcefcc7400ca591e470e0d28a7a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-01-29,1935-01-31,https://shakespeareandco.princeton.edu/members/massey/,Adelaide W. Massey / A. W. Massey,"Massey, Adelaide W.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/boyle-next-bride/,My Next Bride,,"Boyle, Kay",1934,,Lending Library Card,"Sylvia Beach, A. W. Massey Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c4712c46-76f3-4581-99d6-d0ffd31b4138/manifest,https://iiif-cloud.princeton.edu/iiif/2/a4%2F76%2Ffd%2Fa476fd809f344e05836ec8137b929e52%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-01-29,1935-02-06,https://shakespeareandco.princeton.edu/members/wibbelz-henry/,Henry W. Wibbelz,"Wibbelz, Henry W.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/bierce-can-things/,Can Such Things Be?,,"Bierce, Ambrose Gwinnett",1893,,Lending Library Card,"Sylvia Beach, Henry W. Wibbelz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/225d5fc4-c83d-46e5-b861-ad36ae4548b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/30%2Fd6%2F9f%2F30d69f3cae0d4af189b9671bc81dbde3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-01-30,1935-02-06,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/wylie-collected-poems-elinor/,Collected Poems of Elinor Wylie,,"Wylie, Elinor",1932,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/b0%2Fc0%2Fad%2Fb0c0ad5c86664a81b0badbc2b9faff4d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-01-30,1935-02-01,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/macleish-streets-moon/,Streets in the Moon,,"MacLeish, Archibald",1926,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/b0%2Fc0%2Fad%2Fb0c0ad5c86664a81b0badbc2b9faff4d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-01-30,1935-02-06,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/hopkins-poems-gerard-manley/,Poems of Gerard Manley Hopkins,,"Hopkins, Gerard Manley",1918,,Lending Library Card,"Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F0d%2F24%2F560d24c0dfa94677ae04cf2db490c371%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-01-30,1935-02-12,https://shakespeareandco.princeton.edu/members/orbison-agnes/,Agnes Orbison,"Orbison, Agnes",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/laughlin-youre-going-paris/,So You're Going to Paris!,,"Laughlin, Clara E.",1924,,Lending Library Card,"Sylvia Beach, Agnes Orbison Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/86bec9e4-3ffd-4cd8-9793-fa26ffa6471c/manifest,https://iiif.princeton.edu/loris/figgy_prod/14%2Ff8%2F19%2F14f8198ac7444bbb9468dd661d893946%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-01-30,1935-02-02,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/criterion/,The Criterion,,,,"Renamed *The New Criterion* from January 1926 to January 1927, and *The Monthly Criterion* from May 1927 to March 1928.",Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/9d%2F97%2F6e%2F9d976e57833f41c3b362aafa315a35e5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-01-30,1935-02-20,https://shakespeareandco.princeton.edu/members/bernheim-antoinette/,Antoinette Bernheim,"Bernheim, Antoinette",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/gordon-anglo-saxon-poetry/,Anglo-Saxon Poetry,,,1926,,Lending Library Card,"Sylvia Beach, Antoinette Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5b0acd5e-3121-468b-8dc7-846b4a08dafb/manifest,https://iiif-cloud.princeton.edu/iiif/2/3d%2Ffd%2F92%2F3dfd92dc212a4912aa80151e98eea833%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-01-30,1935-02-02,https://shakespeareandco.princeton.edu/members/orbison-agnes/,Agnes Orbison,"Orbison, Agnes",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/lucas-wanderer-paris/,A Wanderer in Paris,,"Lucas, E. V.",1909,,Lending Library Card,"Sylvia Beach, Agnes Orbison Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/86bec9e4-3ffd-4cd8-9793-fa26ffa6471c/manifest,https://iiif.princeton.edu/loris/figgy_prod/14%2Ff8%2F19%2F14f8198ac7444bbb9468dd661d893946%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-01-30,1935-02-01,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/millay-harp-weaver-poems/,The Harp-Weaver and Other Poems,,"Millay, Edna St. Vincent",1923,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/b0%2Fc0%2Fad%2Fb0c0ad5c86664a81b0badbc2b9faff4d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-01-30,1935-02-06,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/verga-cavalleria-rusticana-stories/,Cavalleria Rusticana and Other Stories,,"Verga, Giovanni",1928,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/45%2F51%2F1f%2F45511f74f3ab463aa6894aec541b2a94%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-01-30,1935-02-06,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/stephens-charwomans-daughter/,The Charwoman's Daughter,,"Stephens, James",1912,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/45%2F51%2F1f%2F45511f74f3ab463aa6894aec541b2a94%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-01-30,1935-02-06,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/thompson-chariot-wheels/,Chariot Wheels,,"Thompson, Sylvia",1929,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/45%2F51%2F1f%2F45511f74f3ab463aa6894aec541b2a94%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1935-01-31,1935-02-28,https://shakespeareandco.princeton.edu/members/forceville/,Mme de Forceville,"de Forceville, Mme",25.00,50.00,1 month,28,1,,1935-01-31,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, de Forceville Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/f1f54fba-35a3-4cb0-bb21-0a071d6fa39d/manifest,;https://iiif.princeton.edu/loris/figgy_prod/78%2F45%2F4f%2F78454f0a477d4c91b660c3e12e562239%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-01-31,1935-02-02,https://shakespeareandco.princeton.edu/members/mazon/,Mme Mazon,"Mazon, Mme",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/yeats-early-poems-stories/,Early Poems and Stories,,"Yeats, William Butler",1925,,Lending Library Card,"Sylvia Beach, Madame Mazon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/faf25016-678e-49d8-b616-45145b11e1ab/manifest,https://iiif.princeton.edu/loris/figgy_prod/20%2F58%2Fe7%2F2058e76aee8f4e7a87ca6b5333faf1cd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-01-31,1935-02-14,https://shakespeareandco.princeton.edu/members/forceville/,Mme de Forceville,"de Forceville, Mme",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/delafield-diary-provincial-lady/,Diary of a Provincial Lady,,"Delafield, E. M.",1930,,Lending Library Card,"Sylvia Beach, de Forceville Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f1f54fba-35a3-4cb0-bb21-0a071d6fa39d/manifest,https://iiif.princeton.edu/loris/figgy_prod/78%2F45%2F4f%2F78454f0a477d4c91b660c3e12e562239%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1935-01-31,1935-01-31,https://shakespeareandco.princeton.edu/members/dufau/,L. L. Dufau,"Dufau, L. L.",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1935-01-31,1935-02-20,https://shakespeareandco.princeton.edu/members/massey/,Adelaide W. Massey / A. W. Massey,"Massey, Adelaide W.",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/lewis-paleface-philosophy-melting/,"Paleface: The Philosophy of the ""Melting-Pot""",,"Lewis, Wyndham",1929,,Lending Library Card,"Sylvia Beach, A. W. Massey Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c4712c46-76f3-4581-99d6-d0ffd31b4138/manifest,https://iiif-cloud.princeton.edu/iiif/2/a4%2F76%2Ffd%2Fa476fd809f344e05836ec8137b929e52%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-01-31,1935-02-16,https://shakespeareandco.princeton.edu/members/massey/,Adelaide W. Massey / A. W. Massey,"Massey, Adelaide W.",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/young-red-rose/,So Red the Rose,,"Young, Stark",1934,,Lending Library Card,"Sylvia Beach, A. W. Massey Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c4712c46-76f3-4581-99d6-d0ffd31b4138/manifest,https://iiif-cloud.princeton.edu/iiif/2/a4%2F76%2Ffd%2Fa476fd809f344e05836ec8137b929e52%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-01-31,1935-02-08,https://shakespeareandco.princeton.edu/members/maxwell/,Mrs. Maxwell,"Maxwell, Mrs.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/sitwell-aspects-modern-poetry/,Aspects of Modern Poetry,,"Sitwell, Edith",1934,,Lending Library Card,"Sylvia Beach, Mrs. Maxwell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6148b048-a591-4aae-8470-52fde178e0aa/manifest,https://iiif.princeton.edu/loris/figgy_prod/a3%2F59%2F56%2Fa359568ae1a7491689f98c55dd398b98%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-01-31,1935-02-08,https://shakespeareandco.princeton.edu/members/maxwell/,Mrs. Maxwell,"Maxwell, Mrs.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/walpole-vanessa/,Vanessa,,"Walpole, Hugh",1933,,Lending Library Card,"Sylvia Beach, Mrs. Maxwell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6148b048-a591-4aae-8470-52fde178e0aa/manifest,https://iiif.princeton.edu/loris/figgy_prod/a3%2F59%2F56%2Fa359568ae1a7491689f98c55dd398b98%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-01-31,1935-02-20,https://shakespeareandco.princeton.edu/members/bernheim-antoinette/,Antoinette Bernheim,"Bernheim, Antoinette",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/anglo-saxon-dictionary/,Anglo-Saxon Dictionary,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Antoinette Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5b0acd5e-3121-468b-8dc7-846b4a08dafb/manifest,https://iiif-cloud.princeton.edu/iiif/2/3d%2Ffd%2F92%2F3dfd92dc212a4912aa80151e98eea833%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-01-31,1935-02-02,https://shakespeareandco.princeton.edu/members/mazon/,Mme Mazon,"Mazon, Mme",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/lofting-story-doctor-doolittle/,The Story of Doctor Dolittle,,"Lofting, Hugh",1920,,Lending Library Card,"Sylvia Beach, Madame Mazon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/faf25016-678e-49d8-b616-45145b11e1ab/manifest,https://iiif.princeton.edu/loris/figgy_prod/20%2F58%2Fe7%2F2058e76aee8f4e7a87ca6b5333faf1cd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-02-01,1935-02-12,https://shakespeareandco.princeton.edu/members/guillemin-annie/,Annie Guillemin,"Guillemin, Annie",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/anderson-poor-white/,Poor White,,"Anderson, Sherwood",1920,,Lending Library Card,"Sylvia Beach, Annie Guillemin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2d6019d9-34ed-4ca4-97a9-5fd05d8640a7/manifest,https://iiif.princeton.edu/loris/figgy_prod/5a%2Ffc%2F38%2F5afc38c7321c4497adcc378d8774e24d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-02-01,1935-02-04,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/caudwell-perfect-alibi/,The Perfect Alibi,,"Caudwell, Christopher",1934,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/b0%2Fc0%2Fad%2Fb0c0ad5c86664a81b0badbc2b9faff4d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-02-01,1935-02-04,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/mackworth-time-tide/,Time and Tide,,,,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/b0%2Fc0%2Fad%2Fb0c0ad5c86664a81b0badbc2b9faff4d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-02-01,1935-02-04,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/martin-new-statesman-nation/,The New Statesman and Nation,,,,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/b0%2Fc0%2Fad%2Fb0c0ad5c86664a81b0badbc2b9faff4d%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1935-02-01,1935-02-01,https://shakespeareandco.princeton.edu/members/church-henry/,Henry Church,"Church, Henry",,,,,,,,,,,90.00,FRF,https://shakespeareandco.princeton.edu/books/lewisohn-expression-america/,Expression in America,,"Lewisohn, Ludwig",1931,,Lending Library Card,"Sylvia Beach, Henry Church Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4f79663d-da9d-460a-bbd7-44cd14c2cc0f/manifest,https://iiif-cloud.princeton.edu/iiif/2/82%2Ffb%2Fee%2F82fbeee2fa2a4685962e25c031da5007%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1935-02-02,1935-05-02,https://shakespeareandco.princeton.edu/members/bourdet/,Claude Bourdet,"Bourdet, Claude",40.00,30.00,3 months,89,1,,1935-02-02,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Claude Bourdet Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/17c666aa-e70a-4038-a78e-b9166a525438/manifest,;https://iiif.princeton.edu/loris/figgy_prod/f7%2Fbb%2F0b%2Ff7bb0b96ccd545e8b4fe6dc1a2461970%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-02-02,1935-02-12,https://shakespeareandco.princeton.edu/members/orbison-agnes/,Agnes Orbison,"Orbison, Agnes",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/irwin-royal-flush-story/,Royal Flush: The Story of Minette,,"Irwin, Margaret",1932,,Lending Library Card,"Sylvia Beach, Agnes Orbison Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/86bec9e4-3ffd-4cd8-9793-fa26ffa6471c/manifest,https://iiif.princeton.edu/loris/figgy_prod/14%2Ff8%2F19%2F14f8198ac7444bbb9468dd661d893946%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-02-02,1935-02-16,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/melville-moby-dick-whale/,"Moby-Dick; Or, the Whale",,"Melville, Herman",1851,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/9d%2F97%2F6e%2F9d976e57833f41c3b362aafa315a35e5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-02-02,1935-02-21,https://shakespeareandco.princeton.edu/members/bourdet/,Claude Bourdet,"Bourdet, Claude",,,,,,,,,Returned,19,,,https://shakespeareandco.princeton.edu/books/criterion/,The Criterion,"Vol. 14, no. 55, Jan 1935",,,"Renamed *The New Criterion* from January 1926 to January 1927, and *The Monthly Criterion* from May 1927 to March 1928.",Lending Library Card,"Sylvia Beach, Claude Bourdet Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/17c666aa-e70a-4038-a78e-b9166a525438/manifest,https://iiif.princeton.edu/loris/figgy_prod/f7%2Fbb%2F0b%2Ff7bb0b96ccd545e8b4fe6dc1a2461970%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-02-02,1935-02-12,https://shakespeareandco.princeton.edu/members/orbison-agnes/,Agnes Orbison,"Orbison, Agnes",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/elliot-old-court-life/,Old Court Life in France,,"Elliot, Frances Minto",1873,,Lending Library Card,"Sylvia Beach, Agnes Orbison Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/86bec9e4-3ffd-4cd8-9793-fa26ffa6471c/manifest,https://iiif.princeton.edu/loris/figgy_prod/14%2Ff8%2F19%2F14f8198ac7444bbb9468dd661d893946%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-02-02,1935-02-05,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/wilder-heavens-destination/,Heaven's My Destination,,"Wilder, Thornton",1934,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/3a%2Fa5%2F3b%2F3aa53b27338545bfbc02b4bef71fd290%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-02-02,1935-02-05,https://shakespeareandco.princeton.edu/members/mazon/,Mme Mazon,"Mazon, Mme",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/keller-fat-cat-stories/,The Fat of the Cat and Other Stories,,"Keller, Gottfried;Untermeyer, Louis",1925,,Lending Library Card,"Sylvia Beach, Madame Mazon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/faf25016-678e-49d8-b616-45145b11e1ab/manifest,https://iiif.princeton.edu/loris/figgy_prod/20%2F58%2Fe7%2F2058e76aee8f4e7a87ca6b5333faf1cd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-02-02,1935-02-05,https://shakespeareandco.princeton.edu/members/mazon/,Mme Mazon,"Mazon, Mme",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/yeats-essays/,Essays,,"Yeats, William Butler",1924,,Lending Library Card,"Sylvia Beach, Madame Mazon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/faf25016-678e-49d8-b616-45145b11e1ab/manifest,https://iiif.princeton.edu/loris/figgy_prod/20%2F58%2Fe7%2F2058e76aee8f4e7a87ca6b5333faf1cd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-02-02,1935-02-16,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/woolf-common-reader-second/,The Common Reader: Second Series,,"Woolf, Virginia",1932,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5b%2Fae%2F7a%2F5bae7a078f9c45b2a2914cfee78e2313%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-02-04,1935-02-12,https://shakespeareandco.princeton.edu/members/manziarly/,Marcelle de Manziarly,"de Manziarly, Marcelle",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/beckett-pricks-kicks/,More Pricks Than Kicks,,"Beckett, Samuel",1934,,Lending Library Card,"Sylvia Beach, Marcelle Manziarly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4519d283-b8b9-4a86-9bf1-2c55f27482df/manifest,https://iiif.princeton.edu/loris/figgy_prod/f4%2Ff8%2Ffe%2Ff4f8fe0f2fef4a99871220ac00c89b71%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-02-04,1935-02-11,https://shakespeareandco.princeton.edu/members/bidoire-boulenger/,Miss Boulenger / Mme Bidoire,"Bidoire, Mme",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/ohara-appointment-samarra/,Appointment in Samarra,,"O'Hara, John",1934,,Lending Library Card,"Sylvia Beach, Boulenger Bidoire Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7f3ef4f0-6ce0-43d1-b96a-1328f891536c/manifest,https://iiif-cloud.princeton.edu/iiif/2/4b%2F5b%2Fe1%2F4b5be155079545a19ff743d77214f7b8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-02-04,1935-02-11,https://shakespeareandco.princeton.edu/members/bidoire-boulenger/,Miss Boulenger / Mme Bidoire,"Bidoire, Mme",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/sackville-west-dark-island/,The Dark Island,,"Sackville-West, Vita",1934,,Lending Library Card,"Sylvia Beach, Boulenger Bidoire Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7f3ef4f0-6ce0-43d1-b96a-1328f891536c/manifest,https://iiif-cloud.princeton.edu/iiif/2/4b%2F5b%2Fe1%2F4b5be155079545a19ff743d77214f7b8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-02-04,1935-02-06,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/rogers-dusk-grove/,Dusk at the Grove,,"Rogers, Samuel",1934,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/b0%2Fc0%2Fad%2Fb0c0ad5c86664a81b0badbc2b9faff4d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-02-04,1935-02-09,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/flying-trapeze/,Flying Trapeze,,,,Unidentified. James Thurber's *The Middle-Aged Man on the Flying Trapeze* (1935) or William Saroyan's *The Daring Young Man on the Flying Trapeze and Other Stories* (1935).,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/b0%2Fc0%2Fad%2Fb0c0ad5c86664a81b0badbc2b9faff4d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-02-04,1935-02-09,https://shakespeareandco.princeton.edu/members/forceville/,Mme de Forceville,"de Forceville, Mme",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/hergesheimer-bright-shawl/,The Bright Shawl,,"Hergesheimer, Joseph",1922,,Lending Library Card,"Sylvia Beach, de Forceville Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f1f54fba-35a3-4cb0-bb21-0a071d6fa39d/manifest,https://iiif.princeton.edu/loris/figgy_prod/78%2F45%2F4f%2F78454f0a477d4c91b660c3e12e562239%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-02-04,1935-03-13,https://shakespeareandco.princeton.edu/members/bernheim-francoise/,FranΓ§oise Bernheim,"Bernheim, FranΓ§oise",,,,,,,,,Returned,37,,,https://shakespeareandco.princeton.edu/books/priestley-angel-pavement/,Angel Pavement,,"Priestley, J. B.",1930,,Lending Library Card,"Sylvia Beach, FranΓ§oise Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5e7f717b-973d-41b9-8fbb-c14306386d92/manifest,https://iiif-cloud.princeton.edu/iiif/2/68%2F8d%2F3c%2F688d3c18dba14f33bb55ff95ea34e190%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1935-02-05,1935-05-05,https://shakespeareandco.princeton.edu/members/delimal/,Mme Delimal,"Delimal, Mme",40.00,,3 months,89,1,,1935-04-10,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Madame Delimal Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d7650699-e9d7-4e63-85ff-bce7e9c8dfcd/manifest,https://iiif.princeton.edu/loris/figgy_prod/09%2F74%2F1b%2F09741b95533642218a7f3992da9fea4c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-02-05,1935-02-18,https://shakespeareandco.princeton.edu/members/delimal/,Mme Delimal,"Delimal, Mme",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/lawrence-wind/,"Not I, but the Wind",,"Lawrence, Frieda",1934,,Lending Library Card,"Sylvia Beach, Madame Delimal Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d7650699-e9d7-4e63-85ff-bce7e9c8dfcd/manifest,https://iiif.princeton.edu/loris/figgy_prod/09%2F74%2F1b%2F09741b95533642218a7f3992da9fea4c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-02-05,1935-04-18,https://shakespeareandco.princeton.edu/members/van-den-bergh/,Tamara van den Bergh,"van den Bergh, Tamara",,,,,,,,,Returned,72,,,https://shakespeareandco.princeton.edu/books/froude-bunyan/,Bunyan,,"Froude, James Anthony",1880,,Lending Library Card,"Sylvia Beach, Miss Tamara van den Bergh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f3a52627-dc5d-410b-aa7f-9d39941f18e8/manifest,https://iiif.princeton.edu/loris/figgy_prod/a0%2F23%2Fb2%2Fa023b2f9c3894186bed79a0ae0ef2a90%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-02-05,1935-02-11,https://shakespeareandco.princeton.edu/members/mazon/,Mme Mazon,"Mazon, Mme",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/sandburg-rootabaga-stories/,Rootabaga Stories,,"Sandburg, Carl",1922,,Lending Library Card,"Sylvia Beach, Madame Mazon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/faf25016-678e-49d8-b616-45145b11e1ab/manifest,https://iiif.princeton.edu/loris/figgy_prod/20%2F58%2Fe7%2F2058e76aee8f4e7a87ca6b5333faf1cd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-02-05,1935-02-11,https://shakespeareandco.princeton.edu/members/mazon/,Mme Mazon,"Mazon, Mme",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/gregory-new-irish-comedies/,New Irish Comedies,,"Gregory, Lady",1923,,Lending Library Card,"Sylvia Beach, Madame Mazon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/faf25016-678e-49d8-b616-45145b11e1ab/manifest,https://iiif.princeton.edu/loris/figgy_prod/20%2F58%2Fe7%2F2058e76aee8f4e7a87ca6b5333faf1cd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-02-05,1935-02-08,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/richardson-end-childhood-stories/,The End of a Childhood and Other Stories,,"Richardson, Henry Handel",1934,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/3a%2Fa5%2F3b%2F3aa53b27338545bfbc02b4bef71fd290%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-02-06,1935-02-19,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/maccarthy-nineteenth-century-childhood/,A Nineteenth-Century Childhood,,"MacCarthy, Mary",1924,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/45%2F51%2F1f%2F45511f74f3ab463aa6894aec541b2a94%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-02-06,1935-02-09,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/woollcott-rome-burns/,While Rome Burns,,"Woollcott, Alexander",1934,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/b0%2Fc0%2Fad%2Fb0c0ad5c86664a81b0badbc2b9faff4d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-02-06,1935-03-16,https://shakespeareandco.princeton.edu/members/wibbelz-henry/,Henry W. Wibbelz,"Wibbelz, Henry W.",,,,,,,,,Returned,38,,,https://shakespeareandco.princeton.edu/books/dostoyevsky-crime-punishment/,Crime and Punishment,,"Dostoyevsky, Fyodor",1914,,Lending Library Card,"Sylvia Beach, Henry W. Wibbelz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/225d5fc4-c83d-46e5-b861-ad36ae4548b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/30%2Fd6%2F9f%2F30d69f3cae0d4af189b9671bc81dbde3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-02-06,1935-02-09,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/breuer-memory-love/,Memory of Love,,"Breuer, Bessie",1935,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/b0%2Fc0%2Fad%2Fb0c0ad5c86664a81b0badbc2b9faff4d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-02-06,1935-03-05,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,27,,,https://shakespeareandco.princeton.edu/books/lawrence-etruscan-places/,Etruscan Places,,"Lawrence, D. H.",1932,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/45%2F51%2F1f%2F45511f74f3ab463aa6894aec541b2a94%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-02-06,1935-02-13,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/joyce-fragments-work-progress/,Fragments from Work in Progress,,"Joyce, James",,"Unidentified editions. Early versions of Joyce's [*Finnegans Wake*](https://shakespeareandco.princeton.edu/books/joyce-finnegans-wake/) (1939). Likely [*Tales Told of Shem and Shaun: Three Fragments from Work in Progress*](http://www.riverrun.org.uk/jj/Tales.pdf) (1929), *Two Tales of Shem and Shaun: Fragments from Work in Progress* (1932), or a collection of offprints from [*transition*](https://shakespeareandco.princeton.edu/books/jolas-transition/). Sylvia Beach's personal library includes a [bound copy of offprints](https://catalog.princeton.edu/catalog/2943072). See also [*Work in Progress*](https://shakespeareandco.princeton.edu/books/joyce-work-progress/).",Lending Library Card,"Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F0d%2F24%2F560d24c0dfa94677ae04cf2db490c371%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-02-06,1935-02-13,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/exagmination-round-factification/,Our Exagmination Round His Factification for Incamination of Work in Progress,,"Beckett, Samuel;Brion, Marcel;Budgen, Frank;Gilbert, Stuart;Jolas, Eugene;Llona, Victor;McAlmon, Robert;MacGreevy, Thomas;Paul, Elliot;Rodker, John;Sage, Robert D.;Williams, William Carlos;Slingsby, G. V. L.;Dixon, Vladimir",1929,,Lending Library Card,"Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F0d%2F24%2F560d24c0dfa94677ae04cf2db490c371%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-02-06,1935-02-14,https://shakespeareandco.princeton.edu/members/wendel/,Hélène de Wendel / Comtesse de Noailles,"de Wendel, Hélène",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/sinclair-mary-olivier-life/,Mary Olivier: A Life,,"Sinclair, May",1919,,Lending Library Card,"Sylvia Beach, Madame Hélène Wendel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c70e230a-8313-4c53-9939-22beb5f809b6/manifest,https://iiif-cloud.princeton.edu/iiif/2/8a%2Fbe%2Fec%2F8abeec2451b647e0954a7a53d5eae991%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-02-06,1935-02-14,https://shakespeareandco.princeton.edu/members/wendel/,Hélène de Wendel / Comtesse de Noailles,"de Wendel, Hélène",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/gissing-victim-circumstances-stories/,A Victim of Circumstances and Other Stories,,"Gissing, George Robert",1927,,Lending Library Card,"Sylvia Beach, Madame Hélène Wendel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c70e230a-8313-4c53-9939-22beb5f809b6/manifest,https://iiif-cloud.princeton.edu/iiif/2/8a%2Fbe%2Fec%2F8abeec2451b647e0954a7a53d5eae991%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-02-08,1935-02-13,https://shakespeareandco.princeton.edu/members/maxwell/,Mrs. Maxwell,"Maxwell, Mrs.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/maugham-altogether-collected-stories/,Altogether: Being the Collected Stories of W. Somerset Maugham,,"Maugham, W. Somerset",1934,,Lending Library Card,"Sylvia Beach, Mrs. Maxwell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6148b048-a591-4aae-8470-52fde178e0aa/manifest,https://iiif.princeton.edu/loris/figgy_prod/24%2F60%2F6c%2F24606ced6f604fd2882f67872b3d610a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-02-08,1935-02-19,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/lawrence-fantasia-unconscious/,Fantasia of the Unconscious,,"Lawrence, D. H.",1922,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/45%2F51%2F1f%2F45511f74f3ab463aa6894aec541b2a94%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-02-08,1935-02-09,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/ward-cambridge-history-english/,The Cambridge History of English Literature,"Vol. 7, 1911 Cavalier and Puritan",,,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5b%2Fae%2F7a%2F5bae7a078f9c45b2a2914cfee78e2313%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-02-08,,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Bought,,,,https://shakespeareandco.princeton.edu/books/dobree-modern-prose-style/,Modern Prose Style,,"DobrΓ©e, Bonamy",1934,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5b%2Fae%2F7a%2F5bae7a078f9c45b2a2914cfee78e2313%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-02-08,1935-02-11,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/fleming-ones-company-journey/,One's Company: A Journey to China,,"Fleming, Peter",1934,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/3a%2Fa5%2F3b%2F3aa53b27338545bfbc02b4bef71fd290%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-02-08,1935-02-11,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/stead-seven-poor-men/,Seven Poor Men of Sydney,,"Stead, Christina",1934,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/3a%2Fa5%2F3b%2F3aa53b27338545bfbc02b4bef71fd290%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-02-08,1935-02-13,https://shakespeareandco.princeton.edu/members/maxwell/,Mrs. Maxwell,"Maxwell, Mrs.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/bell-pot-boilers/,Pot-Boilers,,"Bell, Clive",1918,,Lending Library Card,"Sylvia Beach, Mrs. Maxwell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6148b048-a591-4aae-8470-52fde178e0aa/manifest,https://iiif.princeton.edu/loris/figgy_prod/24%2F60%2F6c%2F24606ced6f604fd2882f67872b3d610a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-02-08,1935-02-08,https://shakespeareandco.princeton.edu/members/rirachowsky-fanny/,Fanny Rirachowsky,"Rirachowsky, Fanny",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/faulkner-sound-fury/,The Sound and the Fury,,"Faulkner, William",1929,,Lending Library Card,"Sylvia Beach, Fanny Rirachowsky Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ed53891-0a1b-4bc4-8b10-d7d32f46663a/manifest,https://iiif-cloud.princeton.edu/iiif/2/2c%2Fe2%2F41%2F2ce24179ad9943f384d53e6947c82f6c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-02-08,1935-02-09,https://shakespeareandco.princeton.edu/members/rirachowsky-fanny/,Fanny Rirachowsky,"Rirachowsky, Fanny",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/katherine-mansfield/,Katherine Mansfield,,,,Unidentified. By or about Katherine Mansfield.,Lending Library Card,"Sylvia Beach, Fanny Rirachowsky Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ed53891-0a1b-4bc4-8b10-d7d32f46663a/manifest,https://iiif-cloud.princeton.edu/iiif/2/2c%2Fe2%2F41%2F2ce24179ad9943f384d53e6947c82f6c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-02-08,1935-02-19,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/herbert-water-gipsies/,The Water Gipsies,,"Herbert, A. P.",1930,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/45%2F51%2F1f%2F45511f74f3ab463aa6894aec541b2a94%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-02-09,1935-02-16,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/froude-bunyan/,Bunyan,,"Froude, James Anthony",1880,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5b%2Fae%2F7a%2F5bae7a078f9c45b2a2914cfee78e2313%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-02-09,1935-02-12,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/martin-new-statesman-nation/,The New Statesman and Nation,,,,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/b0%2Fc0%2Fad%2Fb0c0ad5c86664a81b0badbc2b9faff4d%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-02-09,1935-02-19,https://shakespeareandco.princeton.edu/members/forceville/,Mme de Forceville,"de Forceville, Mme",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/thompson-breakfast-bed/,Breakfast in Bed,,"Thompson, Sylvia",1934,,Lending Library Card,"Sylvia Beach, de Forceville Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f1f54fba-35a3-4cb0-bb21-0a071d6fa39d/manifest,https://iiif.princeton.edu/loris/figgy_prod/78%2F45%2F4f%2F78454f0a477d4c91b660c3e12e562239%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-02-09,1935-02-11,https://shakespeareandco.princeton.edu/members/rirachowsky-fanny/,Fanny Rirachowsky,"Rirachowsky, Fanny",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/forster-passage-india/,A Passage to India,,"Forster, E. M.",1924,,Lending Library Card,"Sylvia Beach, Fanny Rirachowsky Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ed53891-0a1b-4bc4-8b10-d7d32f46663a/manifest,https://iiif-cloud.princeton.edu/iiif/2/2c%2Fe2%2F41%2F2ce24179ad9943f384d53e6947c82f6c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-02-09,1935-02-19,https://shakespeareandco.princeton.edu/members/forceville/,Mme de Forceville,"de Forceville, Mme",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/holme-lonely-plough/,The Lonely Plough,,"Holme, Constance",1914,,Lending Library Card,"Sylvia Beach, de Forceville Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f1f54fba-35a3-4cb0-bb21-0a071d6fa39d/manifest,https://iiif.princeton.edu/loris/figgy_prod/78%2F45%2F4f%2F78454f0a477d4c91b660c3e12e562239%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-02-09,1935-02-20,https://shakespeareandco.princeton.edu/members/yarrow-catherine/,Catherine Yarrow,"Yarrow, Catherine",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/faulkner-lay-dying/,As I Lay Dying,,"Faulkner, William",1930,,Lending Library Card,"Sylvia Beach, Catherine Yarrow Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d0d522e7-9d4e-41ca-8b3b-8fe6ba58e334/manifest,https://iiif.princeton.edu/loris/figgy_prod/43%2F3f%2F02%2F433f021568d741549eee31ab87bf14ea%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-02-09,1935-02-18,https://shakespeareandco.princeton.edu/members/yarrow-catherine/,Catherine Yarrow,"Yarrow, Catherine",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/rhys-shorter-novels-eighteenth/,Shorter Novels: Eighteenth Century,,,1930,,Lending Library Card,"Sylvia Beach, Catherine Yarrow Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d0d522e7-9d4e-41ca-8b3b-8fe6ba58e334/manifest,https://iiif.princeton.edu/loris/figgy_prod/43%2F3f%2F02%2F433f021568d741549eee31ab87bf14ea%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-02-09,1935-02-12,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/hanley-furys/,The Furys,,"Hanley, James",1935,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/b0%2Fc0%2Fad%2Fb0c0ad5c86664a81b0badbc2b9faff4d%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1935-02-09,1935-05-09,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",40.00,,3 months,89,1,,1935-03-09,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/9d%2F97%2F6e%2F9d976e57833f41c3b362aafa315a35e5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-02-09,1935-02-18,https://shakespeareandco.princeton.edu/members/yarrow-catherine/,Catherine Yarrow,"Yarrow, Catherine",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/bell-hamwood-papers-ladies/,The Hamwood Papers of the Ladies of Llangollen and Caroline Hamilton,,,1930,,Lending Library Card,"Sylvia Beach, Catherine Yarrow Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d0d522e7-9d4e-41ca-8b3b-8fe6ba58e334/manifest,https://iiif.princeton.edu/loris/figgy_prod/43%2F3f%2F02%2F433f021568d741549eee31ab87bf14ea%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-02-11,1935-02-25,https://shakespeareandco.princeton.edu/members/bidoire-boulenger/,Miss Boulenger / Mme Bidoire,"Bidoire, Mme",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/james-aspern-papers/,The Aspern Papers,,"James, Henry",1888,,Lending Library Card,"Sylvia Beach, Boulenger Bidoire Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7f3ef4f0-6ce0-43d1-b96a-1328f891536c/manifest,https://iiif-cloud.princeton.edu/iiif/2/4b%2F5b%2Fe1%2F4b5be155079545a19ff743d77214f7b8%2Fintermediate_file/full/full/0/default.jpg
+Supplement,1935-02-11,1935-04-11,https://shakespeareandco.princeton.edu/members/mazon/,Mme Mazon,"Mazon, Mme",20.00,,2 months,59,1,,1935-02-18,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Madame Mazon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/faf25016-678e-49d8-b616-45145b11e1ab/manifest,;https://iiif.princeton.edu/loris/figgy_prod/20%2F58%2Fe7%2F2058e76aee8f4e7a87ca6b5333faf1cd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-02-11,1935-02-25,https://shakespeareandco.princeton.edu/members/bidoire-boulenger/,Miss Boulenger / Mme Bidoire,"Bidoire, Mme",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/james-spoils-poynton/,The Spoils of Poynton,,"James, Henry",1897,,Lending Library Card,"Sylvia Beach, Boulenger Bidoire Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7f3ef4f0-6ce0-43d1-b96a-1328f891536c/manifest,https://iiif-cloud.princeton.edu/iiif/2/4b%2F5b%2Fe1%2F4b5be155079545a19ff743d77214f7b8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-02-11,1935-02-18,https://shakespeareandco.princeton.edu/members/mazon/,Mme Mazon,"Mazon, Mme",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/stawell-fairy-old-spain/,"The Fairy of Old Spain, and Other Important People",,"Stawell, Maud Margaret Key",1912,,Lending Library Card,"Sylvia Beach, Madame Mazon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/faf25016-678e-49d8-b616-45145b11e1ab/manifest,https://iiif.princeton.edu/loris/figgy_prod/20%2F58%2Fe7%2F2058e76aee8f4e7a87ca6b5333faf1cd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-02-11,1935-02-18,https://shakespeareandco.princeton.edu/members/mazon/,Mme Mazon,"Mazon, Mme",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/gregory-three-wonder-plays/,Three Wonder Plays,,"Gregory, Lady",1922,,Lending Library Card,"Sylvia Beach, Madame Mazon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/faf25016-678e-49d8-b616-45145b11e1ab/manifest,https://iiif.princeton.edu/loris/figgy_prod/20%2F58%2Fe7%2F2058e76aee8f4e7a87ca6b5333faf1cd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1935-02-11,1935-02-25,https://shakespeareandco.princeton.edu/members/fry-2/,Fry,Fry,15.00,60.00,2 weeks,14,2,,1935-02-11,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1935-02-11,1935-02-15,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/werfel-forty-days-musa/,The Forty Days of Musa Dagh,,"Werfel, Franz",1934,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/3a%2Fa5%2F3b%2F3aa53b27338545bfbc02b4bef71fd290%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-02-11,1935-04-08,https://shakespeareandco.princeton.edu/members/rirachowsky-fanny/,Fanny Rirachowsky,"Rirachowsky, Fanny",,,,,,,,,Returned,56,,,https://shakespeareandco.princeton.edu/books/faulkner-sound-fury/,The Sound and the Fury,,"Faulkner, William",1929,,Lending Library Card,"Sylvia Beach, Fanny Rirachowsky Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ed53891-0a1b-4bc4-8b10-d7d32f46663a/manifest,https://iiif-cloud.princeton.edu/iiif/2/2c%2Fe2%2F41%2F2ce24179ad9943f384d53e6947c82f6c%2Fintermediate_file/full/full/0/default.jpg
+Generic,1935-02-11,,https://shakespeareandco.princeton.edu/members/rirachowsky-fanny/,Fanny Rirachowsky,"Rirachowsky, Fanny",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/forster-howards-end/,Howards End,,"Forster, E. M.",1910,,Lending Library Card,"Sylvia Beach, Fanny Rirachowsky Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ed53891-0a1b-4bc4-8b10-d7d32f46663a/manifest,https://iiif-cloud.princeton.edu/iiif/2/2c%2Fe2%2F41%2F2ce24179ad9943f384d53e6947c82f6c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-02-11,1935-02-15,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/benchley-bed-worse/,From Bed to Worse,,"Benchley, Robert",1934,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/3a%2Fa5%2F3b%2F3aa53b27338545bfbc02b4bef71fd290%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-02-12,1935-02-20,https://shakespeareandco.princeton.edu/members/guillemin-annie/,Annie Guillemin,"Guillemin, Annie",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/bentley-modern-tragedy/,A Modern Tragedy,,"Bentley, Phyllis Eleanor",1934,,Lending Library Card,"Sylvia Beach, Annie Guillemin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2d6019d9-34ed-4ca4-97a9-5fd05d8640a7/manifest,https://iiif.princeton.edu/loris/figgy_prod/5a%2Ffc%2F38%2F5afc38c7321c4497adcc378d8774e24d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-02-12,1935-02-25,https://shakespeareandco.princeton.edu/members/manziarly/,Marcelle de Manziarly,"de Manziarly, Marcelle",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/millin-three-men-die/,Three Men Die,,"Millin, Sarah Gertrude",1934,,Lending Library Card,"Sylvia Beach, Marcelle Manziarly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4519d283-b8b9-4a86-9bf1-2c55f27482df/manifest,https://iiif.princeton.edu/loris/figgy_prod/f4%2Ff8%2Ffe%2Ff4f8fe0f2fef4a99871220ac00c89b71%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-02-12,1935-02-16,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/jesse-pin-see-peepshow/,A Pin to See the Peepshow,,"Jesse, F. Tennyson",1934,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/4e%2F88%2F65%2F4e886509bd8d46cea40c6ea13fbdb2ba%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-02-12,1935-02-19,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/budgen-james-joyce-making/,James Joyce and the Making of Ulysses,,"Budgen, Frank",1934,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/4e%2F88%2F65%2F4e886509bd8d46cea40c6ea13fbdb2ba%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1935-02-12,,https://shakespeareandco.princeton.edu/members/cahen/,Ettienne Cahen,"Cahen, Ettienne",,30.00,,,,Day By Day,1935-02-12,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1935-02-13,1935-02-15,https://shakespeareandco.princeton.edu/members/maxwell/,Mrs. Maxwell,"Maxwell, Mrs.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/tomlinson-south-cadiz/,South to Cadiz,,"Tomlinson, H. M.",1934,,Lending Library Card,"Sylvia Beach, Mrs. Maxwell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6148b048-a591-4aae-8470-52fde178e0aa/manifest,https://iiif.princeton.edu/loris/figgy_prod/24%2F60%2F6c%2F24606ced6f604fd2882f67872b3d610a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-02-13,1935-02-13,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/conrad-mirror-sea/,The Mirror of the Sea,,"Conrad, Joseph",1906,,Lending Library Card,"Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F0d%2F24%2F560d24c0dfa94677ae04cf2db490c371%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-02-13,1935-02-15,https://shakespeareandco.princeton.edu/members/maxwell/,Mrs. Maxwell,"Maxwell, Mrs.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/wells-experiment-autobiography-discoveries/,Experiment in Autobiography: Discoveries and Conclusions of a Very Ordinary Brain (Since 1866),Vol. 1,"Wells, H. G.",1934,,Lending Library Card,"Sylvia Beach, Mrs. Maxwell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6148b048-a591-4aae-8470-52fde178e0aa/manifest,https://iiif.princeton.edu/loris/figgy_prod/24%2F60%2F6c%2F24606ced6f604fd2882f67872b3d610a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-02-14,1935-02-18,https://shakespeareandco.princeton.edu/members/wendel/,Hélène de Wendel / Comtesse de Noailles,"de Wendel, Hélène",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/bromfield-modern-hero/,A Modern Hero,,"Bromfield, Louis",1932,,Lending Library Card,"Sylvia Beach, Madame Hélène Wendel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c70e230a-8313-4c53-9939-22beb5f809b6/manifest,https://iiif-cloud.princeton.edu/iiif/2/8a%2Fbe%2Fec%2F8abeec2451b647e0954a7a53d5eae991%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1935-02-14,1935-02-14,https://shakespeareandco.princeton.edu/members/cahen/,Ettienne Cahen,"Cahen, Ettienne",,,,,,,,30.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1935-02-14,,https://shakespeareandco.princeton.edu/members/wendel/,Hélène de Wendel / Comtesse de Noailles,"de Wendel, Hélène",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/sinclair-life-death-harriet/,The Life and Death of Harriet Frean,,"Sinclair, May",1922,,Lending Library Card,"Sylvia Beach, Madame Hélène Wendel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c70e230a-8313-4c53-9939-22beb5f809b6/manifest,https://iiif-cloud.princeton.edu/iiif/2/8a%2Fbe%2Fec%2F8abeec2451b647e0954a7a53d5eae991%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-02-15,1935-02-20,https://shakespeareandco.princeton.edu/members/maxwell/,Mrs. Maxwell,"Maxwell, Mrs.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/mansfield-bliss-short-stories/,Bliss and Other Stories,,"Mansfield, Katherine",1920,,Lending Library Card,"Sylvia Beach, Mrs. Maxwell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6148b048-a591-4aae-8470-52fde178e0aa/manifest,https://iiif.princeton.edu/loris/figgy_prod/24%2F60%2F6c%2F24606ced6f604fd2882f67872b3d610a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1935-02-15,1935-05-15,https://shakespeareandco.princeton.edu/members/bidoire-boulenger/,Miss Boulenger / Mme Bidoire,"Bidoire, Mme",65.00,,3 months,89,1,,1935-03-18,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Boulenger Bidoire Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/7f3ef4f0-6ce0-43d1-b96a-1328f891536c/manifest,;https://iiif-cloud.princeton.edu/iiif/2/4b%2F5b%2Fe1%2F4b5be155079545a19ff743d77214f7b8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-02-15,1935-02-21,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/queen-roman-hat-mystery/,The Roman Hat Mystery,,"Dannay, Frederic;Lee, Manfred B.",1929,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/cc%2Ffa%2F5d%2Fccfa5dcefcc7400ca591e470e0d28a7a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-02-15,1935-02-20,https://shakespeareandco.princeton.edu/members/maxwell/,Mrs. Maxwell,"Maxwell, Mrs.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/lawrence-love-among-haystacks/,Love among the Haystacks,,"Lawrence, D. H.",1930,,Lending Library Card,"Sylvia Beach, Mrs. Maxwell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6148b048-a591-4aae-8470-52fde178e0aa/manifest,https://iiif.princeton.edu/loris/figgy_prod/24%2F60%2F6c%2F24606ced6f604fd2882f67872b3d610a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-02-15,1935-02-26,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/delafield-gay-life/,Gay Life,,"Delafield, E. M.",1933,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/3a%2Fa5%2F3b%2F3aa53b27338545bfbc02b4bef71fd290%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-02-15,1935-02-26,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/flying-trapeze/,Flying Trapeze,,,,Unidentified. James Thurber's *The Middle-Aged Man on the Flying Trapeze* (1935) or William Saroyan's *The Daring Young Man on the Flying Trapeze and Other Stories* (1935).,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/3a%2Fa5%2F3b%2F3aa53b27338545bfbc02b4bef71fd290%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-02-16,1935-02-20,https://shakespeareandco.princeton.edu/members/massey/,Adelaide W. Massey / A. W. Massey,"Massey, Adelaide W.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/woolf-jacobs-room/,Jacob's Room,,"Woolf, Virginia",1922,,Lending Library Card,"Sylvia Beach, A. W. Massey Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c4712c46-76f3-4581-99d6-d0ffd31b4138/manifest,https://iiif-cloud.princeton.edu/iiif/2/a4%2F76%2Ffd%2Fa476fd809f344e05836ec8137b929e52%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-02-16,1935-02-23,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/miller-lamb-bosom/,Lamb in His Bosom,,"Miller, Caroline",1933,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/4e%2F88%2F65%2F4e886509bd8d46cea40c6ea13fbdb2ba%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-02-16,1935-02-19,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/mackworth-time-tide/,Time and Tide,,,,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/4e%2F88%2F65%2F4e886509bd8d46cea40c6ea13fbdb2ba%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-02-16,1935-02-19,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/zweig-mental-healers-franz/,"Mental Healers: Franz Anton Mesmer, Mary Baker Eddy, Sigmund Freud",,"Zweig, Stefan",1932,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/4e%2F88%2F65%2F4e886509bd8d46cea40c6ea13fbdb2ba%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-02-16,1935-02-26,https://shakespeareandco.princeton.edu/members/plummer-dorothy/,Dorothy Plummer,"Plummer, Dorothy",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/dos-passos-three-soldiers/,Three Soldiers,,"Dos Passos, John",1921,,Lending Library Card,"Sylvia Beach, Dorothy Plummer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5f53ce0-8ea6-4d1f-b36b-f6e5321bab4c/manifest,https://iiif.princeton.edu/loris/figgy_prod/73%2F61%2F28%2F7361283a6eb946cbbb43d97ca38f1deb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-02-16,1935-03-09,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/aldington-women-must-work/,Women Must Work: A Novel,,"Aldington, Richard",1934,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5b%2Fae%2F7a%2F5bae7a078f9c45b2a2914cfee78e2313%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-02-16,1935-02-25,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/whitman-leaves-grass/,Leaves of Grass,,"Whitman, Walt",,Unspecified edition.,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/9d%2F97%2F6e%2F9d976e57833f41c3b362aafa315a35e5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1935-02-17,1935-03-17,https://shakespeareandco.princeton.edu/members/rirachowsky-fanny/,Fanny Rirachowsky,"Rirachowsky, Fanny",15.00,,1 month,28,1,,1935-04-08,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Fanny Rirachowsky Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/3ed53891-0a1b-4bc4-8b10-d7d32f46663a/manifest,;https://iiif-cloud.princeton.edu/iiif/2/2c%2Fe2%2F41%2F2ce24179ad9943f384d53e6947c82f6c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-02-18,1935-03-05,https://shakespeareandco.princeton.edu/members/delimal/,Mme Delimal,"Delimal, Mme",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/webb-golden-arrow/,Golden Arrow,,"Webb, Mary",1916,,Lending Library Card,"Sylvia Beach, Madame Delimal Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d7650699-e9d7-4e63-85ff-bce7e9c8dfcd/manifest,https://iiif.princeton.edu/loris/figgy_prod/09%2F74%2F1b%2F09741b95533642218a7f3992da9fea4c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-02-18,1935-03-01,https://shakespeareandco.princeton.edu/members/mazon/,Mme Mazon,"Mazon, Mme",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/yeats-poems/,Poems,,"Yeats, William Butler",,Unidentified edition or editions.,Lending Library Card,"Sylvia Beach, Madame Mazon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/faf25016-678e-49d8-b616-45145b11e1ab/manifest,https://iiif.princeton.edu/loris/figgy_prod/20%2F58%2Fe7%2F2058e76aee8f4e7a87ca6b5333faf1cd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-02-18,1935-03-01,https://shakespeareandco.princeton.edu/members/mazon/,Mme Mazon,"Mazon, Mme",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/gregory-three-last-plays/,Three Last Plays,,"Gregory, Lady",1928,,Lending Library Card,"Sylvia Beach, Madame Mazon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/faf25016-678e-49d8-b616-45145b11e1ab/manifest,https://iiif.princeton.edu/loris/figgy_prod/20%2F58%2Fe7%2F2058e76aee8f4e7a87ca6b5333faf1cd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-02-19,1935-02-27,https://shakespeareandco.princeton.edu/members/forceville/,Mme de Forceville,"de Forceville, Mme",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/strong-sea-wall/,Sea Wall,,"Strong, L. A. G.",1933,,Lending Library Card,"Sylvia Beach, de Forceville Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f1f54fba-35a3-4cb0-bb21-0a071d6fa39d/manifest,https://iiif.princeton.edu/loris/figgy_prod/78%2F45%2F4f%2F78454f0a477d4c91b660c3e12e562239%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-02-19,1935-02-23,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/boyle-next-bride/,My Next Bride,,"Boyle, Kay",1934,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/4e%2F88%2F65%2F4e886509bd8d46cea40c6ea13fbdb2ba%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-02-19,1935-03-05,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/wells-experiment-autobiography-discoveries/,Experiment in Autobiography: Discoveries and Conclusions of a Very Ordinary Brain (Since 1866),Vol. 1,"Wells, H. G.",1934,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/45%2F51%2F1f%2F45511f74f3ab463aa6894aec541b2a94%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-02-19,1935-02-28,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/guedalla-queen-mr-gladstone/,The Queen and Mr. Gladstone,2 vols.,"Guedalla, Phillip",1933,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/4e%2F88%2F65%2F4e886509bd8d46cea40c6ea13fbdb2ba%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-02-19,1935-03-13,https://shakespeareandco.princeton.edu/members/wendel/,Hélène de Wendel / Comtesse de Noailles,"de Wendel, Hélène",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/bromfield-farm/,The Farm,,"Bromfield, Louis",1933,,Lending Library Card,"Sylvia Beach, Madame Hélène Wendel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c70e230a-8313-4c53-9939-22beb5f809b6/manifest,https://iiif-cloud.princeton.edu/iiif/2/8a%2Fbe%2Fec%2F8abeec2451b647e0954a7a53d5eae991%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-02-19,1935-02-25,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/whitman-complete-prose-works/,Complete Prose Works,,"Whitman, Walt",1892,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/9d%2F97%2F6e%2F9d976e57833f41c3b362aafa315a35e5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-02-19,1935-02-27,https://shakespeareandco.princeton.edu/members/forceville/,Mme de Forceville,"de Forceville, Mme",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/fontaine/,Fontaine,,,,Unidentified. By or about Fontaine.,Lending Library Card,"Sylvia Beach, de Forceville Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f1f54fba-35a3-4cb0-bb21-0a071d6fa39d/manifest,https://iiif.princeton.edu/loris/figgy_prod/78%2F45%2F4f%2F78454f0a477d4c91b660c3e12e562239%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-02-20,1935-03-05,https://shakespeareandco.princeton.edu/members/yarrow-catherine/,Catherine Yarrow,"Yarrow, Catherine",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/zweig-erasmus-rotterdam/,Erasmus of Rotterdam,,"Zweig, Stefan",1934,,Lending Library Card,"Sylvia Beach, Catherine Yarrow Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d0d522e7-9d4e-41ca-8b3b-8fe6ba58e334/manifest,https://iiif.princeton.edu/loris/figgy_prod/43%2F3f%2F02%2F433f021568d741549eee31ab87bf14ea%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-02-20,1935-02-27,https://shakespeareandco.princeton.edu/members/guillemin-annie/,Annie Guillemin,"Guillemin, Annie",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/sinclair-mary-olivier-life/,Mary Olivier: A Life,,"Sinclair, May",1919,,Lending Library Card,"Sylvia Beach, Annie Guillemin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2d6019d9-34ed-4ca4-97a9-5fd05d8640a7/manifest,https://iiif.princeton.edu/loris/figgy_prod/5a%2Ffc%2F38%2F5afc38c7321c4497adcc378d8774e24d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-02-20,1935-02-27,https://shakespeareandco.princeton.edu/members/morinni/,Clara de Morinni,"de Morinni, Clara",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/james-alice-james-brothers/,"Alice James: Her Brothers, Her Journal",,"James, Alice",1934,,Lending Library Card,"Sylvia Beach, Clara de Morinni Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1b1b31e4-b340-4768-b43c-5d47dac0afcc/manifest,https://iiif.princeton.edu/loris/figgy_prod/55%2Faf%2F4a%2F55af4a6e22604c8c8e294a74f9358393%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1935-02-20,1935-03-20,https://shakespeareandco.princeton.edu/members/morinni/,Clara de Morinni,"de Morinni, Clara",25.00,50.00,1 month,28,1,,1935-02-20,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Clara de Morinni Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/1b1b31e4-b340-4768-b43c-5d47dac0afcc/manifest,;https://iiif.princeton.edu/loris/figgy_prod/55%2Faf%2F4a%2F55af4a6e22604c8c8e294a74f9358393%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-02-20,1935-03-09,https://shakespeareandco.princeton.edu/members/bernheim-antoinette/,Antoinette Bernheim,"Bernheim, Antoinette",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/luhan-lorenzo-taos/,Lorenzo in Taos,,"Luhan, Mabel Dodge",1932,,Lending Library Card,"Sylvia Beach, Antoinette Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5b0acd5e-3121-468b-8dc7-846b4a08dafb/manifest,https://iiif-cloud.princeton.edu/iiif/2/3d%2Ffd%2F92%2F3dfd92dc212a4912aa80151e98eea833%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-02-20,1935-03-09,https://shakespeareandco.princeton.edu/members/bernheim-antoinette/,Antoinette Bernheim,"Bernheim, Antoinette",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/buck-good-earth/,The Good Earth,,"Buck, Pearl S.",1931,,Lending Library Card,"Sylvia Beach, Antoinette Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5b0acd5e-3121-468b-8dc7-846b4a08dafb/manifest,https://iiif-cloud.princeton.edu/iiif/2/3d%2Ffd%2F92%2F3dfd92dc212a4912aa80151e98eea833%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-02-20,1935-02-26,https://shakespeareandco.princeton.edu/members/massey/,Adelaide W. Massey / A. W. Massey,"Massey, Adelaide W.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/woolf-waves/,The Waves,,"Woolf, Virginia",1931,,Lending Library Card,"Sylvia Beach, A. W. Massey Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c4712c46-76f3-4581-99d6-d0ffd31b4138/manifest,https://iiif-cloud.princeton.edu/iiif/2/a4%2F76%2Ffd%2Fa476fd809f344e05836ec8137b929e52%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-02-20,,https://shakespeareandco.princeton.edu/members/massey/,Adelaide W. Massey / A. W. Massey,"Massey, Adelaide W.",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/powys-mr-westons-good/,Mr. Weston's Good Wine,,"Powys, Theodore Francis",1927,,Lending Library Card,"Sylvia Beach, A. W. Massey Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c4712c46-76f3-4581-99d6-d0ffd31b4138/manifest,https://iiif-cloud.princeton.edu/iiif/2/a4%2F76%2Ffd%2Fa476fd809f344e05836ec8137b929e52%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-02-20,1935-02-26,https://shakespeareandco.princeton.edu/members/massey/,Adelaide W. Massey / A. W. Massey,"Massey, Adelaide W.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/testimony-gertrude-stein/,Testimony against Gertrude Stein,,"Braque, Georges;Jolas, Eugene;Jolas, Maria;Matisse, Henri;Salmon, AndrΓ©;Tzara, Tristan",1935,Transition Pamphlet no. 1. A. W. Massey borrowed Sylvia Beach's copy.,Lending Library Card,"Sylvia Beach, A. W. Massey Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c4712c46-76f3-4581-99d6-d0ffd31b4138/manifest,https://iiif-cloud.princeton.edu/iiif/2/a4%2F76%2Ffd%2Fa476fd809f344e05836ec8137b929e52%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-02-20,1935-03-04,https://shakespeareandco.princeton.edu/members/maxwell/,Mrs. Maxwell,"Maxwell, Mrs.",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/lewisohn-israel/,Israel,,"Lewisohn, Ludwig",1925,,Lending Library Card,"Sylvia Beach, Mrs. Maxwell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6148b048-a591-4aae-8470-52fde178e0aa/manifest,https://iiif.princeton.edu/loris/figgy_prod/24%2F60%2F6c%2F24606ced6f604fd2882f67872b3d610a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-02-20,1935-02-23,https://shakespeareandco.princeton.edu/members/maxwell/,Mrs. Maxwell,"Maxwell, Mrs.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/wells-experiment-autobiography-discoveries/,Experiment in Autobiography: Discoveries and Conclusions of a Very Ordinary Brain (Since 1866),Vol. 2,"Wells, H. G.",1934,,Lending Library Card,"Sylvia Beach, Mrs. Maxwell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6148b048-a591-4aae-8470-52fde178e0aa/manifest,https://iiif.princeton.edu/loris/figgy_prod/24%2F60%2F6c%2F24606ced6f604fd2882f67872b3d610a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1935-02-21,,https://shakespeareandco.princeton.edu/members/dunbach-cecile/,Cecile Dunbach,Cecile Dunbach,40.00,30.00,,,,,1935-02-21,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1935-02-21,1935-03-07,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/mackenzie-darkening-green/,The Darkening Green,,"Mackenzie, Compton",1934,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/cc%2Ffa%2F5d%2Fccfa5dcefcc7400ca591e470e0d28a7a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-02-21,1935-04-17,https://shakespeareandco.princeton.edu/members/bourdet/,Claude Bourdet,"Bourdet, Claude",,,,,,,,,Returned,55,,,https://shakespeareandco.princeton.edu/books/eliot-ash-wednesday/,Ash Wednesday,,"Eliot, T. S.",1930,,Lending Library Card,"Sylvia Beach, Claude Bourdet Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/17c666aa-e70a-4038-a78e-b9166a525438/manifest,https://iiif.princeton.edu/loris/figgy_prod/f7%2Fbb%2F0b%2Ff7bb0b96ccd545e8b4fe6dc1a2461970%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1935-02-22,1935-02-22,https://shakespeareandco.princeton.edu/members/church-henry/,Henry Church,"Church, Henry",,,,,,,,,,,125.00,FRF,https://shakespeareandco.princeton.edu/books/adams-march-democracy-history/,March of Democracy: A History of the United States,,"Adams, James Truslow",1933,,Lending Library Card,"Sylvia Beach, Henry Church Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4f79663d-da9d-460a-bbd7-44cd14c2cc0f/manifest,https://iiif-cloud.princeton.edu/iiif/2/82%2Ffb%2Fee%2F82fbeee2fa2a4685962e25c031da5007%2Fintermediate_file/full/full/0/default.jpg
+Crossed out,1935-02-22,,https://shakespeareandco.princeton.edu/members/wibbelz-henry/,Henry W. Wibbelz,"Wibbelz, Henry W.",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/spengler-decline-west/,The Decline of the West,,"Spengler, Oswald",1926,,Lending Library Card,"Sylvia Beach, Henry W. Wibbelz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/225d5fc4-c83d-46e5-b861-ad36ae4548b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/30%2Fd6%2F9f%2F30d69f3cae0d4af189b9671bc81dbde3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1935-02-23,,https://shakespeareandco.princeton.edu/members/huder/,Huder,Huder,15.00,,,,1,,1935-02-23,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1935-02-23,1935-03-09,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/leishman-metaphysical-poets-donne/,"The Metaphysical Poets: Donne, Herbert, Vaughan, Traherne",,"Leishman, James Blair",1934,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5b%2Fae%2F7a%2F5bae7a078f9c45b2a2914cfee78e2313%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-02-23,1935-02-25,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/martin-new-statesman-nation/,The New Statesman and Nation,,,,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/4e%2F88%2F65%2F4e886509bd8d46cea40c6ea13fbdb2ba%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-02-23,1935-02-25,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/parker-pleasures/,After Such Pleasures,,"Parker, Dorothy",1933,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/4e%2F88%2F65%2F4e886509bd8d46cea40c6ea13fbdb2ba%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-02-23,1935-03-04,https://shakespeareandco.princeton.edu/members/maxwell/,Mrs. Maxwell,"Maxwell, Mrs.",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/ford-nightingale/,It Was the Nightingale,,"Ford, Ford Madox",1933,,Lending Library Card,"Sylvia Beach, Mrs. Maxwell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6148b048-a591-4aae-8470-52fde178e0aa/manifest,https://iiif.princeton.edu/loris/figgy_prod/24%2F60%2F6c%2F24606ced6f604fd2882f67872b3d610a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1935-02-25,,https://shakespeareandco.princeton.edu/members/sykes-christopher/,Christopher Sykes,"Sykes, Christopher",,30.00,,,,Day By Day,1935-02-25,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Christopher Sykes Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/56dc1b1a-6523-4a6a-b635-9644f844aaaf/manifest,;https://iiif.princeton.edu/loris/figgy_prod/8c%2F18%2Fec%2F8c18ec9884c2471bb8b7681522a19f9f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-02-25,,https://shakespeareandco.princeton.edu/members/sykes-christopher/,Christopher Sykes,"Sykes, Christopher",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/kingsmill-frank-harris/,Frank Harris,,"Kingsmill, Hugh",1932,,Lending Library Card,"Sylvia Beach, Christopher Sykes Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/56dc1b1a-6523-4a6a-b635-9644f844aaaf/manifest,https://iiif.princeton.edu/loris/figgy_prod/8c%2F18%2Fec%2F8c18ec9884c2471bb8b7681522a19f9f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-02-25,,https://shakespeareandco.princeton.edu/members/manziarly/,Marcelle de Manziarly,"de Manziarly, Marcelle",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/bernstein-affaire-jones/,L'Affaire Jones,,"Bernstein, Hillel",1933,,Lending Library Card,"Sylvia Beach, Marcelle Manziarly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4519d283-b8b9-4a86-9bf1-2c55f27482df/manifest,https://iiif.princeton.edu/loris/figgy_prod/f4%2Ff8%2Ffe%2Ff4f8fe0f2fef4a99871220ac00c89b71%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-02-25,1935-03-18,https://shakespeareandco.princeton.edu/members/bidoire-boulenger/,Miss Boulenger / Mme Bidoire,"Bidoire, Mme",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/james-portrait-lady/,The Portrait of a Lady,,"James, Henry",1881,,Lending Library Card,"Sylvia Beach, Boulenger Bidoire Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7f3ef4f0-6ce0-43d1-b96a-1328f891536c/manifest,https://iiif-cloud.princeton.edu/iiif/2/4b%2F5b%2Fe1%2F4b5be155079545a19ff743d77214f7b8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-02-25,1935-03-04,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/eastman-artists-uniform-study/,Artists in Uniform: A Study of Literature and Bureaucratism,,"Eastman, Max",1934,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/4e%2F88%2F65%2F4e886509bd8d46cea40c6ea13fbdb2ba%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-02-25,1935-03-20,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,Returned,23,,,https://shakespeareandco.princeton.edu/books/brooks-ordeal-mark-twain/,The Ordeal of Mark Twain,,"Brooks, Van Wyck",1920,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/9d%2F97%2F6e%2F9d976e57833f41c3b362aafa315a35e5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-02-26,1935-03-01,https://shakespeareandco.princeton.edu/members/plummer-dorothy/,Dorothy Plummer,"Plummer, Dorothy",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/stein-autobiography-alice-b/,The Autobiography of Alice B. Toklas,,"Stein, Gertrude",1933,,Lending Library Card,"Sylvia Beach, Dorothy Plummer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5f53ce0-8ea6-4d1f-b36b-f6e5321bab4c/manifest,https://iiif.princeton.edu/loris/figgy_prod/73%2F61%2F28%2F7361283a6eb946cbbb43d97ca38f1deb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-02-26,,https://shakespeareandco.princeton.edu/members/massey/,Adelaide W. Massey / A. W. Massey,"Massey, Adelaide W.",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/miller-lamb-bosom/,Lamb in His Bosom,,"Miller, Caroline",1933,,Lending Library Card,"Sylvia Beach, A. W. Massey Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c4712c46-76f3-4581-99d6-d0ffd31b4138/manifest,https://iiif-cloud.princeton.edu/iiif/2/a4%2F76%2Ffd%2Fa476fd809f344e05836ec8137b929e52%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-02-26,1935-03-02,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/lincoln-february-hill/,February Hill,,"Lincoln, Victoria",1934,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/3a%2Fa5%2F3b%2F3aa53b27338545bfbc02b4bef71fd290%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1935-02-26,1935-02-26,https://shakespeareandco.princeton.edu/members/sykes-christopher/,Christopher Sykes,"Sykes, Christopher",,,,,,,,30.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1935-02-27,1935-03-17,https://shakespeareandco.princeton.edu/members/wendel/,Hélène de Wendel / Comtesse de Noailles,"de Wendel, Hélène",,,,,,,,,Returned,18,,,https://shakespeareandco.princeton.edu/books/eliot-scenes-clerical-life/,Scenes of Clerical Life,,"Eliot, George",1857,,Lending Library Card,"Sylvia Beach, Madame Hélène Wendel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c70e230a-8313-4c53-9939-22beb5f809b6/manifest,https://iiif-cloud.princeton.edu/iiif/2/8a%2Fbe%2Fec%2F8abeec2451b647e0954a7a53d5eae991%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-02-27,1935-03-21,https://shakespeareandco.princeton.edu/members/morinni/,Clara de Morinni,"de Morinni, Clara",,,,,,,,,Returned,22,,,https://shakespeareandco.princeton.edu/books/ringel-america-americans-see/,America as Americans See It,,"Ringel, Fred J.",1932,,Lending Library Card,"Sylvia Beach, Clara de Morinni Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1b1b31e4-b340-4768-b43c-5d47dac0afcc/manifest,https://iiif.princeton.edu/loris/figgy_prod/55%2Faf%2F4a%2F55af4a6e22604c8c8e294a74f9358393%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-02-27,1935-03-12,https://shakespeareandco.princeton.edu/members/guillemin-annie/,Annie Guillemin,"Guillemin, Annie",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/cronin-hatters-castle/,Hatter's Castle,,"Cronin, A. J.",1932,,Lending Library Card,"Sylvia Beach, Annie Guillemin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2d6019d9-34ed-4ca4-97a9-5fd05d8640a7/manifest,https://iiif.princeton.edu/loris/figgy_prod/5a%2Ffc%2F38%2F5afc38c7321c4497adcc378d8774e24d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1935-02-28,,https://shakespeareandco.princeton.edu/members/walker-r-h/,R. H. Walker,"Walker, R. H.",,40.00,,,,Day By Day,1935-02-28,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1935-02-28,1935-03-08,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/adams-mont-saint-michel/,Mont-Saint-Michel and Chartres,,"Adams, Henry",1904,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/4e%2F88%2F65%2F4e886509bd8d46cea40c6ea13fbdb2ba%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1935-02-28,1935-03-28,https://shakespeareandco.princeton.edu/members/winterstein/,de Winterstein,"Winterstein, de",25.00,,1 month,28,1,,1935-02-27,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1935-03-01,1935-03-04,https://shakespeareandco.princeton.edu/members/mazon/,Mme Mazon,"Mazon, Mme",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/stephens-irish-fairy-tales/,Irish Fairy Tales,,"Stephens, James",1920,,Lending Library Card,"Sylvia Beach, Madame Mazon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/faf25016-678e-49d8-b616-45145b11e1ab/manifest,https://iiif.princeton.edu/loris/figgy_prod/20%2F58%2Fe7%2F2058e76aee8f4e7a87ca6b5333faf1cd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-03-01,1935-03-09,https://shakespeareandco.princeton.edu/members/plummer-dorothy/,Dorothy Plummer,"Plummer, Dorothy",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/carlyle-sartor-resartus/,Sartor Resartus,,"Carlyle, Thomas",1836,,Lending Library Card,"Sylvia Beach, Dorothy Plummer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5f53ce0-8ea6-4d1f-b36b-f6e5321bab4c/manifest,https://iiif.princeton.edu/loris/figgy_prod/73%2F61%2F28%2F7361283a6eb946cbbb43d97ca38f1deb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Generic,1935-03-01,,https://shakespeareandco.princeton.edu/members/caillois/;https://shakespeareandco.princeton.edu/members/petitjean/,Roger Caillois;Armand Petitjean,"Caillois, Roger;Petitjean, Armand",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/swift-choice-works-dean/,The Choice Works of Dean Swift in Prose and Verse,,"Swift, Jonathan",1876,,Lending Library Card,"Sylvia Beach, Roger Caillois/ Armand Petitjean Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/58386f27-2a95-4138-a30e-4dde3aeb0aaa/manifest,https://iiif-cloud.princeton.edu/iiif/2/6d%2F9c%2F58%2F6d9c5889ba5940a5bb95847819b62a44%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-03-01,1935-03-03,https://shakespeareandco.princeton.edu/members/massey/,Adelaide W. Massey / A. W. Massey,"Massey, Adelaide W.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/delafield-provincial-lady-america/,The Provincial Lady in America,,"Delafield, E. M.",1934,,Lending Library Card,"Sylvia Beach, A. W. Massey Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c4712c46-76f3-4581-99d6-d0ffd31b4138/manifest,https://iiif-cloud.princeton.edu/iiif/2/a4%2F76%2Ffd%2Fa476fd809f344e05836ec8137b929e52%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-03-01,1935-03-22,https://shakespeareandco.princeton.edu/members/tony-mayer/,Thérèse Tony-Mayer,"Tony-Mayer, Thérèse",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/joyce-ulysses/,Ulysses,,"Joyce, James",1922,,Lending Library Card,"Sylvia Beach, Thérèse Tony-Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/27246b4c-7d99-4dca-b874-ab90bd542cfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/a1%2Fec%2Ff5%2Fa1ecf56bff2e4aefa5c17aaba1dcce85%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-03-01,1935-03-04,https://shakespeareandco.princeton.edu/members/mazon/,Mme Mazon,"Mazon, Mme",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/gregory-irish-theatre-chapter/,Our Irish Theatre: A Chapter of Autobiography,,"Gregory, Lady",1913,,Lending Library Card,"Sylvia Beach, Madame Mazon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/faf25016-678e-49d8-b616-45145b11e1ab/manifest,https://iiif.princeton.edu/loris/figgy_prod/20%2F58%2Fe7%2F2058e76aee8f4e7a87ca6b5333faf1cd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-03-01,1935-03-22,https://shakespeareandco.princeton.edu/members/tony-mayer/,Thérèse Tony-Mayer,"Tony-Mayer, Thérèse",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/criterion/,The Criterion,,,,"Renamed *The New Criterion* from January 1926 to January 1927, and *The Monthly Criterion* from May 1927 to March 1928.",Lending Library Card,"Sylvia Beach, Thérèse Tony-Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/27246b4c-7d99-4dca-b874-ab90bd542cfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/a1%2Fec%2Ff5%2Fa1ecf56bff2e4aefa5c17aaba1dcce85%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-03-02,1935-03-09,https://shakespeareandco.princeton.edu/members/bernheim-antoinette/,Antoinette Bernheim,"Bernheim, Antoinette",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/anglo-saxon-dictionary/,Anglo-Saxon Dictionary,,,,Unidentified.,Lending Library Card,"Sylvia Beach, Antoinette Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5b0acd5e-3121-468b-8dc7-846b4a08dafb/manifest,https://iiif-cloud.princeton.edu/iiif/2/3d%2Ffd%2F92%2F3dfd92dc212a4912aa80151e98eea833%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-03-02,1935-05-18,https://shakespeareandco.princeton.edu/members/porter-katherine-anne/,Katherine Anne Porter / Mrs. Katherine Anne Pressly,"Porter, Katherine Anne",,,,,,,,,Returned,77,,,https://shakespeareandco.princeton.edu/books/kirstein-hound-horn/,Hound & Horn,"Vol. 7, no. 4, Jul β Sep 1934",,,,Lending Library Card,"Sylvia Beach, Katherine Anne Porter Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e929ad7e-7cda-422b-9107-310e3c4feb78/manifest,https://iiif.princeton.edu/loris/figgy_prod/40%2F3f%2F06%2F403f063d4e9442229355a1cc3b19535c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-03-02,1935-04-05,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,Returned,34,,,https://shakespeareandco.princeton.edu/books/mencken-american-language/,The American Language,,"Mencken, H. L.",1919,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/9d%2F97%2F6e%2F9d976e57833f41c3b362aafa315a35e5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-03-02,1935-03-05,https://shakespeareandco.princeton.edu/members/porter-katherine-anne/,Katherine Anne Porter / Mrs. Katherine Anne Pressly,"Porter, Katherine Anne",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/ohara-appointment-samarra/,Appointment in Samarra,,"O'Hara, John",1934,,Lending Library Card,"Sylvia Beach, Katherine Anne Porter Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e929ad7e-7cda-422b-9107-310e3c4feb78/manifest,https://iiif.princeton.edu/loris/figgy_prod/40%2F3f%2F06%2F403f063d4e9442229355a1cc3b19535c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-03-02,1935-03-05,https://shakespeareandco.princeton.edu/members/porter-katherine-anne/,Katherine Anne Porter / Mrs. Katherine Anne Pressly,"Porter, Katherine Anne",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/gordon-aleck-maury-sportsman/,"Aleck Maury, Sportsman",,"Gordon, Caroline",1934,,Lending Library Card,"Sylvia Beach, Katherine Anne Porter Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/e929ad7e-7cda-422b-9107-310e3c4feb78/manifest,https://iiif.princeton.edu/loris/figgy_prod/40%2F3f%2F06%2F403f063d4e9442229355a1cc3b19535c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-03-02,1935-03-04,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/caldwell-tobacco-road/,Tobacco Road,,"Caldwell, Erskine Preston",1932,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/3a%2Fa5%2F3b%2F3aa53b27338545bfbc02b4bef71fd290%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-03-03,1935-03-07,https://shakespeareandco.princeton.edu/members/massey/,Adelaide W. Massey / A. W. Massey,"Massey, Adelaide W.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/baring-lonely-lady-dulwich/,The Lonely Lady of Dulwich,,"Baring, Maurice",1934,,Lending Library Card,"Sylvia Beach, A. W. Massey Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c4712c46-76f3-4581-99d6-d0ffd31b4138/manifest,https://iiif-cloud.princeton.edu/iiif/2/a4%2F76%2Ffd%2Fa476fd809f344e05836ec8137b929e52%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-03-04,1935-03-06,https://shakespeareandco.princeton.edu/members/mazon/,Mme Mazon,"Mazon, Mme",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/grahame-dream-days/,Dream Days,,"Grahame, Kenneth",1898,,Lending Library Card,"Sylvia Beach, Madame Mazon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/faf25016-678e-49d8-b616-45145b11e1ab/manifest,https://iiif.princeton.edu/loris/figgy_prod/20%2F58%2Fe7%2F2058e76aee8f4e7a87ca6b5333faf1cd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-03-04,1935-03-09,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/stern-shining-free/,Shining and Free: A Day in the Life of a Matriarch,,"Stern, G. B.",1935,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/3a%2Fa5%2F3b%2F3aa53b27338545bfbc02b4bef71fd290%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-03-04,1935-03-14,https://shakespeareandco.princeton.edu/members/maxwell/,Mrs. Maxwell,"Maxwell, Mrs.",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/budgen-james-joyce-making/,James Joyce and the Making of Ulysses,,"Budgen, Frank",1934,,Lending Library Card,"Sylvia Beach, Mrs. Maxwell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6148b048-a591-4aae-8470-52fde178e0aa/manifest,https://iiif.princeton.edu/loris/figgy_prod/24%2F60%2F6c%2F24606ced6f604fd2882f67872b3d610a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-03-04,1935-03-14,https://shakespeareandco.princeton.edu/members/maxwell/,Mrs. Maxwell,"Maxwell, Mrs.",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/wassermann-joseph-kerkhovens-third/,Joseph Kerkhoven's Third Existence,,"Wassermann, Jakob",1934,,Lending Library Card,"Sylvia Beach, Mrs. Maxwell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6148b048-a591-4aae-8470-52fde178e0aa/manifest,https://iiif.princeton.edu/loris/figgy_prod/24%2F60%2F6c%2F24606ced6f604fd2882f67872b3d610a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-03-04,1935-03-08,https://shakespeareandco.princeton.edu/members/mazon/,Mme Mazon,"Mazon, Mme",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/synge-plays/,Plays,,"Synge, John Millington",,Suzanne Mespoulet borrowed the Tauchnitz edition of Synge's *Plays* (1922).,Lending Library Card,"Sylvia Beach, Madame Mazon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/faf25016-678e-49d8-b616-45145b11e1ab/manifest,https://iiif.princeton.edu/loris/figgy_prod/20%2F58%2Fe7%2F2058e76aee8f4e7a87ca6b5333faf1cd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-03-04,1935-03-08,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/martin-new-statesman-nation/,The New Statesman and Nation,,,,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/4e%2F88%2F65%2F4e886509bd8d46cea40c6ea13fbdb2ba%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-03-04,1935-03-08,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/mackworth-time-tide/,Time and Tide,,,,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/4e%2F88%2F65%2F4e886509bd8d46cea40c6ea13fbdb2ba%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-03-04,1935-03-14,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/murry-two-worlds-autobiography/,Between Two Worlds: An Autobiography,,"Murry, John Middleton",1935,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/4e%2F88%2F65%2F4e886509bd8d46cea40c6ea13fbdb2ba%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1935-03-05,,https://shakespeareandco.princeton.edu/members/delimal/,Mme Delimal,"Delimal, Mme",40.00,,,,,,1935-03-05,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1935-03-05,1935,https://shakespeareandco.princeton.edu/members/delimal/,Mme Delimal,"Delimal, Mme",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/chappell-shropshire-mary-webb/,The Shropshire of Mary Webb,,"Chappell, W. Reid",1930,,Lending Library Card,"Sylvia Beach, Madame Delimal Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d7650699-e9d7-4e63-85ff-bce7e9c8dfcd/manifest,https://iiif.princeton.edu/loris/figgy_prod/09%2F74%2F1b%2F09741b95533642218a7f3992da9fea4c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-03-05,1935-10-24,https://shakespeareandco.princeton.edu/members/yarrow-catherine/,Catherine Yarrow,"Yarrow, Catherine",,,,,,,,,Returned,233,,,https://shakespeareandco.princeton.edu/books/frazier-golden-bough-study/,The Golden Bough: A Study in Comparative Religion,,"Frazer, James George",1890,,Lending Library Card,"Sylvia Beach, Catherine Yarrow Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d0d522e7-9d4e-41ca-8b3b-8fe6ba58e334/manifest,https://iiif.princeton.edu/loris/figgy_prod/43%2F3f%2F02%2F433f021568d741549eee31ab87bf14ea%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-03-05,1935-03-13,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/wells-experiment-autobiography-discoveries/,Experiment in Autobiography: Discoveries and Conclusions of a Very Ordinary Brain (Since 1866),Vol. 2,"Wells, H. G.",1934,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/45%2F51%2F1f%2F45511f74f3ab463aa6894aec541b2a94%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1935-03-05,1935-03-05,https://shakespeareandco.princeton.edu/members/gide-andre/,AndrΓ© Gide,"Gide, AndrΓ©",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/national-geographic/,National Geographic,"Vol. 66, no. 5, Nov 1934",,,,Lending Library Card,"Sylvia Beach, AndrΓ© Gide Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/75cd90c6-3ecc-4332-bea9-30922fe81f1a/manifest,https://iiif.princeton.edu/loris/figgy_prod/81%2F1d%2F1e%2F811d1edc515b45a39c45599452e6a969%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1935-03-05,1935-03-05,https://shakespeareandco.princeton.edu/members/gide-andre/,AndrΓ© Gide,"Gide, AndrΓ©",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/national-geographic/,National Geographic,"Vol. 66, no. 6, Dec 1934",,,,Lending Library Card,"Sylvia Beach, AndrΓ© Gide Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/75cd90c6-3ecc-4332-bea9-30922fe81f1a/manifest,https://iiif.princeton.edu/loris/figgy_prod/81%2F1d%2F1e%2F811d1edc515b45a39c45599452e6a969%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1935-03-05,1935-03-05,https://shakespeareandco.princeton.edu/members/gide-andre/,AndrΓ© Gide,"Gide, AndrΓ©",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/national-geographic/,National Geographic,"Vol. 66, no. 3, Sep 1934",,,,Lending Library Card,"Sylvia Beach, AndrΓ© Gide Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/75cd90c6-3ecc-4332-bea9-30922fe81f1a/manifest,https://iiif.princeton.edu/loris/figgy_prod/81%2F1d%2F1e%2F811d1edc515b45a39c45599452e6a969%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1935-03-05,1935-03-05,https://shakespeareandco.princeton.edu/members/gide-andre/,AndrΓ© Gide,"Gide, AndrΓ©",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/national-geographic/,National Geographic,"Vol. 66, no. 4, Oct 1934",,,,Lending Library Card,"Sylvia Beach, AndrΓ© Gide Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/75cd90c6-3ecc-4332-bea9-30922fe81f1a/manifest,https://iiif.princeton.edu/loris/figgy_prod/81%2F1d%2F1e%2F811d1edc515b45a39c45599452e6a969%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1935-03-06,1935-06-06,https://shakespeareandco.princeton.edu/members/van-den-bergh/,Tamara van den Bergh,"van den Bergh, Tamara",40.00,,3 months,92,1,,1935-06-12,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Miss Tamara van den Bergh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/f3a52627-dc5d-410b-aa7f-9d39941f18e8/manifest,;https://iiif.princeton.edu/loris/figgy_prod/a0%2F23%2Fb2%2Fa023b2f9c3894186bed79a0ae0ef2a90%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-03-06,1935-03-18,https://shakespeareandco.princeton.edu/members/mazon/,Mme Mazon,"Mazon, Mme",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/plays-near-far/,Plays of Near and Far,,"Dunsany, Lord",1923,,Lending Library Card,"Sylvia Beach, Madame Mazon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/faf25016-678e-49d8-b616-45145b11e1ab/manifest,https://iiif.princeton.edu/loris/figgy_prod/20%2F58%2Fe7%2F2058e76aee8f4e7a87ca6b5333faf1cd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1935-03-06,1935-06-06,https://shakespeareandco.princeton.edu/members/guillemin-annie/,Annie Guillemin,"Guillemin, Annie",40.00,,3 months,92,,,1935-03-12,,,,,FRF,,,,,,,Lending Library Card;Logbook,"Sylvia Beach, Annie Guillemin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",https://figgy.princeton.edu/concern/scanned_resources/2d6019d9-34ed-4ca4-97a9-5fd05d8640a7/manifest;,https://iiif.princeton.edu/loris/figgy_prod/5a%2Ffc%2F38%2F5afc38c7321c4497adcc378d8774e24d%2Fintermediate_file.jp2/full/full/0/default.jpg;
+Borrow,1935-03-07,1935-03-16,https://shakespeareandco.princeton.edu/members/massey/,Adelaide W. Massey / A. W. Massey,"Massey, Adelaide W.",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/lewis-men-without-art/,Men without Art,,"Lewis, Wyndham",1934,,Lending Library Card,"Sylvia Beach, A. W. Massey Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c4712c46-76f3-4581-99d6-d0ffd31b4138/manifest,https://iiif-cloud.princeton.edu/iiif/2/a4%2F76%2Ffd%2Fa476fd809f344e05836ec8137b929e52%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-03-07,1935-03-09,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/brown-mr-pinkerton-finds/,Mr. Pinkerton Finds a Body,,"Brown, Zenith Jones",1935,By Brown writing as David Frome. Published in the United Kingdom as [*The Body in the Turl*](https://shakespeareandco.princeton.edu/books/brown-body-turl/).,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/cc%2Ffa%2F5d%2Fccfa5dcefcc7400ca591e470e0d28a7a%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1935-03-07,1935-06-07,https://shakespeareandco.princeton.edu/members/maxwell/,Mrs. Maxwell,"Maxwell, Mrs.",100.00,,3 months,92,2,,1935-03-14,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Mrs. Maxwell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/6148b048-a591-4aae-8470-52fde178e0aa/manifest,;https://iiif.princeton.edu/loris/figgy_prod/24%2F60%2F6c%2F24606ced6f604fd2882f67872b3d610a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Crossed out,1935-03-07,,https://shakespeareandco.princeton.edu/members/massey/,Adelaide W. Massey / A. W. Massey,"Massey, Adelaide W.",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/harris-uncle-remus-songs/,Uncle Remus: His Songs and His Sayings,,"Harris, Joel Chandler",1880,,Lending Library Card,"Sylvia Beach, A. W. Massey Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c4712c46-76f3-4581-99d6-d0ffd31b4138/manifest,https://iiif-cloud.princeton.edu/iiif/2/5d%2F9e%2Fd8%2F5d9ed8ef4791438e9a29b5046b60c470%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-03-07,1935-03-22,https://shakespeareandco.princeton.edu/members/massey/,Adelaide W. Massey / A. W. Massey,"Massey, Adelaide W.",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/maugham-altogether-collected-stories/,Altogether: Being the Collected Stories of W. Somerset Maugham,,"Maugham, W. Somerset",1934,,Lending Library Card,"Sylvia Beach, A. W. Massey Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c4712c46-76f3-4581-99d6-d0ffd31b4138/manifest,https://iiif-cloud.princeton.edu/iiif/2/a4%2F76%2Ffd%2Fa476fd809f344e05836ec8137b929e52%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-03-08,1935-03-11,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/martin-new-statesman-nation/,The New Statesman and Nation,,,,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/4e%2F88%2F65%2F4e886509bd8d46cea40c6ea13fbdb2ba%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1935-03-08,1935-09-08,https://shakespeareandco.princeton.edu/members/tony-mayer/,ThΓ©rΓ¨se Tony-Mayer,"Tony-Mayer, ThΓ©rΓ¨se",90.00,,6 months,184,1,,1935-03-23,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, ThΓ©rΓ¨se Tony-Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/27246b4c-7d99-4dca-b874-ab90bd542cfa/manifest,;https://iiif.princeton.edu/loris/figgy_prod/a1%2Fec%2Ff5%2Fa1ecf56bff2e4aefa5c17aaba1dcce85%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-03-08,1935-03-12,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/ross-new-yorker/,The New Yorker,,,,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/4e%2F88%2F65%2F4e886509bd8d46cea40c6ea13fbdb2ba%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-03-08,1935-03-18,https://shakespeareandco.princeton.edu/members/mazon/,Mme Mazon,"Mazon, Mme",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/hawthorne-snow-image-twice/,The Snow-Image and Other Twice-Told Tales,,"Hawthorne, Nathaniel",1851,,Lending Library Card,"Sylvia Beach, Madame Mazon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/faf25016-678e-49d8-b616-45145b11e1ab/manifest,https://iiif.princeton.edu/loris/figgy_prod/20%2F58%2Fe7%2F2058e76aee8f4e7a87ca6b5333faf1cd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-03-08,1935-03-29,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/james-art-novel-critical/,The Art of the Novel: Critical Prefaces,,"James, Henry",1934,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/4e%2F88%2F65%2F4e886509bd8d46cea40c6ea13fbdb2ba%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-03-08,1935-03-18,https://shakespeareandco.princeton.edu/members/mazon/,Mme Mazon,"Mazon, Mme",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/hawthorne-mosses-old-manse/,Mosses from an Old Manse,,"Hawthorne, Nathaniel",1846,,Lending Library Card,"Sylvia Beach, Madame Mazon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/faf25016-678e-49d8-b616-45145b11e1ab/manifest,https://iiif.princeton.edu/loris/figgy_prod/20%2F58%2Fe7%2F2058e76aee8f4e7a87ca6b5333faf1cd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-03-09,1935-03-15,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/irwin-proud-servant-story/,The Proud Servant: The Story of Montrose,,"Irwin, Margaret",1934,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/3a%2Fa5%2F3b%2F3aa53b27338545bfbc02b4bef71fd290%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-03-09,1935-03-23,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/brewster-modern-fiction/,Modern Fiction,,"Brewster, Dorothy;Burrell, Angus",1934,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5b%2Fae%2F7a%2F5bae7a078f9c45b2a2914cfee78e2313%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-03-09,1935-04-27,https://shakespeareandco.princeton.edu/members/bernheim-antoinette/,Antoinette Bernheim,"Bernheim, Antoinette",,,,,,,,,Returned,49,,,https://shakespeareandco.princeton.edu/books/macleish-conquistador/,Conquistador,,"MacLeish, Archibald",1933,,Lending Library Card,"Sylvia Beach, Antoinette Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5b0acd5e-3121-468b-8dc7-846b4a08dafb/manifest,https://iiif-cloud.princeton.edu/iiif/2/3d%2Ffd%2F92%2F3dfd92dc212a4912aa80151e98eea833%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-03-09,1935-04-02,https://shakespeareandco.princeton.edu/members/bernheim-antoinette/,Antoinette Bernheim,"Bernheim, Antoinette",,,,,,,,,Returned,24,,,https://shakespeareandco.princeton.edu/books/lucas-wanderer-rome/,A Wanderer in Rome,,"Lucas, E. V.",1926,,Lending Library Card,"Sylvia Beach, Antoinette Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5b0acd5e-3121-468b-8dc7-846b4a08dafb/manifest,https://iiif-cloud.princeton.edu/iiif/2/3d%2Ffd%2F92%2F3dfd92dc212a4912aa80151e98eea833%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-03-09,1935-03-30,https://shakespeareandco.princeton.edu/members/plummer-dorothy/,Dorothy Plummer,"Plummer, Dorothy",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/thackeray-vanity-fair/,Vanity Fair,,"Thackeray, William Makepeace",1847,,Lending Library Card,"Sylvia Beach, Dorothy Plummer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5f53ce0-8ea6-4d1f-b36b-f6e5321bab4c/manifest,https://iiif.princeton.edu/loris/figgy_prod/73%2F61%2F28%2F7361283a6eb946cbbb43d97ca38f1deb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-03-09,1935-03-09,https://shakespeareandco.princeton.edu/members/plummer-dorothy/,Dorothy Plummer,"Plummer, Dorothy",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/wilde-importance-earnest-trivial/,The Importance of Being Earnest: A Trivial Comedy for Serious People,,"Wilde, Oscar",1899,,Lending Library Card,"Sylvia Beach, Dorothy Plummer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5f53ce0-8ea6-4d1f-b36b-f6e5321bab4c/manifest,https://iiif.princeton.edu/loris/figgy_prod/73%2F61%2F28%2F7361283a6eb946cbbb43d97ca38f1deb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-03-09,1935-03-23,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/inge-vale/,Vale,,"Inge, William Ralph",1934,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/cc%2Ffa%2F5d%2Fccfa5dcefcc7400ca591e470e0d28a7a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-03-09,1935-03-23,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,14,,,https://shakespeareandco.princeton.edu/books/stern-shining-free/,Shining and Free: A Day in the Life of a Matriarch,,"Stern, G. B.",1935,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5b%2Fae%2F7a%2F5bae7a078f9c45b2a2914cfee78e2313%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1935-03-11,1935-04-11,https://shakespeareandco.princeton.edu/members/rowe-dutton/,Gwen Rowe-Dutton,"Rowe-Dutton, Gwen",100.00,30.00,1 month,31,1,,1935-03-11,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Gwen Rowe-Dutton Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/545f986a-2530-4b32-8241-08e12304bd40/manifest,;https://iiif.princeton.edu/loris/figgy_prod/e2%2F90%2F82%2Fe290823bc6fa4617aff67b2d36a0fbd4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-03-11,1935-03-13,https://shakespeareandco.princeton.edu/members/rowe-dutton/,Gwen Rowe-Dutton,"Rowe-Dutton, Gwen",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/holtby-mandoa-mandoa/,"Mandoa, Mandoa!",,"Holtby, Winifred",1933,,Lending Library Card,"Sylvia Beach, Gwen Rowe-Dutton Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/545f986a-2530-4b32-8241-08e12304bd40/manifest,https://iiif.princeton.edu/loris/figgy_prod/e2%2F90%2F82%2Fe290823bc6fa4617aff67b2d36a0fbd4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-03-12,1935-03-19,https://shakespeareandco.princeton.edu/members/guillemin-annie/,Annie Guillemin,"Guillemin, Annie",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/james-daisy-miller/,Daisy Miller,,"James, Henry",1879,,Lending Library Card,"Sylvia Beach, Annie Guillemin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2d6019d9-34ed-4ca4-97a9-5fd05d8640a7/manifest,https://iiif.princeton.edu/loris/figgy_prod/5a%2Ffc%2F38%2F5afc38c7321c4497adcc378d8774e24d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1935-03-13,1935-09-13,https://shakespeareandco.princeton.edu/members/du-buit/,Mme du Buit,"du Buit, Mme",70.00,,6 months,184,1,,1935-03-13,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Supplement,1935-03-13,1935-04-11,https://shakespeareandco.princeton.edu/members/rowe-dutton/,Gwen Rowe-Dutton,"Rowe-Dutton, Gwen",15.00,,29 days,29,1,,1935-03-13,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Gwen Rowe-Dutton Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/545f986a-2530-4b32-8241-08e12304bd40/manifest,;https://iiif.princeton.edu/loris/figgy_prod/e2%2F90%2F82%2Fe290823bc6fa4617aff67b2d36a0fbd4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-03-13,1935-03-18,https://shakespeareandco.princeton.edu/members/rowe-dutton/,Gwen Rowe-Dutton,"Rowe-Dutton, Gwen",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/west-harsh-voice-four/,The Harsh Voice: Four Short Novels,,"West, Rebecca",1935,,Lending Library Card,"Sylvia Beach, Gwen Rowe-Dutton Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/545f986a-2530-4b32-8241-08e12304bd40/manifest,https://iiif.princeton.edu/loris/figgy_prod/e2%2F90%2F82%2Fe290823bc6fa4617aff67b2d36a0fbd4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-03-13,1935-03-16,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/maugham-human-bondage/,Of Human Bondage,,"Maugham, W. Somerset",1915,,Lending Library Card,"Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F0d%2F24%2F560d24c0dfa94677ae04cf2db490c371%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-03-13,1935-03-18,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/bennett-card-story-adventure/,The Card: A Story of Adventure in the Five Towns,,"Bennett, Arnold",1911,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/45%2F51%2F1f%2F45511f74f3ab463aa6894aec541b2a94%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-03-13,1935-03-18,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/wells-book-catherine-wells/,Book of Catherine Wells,,"Wells, Catherine",1928,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/45%2F51%2F1f%2F45511f74f3ab463aa6894aec541b2a94%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-03-13,1935-03-21,https://shakespeareandco.princeton.edu/members/bernheim-francoise/,FranΓ§oise Bernheim,"Bernheim, FranΓ§oise",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/webb-precious-bane-novel/,Precious Bane: A Novel,,"Webb, Mary",1924,,Lending Library Card,"Sylvia Beach, FranΓ§oise Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5e7f717b-973d-41b9-8fbb-c14306386d92/manifest,https://iiif-cloud.princeton.edu/iiif/2/68%2F8d%2F3c%2F688d3c18dba14f33bb55ff95ea34e190%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-03-13,,https://shakespeareandco.princeton.edu/members/wendel/,HΓ©lΓ¨ne de Wendel / Comtesse de Noailles,"de Wendel, HΓ©lΓ¨ne",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/eliot-selected-essays-1917/,"Selected Essays, 1917 β 1932",,"Eliot, T. S.",1932,,Lending Library Card,"Sylvia Beach, Madame HΓ©lΓ¨ne Wendel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c70e230a-8313-4c53-9939-22beb5f809b6/manifest,https://iiif-cloud.princeton.edu/iiif/2/8a%2Fbe%2Fec%2F8abeec2451b647e0954a7a53d5eae991%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-03-13,1935-03-18,https://shakespeareandco.princeton.edu/members/wendel/,Hélène de Wendel / Comtesse de Noailles,"de Wendel, Hélène",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/buck-good-earth/,The Good Earth,,"Buck, Pearl S.",1931,,Lending Library Card,"Sylvia Beach, Madame Hélène Wendel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c70e230a-8313-4c53-9939-22beb5f809b6/manifest,https://iiif-cloud.princeton.edu/iiif/2/8a%2Fbe%2Fec%2F8abeec2451b647e0954a7a53d5eae991%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-03-14,1935-03-25,https://shakespeareandco.princeton.edu/members/maxwell/,Mrs. Maxwell,"Maxwell, Mrs.",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/murry-two-worlds-autobiography/,Between Two Worlds: An Autobiography,,"Murry, John Middleton",1935,,Lending Library Card,"Sylvia Beach, Mrs. Maxwell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6148b048-a591-4aae-8470-52fde178e0aa/manifest,https://iiif.princeton.edu/loris/figgy_prod/24%2F60%2F6c%2F24606ced6f604fd2882f67872b3d610a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-03-14,,https://shakespeareandco.princeton.edu/members/leyris-pierre/,Pierre Leyris,"Leyris, Pierre",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/freeman-herman-melville/,Herman Melville,,"Freeman, John",1926,,Lending Library Card,"Sylvia Beach, Pierre Leyris Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6c75c34b-de6f-4465-baee-8f7cd76f5c87/manifest,https://iiif-cloud.princeton.edu/iiif/2/eb%2F32%2F1e%2Feb321e7572324744932b1d81997b548e%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1935-03-14,,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,Day By Day,1935-03-14,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/4e%2F88%2F65%2F4e886509bd8d46cea40c6ea13fbdb2ba%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-03-14,1935-03-25,https://shakespeareandco.princeton.edu/members/maxwell/,Mrs. Maxwell,"Maxwell, Mrs.",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/pound-make-new/,Make It New,,"Pound, Ezra",1934,,Lending Library Card,"Sylvia Beach, Mrs. Maxwell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6148b048-a591-4aae-8470-52fde178e0aa/manifest,https://iiif.princeton.edu/loris/figgy_prod/24%2F60%2F6c%2F24606ced6f604fd2882f67872b3d610a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-03-15,1935-03-18,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/buck-house-divided/,A House Divided,,"Buck, Pearl S.",1935,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/3a%2Fa5%2F3b%2F3aa53b27338545bfbc02b4bef71fd290%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-03-15,1935-03-18,https://shakespeareandco.princeton.edu/members/mazon/,Mme Mazon,"Mazon, Mme",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/irving-alhambra/,The Alhambra,,"Irving, Washington",1832,,Lending Library Card,"Sylvia Beach, Madame Mazon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/faf25016-678e-49d8-b616-45145b11e1ab/manifest,https://iiif.princeton.edu/loris/figgy_prod/20%2F58%2Fe7%2F2058e76aee8f4e7a87ca6b5333faf1cd%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-03-16,1935-03-22,https://shakespeareandco.princeton.edu/members/massey/,Adelaide W. Massey / A. W. Massey,"Massey, Adelaide W.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/oscar-wilde/,Oscar Wilde,2 vols.,,,Unidentified. By or about Oscar Wilde. An unspecified 2 volume edition.,Lending Library Card,"Sylvia Beach, A. W. Massey Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c4712c46-76f3-4581-99d6-d0ffd31b4138/manifest,https://iiif-cloud.princeton.edu/iiif/2/a4%2F76%2Ffd%2Fa476fd809f344e05836ec8137b929e52%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-03-16,1935-03-22,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/day-lewis-hope-poetry/,A Hope for Poetry,,"Day Lewis, C.",1934,,Lending Library Card,"Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F0d%2F24%2F560d24c0dfa94677ae04cf2db490c371%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1935-03-17,1935-06-17,https://shakespeareandco.princeton.edu/members/rirachowsky-fanny/,Fanny Rirachowsky,"Rirachowsky, Fanny",40.00,,3 months,92,1,,1935-05-15,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Fanny Rirachowsky Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/3ed53891-0a1b-4bc4-8b10-d7d32f46663a/manifest,;https://iiif-cloud.princeton.edu/iiif/2/2c%2Fe2%2F41%2F2ce24179ad9943f384d53e6947c82f6c%2Fintermediate_file/full/full/0/default.jpg
+Separate Payment,1935-03-18,1935-03-18,https://shakespeareandco.princeton.edu/members/hopkins-3/,Hopkins,Hopkins,,20.00,,,,,1935-03-18,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1935-03-18,1935-03-25,https://shakespeareandco.princeton.edu/members/mazon/,Mme Mazon,"Mazon, Mme",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/shaw-back-methuselah-metabiological/,Back to Methuselah (A Metabiological Pentateuch),,"Shaw, George Bernard",1921,,Lending Library Card,"Sylvia Beach, Madame Mazon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/faf25016-678e-49d8-b616-45145b11e1ab/manifest,https://iiif.princeton.edu/loris/figgy_prod/32%2Fda%2Fed%2F32daed52449748d98b5f189f6c53c9c6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-03-18,1935-03-25,https://shakespeareandco.princeton.edu/members/mazon/,Mme Mazon,"Mazon, Mme",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/hawthorne-twice-told-tales/,Twice-Told Tales,,"Hawthorne, Nathaniel",1837,,Lending Library Card,"Sylvia Beach, Madame Mazon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/faf25016-678e-49d8-b616-45145b11e1ab/manifest,https://iiif.princeton.edu/loris/figgy_prod/32%2Fda%2Fed%2F32daed52449748d98b5f189f6c53c9c6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Crossed out,1935-03-18,,https://shakespeareandco.princeton.edu/members/bidoire-boulenger/,Miss Boulenger / Mme Bidoire,"Bidoire, Mme",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/buck-house-divided/,A House Divided,,"Buck, Pearl S.",1935,,Lending Library Card,"Sylvia Beach, Boulenger Bidoire Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7f3ef4f0-6ce0-43d1-b96a-1328f891536c/manifest,https://iiif-cloud.princeton.edu/iiif/2/4b%2F5b%2Fe1%2F4b5be155079545a19ff743d77214f7b8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-03-18,1935-03-22,https://shakespeareandco.princeton.edu/members/bidoire-boulenger/,Miss Boulenger / Mme Bidoire,"Bidoire, Mme",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/strachey-eminent-victorians/,Eminent Victorians,,"Strachey, Giles Lytton",1918,,Lending Library Card,"Sylvia Beach, Boulenger Bidoire Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7f3ef4f0-6ce0-43d1-b96a-1328f891536c/manifest,https://iiif-cloud.princeton.edu/iiif/2/4b%2F5b%2Fe1%2F4b5be155079545a19ff743d77214f7b8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-03-18,1935-03-22,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/young-red-rose/,So Red the Rose,,"Young, Stark",1934,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/3a%2Fa5%2F3b%2F3aa53b27338545bfbc02b4bef71fd290%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-03-18,1935-03-22,https://shakespeareandco.princeton.edu/members/bidoire-boulenger/,Miss Boulenger / Mme Bidoire,"Bidoire, Mme",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/richardson-pointed-roofs/,Pointed Roofs (Pilgrimage 1),,"Richardson, Dorothy M.",1915,,Lending Library Card,"Sylvia Beach, Boulenger Bidoire Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7f3ef4f0-6ce0-43d1-b96a-1328f891536c/manifest,https://iiif-cloud.princeton.edu/iiif/2/4b%2F5b%2Fe1%2F4b5be155079545a19ff743d77214f7b8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-03-18,1935-03-30,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/wells-love-mr-lewisham/,Love and Mr. Lewisham,,"Wells, H. G.",1900,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/45%2F51%2F1f%2F45511f74f3ab463aa6894aec541b2a94%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-03-18,1935-03-20,https://shakespeareandco.princeton.edu/members/rowe-dutton/,Gwen Rowe-Dutton,"Rowe-Dutton, Gwen",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/fraser-rose-anstey/,Rose Anstey,,"Fraser, Ronald",1930,,Lending Library Card,"Sylvia Beach, Gwen Rowe-Dutton Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/545f986a-2530-4b32-8241-08e12304bd40/manifest,https://iiif.princeton.edu/loris/figgy_prod/e2%2F90%2F82%2Fe290823bc6fa4617aff67b2d36a0fbd4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-03-18,1935-03-27,https://shakespeareandco.princeton.edu/members/wendel/,Hélène de Wendel / Comtesse de Noailles,"de Wendel, Hélène",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/butler-way-flesh/,The Way of All Flesh,,"Butler, Samuel",1903,,Lending Library Card,"Sylvia Beach, Madame Hélène Wendel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c70e230a-8313-4c53-9939-22beb5f809b6/manifest,https://iiif-cloud.princeton.edu/iiif/2/8a%2Fbe%2Fec%2F8abeec2451b647e0954a7a53d5eae991%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-03-18,1935-03-27,https://shakespeareandco.princeton.edu/members/wendel/,Hélène de Wendel / Comtesse de Noailles,"de Wendel, Hélène",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/garnett-sailors-return/,The Sailor's Return,,"Garnett, David",1925,,Lending Library Card,"Sylvia Beach, Madame Hélène Wendel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c70e230a-8313-4c53-9939-22beb5f809b6/manifest,https://iiif-cloud.princeton.edu/iiif/2/8a%2Fbe%2Fec%2F8abeec2451b647e0954a7a53d5eae991%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-03-18,1935-03-26,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/richardson-backwater-pilgrimage-2/,Backwater (Pilgrimage 2),,"Richardson, Dorothy M.",1916,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/45%2F51%2F1f%2F45511f74f3ab463aa6894aec541b2a94%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1935-03-18,1935-03-18,https://shakespeareandco.princeton.edu/members/yanke/,Yanke,Yanke,,,,,,,,100.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1935-03-18,1935-03-18,https://shakespeareandco.princeton.edu/members/burroughs-2/,Burroughs,Burroughs,,,,,,,,60.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1935-03-19,1935-04-08,https://shakespeareandco.princeton.edu/members/guillemin-annie/,Annie Guillemin,"Guillemin, Annie",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/james-portrait-lady/,The Portrait of a Lady,,"James, Henry",1881,,Lending Library Card,"Sylvia Beach, Annie Guillemin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2d6019d9-34ed-4ca4-97a9-5fd05d8640a7/manifest,https://iiif.princeton.edu/loris/figgy_prod/5a%2Ffc%2F38%2F5afc38c7321c4497adcc378d8774e24d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1935-03-19,1935-03-19,https://shakespeareandco.princeton.edu/members/popper/,Popper,Popper,,,,,,,,30.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1935-03-19,1935-03-19,https://shakespeareandco.princeton.edu/members/guillet/,Guillet,Guillet,,,,,,,,30.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1935-03-20,1935-03-23,https://shakespeareandco.princeton.edu/members/rowe-dutton/,Gwen Rowe-Dutton,"Rowe-Dutton, Gwen",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/moore-untilled-field/,The Untilled Field,,"Moore, George",1903,,Lending Library Card,"Sylvia Beach, Gwen Rowe-Dutton Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/545f986a-2530-4b32-8241-08e12304bd40/manifest,https://iiif.princeton.edu/loris/figgy_prod/e2%2F90%2F82%2Fe290823bc6fa4617aff67b2d36a0fbd4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-03-20,1935-03-25,https://shakespeareandco.princeton.edu/members/sykes-christopher/,Christopher Sykes,"Sykes, Christopher",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/views-reviews/,Views and Reviews,,,,"Unidentified. Henry James's *Views and Reviews* (1908), William Ernest Henley's *Views and Reviews: Essays in Appreciation* (1921), or Havelock Ellis's *Views and Reviews: A Selection of Uncollected Articles* (1932).",Lending Library Card,"Sylvia Beach, Christopher Sykes Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/56dc1b1a-6523-4a6a-b635-9644f844aaaf/manifest,https://iiif.princeton.edu/loris/figgy_prod/8c%2F18%2Fec%2F8c18ec9884c2471bb8b7681522a19f9f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1935-03-20,,https://shakespeareandco.princeton.edu/members/nouguier-2/,Nouguier,Nouguier,30.00,,,,,,1935-03-20,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1935-03-20,,https://shakespeareandco.princeton.edu/members/sykes-christopher/,Christopher Sykes,"Sykes, Christopher",30.00,,,,,Day By Day,1935-03-20,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Christopher Sykes Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/56dc1b1a-6523-4a6a-b635-9644f844aaaf/manifest,;https://iiif.princeton.edu/loris/figgy_prod/8c%2F18%2Fec%2F8c18ec9884c2471bb8b7681522a19f9f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-03-20,1935-03-29,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/smith-words-idioms-studies/,Words and Idioms: Studies in the English Language,,"Smith, Logan Pearsall",1925,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/9d%2F97%2F6e%2F9d976e57833f41c3b362aafa315a35e5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-03-20,1935-03-29,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/pound-draft-xxx-cantos/,A Draft of XXX Cantos,,"Pound, Ezra",1930,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/9d%2F97%2F6e%2F9d976e57833f41c3b362aafa315a35e5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-03-20,1935-04-05,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/dos-passos-countries/,In All Countries,,"Dos Passos, John",1934,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/9d%2F97%2F6e%2F9d976e57833f41c3b362aafa315a35e5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-03-21,1935-04-20,https://shakespeareandco.princeton.edu/members/bernheim-francoise/,FranΓ§oise Bernheim,"Bernheim, FranΓ§oise",,,,,,,,,Returned,30,,,https://shakespeareandco.princeton.edu/books/lehmann-note-music/,A Note in Music,,"Lehmann, Rosamond",1930,,Lending Library Card,"Sylvia Beach, FranΓ§oise Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5e7f717b-973d-41b9-8fbb-c14306386d92/manifest,https://iiif-cloud.princeton.edu/iiif/2/68%2F8d%2F3c%2F688d3c18dba14f33bb55ff95ea34e190%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-03-22,1935-04-06,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/maugham-painted-veil/,The Painted Veil,,"Maugham, W. Somerset",1925,,Lending Library Card,"Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F0d%2F24%2F560d24c0dfa94677ae04cf2db490c371%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-03-22,1935-03-29,https://shakespeareandco.princeton.edu/members/tony-mayer/,Thérèse Tony-Mayer,"Tony-Mayer, Thérèse",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/thompson-breakfast-bed/,Breakfast in Bed,,"Thompson, Sylvia",1934,,Lending Library Card,"Sylvia Beach, Thérèse Tony-Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/27246b4c-7d99-4dca-b874-ab90bd542cfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/a1%2Fec%2Ff5%2Fa1ecf56bff2e4aefa5c17aaba1dcce85%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-03-22,1935-04-07,https://shakespeareandco.princeton.edu/members/massey/,Adelaide W. Massey / A. W. Massey,"Massey, Adelaide W.",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/ofaolain-nest-simple-folk/,A Nest of Simple Folk,,"Γ FaolΓ‘in, SeΓ‘n",1933,,Lending Library Card,"Sylvia Beach, A. W. Massey Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c4712c46-76f3-4581-99d6-d0ffd31b4138/manifest,https://iiif-cloud.princeton.edu/iiif/2/a4%2F76%2Ffd%2Fa476fd809f344e05836ec8137b929e52%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-03-22,1935-03-29,https://shakespeareandco.princeton.edu/members/raphael-france/,France Emma RaphaΓ«l,"RaphaΓ«l, France Emma",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/jesse-pin-see-peepshow/,A Pin to See the Peepshow,,"Jesse, F. Tennyson",1934,,Lending Library Card,"Sylvia Beach, France Emma RaphaΓ«l Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/cd57b14e-9cb5-476f-b291-536a31cca3bf/manifest,https://iiif.princeton.edu/loris/figgy_prod/3a%2Fa5%2F3b%2F3aa53b27338545bfbc02b4bef71fd290%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-03-22,1935-03-26,https://shakespeareandco.princeton.edu/members/massey/,Adelaide W. Massey / A. W. Massey,"Massey, Adelaide W.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/hurston-jonahs-gourd-vine/,Jonah's Gourd Vine,,"Hurston, Zora Neale",1934,,Lending Library Card,"Sylvia Beach, A. W. Massey Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c4712c46-76f3-4581-99d6-d0ffd31b4138/manifest,https://iiif-cloud.princeton.edu/iiif/2/a4%2F76%2Ffd%2Fa476fd809f344e05836ec8137b929e52%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-03-22,1935-04-08,https://shakespeareandco.princeton.edu/members/massey/,Adelaide W. Massey / A. W. Massey,"Massey, Adelaide W.",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/williams-american-grain/,In the American Grain,,"Williams, William Carlos",1925,,Lending Library Card,"Sylvia Beach, A. W. Massey Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c4712c46-76f3-4581-99d6-d0ffd31b4138/manifest,https://iiif-cloud.princeton.edu/iiif/2/a4%2F76%2Ffd%2Fa476fd809f344e05836ec8137b929e52%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1935-03-22,1935-03-22,https://shakespeareandco.princeton.edu/members/church-henry/,Henry Church,"Church, Henry",,,,,,,,,,,30.00,FRF,https://shakespeareandco.princeton.edu/books/smith-beginning-origin-civilization/,In the Beginning: The Origin of Civilization,,"Smith, Grafton Elliot",1928,,Lending Library Card,"Sylvia Beach, Henry Church Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4f79663d-da9d-460a-bbd7-44cd14c2cc0f/manifest,https://iiif-cloud.princeton.edu/iiif/2/82%2Ffb%2Fee%2F82fbeee2fa2a4685962e25c031da5007%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-03-23,1935-04-05,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/oldfield-ivor-trent/,This Was Ivor Trent,,"Oldfield, Claude Houghton",1935,,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/cc%2Ffa%2F5d%2Fccfa5dcefcc7400ca591e470e0d28a7a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-03-23,1935-04-05,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/summers-restoration-theatre/,The Restoration Theatre,,"Summers, Montague",1934,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5b%2Fae%2F7a%2F5bae7a078f9c45b2a2914cfee78e2313%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-03-23,1935-03-27,https://shakespeareandco.princeton.edu/members/rowe-dutton/,Gwen Rowe-Dutton,"Rowe-Dutton, Gwen",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/masefield-mainsail-haul/,A Mainsail Haul,,"Masefield, John",1905,,Lending Library Card,"Sylvia Beach, Gwen Rowe-Dutton Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/545f986a-2530-4b32-8241-08e12304bd40/manifest,https://iiif.princeton.edu/loris/figgy_prod/e2%2F90%2F82%2Fe290823bc6fa4617aff67b2d36a0fbd4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-03-23,1935-04-05,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/coppard-black-dog-stories/,The Black Dog and Other Stories,,"Coppard, A. E.",1923,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5b%2Fae%2F7a%2F5bae7a078f9c45b2a2914cfee78e2313%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-03-25,1935-04-02,https://shakespeareandco.princeton.edu/members/maxwell/,Mrs. Maxwell,"Maxwell, Mrs.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/hopkins-letters-gerard-manley/,The Letters of Gerard Manley Hopkins to Robert Bridges and The Correspondence of Gerard Manley Hopkins to Richard Watson Dixon,"Vol. 1, 1935 The Letters of Gerard Manley Hopkins to Robert Bridges","Hopkins, Gerard Manley",1935,,Lending Library Card,"Sylvia Beach, Mrs. Maxwell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6148b048-a591-4aae-8470-52fde178e0aa/manifest,https://iiif.princeton.edu/loris/figgy_prod/24%2F60%2F6c%2F24606ced6f604fd2882f67872b3d610a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-03-25,1935-03-26,https://shakespeareandco.princeton.edu/members/sykes-christopher/,Christopher Sykes,"Sykes, Christopher",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/butler-extracts-notebooks-samuel/,Further Extracts from the Notebooks of Samuel Butler,,"Butler, Samuel",1934,,Lending Library Card,"Sylvia Beach, Christopher Sykes Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/56dc1b1a-6523-4a6a-b635-9644f844aaaf/manifest,https://iiif.princeton.edu/loris/figgy_prod/8c%2F18%2Fec%2F8c18ec9884c2471bb8b7681522a19f9f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-03-25,1935-04-02,https://shakespeareandco.princeton.edu/members/maxwell/,Mrs. Maxwell,"Maxwell, Mrs.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/huxley-beyond-mexique-bay/,Beyond the Mexique Bay,,"Huxley, Aldous",1934,,Lending Library Card,"Sylvia Beach, Mrs. Maxwell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6148b048-a591-4aae-8470-52fde178e0aa/manifest,https://iiif.princeton.edu/loris/figgy_prod/24%2F60%2F6c%2F24606ced6f604fd2882f67872b3d610a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-03-25,1935-04-09,https://shakespeareandco.princeton.edu/members/mazon/,Mme Mazon,"Mazon, Mme",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/shaw-heartbreak-house-fantasia/,Heartbreak House: A Fantasia in the Russian Manner on English Themes,,"Shaw, George Bernard",1919,,Lending Library Card,"Sylvia Beach, Madame Mazon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/faf25016-678e-49d8-b616-45145b11e1ab/manifest,https://iiif.princeton.edu/loris/figgy_prod/32%2Fda%2Fed%2F32daed52449748d98b5f189f6c53c9c6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-03-25,1935-04-09,https://shakespeareandco.princeton.edu/members/mazon/,Mme Mazon,"Mazon, Mme",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/monk/,Monk,,,,Unidentified. M. G. Lewis's *The Monk: A Romance* (1796) or Julian Corbett's *Monk* (1889).,Lending Library Card,"Sylvia Beach, Madame Mazon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/faf25016-678e-49d8-b616-45145b11e1ab/manifest,https://iiif.princeton.edu/loris/figgy_prod/32%2Fda%2Fed%2F32daed52449748d98b5f189f6c53c9c6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-03-26,1935-04-06,https://shakespeareandco.princeton.edu/members/caillois/;https://shakespeareandco.princeton.edu/members/petitjean/,Roger Caillois;Armand Petitjean,"Caillois, Roger;Petitjean, Armand",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/ladd-franklin-color-color-theories/,Color and Color Theories,,"Ladd-Franklin, Christine",1932,,Lending Library Card,"Sylvia Beach, Roger Caillois/ Armand Petitjean Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/58386f27-2a95-4138-a30e-4dde3aeb0aaa/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2F00%2Fcd%2F5e00cdaa323542559393d3d06aef50f8%2Fintermediate_file/full/full/0/default.jpg
+Crossed out,1935-03-26,,https://shakespeareandco.princeton.edu/members/caillois/;https://shakespeareandco.princeton.edu/members/petitjean/,Roger Caillois;Armand Petitjean,"Caillois, Roger;Petitjean, Armand",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/richards-coleridge-imagination/,Coleridge on Imagination,,"Richards, I. A.",1934,,Lending Library Card,"Sylvia Beach, Roger Caillois/ Armand Petitjean Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/58386f27-2a95-4138-a30e-4dde3aeb0aaa/manifest,https://iiif-cloud.princeton.edu/iiif/2/5e%2F00%2Fcd%2F5e00cdaa323542559393d3d06aef50f8%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-03-26,1935-05-03,https://shakespeareandco.princeton.edu/members/wibbelz-henry/,Henry W. Wibbelz,"Wibbelz, Henry W.",,,,,,,,,Returned,38,,,https://shakespeareandco.princeton.edu/books/dostoyevsky-house-dead/,The House of the Dead,,"Dostoyevsky, Fyodor",1911,,Lending Library Card,"Sylvia Beach, Henry W. Wibbelz Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/225d5fc4-c83d-46e5-b861-ad36ae4548b6/manifest,https://iiif.princeton.edu/loris/figgy_prod/30%2Fd6%2F9f%2F30d69f3cae0d4af189b9671bc81dbde3%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1935-03-26,1935-03-26,https://shakespeareandco.princeton.edu/members/winterstein/,de Winterstein,"Winterstein, de",,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1935-03-26,1935-03-26,https://shakespeareandco.princeton.edu/members/lagrange/,Lagrange,Lagrange,,,,,,,,30.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1935-03-26,1935-03-27,https://shakespeareandco.princeton.edu/members/sykes-christopher/,Christopher Sykes,"Sykes, Christopher",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/shakespeare-songs-sonnets/,Shakespeare's Sonnets Reconsidered,,"Shakespeare, William",1899,,Lending Library Card,"Sylvia Beach, Christopher Sykes Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/56dc1b1a-6523-4a6a-b635-9644f844aaaf/manifest,https://iiif.princeton.edu/loris/figgy_prod/8c%2F18%2Fec%2F8c18ec9884c2471bb8b7681522a19f9f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1935-03-26,1935-04-26,https://shakespeareandco.princeton.edu/members/leites-2/,Leites,Leites,15.00,,1 month,31,1,,1935-03-26,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1935-03-26,1935-03-30,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/richardson-honeycomb-pilgrimage-3/,Honeycomb (Pilgrimage 3),,"Richardson, Dorothy M.",1917,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/45%2F51%2F1f%2F45511f74f3ab463aa6894aec541b2a94%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-03-27,1935-04-08,https://shakespeareandco.princeton.edu/members/bernheim-antoinette/,Antoinette Bernheim,"Bernheim, Antoinette",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/forster-aspects-novel/,Aspects of the Novel,,"Forster, E. M.",1927,,Lending Library Card,"Sylvia Beach, Antoinette Bernheim Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/5b0acd5e-3121-468b-8dc7-846b4a08dafb/manifest,https://iiif-cloud.princeton.edu/iiif/2/3d%2Ffd%2F92%2F3dfd92dc212a4912aa80151e98eea833%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1935-03-27,1935-06-27,https://shakespeareandco.princeton.edu/members/beraud-i/,Mme I. BΓ©raud,"BΓ©raud, Mme I.",40.00,30.00,3 months,92,1,,1935-03-27,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1935-03-27,1935-03-27,https://shakespeareandco.princeton.edu/members/sykes-christopher/,Christopher Sykes,"Sykes, Christopher",,,,,,,,30.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1935-03-27,1935-04-05,https://shakespeareandco.princeton.edu/members/wendel/,Hélène de Wendel / Comtesse de Noailles,"de Wendel, Hélène",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/mansfield-garden-party-stories/,The Garden Party and Other Stories,,"Mansfield, Katherine",1922,,Lending Library Card,"Sylvia Beach, Madame Hélène Wendel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c70e230a-8313-4c53-9939-22beb5f809b6/manifest,https://iiif-cloud.princeton.edu/iiif/2/8a%2Fbe%2Fec%2F8abeec2451b647e0954a7a53d5eae991%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-03-27,1935-04-05,https://shakespeareandco.princeton.edu/members/wendel/,Hélène de Wendel / Comtesse de Noailles,"de Wendel, Hélène",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/eliot-use-poetry-use/,The Use of Poetry and the Use of Criticism: Studies in the Relation of Criticism to Poetry in England,,"Eliot, T. S.",1933,,Lending Library Card,"Sylvia Beach, Madame Hélène Wendel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c70e230a-8313-4c53-9939-22beb5f809b6/manifest,https://iiif-cloud.princeton.edu/iiif/2/8a%2Fbe%2Fec%2F8abeec2451b647e0954a7a53d5eae991%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-03-27,1935-03-29,https://shakespeareandco.princeton.edu/members/rowe-dutton/,Gwen Rowe-Dutton,"Rowe-Dutton, Gwen",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/osullivan-twenty-years-growing/,Twenty Years A-Growing,,"O'Sullivan, Maurice",1933,,Lending Library Card,"Sylvia Beach, Gwen Rowe-Dutton Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/545f986a-2530-4b32-8241-08e12304bd40/manifest,https://iiif.princeton.edu/loris/figgy_prod/e2%2F90%2F82%2Fe290823bc6fa4617aff67b2d36a0fbd4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1935-03-28,1935-04-28,https://shakespeareandco.princeton.edu/members/morinni/,Clara de Morinni,"de Morinni, Clara",25.00,,1 month,31,1,,1935-04-08,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Clara de Morinni Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/1b1b31e4-b340-4768-b43c-5d47dac0afcc/manifest,;https://iiif.princeton.edu/loris/figgy_prod/55%2Faf%2F4a%2F55af4a6e22604c8c8e294a74f9358393%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1935-03-28,1935-03-28,https://shakespeareandco.princeton.edu/members/church-henry/,Henry Church,"Church, Henry",,,,,,,,,,,33.50,FRF,https://shakespeareandco.princeton.edu/books/forster-aspects-novel/,Aspects of the Novel,,"Forster, E. M.",1927,,Lending Library Card,"Sylvia Beach, Henry Church Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4f79663d-da9d-460a-bbd7-44cd14c2cc0f/manifest,https://iiif-cloud.princeton.edu/iiif/2/82%2Ffb%2Fee%2F82fbeee2fa2a4685962e25c031da5007%2Fintermediate_file/full/full/0/default.jpg
+Purchase,1935-03-28,1935-03-28,https://shakespeareandco.princeton.edu/members/church-henry/,Henry Church,"Church, Henry",,,,,,,,,,,16.00,FRF,https://shakespeareandco.princeton.edu/books/pound-selected-poems/,Selected Poems,,"Pound, Ezra",1928,,Lending Library Card,"Sylvia Beach, Henry Church Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/4f79663d-da9d-460a-bbd7-44cd14c2cc0f/manifest,https://iiif-cloud.princeton.edu/iiif/2/82%2Ffb%2Fee%2F82fbeee2fa2a4685962e25c031da5007%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-03-28,1935-04-08,https://shakespeareandco.princeton.edu/members/morinni/,Clara de Morinni,"de Morinni, Clara",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/tilly-memoirs-comte-alexandre/,Memoirs of the Comte Alexandre de Tilly,,"Tilly, Alexandre de",1933,,Lending Library Card,"Sylvia Beach, Clara de Morinni Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1b1b31e4-b340-4768-b43c-5d47dac0afcc/manifest,https://iiif.princeton.edu/loris/figgy_prod/55%2Faf%2F4a%2F55af4a6e22604c8c8e294a74f9358393%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-03-29,1935-04-08,https://shakespeareandco.princeton.edu/members/tony-mayer/,Thérèse Tony-Mayer,"Tony-Mayer, Thérèse",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/woollcott-rome-burns/,While Rome Burns,,"Woollcott, Alexander",1934,,Lending Library Card,"Sylvia Beach, Thérèse Tony-Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/27246b4c-7d99-4dca-b874-ab90bd542cfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/a1%2Fec%2Ff5%2Fa1ecf56bff2e4aefa5c17aaba1dcce85%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-03-29,1935-04-01,https://shakespeareandco.princeton.edu/members/rowe-dutton/,Gwen Rowe-Dutton,"Rowe-Dutton, Gwen",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/tomlinson-snows-helicon/,The Snows of Helicon,,"Tomlinson, H. M.",1933,,Lending Library Card,"Sylvia Beach, Gwen Rowe-Dutton Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/545f986a-2530-4b32-8241-08e12304bd40/manifest,https://iiif.princeton.edu/loris/figgy_prod/e2%2F90%2F82%2Fe290823bc6fa4617aff67b2d36a0fbd4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-03-30,1935-04-27,https://shakespeareandco.princeton.edu/members/bourassin-2/,Bourassin,Bourassin,,,,,,,,,Returned,28,,,https://shakespeareandco.princeton.edu/books/de-la-mare-riddle/,The Riddle,,"De la Mare, Walter",1923,,Lending Library Card,"Sylvia Beach, Bourassin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d7f5e28a-9714-4d7d-ab72-5d4f266266c7/manifest,https://iiif.princeton.edu/loris/figgy_prod/76%2Fa2%2F96%2F76a296a07dfa4cabb4b4d242cb26af31%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1935-03-30,1935-04-30,https://shakespeareandco.princeton.edu/members/bourassin-2/,Bourassin,Bourassin,15.00,30.00,1 month,31,1,,1935-03-30,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Bourassin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/d7f5e28a-9714-4d7d-ab72-5d4f266266c7/manifest,;https://iiif.princeton.edu/loris/figgy_prod/76%2Fa2%2F96%2F76a296a07dfa4cabb4b4d242cb26af31%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-03-30,1935-04-06,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/richardson-tunnel-pilgrimage-4/,The Tunnel (Pilgrimage 4),,"Richardson, Dorothy M.",1919,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/45%2F51%2F1f%2F45511f74f3ab463aa6894aec541b2a94%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-03-30,1935-04-20,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,21,,,https://shakespeareandco.princeton.edu/books/james-alice-james-brothers/,"Alice James: Her Brothers, Her Journal",,"James, Alice",1934,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/45%2F51%2F1f%2F45511f74f3ab463aa6894aec541b2a94%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-03-30,1935-04-08,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/eberhart-white-cockatoo/,The White Cockatoo,,"Eberhart, Mignon Good",1933,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/45%2F51%2F1f%2F45511f74f3ab463aa6894aec541b2a94%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-03-30,1935-04-06,https://shakespeareandco.princeton.edu/members/plummer-dorothy/,Dorothy Plummer,"Plummer, Dorothy",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/lawrence-lady-chatterleys-lover/,Lady Chatterley's Lover,,"Lawrence, D. H.",1928,,Lending Library Card,"Sylvia Beach, Dorothy Plummer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5f53ce0-8ea6-4d1f-b36b-f6e5321bab4c/manifest,https://iiif.princeton.edu/loris/figgy_prod/73%2F61%2F28%2F7361283a6eb946cbbb43d97ca38f1deb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-04-01,1935-04-02,https://shakespeareandco.princeton.edu/members/rowe-dutton/,Gwen Rowe-Dutton,"Rowe-Dutton, Gwen",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/sackville-west-dark-island/,The Dark Island,,"Sackville-West, Vita",1934,,Lending Library Card,"Sylvia Beach, Gwen Rowe-Dutton Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/545f986a-2530-4b32-8241-08e12304bd40/manifest,https://iiif.princeton.edu/loris/figgy_prod/e2%2F90%2F82%2Fe290823bc6fa4617aff67b2d36a0fbd4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1935-04-01,,https://shakespeareandco.princeton.edu/members/newmark/,Newmark,Newmark,,30.00,,,,Day By Day,1935-04-01,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1935-04-02,1935-04-04,https://shakespeareandco.princeton.edu/members/massey/,Adelaide W. Massey / A. W. Massey,"Massey, Adelaide W.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/coyle-flock-birds/,A Flock of Birds,,"Coyle, Kathleen",1930,,Lending Library Card,"Sylvia Beach, A. W. Massey Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c4712c46-76f3-4581-99d6-d0ffd31b4138/manifest,https://iiif-cloud.princeton.edu/iiif/2/a4%2F76%2Ffd%2Fa476fd809f344e05836ec8137b929e52%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-04-02,1935-04-04,https://shakespeareandco.princeton.edu/members/maxwell/,Mrs. Maxwell,"Maxwell, Mrs.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/powys-left-leg/,The Left Leg,,"Powys, Theodore Francis",1923,,Lending Library Card,"Sylvia Beach, Mrs. Maxwell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6148b048-a591-4aae-8470-52fde178e0aa/manifest,https://iiif.princeton.edu/loris/figgy_prod/24%2F60%2F6c%2F24606ced6f604fd2882f67872b3d610a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1935-04-02,,https://shakespeareandco.princeton.edu/members/wiseman/,Wiseman,Wiseman,,20.00,,,,Day By Day,1935-04-02,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1935-04-02,1935-04-04,https://shakespeareandco.princeton.edu/members/massey/,Adelaide W. Massey / A. W. Massey,"Massey, Adelaide W.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/coyle-widows-house-novel/,The Widow's House: A Novel,,"Coyle, Kathleen",1924,,Lending Library Card,"Sylvia Beach, A. W. Massey Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c4712c46-76f3-4581-99d6-d0ffd31b4138/manifest,https://iiif-cloud.princeton.edu/iiif/2/a4%2F76%2Ffd%2Fa476fd809f344e05836ec8137b929e52%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-04-02,1935-04-04,https://shakespeareandco.princeton.edu/members/maxwell/,Mrs. Maxwell,"Maxwell, Mrs.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/pound-eleven-new-cantos/,Eleven New Cantos: XXXI β XLI,,"Pound, Ezra",1934,,Lending Library Card,"Sylvia Beach, Mrs. Maxwell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6148b048-a591-4aae-8470-52fde178e0aa/manifest,https://iiif.princeton.edu/loris/figgy_prod/24%2F60%2F6c%2F24606ced6f604fd2882f67872b3d610a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-04-02,1935-04-05,https://shakespeareandco.princeton.edu/members/rowe-dutton/,Gwen Rowe-Dutton,"Rowe-Dutton, Gwen",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/symons-loves-cruelty/,Love's Cruelty,,"Symons, Arthur",1923,,Lending Library Card,"Sylvia Beach, Gwen Rowe-Dutton Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/545f986a-2530-4b32-8241-08e12304bd40/manifest,https://iiif.princeton.edu/loris/figgy_prod/e2%2F90%2F82%2Fe290823bc6fa4617aff67b2d36a0fbd4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1935-04-03,1935-05-03,https://shakespeareandco.princeton.edu/members/merrick-leonard/,Leonard Merrick,"Merrick, Leonard",25.00,50.00,1 month,30,1,,1935-04-03,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Leonard Merrick Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/1ebab89a-e11c-447a-afc6-91d67a974725/manifest,;https://iiif.princeton.edu/loris/figgy_prod/65%2Fcb%2F4c%2F65cb4c576fa74234bbcd904f074e0008%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-04-03,1935-04-04,https://shakespeareandco.princeton.edu/members/merrick-leonard/,Leonard Merrick,"Merrick, Leonard",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/lawrence-lady-chatterleys-lover/,Lady Chatterley's Lover,,"Lawrence, D. H.",1928,,Lending Library Card,"Sylvia Beach, Leonard Merrick Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ebab89a-e11c-447a-afc6-91d67a974725/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2Fcb%2F4c%2F65cb4c576fa74234bbcd904f074e0008%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-04-03,1935-04-20,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,17,,,https://shakespeareandco.princeton.edu/books/maugham-gentleman-parlour/,The Gentleman in the Parlour,,"Maugham, W. Somerset",1930,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/45%2F51%2F1f%2F45511f74f3ab463aa6894aec541b2a94%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-04-03,1935-04-19,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,16,,,https://shakespeareandco.princeton.edu/books/linklater-ripeness/,Ripeness Is All,,"Linklater, Eric",1935,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/45%2F51%2F1f%2F45511f74f3ab463aa6894aec541b2a94%2Fintermediate_file/full/full/0/default.jpg
+Supplement,1935-04-03,1935-06-27,https://shakespeareandco.princeton.edu/members/beraud-i/,Mme I. BΓ©raud,"BΓ©raud, Mme I.",20.00,30.00,"2 months, 24 days",85,1,,1935-04-03,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Reimbursement,1935-04-04,1935-04-04,https://shakespeareandco.princeton.edu/members/ducrocq/,Mme Ducrocq,"Ducrocq, Mme",,,,,,,,30.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1935-04-04,1935-04-06,https://shakespeareandco.princeton.edu/members/merrick-leonard/,Leonard Merrick,"Merrick, Leonard",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/wells-experiment-autobiography-discoveries/,Experiment in Autobiography: Discoveries and Conclusions of a Very Ordinary Brain (Since 1866),Vol. 2,"Wells, H. G.",1934,,Lending Library Card,"Sylvia Beach, Leonard Merrick Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ebab89a-e11c-447a-afc6-91d67a974725/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2Fcb%2F4c%2F65cb4c576fa74234bbcd904f074e0008%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-04-04,1935-04-12,https://shakespeareandco.princeton.edu/members/maxwell/,Mrs. Maxwell,"Maxwell, Mrs.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/faulkner-pylon/,Pylon,,"Faulkner, William",1935,,Lending Library Card,"Sylvia Beach, Mrs. Maxwell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6148b048-a591-4aae-8470-52fde178e0aa/manifest,https://iiif.princeton.edu/loris/figgy_prod/24%2F60%2F6c%2F24606ced6f604fd2882f67872b3d610a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-04-04,1935-04-12,https://shakespeareandco.princeton.edu/members/maxwell/,Mrs. Maxwell,"Maxwell, Mrs.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/west-harsh-voice-four/,The Harsh Voice: Four Short Novels,,"West, Rebecca",1935,,Lending Library Card,"Sylvia Beach, Mrs. Maxwell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6148b048-a591-4aae-8470-52fde178e0aa/manifest,https://iiif.princeton.edu/loris/figgy_prod/24%2F60%2F6c%2F24606ced6f604fd2882f67872b3d610a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-04-05,1935-04-15,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/slang/,Slang,,,,Unidentified. Likely Eric Partridge's *Slang To-day and Yesterday* (1933).,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/9d%2F97%2F6e%2F9d976e57833f41c3b362aafa315a35e5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-04-05,1935-05-09,https://shakespeareandco.princeton.edu/members/lecoeur/,Mme Lecoeur,"Lecoeur, Mme",,,,,,,,,Returned,34,,,https://shakespeareandco.princeton.edu/books/woolf-flush-biography/,Flush: A Biography,,"Woolf, Virginia",1933,,Lending Library Card,"Sylvia Beach, Madame Lecoeur Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c8ed4922-cdcf-4448-8617-5ca7599cb894/manifest,https://iiif.princeton.edu/loris/figgy_prod/80%2Fd6%2Fed%2F80d6ed208785419d9ae20bf4e69d1f2c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-04-05,1935-04-13,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/lowes-road-xanadu/,The Road to Xanadu,,"Lowes, John Livingston",1927,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5b%2Fae%2F7a%2F5bae7a078f9c45b2a2914cfee78e2313%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-04-05,1935-04-12,https://shakespeareandco.princeton.edu/members/wendel/,Hélène de Wendel / Comtesse de Noailles,"de Wendel, Hélène",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/buck-sons/,Sons,,"Buck, Pearl S.",1932,,Lending Library Card,"Sylvia Beach, Madame Hélène Wendel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c70e230a-8313-4c53-9939-22beb5f809b6/manifest,https://iiif-cloud.princeton.edu/iiif/2/8a%2Fbe%2Fec%2F8abeec2451b647e0954a7a53d5eae991%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-04-05,1935-04-13,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/spender-poems/,Poems,,"Spender, Stephen",1933,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5b%2Fae%2F7a%2F5bae7a078f9c45b2a2914cfee78e2313%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-04-05,1935-04-12,https://shakespeareandco.princeton.edu/members/wendel/,Hélène de Wendel / Comtesse de Noailles,"de Wendel, Hélène",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/wodehouse-right-ho-jeeves/,"Right Ho, Jeeves",,"Wodehouse, P. G.",1934,,Lending Library Card,"Sylvia Beach, Madame Hélène Wendel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c70e230a-8313-4c53-9939-22beb5f809b6/manifest,https://iiif-cloud.princeton.edu/iiif/2/8a%2Fbe%2Fec%2F8abeec2451b647e0954a7a53d5eae991%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1935-04-05,1935-05-05,https://shakespeareandco.princeton.edu/members/lecoeur/,Mme Lecoeur,"Lecoeur, Mme",15.00,30.00,1 month,30,1,,1935-04-05,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Madame Lecoeur Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/c8ed4922-cdcf-4448-8617-5ca7599cb894/manifest,;https://iiif.princeton.edu/loris/figgy_prod/80%2Fd6%2Fed%2F80d6ed208785419d9ae20bf4e69d1f2c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1935-04-05,1935-05-05,https://shakespeareandco.princeton.edu/members/cunning/,B. Cunning,"Cunning, B.",25.00,60.00,1 month,30,2,,1935-04-05,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1935-04-05,1935-04-08,https://shakespeareandco.princeton.edu/members/rowe-dutton/,Gwen Rowe-Dutton,"Rowe-Dutton, Gwen",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/keller-fat-cat-stories/,The Fat of the Cat and Other Stories,,"Keller, Gottfried;Untermeyer, Louis",1925,,Lending Library Card,"Sylvia Beach, Gwen Rowe-Dutton Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/545f986a-2530-4b32-8241-08e12304bd40/manifest,https://iiif.princeton.edu/loris/figgy_prod/e2%2F90%2F82%2Fe290823bc6fa4617aff67b2d36a0fbd4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-04-05,1935-05-08,https://shakespeareandco.princeton.edu/members/morgan/,Mr. Morgan,"Morgan, Mr.",,,,,,,,,Returned,33,,,https://shakespeareandco.princeton.edu/books/barry-week-end-calendar/,"The ""Week-end"" Calendar",,,1932,See [*The Weekend Calendar*](https://shakespeareandco.princeton.edu/books/weekend-calendar/) for a possible connection.,Lending Library Card,"Sylvia Beach, Mr Morgan Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f60e37e-5878-437d-ac94-7792f390ff63/manifest,https://iiif-cloud.princeton.edu/iiif/2/cc%2Ffa%2F5d%2Fccfa5dcefcc7400ca591e470e0d28a7a%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-04-06,1935-04-08,https://shakespeareandco.princeton.edu/members/merrick-leonard/,Leonard Merrick,"Merrick, Leonard",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/maugham-plays/,Plays,"Vol. 6, 1934 The Unknown; For Services Rendered; Sheppey","Maugham, W. Somerset",,,Lending Library Card,"Sylvia Beach, Leonard Merrick Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ebab89a-e11c-447a-afc6-91d67a974725/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2Fcb%2F4c%2F65cb4c576fa74234bbcd904f074e0008%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-04-06,,https://shakespeareandco.princeton.edu/members/plummer-dorothy/,Dorothy Plummer,"Plummer, Dorothy",,,,,,,,,Returned,,,,https://shakespeareandco.princeton.edu/books/de-quincey-confessions-english-opium/,Confessions of an English Opium Eater,,"de Quincey, Thomas",1821,"Bernard Saby borrowed *Confessions of an English Opium Eater,* edited by William Sharp (Walter Scott, 1888).",Lending Library Card,"Sylvia Beach, Dorothy Plummer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5f53ce0-8ea6-4d1f-b36b-f6e5321bab4c/manifest,https://iiif.princeton.edu/loris/figgy_prod/73%2F61%2F28%2F7361283a6eb946cbbb43d97ca38f1deb%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-04-06,1935-04-12,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/maugham-penelope-comedy-three/,Penelope: A Comedy in Three Acts,,"Maugham, W. Somerset",1909,,Lending Library Card,"Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F0d%2F24%2F560d24c0dfa94677ae04cf2db490c371%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-04-08,1935-04-10,https://shakespeareandco.princeton.edu/members/rowe-dutton/,Gwen Rowe-Dutton,"Rowe-Dutton, Gwen",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/wilde-happy-prince-tales/,The Happy Prince and Other Tales,,"Wilde, Oscar",1888,,Lending Library Card,"Sylvia Beach, Gwen Rowe-Dutton Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/545f986a-2530-4b32-8241-08e12304bd40/manifest,https://iiif.princeton.edu/loris/figgy_prod/e2%2F90%2F82%2Fe290823bc6fa4617aff67b2d36a0fbd4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-04-08,1935-04-15,https://shakespeareandco.princeton.edu/members/tony-mayer/,Thérèse Tony-Mayer,"Tony-Mayer, Thérèse",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/ohara-appointment-samarra/,Appointment in Samarra,,"O'Hara, John",1934,,Lending Library Card,"Sylvia Beach, Thérèse Tony-Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/27246b4c-7d99-4dca-b874-ab90bd542cfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/a1%2Fec%2Ff5%2Fa1ecf56bff2e4aefa5c17aaba1dcce85%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-04-08,1935-05-10,https://shakespeareandco.princeton.edu/members/morinni/,Clara de Morinni,"de Morinni, Clara",,,,,,,,,Returned,32,,,https://shakespeareandco.princeton.edu/books/ponsonby-scottish-irish-diaries/,Scottish and Irish Diaries from the Sixteenth to the Nineteenth Century,,,1927,,Lending Library Card,"Sylvia Beach, Clara de Morinni Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1b1b31e4-b340-4768-b43c-5d47dac0afcc/manifest,https://iiif.princeton.edu/loris/figgy_prod/55%2Faf%2F4a%2F55af4a6e22604c8c8e294a74f9358393%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-04-08,1935-04-11,https://shakespeareandco.princeton.edu/members/burt-maud/,Maud Burt,"Burt, Maud",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/forster-goldsworthy-lowes-dickinson/,Goldsworthy Lowes Dickinson,,"Forster, E. M.",1934,,Lending Library Card,"Sylvia Beach, Maud Burt Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/84402ab0-3135-4059-bd55-010e23394445/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2Fc8%2Fab%2F65c8ab878cfc46bbb6614d86cfecbf51%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-04-08,1935-04-10,https://shakespeareandco.princeton.edu/members/morinni/,Clara de Morinni,"de Morinni, Clara",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/ponsonby-english-diaries/,English Diaries,,"Ponsonby, Arthur",1923,,Lending Library Card,"Sylvia Beach, Clara de Morinni Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1b1b31e4-b340-4768-b43c-5d47dac0afcc/manifest,https://iiif.princeton.edu/loris/figgy_prod/55%2Faf%2F4a%2F55af4a6e22604c8c8e294a74f9358393%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-04-08,1935-04-10,https://shakespeareandco.princeton.edu/members/morinni/,Clara de Morinni,"de Morinni, Clara",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/werner-barnum/,Barnum,,"Werner, M. R.",1923,,Lending Library Card,"Sylvia Beach, Clara de Morinni Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1b1b31e4-b340-4768-b43c-5d47dac0afcc/manifest,https://iiif.princeton.edu/loris/figgy_prod/55%2Faf%2F4a%2F55af4a6e22604c8c8e294a74f9358393%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-04-08,1935-04-13,https://shakespeareandco.princeton.edu/members/rirachowsky-fanny/,Fanny Rirachowsky,"Rirachowsky, Fanny",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/forster-howards-end/,Howards End,,"Forster, E. M.",1910,,Lending Library Card,"Sylvia Beach, Fanny Rirachowsky Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ed53891-0a1b-4bc4-8b10-d7d32f46663a/manifest,https://iiif-cloud.princeton.edu/iiif/2/2c%2Fe2%2F41%2F2ce24179ad9943f384d53e6947c82f6c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-04-08,1935-04-09,https://shakespeareandco.princeton.edu/members/merrick-leonard/,Leonard Merrick,"Merrick, Leonard",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/maugham-plays/,Plays,"Vol. 5, 1934 Caesar's Wife; East of Suez; The Sacred Flame","Maugham, W. Somerset",,,Lending Library Card,"Sylvia Beach, Leonard Merrick Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ebab89a-e11c-447a-afc6-91d67a974725/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2Fcb%2F4c%2F65cb4c576fa74234bbcd904f074e0008%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-04-08,1935-04-19,https://shakespeareandco.princeton.edu/members/guillemin-annie/,Annie Guillemin,"Guillemin, Annie",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/heyward-mambas-daughters/,Mamba's Daughters,,"Heyward, DuBose",1928,,Lending Library Card,"Sylvia Beach, Annie Guillemin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2d6019d9-34ed-4ca4-97a9-5fd05d8640a7/manifest,https://iiif.princeton.edu/loris/figgy_prod/5a%2Ffc%2F38%2F5afc38c7321c4497adcc378d8774e24d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-04-09,1935-04-16,https://shakespeareandco.princeton.edu/members/haltel/,Haltel,"Haltel, Mr.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/lewis-work-art/,Work of Art,,"Lewis, Sinclair",1934,,Lending Library Card,"Sylvia Beach, Haltel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d487e663-b9a7-4d06-a067-86e746cc3c82/manifest,https://iiif.princeton.edu/loris/figgy_prod/6f%2Fd2%2F1c%2F6fd21c45576f4e1698824bcfc16297c0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1935-04-09,1935-04-09,https://shakespeareandco.princeton.edu/members/mazon/,Mme Mazon,"Mazon, Mme",,,,,,,,30.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1935-04-09,1935-04-12,https://shakespeareandco.princeton.edu/members/merrick-leonard/,Leonard Merrick,"Merrick, Leonard",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/best-adventure-story/,My Best Adventure Story: An Anthology of Stories Chosen by Their Own Authors,,,1934,,Lending Library Card,"Sylvia Beach, Leonard Merrick Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ebab89a-e11c-447a-afc6-91d67a974725/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2Fcb%2F4c%2F65cb4c576fa74234bbcd904f074e0008%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1935-04-09,,https://shakespeareandco.princeton.edu/members/haltel/,Haltel,"Haltel, Mr.",,30.00,,,,Day By Day,1935-04-09,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Haltel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/d487e663-b9a7-4d06-a067-86e746cc3c82/manifest,;https://iiif.princeton.edu/loris/figgy_prod/6f%2Fd2%2F1c%2F6fd21c45576f4e1698824bcfc16297c0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1935-04-09,1935-05-09,https://shakespeareandco.princeton.edu/members/cain-2/,Mme Cain,"Cain, Mme",25.00,60.00,1 month,30,2,,1935-04-09,,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Reimbursement,1935-04-09,1935-04-09,https://shakespeareandco.princeton.edu/members/martin-7/,Martin,Martin,,,,,,,,30.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1935-04-09,1935-04-12,https://shakespeareandco.princeton.edu/members/merrick-leonard/,Leonard Merrick,"Merrick, Leonard",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/famous-plays-1932/,Famous Plays of 1932,,"Mackenzie, Ronald;Van Druten, John;Rice, Elmer;Bax, Clifford;Hart, Moss;Kaufman, George S.",1932,,Lending Library Card,"Sylvia Beach, Leonard Merrick Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ebab89a-e11c-447a-afc6-91d67a974725/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2Fcb%2F4c%2F65cb4c576fa74234bbcd904f074e0008%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-04-10,1935-05-09,https://shakespeareandco.princeton.edu/members/delimal/,Mme Delimal,"Delimal, Mme",,,,,,,,,Returned,29,,,https://shakespeareandco.princeton.edu/books/webb-house-dormer-forest/,The House in Dormer Forest,,"Webb, Mary",1920,,Lending Library Card,"Sylvia Beach, Madame Delimal Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d7650699-e9d7-4e63-85ff-bce7e9c8dfcd/manifest,https://iiif.princeton.edu/loris/figgy_prod/09%2F74%2F1b%2F09741b95533642218a7f3992da9fea4c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-04-10,1935-04-17,https://shakespeareandco.princeton.edu/members/lamy-marthe/,Marthe Lamy,"Lamy, Marthe",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/schiff-true-story-three/,"A True Story in Three Parts and a Postscript, All of Them Facile Rubbish",,"Hudson, Stephen",1930,,Lending Library Card,"Sylvia Beach, Marthe Lamy Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c715a1d2-668f-44c0-b48d-5f245d0752ba/manifest,https://iiif-cloud.princeton.edu/iiif/2/3b%2F2f%2Fe4%2F3b2fe425ed074e15a19472a16e67e511%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-04-10,,https://shakespeareandco.princeton.edu/members/rowe-dutton/,Gwen Rowe-Dutton,"Rowe-Dutton, Gwen",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/orczy-way-scarlet-pimpernel/,The Way of the Scarlet Pimpernel,,"Orczy, Baroness",1933,,Lending Library Card,"Sylvia Beach, Gwen Rowe-Dutton Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/545f986a-2530-4b32-8241-08e12304bd40/manifest,https://iiif.princeton.edu/loris/figgy_prod/e2%2F90%2F82%2Fe290823bc6fa4617aff67b2d36a0fbd4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1935-04-11,1935-04-11,https://shakespeareandco.princeton.edu/members/nouguier-2/,Nouguier,Nouguier,,,,,,,,30.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1935-04-11,1935-04-17,https://shakespeareandco.princeton.edu/members/rowe-dutton/,Gwen Rowe-Dutton,"Rowe-Dutton, Gwen",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/wodehouse-right-ho-jeeves/,"Right Ho, Jeeves",,"Wodehouse, P. G.",1934,,Lending Library Card,"Sylvia Beach, Gwen Rowe-Dutton Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/545f986a-2530-4b32-8241-08e12304bd40/manifest,https://iiif.princeton.edu/loris/figgy_prod/e2%2F90%2F82%2Fe290823bc6fa4617aff67b2d36a0fbd4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-04-11,1935-04-12,https://shakespeareandco.princeton.edu/members/rowe-dutton/,Gwen Rowe-Dutton,"Rowe-Dutton, Gwen",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/lang-animal-story-book/,The Animal Story Book,,,1896,,Lending Library Card,"Sylvia Beach, Gwen Rowe-Dutton Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/545f986a-2530-4b32-8241-08e12304bd40/manifest,https://iiif.princeton.edu/loris/figgy_prod/e2%2F90%2F82%2Fe290823bc6fa4617aff67b2d36a0fbd4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1935-04-11,1935-05-11,https://shakespeareandco.princeton.edu/members/rowe-dutton/,Gwen Rowe-Dutton,"Rowe-Dutton, Gwen",15.00,,1 month,30,1,,1935-04-11,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Gwen Rowe-Dutton Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/545f986a-2530-4b32-8241-08e12304bd40/manifest,;https://iiif.princeton.edu/loris/figgy_prod/e2%2F90%2F82%2Fe290823bc6fa4617aff67b2d36a0fbd4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-04-12,1935-04-20,https://shakespeareandco.princeton.edu/members/maxwell/,Mrs. Maxwell,"Maxwell, Mrs.",,,,,,,,,Returned,8,,,https://shakespeareandco.princeton.edu/books/spender-vienna/,Vienna,,"Spender, Stephen",1934,,Lending Library Card,"Sylvia Beach, Mrs. Maxwell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6148b048-a591-4aae-8470-52fde178e0aa/manifest,https://iiif.princeton.edu/loris/figgy_prod/24%2F60%2F6c%2F24606ced6f604fd2882f67872b3d610a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-04-12,1935-04-17,https://shakespeareandco.princeton.edu/members/maxwell/,Mrs. Maxwell,"Maxwell, Mrs.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/wolfe-time-river-legend/,Of Time and the River: A Legend of Man's Hunger in His Youth,,"Wolfe, Thomas",1935,,Lending Library Card,"Sylvia Beach, Mrs. Maxwell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6148b048-a591-4aae-8470-52fde178e0aa/manifest,https://iiif.princeton.edu/loris/figgy_prod/24%2F60%2F6c%2F24606ced6f604fd2882f67872b3d610a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-04-12,1935-04-15,https://shakespeareandco.princeton.edu/members/merrick-leonard/,Leonard Merrick,"Merrick, Leonard",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/six-plays/,Six Plays,,,,Unidentified. Likely either George Bernard Shaw's *Six Plays* (1914) or [*Six Plays*](https://shakespeareandco.princeton.edu/books/coward-six-plays/) (1937).,Lending Library Card,"Sylvia Beach, Leonard Merrick Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ebab89a-e11c-447a-afc6-91d67a974725/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2Fcb%2F4c%2F65cb4c576fa74234bbcd904f074e0008%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1935-04-12,1935-04-12,https://shakespeareandco.princeton.edu/members/newmark/,Newmark,Newmark,,,,,,,,30.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1935-04-12,1935-04-15,https://shakespeareandco.princeton.edu/members/merrick-leonard/,Leonard Merrick,"Merrick, Leonard",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/shaw-true-good/,Too True to Be Good,,"Shaw, George Bernard",1931,,Lending Library Card,"Sylvia Beach, Leonard Merrick Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ebab89a-e11c-447a-afc6-91d67a974725/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2Fcb%2F4c%2F65cb4c576fa74234bbcd904f074e0008%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-04-12,1935-04-17,https://shakespeareandco.princeton.edu/members/maxwell/,Mrs. Maxwell,"Maxwell, Mrs.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/stein-lectures-america/,Lectures in America,,"Stein, Gertrude",1935,,Lending Library Card,"Sylvia Beach, Mrs. Maxwell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6148b048-a591-4aae-8470-52fde178e0aa/manifest,https://iiif.princeton.edu/loris/figgy_prod/24%2F60%2F6c%2F24606ced6f604fd2882f67872b3d610a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-04-12,1935-04-17,https://shakespeareandco.princeton.edu/members/wendel/,Hélène de Wendel / Comtesse de Noailles,"de Wendel, Hélène",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/buck-house-divided/,A House Divided,,"Buck, Pearl S.",1935,,Lending Library Card,"Sylvia Beach, Madame Hélène Wendel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c70e230a-8313-4c53-9939-22beb5f809b6/manifest,https://iiif-cloud.princeton.edu/iiif/2/8a%2Fbe%2Fec%2F8abeec2451b647e0954a7a53d5eae991%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-04-12,1935-04-24,https://shakespeareandco.princeton.edu/members/wendel/,Hélène de Wendel / Comtesse de Noailles,"de Wendel, Hélène",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/woolf-mrs-dalloway/,Mrs. Dalloway,,"Woolf, Virginia",1925,,Lending Library Card,"Sylvia Beach, Madame Hélène Wendel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c70e230a-8313-4c53-9939-22beb5f809b6/manifest,https://iiif-cloud.princeton.edu/iiif/2/8a%2Fbe%2Fec%2F8abeec2451b647e0954a7a53d5eae991%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-04-12,1935-05-15,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,33,,,https://shakespeareandco.princeton.edu/books/jesse-pin-see-peepshow/,A Pin to See the Peepshow,,"Jesse, F. Tennyson",1934,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/0a%2F3d%2Fba%2F0a3dbaf96a524faa81a5d5b923208c01%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-04-12,1935-05-02,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",,,,,,,,,Returned,20,,,https://shakespeareandco.princeton.edu/books/bergson-creative-evolution/,Creative Evolution,,"Bergson, Henri",1911,,Lending Library Card,"Sylvia Beach, Phyllis Price Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/fee5bc4f-d7a7-4f2b-acf7-da3207c45cb9/manifest,https://iiif.princeton.edu/loris/figgy_prod/56%2F0d%2F24%2F560d24c0dfa94677ae04cf2db490c371%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-04-12,1935-04-17,https://shakespeareandco.princeton.edu/members/maxwell/,Mrs. Maxwell,"Maxwell, Mrs.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/lewisohn-expression-america/,Expression in America,,"Lewisohn, Ludwig",1931,,Lending Library Card,"Sylvia Beach, Mrs. Maxwell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6148b048-a591-4aae-8470-52fde178e0aa/manifest,https://iiif.princeton.edu/loris/figgy_prod/24%2F60%2F6c%2F24606ced6f604fd2882f67872b3d610a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1935-04-13,1935-04-13,https://shakespeareandco.princeton.edu/members/mangin/,Mangin,Mangin,,,,,,,,15.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1935-04-13,1935-05-15,https://shakespeareandco.princeton.edu/members/rirachowsky-fanny/,Fanny Rirachowsky,"Rirachowsky, Fanny",,,,,,,,,Returned,32,,,https://shakespeareandco.princeton.edu/books/caldwell-tobacco-road/,Tobacco Road,,"Caldwell, Erskine Preston",1932,,Lending Library Card,"Sylvia Beach, Fanny Rirachowsky Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/3ed53891-0a1b-4bc4-8b10-d7d32f46663a/manifest,https://iiif-cloud.princeton.edu/iiif/2/2c%2Fe2%2F41%2F2ce24179ad9943f384d53e6947c82f6c%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-04-14,1935-04-16,https://shakespeareandco.princeton.edu/members/massey/,Adelaide W. Massey / A. W. Massey,"Massey, Adelaide W.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/west-harsh-voice-four/,The Harsh Voice: Four Short Novels,,"West, Rebecca",1935,,Lending Library Card,"Sylvia Beach, A. W. Massey Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c4712c46-76f3-4581-99d6-d0ffd31b4138/manifest,https://iiif-cloud.princeton.edu/iiif/2/aa%2F39%2F81%2Faa398183e2194f4f844cba3dd16499e2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-04-14,1935-04-16,https://shakespeareandco.princeton.edu/members/massey/,Adelaide W. Massey / A. W. Massey,"Massey, Adelaide W.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/faulkner-pylon/,Pylon,,"Faulkner, William",1935,,Lending Library Card,"Sylvia Beach, A. W. Massey Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c4712c46-76f3-4581-99d6-d0ffd31b4138/manifest,https://iiif-cloud.princeton.edu/iiif/2/aa%2F39%2F81%2Faa398183e2194f4f844cba3dd16499e2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-04-15,1935-04-16,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/caudwell-perfect-alibi/,The Perfect Alibi,,"Caudwell, Christopher",1934,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/0a%2F3d%2Fba%2F0a3dbaf96a524faa81a5d5b923208c01%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-04-15,1935-04-18,https://shakespeareandco.princeton.edu/members/merrick-leonard/,Leonard Merrick,"Merrick, Leonard",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/lawrence-england-england-stories/,"England, My England and Other Stories",,"Lawrence, D. H.",1922,,Lending Library Card,"Sylvia Beach, Leonard Merrick Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ebab89a-e11c-447a-afc6-91d67a974725/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2Fcb%2F4c%2F65cb4c576fa74234bbcd904f074e0008%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-04-15,1935-04-24,https://shakespeareandco.princeton.edu/members/tony-mayer/,Thérèse Tony-Mayer,"Tony-Mayer, Thérèse",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/delafield-gay-life/,Gay Life,,"Delafield, E. M.",1933,,Lending Library Card,"Sylvia Beach, Thérèse Tony-Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/27246b4c-7d99-4dca-b874-ab90bd542cfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/a1%2Fec%2Ff5%2Fa1ecf56bff2e4aefa5c17aaba1dcce85%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-04-15,1935-04-24,https://shakespeareandco.princeton.edu/members/tony-mayer/,Thérèse Tony-Mayer,"Tony-Mayer, Thérèse",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/herbert-holy-deadlock/,Holy Deadlock,,"Herbert, A. P.",1934,,Lending Library Card,"Sylvia Beach, Thérèse Tony-Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/27246b4c-7d99-4dca-b874-ab90bd542cfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/a1%2Fec%2Ff5%2Fa1ecf56bff2e4aefa5c17aaba1dcce85%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-04-15,1935-04-19,https://shakespeareandco.princeton.edu/members/sykes-christopher/,Christopher Sykes,"Sykes, Christopher",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/harris-oscar-wilde-life/,Oscar Wilde: His Life and Confessions,Vol. 1,"Harris, Frank",1916,,Lending Library Card,"Sylvia Beach, Christopher Sykes Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/56dc1b1a-6523-4a6a-b635-9644f844aaaf/manifest,https://iiif.princeton.edu/loris/figgy_prod/8c%2F18%2Fec%2F8c18ec9884c2471bb8b7681522a19f9f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-04-15,1935-04-18,https://shakespeareandco.princeton.edu/members/merrick-leonard/,Leonard Merrick,"Merrick, Leonard",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/huxley-brief-candles-stories/,Brief Candles: Stories,,"Huxley, Aldous",1930,,Lending Library Card,"Sylvia Beach, Leonard Merrick Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ebab89a-e11c-447a-afc6-91d67a974725/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2Fcb%2F4c%2F65cb4c576fa74234bbcd904f074e0008%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1935-04-15,1935-04-15,https://shakespeareandco.princeton.edu/members/hopkins-3/,Hopkins,Hopkins,,,,,,,,30.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1935-04-15,,https://shakespeareandco.princeton.edu/members/sykes-christopher/,Christopher Sykes,"Sykes, Christopher",15.00,30.00,,,,,1935-04-15,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Christopher Sykes Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/56dc1b1a-6523-4a6a-b635-9644f844aaaf/manifest,;https://iiif.princeton.edu/loris/figgy_prod/8c%2F18%2Fec%2F8c18ec9884c2471bb8b7681522a19f9f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-04-15,1935-04-27,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/lawrence-kangaroo/,Kangaroo,,"Lawrence, D. H.",1923,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/9d%2F97%2F6e%2F9d976e57833f41c3b362aafa315a35e5%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-04-16,1935-04-26,https://shakespeareandco.princeton.edu/members/massey/,Adelaide W. Massey / A. W. Massey,"Massey, Adelaide W.",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/leavis-fiction-reading-public/,Fiction and the Reading Public,,"Leavis, Q. D.",1932,,Lending Library Card,"Sylvia Beach, A. W. Massey Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c4712c46-76f3-4581-99d6-d0ffd31b4138/manifest,https://iiif-cloud.princeton.edu/iiif/2/aa%2F39%2F81%2Faa398183e2194f4f844cba3dd16499e2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-04-16,1935-04-19,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/connington-ha-ha-case/,The Ha-Ha Case,,"Connington, J. J.",1934,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/0a%2F3d%2Fba%2F0a3dbaf96a524faa81a5d5b923208c01%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-04-16,1935-04-26,https://shakespeareandco.princeton.edu/members/massey/,Adelaide W. Massey / A. W. Massey,"Massey, Adelaide W.",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/fleming-ones-company-journey/,One's Company: A Journey to China,,"Fleming, Peter",1934,,Lending Library Card,"Sylvia Beach, A. W. Massey Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c4712c46-76f3-4581-99d6-d0ffd31b4138/manifest,https://iiif-cloud.princeton.edu/iiif/2/aa%2F39%2F81%2Faa398183e2194f4f844cba3dd16499e2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-04-17,1935-05-17,https://shakespeareandco.princeton.edu/members/bourdet/,Claude Bourdet,"Bourdet, Claude",,,,,,,,,Returned,30,,,https://shakespeareandco.princeton.edu/books/eliot-selected-essays-1917/,"Selected Essays, 1917 β 1932",,"Eliot, T. S.",1932,,Lending Library Card,"Sylvia Beach, Claude Bourdet Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/17c666aa-e70a-4038-a78e-b9166a525438/manifest,https://iiif.princeton.edu/loris/figgy_prod/f7%2Fbb%2F0b%2Ff7bb0b96ccd545e8b4fe6dc1a2461970%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-04-17,1935-04-23,https://shakespeareandco.princeton.edu/members/rowe-dutton/,Gwen Rowe-Dutton,"Rowe-Dutton, Gwen",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/obrien-best-short-stories-1934/,The Best Short Stories 1934: English and American,,,1934,,Lending Library Card,"Sylvia Beach, Gwen Rowe-Dutton Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/545f986a-2530-4b32-8241-08e12304bd40/manifest,https://iiif.princeton.edu/loris/figgy_prod/e2%2F90%2F82%2Fe290823bc6fa4617aff67b2d36a0fbd4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-04-17,1935-04-24,https://shakespeareandco.princeton.edu/members/wendel/,Hélène de Wendel / Comtesse de Noailles,"de Wendel, Hélène",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/benson-tobit-transplanted/,Tobit Transplanted,,"Benson, Stella",1931,,Lending Library Card,"Sylvia Beach, Madame Hélène Wendel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c70e230a-8313-4c53-9939-22beb5f809b6/manifest,https://iiif-cloud.princeton.edu/iiif/2/8a%2Fbe%2Fec%2F8abeec2451b647e0954a7a53d5eae991%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-04-18,1935-06-12,https://shakespeareandco.princeton.edu/members/van-den-bergh/,Tamara van den Bergh,"van den Bergh, Tamara",,,,,,,,,Returned,55,,,https://shakespeareandco.princeton.edu/books/huxley-point-counter-point/,Point Counter Point,,"Huxley, Aldous",1928,,Lending Library Card,"Sylvia Beach, Miss Tamara van den Bergh Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f3a52627-dc5d-410b-aa7f-9d39941f18e8/manifest,https://iiif.princeton.edu/loris/figgy_prod/a0%2F23%2Fb2%2Fa023b2f9c3894186bed79a0ae0ef2a90%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-04-18,1935-04-20,https://shakespeareandco.princeton.edu/members/merrick-leonard/,Leonard Merrick,"Merrick, Leonard",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/swinnerton-nocturne/,Nocturne,,"Swinnerton, Frank",1917,,Lending Library Card,"Sylvia Beach, Leonard Merrick Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ebab89a-e11c-447a-afc6-91d67a974725/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2Fcb%2F4c%2F65cb4c576fa74234bbcd904f074e0008%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-04-18,1935-04-20,https://shakespeareandco.princeton.edu/members/merrick-leonard/,Leonard Merrick,"Merrick, Leonard",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/lawrence-ladybird/,The Ladybird,,"Lawrence, D. H.",1923,,Lending Library Card,"Sylvia Beach, Leonard Merrick Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ebab89a-e11c-447a-afc6-91d67a974725/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2Fcb%2F4c%2F65cb4c576fa74234bbcd904f074e0008%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1935-04-19,1935-04-19,https://shakespeareandco.princeton.edu/members/waintraub/,Waintraub,Waintraub,,,,,,,,50.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1935-04-19,1935-04-29,https://shakespeareandco.princeton.edu/members/guillemin-annie/,Annie Guillemin,"Guillemin, Annie",,,,,,,,,Returned,10,,,https://shakespeareandco.princeton.edu/books/peterkin-scarlet-sister-mary/,Scarlet Sister Mary,,"Peterkin, Julia Mood",1928,,Lending Library Card,"Sylvia Beach, Annie Guillemin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2d6019d9-34ed-4ca4-97a9-5fd05d8640a7/manifest,https://iiif.princeton.edu/loris/figgy_prod/5a%2Ffc%2F38%2F5afc38c7321c4497adcc378d8774e24d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1935-04-19,1935-04-19,https://shakespeareandco.princeton.edu/members/sequr-hatez/,SΓ©qur-Hatez,SΓ©qur-Hatez,,,,,,,,60.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1935-04-19,1935-04-30,https://shakespeareandco.princeton.edu/members/sykes-christopher/,Christopher Sykes,"Sykes, Christopher",,,,,,,,,Returned,11,,,https://shakespeareandco.princeton.edu/books/harris-oscar-wilde-life/,Oscar Wilde: His Life and Confessions,Vol. 2,"Harris, Frank",1916,,Lending Library Card,"Sylvia Beach, Christopher Sykes Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/56dc1b1a-6523-4a6a-b635-9644f844aaaf/manifest,https://iiif.princeton.edu/loris/figgy_prod/8c%2F18%2Fec%2F8c18ec9884c2471bb8b7681522a19f9f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-04-19,1935-04-23,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/wolfe-time-river-legend/,Of Time and the River: A Legend of Man's Hunger in His Youth,,"Wolfe, Thomas",1935,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/0a%2F3d%2Fba%2F0a3dbaf96a524faa81a5d5b923208c01%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-04-20,1935-04-25,https://shakespeareandco.princeton.edu/members/maxwell/,Mrs. Maxwell,"Maxwell, Mrs.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/linklater-ripeness/,Ripeness Is All,,"Linklater, Eric",1935,,Lending Library Card,"Sylvia Beach, Mrs. Maxwell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6148b048-a591-4aae-8470-52fde178e0aa/manifest,https://iiif.princeton.edu/loris/figgy_prod/24%2F60%2F6c%2F24606ced6f604fd2882f67872b3d610a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-04-20,1935-04-25,https://shakespeareandco.princeton.edu/members/maxwell/,Mrs. Maxwell,"Maxwell, Mrs.",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/chesterton-scandal-father-brown/,The Scandal of Father Brown,,"Chesterton, G. K.",1935,,Lending Library Card,"Sylvia Beach, Mrs. Maxwell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6148b048-a591-4aae-8470-52fde178e0aa/manifest,https://iiif.princeton.edu/loris/figgy_prod/24%2F60%2F6c%2F24606ced6f604fd2882f67872b3d610a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-04-20,1935-04-24,https://shakespeareandco.princeton.edu/members/merrick-leonard/,Leonard Merrick,"Merrick, Leonard",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/maugham-altogether-collected-stories/,Altogether: Being the Collected Stories of W. Somerset Maugham,,"Maugham, W. Somerset",1934,,Lending Library Card,"Sylvia Beach, Leonard Merrick Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ebab89a-e11c-447a-afc6-91d67a974725/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2Fcb%2F4c%2F65cb4c576fa74234bbcd904f074e0008%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-04-20,1935-04-24,https://shakespeareandco.princeton.edu/members/merrick-leonard/,Leonard Merrick,"Merrick, Leonard",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/louis-bromfield-today-gone-tomorrow/,Here Today and Gone Tomorrow,,"Bromfield, Louis",1934,,Lending Library Card,"Sylvia Beach, Leonard Merrick Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ebab89a-e11c-447a-afc6-91d67a974725/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2Fcb%2F4c%2F65cb4c576fa74234bbcd904f074e0008%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-04-20,1935-04-27,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/maugham-chinese-screen/,On a Chinese Screen,,"Maugham, W. Somerset",1922,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/45%2F51%2F1f%2F45511f74f3ab463aa6894aec541b2a94%2Fintermediate_file/full/full/0/default.jpg
+Renewal,1935-04-21,1935-05-21,https://shakespeareandco.princeton.edu/members/huder/,Huder,Huder,15.00,,1 month,30,1,,1935-04-20,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1935-04-23,1935-04-27,https://shakespeareandco.princeton.edu/members/rowe-dutton/,Gwen Rowe-Dutton,"Rowe-Dutton, Gwen",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/chatto-windus-miscellany/,"A Chatto and Windus Miscellany, 1928",,,1928,,Lending Library Card,"Sylvia Beach, Gwen Rowe-Dutton Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/545f986a-2530-4b32-8241-08e12304bd40/manifest,https://iiif.princeton.edu/loris/figgy_prod/e2%2F90%2F82%2Fe290823bc6fa4617aff67b2d36a0fbd4%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-04-23,1935-04-25,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/van-dine-casino-murder-case/,The Casino Murder Case: A Philo Vance Mystery,,"Van Dine, S. S.",1934,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/77%2F53%2Fbf%2F7753bfa2bc7a4a89a628db638b70f216%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-04-24,1936-06-15,https://shakespeareandco.princeton.edu/members/wendel/,Hélène de Wendel / Comtesse de Noailles,"de Wendel, Hélène",,,,,,,,,Returned,418,,,https://shakespeareandco.princeton.edu/books/lawrence-sea-sardinia/,Sea and Sardinia,,"Lawrence, D. H.",1921,,Lending Library Card,"Sylvia Beach, Madame Hélène Wendel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c70e230a-8313-4c53-9939-22beb5f809b6/manifest,https://iiif-cloud.princeton.edu/iiif/2/8a%2Fbe%2Fec%2F8abeec2451b647e0954a7a53d5eae991%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-04-24,1935-04-26,https://shakespeareandco.princeton.edu/members/merrick-leonard/,Leonard Merrick,"Merrick, Leonard",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/ellis-sexual-inversion-studies/,Sexual Inversion (Studies in the Psychology of Sex 2),,"Ellis, Havelock",1900,,Lending Library Card,"Sylvia Beach, Leonard Merrick Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ebab89a-e11c-447a-afc6-91d67a974725/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2Fcb%2F4c%2F65cb4c576fa74234bbcd904f074e0008%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-04-24,1936-01-15,https://shakespeareandco.princeton.edu/members/wendel/,Hélène de Wendel / Comtesse de Noailles,"de Wendel, Hélène",,,,,,,,,Returned,266,,,https://shakespeareandco.princeton.edu/books/lawrence-women-love/,Women in Love,,"Lawrence, D. H.",1920,,Lending Library Card,"Sylvia Beach, Madame Hélène Wendel Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c70e230a-8313-4c53-9939-22beb5f809b6/manifest,https://iiif-cloud.princeton.edu/iiif/2/8a%2Fbe%2Fec%2F8abeec2451b647e0954a7a53d5eae991%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-04-24,1935-04-29,https://shakespeareandco.princeton.edu/members/tony-mayer/,Thérèse Tony-Mayer,"Tony-Mayer, Thérèse",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/arnim-enchanted-april/,The Enchanted April,,"Arnim, Elizabeth von",1922,,Lending Library Card,"Sylvia Beach, Thérèse Tony-Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/27246b4c-7d99-4dca-b874-ab90bd542cfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/a1%2Fec%2Ff5%2Fa1ecf56bff2e4aefa5c17aaba1dcce85%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-04-24,1935-04-29,https://shakespeareandco.princeton.edu/members/tony-mayer/,Thérèse Tony-Mayer,"Tony-Mayer, Thérèse",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/macaulay-crewe-train/,Crewe Train,,"Macaulay, Rose",1926,,Lending Library Card,"Sylvia Beach, Thérèse Tony-Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/27246b4c-7d99-4dca-b874-ab90bd542cfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/a1%2Fec%2Ff5%2Fa1ecf56bff2e4aefa5c17aaba1dcce85%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-04-24,1935-04-26,https://shakespeareandco.princeton.edu/members/merrick-leonard/,Leonard Merrick,"Merrick, Leonard",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/ellis-evolution-modesty-phenomena/,The Evolution of Modesty; The Phenomena of Sexual Periodicity; Auto-Erotism (Studies in the Psychology of Sex 1),,"Ellis, Havelock",1897,,Lending Library Card,"Sylvia Beach, Leonard Merrick Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ebab89a-e11c-447a-afc6-91d67a974725/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2Fcb%2F4c%2F65cb4c576fa74234bbcd904f074e0008%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-04-25,1935-05-02,https://shakespeareandco.princeton.edu/members/maxwell/,Mrs. Maxwell,"Maxwell, Mrs.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/eastman-artists-uniform-study/,Artists in Uniform: A Study of Literature and Bureaucratism,,"Eastman, Max",1934,,Lending Library Card,"Sylvia Beach, Mrs. Maxwell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6148b048-a591-4aae-8470-52fde178e0aa/manifest,https://iiif.princeton.edu/loris/figgy_prod/24%2F60%2F6c%2F24606ced6f604fd2882f67872b3d610a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-04-25,1935-04-26,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/wallace-sinister-alibi/,Sinister Alibi,,"Wallace, Carlton",1934,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/77%2F53%2Fbf%2F7753bfa2bc7a4a89a628db638b70f216%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-04-25,1935-05-02,https://shakespeareandco.princeton.edu/members/maxwell/,Mrs. Maxwell,"Maxwell, Mrs.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/moore-poems/,Poems,,"Moore, Marianne",1921,The borrows for *Poems* after 1935 are likely for Moore's [*Selected Poems*](https://shakespeareandco.princeton.edu/books/moore-selected-poems-marianne/) (1935).,Lending Library Card,"Sylvia Beach, Mrs. Maxwell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6148b048-a591-4aae-8470-52fde178e0aa/manifest,https://iiif.princeton.edu/loris/figgy_prod/24%2F60%2F6c%2F24606ced6f604fd2882f67872b3d610a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1935-04-26,,https://shakespeareandco.princeton.edu/members/royer-4/,Royer,Royer,15.00,20.00,,,,Day By Day,1935-04-26,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1935-04-26,1935-05-01,https://shakespeareandco.princeton.edu/members/prochasson/,Alice Prochasson,"Prochasson, Alice",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/gawsworth-ten-contemporaries-notes/,Ten Contemporaries: Notes toward Their Definitive Bibliography (Second Series),,"Gawsworth, John",1933,,Lending Library Card,"Sylvia Beach, Alice Prochasson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/341b2429-d37f-490f-aa21-167ae02af0db/manifest,https://iiif.princeton.edu/loris/figgy_prod/86%2F6c%2F0f%2F866c0fa9caf446f083cc6c5b953fc93c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1935-04-26,1935-05-26,https://shakespeareandco.princeton.edu/members/prochasson/,Alice Prochasson,"Prochasson, Alice",15.00,30.00,1 month,30,1,,1935-04-26,,,,,FRF,,,,,,,Lending Library Card;Logbook,"Sylvia Beach, Alice Prochasson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.;Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",https://figgy.princeton.edu/concern/scanned_resources/341b2429-d37f-490f-aa21-167ae02af0db/manifest;,https://iiif.princeton.edu/loris/figgy_prod/86%2F6c%2F0f%2F866c0fa9caf446f083cc6c5b953fc93c%2Fintermediate_file.jp2/full/full/0/default.jpg;
+Borrow,1935-04-26,1935-04-29,https://shakespeareandco.princeton.edu/members/merrick-leonard/,Leonard Merrick,"Merrick, Leonard",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/chekhov-darling-stories/,The Darling and Other Stories,,"Chekhov, Anton",1916,,Lending Library Card,"Sylvia Beach, Leonard Merrick Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ebab89a-e11c-447a-afc6-91d67a974725/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2Fcb%2F4c%2F65cb4c576fa74234bbcd904f074e0008%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-04-26,1935-04-29,https://shakespeareandco.princeton.edu/members/merrick-leonard/,Leonard Merrick,"Merrick, Leonard",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/ellis-erotic-symbolism-mechanism/,Erotic Symbolism; The Mechanism of Detumescence; The Psychic State in Pregnancy (Studies in the Psychology of Sex 5),,"Ellis, Havelock",1906,,Lending Library Card,"Sylvia Beach, Leonard Merrick Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ebab89a-e11c-447a-afc6-91d67a974725/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2Fcb%2F4c%2F65cb4c576fa74234bbcd904f074e0008%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-04-27,1935-05-03,https://shakespeareandco.princeton.edu/members/massey/,Adelaide W. Massey / A. W. Massey,"Massey, Adelaide W.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/rogers-dusk-grove/,Dusk at the Grove,,"Rogers, Samuel",1934,,Lending Library Card,"Sylvia Beach, A. W. Massey Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c4712c46-76f3-4581-99d6-d0ffd31b4138/manifest,https://iiif-cloud.princeton.edu/iiif/2/aa%2F39%2F81%2Faa398183e2194f4f844cba3dd16499e2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-04-27,1935-05-06,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/hudson-green-mansions-romance/,Green Mansions: A Romance of the Tropical Forest,,"Hudson, W. H.",1904,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/45%2F51%2F1f%2F45511f74f3ab463aa6894aec541b2a94%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-04-27,1935-05-03,https://shakespeareandco.princeton.edu/members/massey/,Adelaide W. Massey / A. W. Massey,"Massey, Adelaide W.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/bridge-ginger-griffin/,The Ginger Griffin,,"Bridge, Ann",1934,,Lending Library Card,"Sylvia Beach, A. W. Massey Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c4712c46-76f3-4581-99d6-d0ffd31b4138/manifest,https://iiif-cloud.princeton.edu/iiif/2/aa%2F39%2F81%2Faa398183e2194f4f844cba3dd16499e2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-04-27,1935-05-06,https://shakespeareandco.princeton.edu/members/sykes-christopher/,Christopher Sykes,"Sykes, Christopher",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/quiller-couch-charles-dickens-victorians/,Charles Dickens and the Other Victorians,,"Quiller-Couch, Arthur",1925,,Lending Library Card,"Sylvia Beach, Christopher Sykes Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/56dc1b1a-6523-4a6a-b635-9644f844aaaf/manifest,https://iiif.princeton.edu/loris/figgy_prod/8c%2F18%2Fec%2F8c18ec9884c2471bb8b7681522a19f9f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Generic,1935-04-27,,https://shakespeareandco.princeton.edu/members/morinni/,Clara de Morinni,"de Morinni, Clara",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/mackworth-time-tide/,Time and Tide,,,,,Lending Library Card,"Sylvia Beach, Clara de Morinni Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1b1b31e4-b340-4768-b43c-5d47dac0afcc/manifest,https://iiif.princeton.edu/loris/figgy_prod/55%2Faf%2F4a%2F55af4a6e22604c8c8e294a74f9358393%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-04-27,1935-04-29,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/chesterton-scandal-father-brown/,The Scandal of Father Brown,,"Chesterton, G. K.",1935,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/77%2F53%2Fbf%2F7753bfa2bc7a4a89a628db638b70f216%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-04-27,1935-05-06,https://shakespeareandco.princeton.edu/members/culver-donald/,Donald Culver,"Culver, Donald",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/firbank-flower-beneath-foot/,The Flower Beneath the Foot: Being a Record of the Early Life of St. Laura de Nazianzi and the Times in Which She Lived,,"Firbank, Ronald",1923,,Lending Library Card,"Sylvia Beach, Donald Culver Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/7ee2ca6a-387c-49f9-a4a8-07b62eb446f5/manifest,https://iiif.princeton.edu/loris/figgy_prod/2b%2Fad%2F4b%2F2bad4bf48c644f9795ffd74b69c73407%2Fintermediate_file.jp2/full/full/0/default.jpg
+Purchase,1935-04-28,1935-04-28,https://shakespeareandco.princeton.edu/members/morinni/,Clara de Morinni,"de Morinni, Clara",,,,,,,,,,,3.25,FRF,https://shakespeareandco.princeton.edu/books/mackworth-time-tide/,Time and Tide,,,,,Lending Library Card,"Sylvia Beach, Clara de Morinni Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1b1b31e4-b340-4768-b43c-5d47dac0afcc/manifest,https://iiif.princeton.edu/loris/figgy_prod/55%2Faf%2F4a%2F55af4a6e22604c8c8e294a74f9358393%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1935-04-28,1935-05-28,https://shakespeareandco.princeton.edu/members/morinni/,Clara de Morinni,"de Morinni, Clara",25.00,,1 month,30,1,,1935-05-10,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Clara de Morinni Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/1b1b31e4-b340-4768-b43c-5d47dac0afcc/manifest,;https://iiif.princeton.edu/loris/figgy_prod/55%2Faf%2F4a%2F55af4a6e22604c8c8e294a74f9358393%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-04-29,1935-04-30,https://shakespeareandco.princeton.edu/members/merrick-leonard/,Leonard Merrick,"Merrick, Leonard",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/chekhov-cherry-orchard/,The Cherry Orchard,,"Chekhov, Anton",1904,,Lending Library Card,"Sylvia Beach, Leonard Merrick Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ebab89a-e11c-447a-afc6-91d67a974725/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2Fcb%2F4c%2F65cb4c576fa74234bbcd904f074e0008%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1935-04-29,1935-04-29,https://shakespeareandco.princeton.edu/members/cunning/,B. Cunning,"Cunning, B.",,,,,,,,60.00,,,,FRF,,,,,,,Logbook;Address Book,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Address Book 1919β1935, box 69, folder 4, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",,
+Borrow,1935-04-29,1935-05-02,https://shakespeareandco.princeton.edu/members/guillemin-annie/,Annie Guillemin,"Guillemin, Annie",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/heyward-porgy/,Porgy,,"Heyward, DuBose",1925,,Lending Library Card,"Sylvia Beach, Annie Guillemin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2d6019d9-34ed-4ca4-97a9-5fd05d8640a7/manifest,https://iiif.princeton.edu/loris/figgy_prod/5a%2Ffc%2F38%2F5afc38c7321c4497adcc378d8774e24d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-04-29,1935-06-12,https://shakespeareandco.princeton.edu/members/tony-mayer/,Thérèse Tony-Mayer,"Tony-Mayer, Thérèse",,,,,,,,,Returned,44,,,https://shakespeareandco.princeton.edu/books/shaw-cashel-byrons-profession/,Cashel Byron's Profession,,"Shaw, George Bernard",1886,,Lending Library Card,"Sylvia Beach, Thérèse Tony-Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/27246b4c-7d99-4dca-b874-ab90bd542cfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/a1%2Fec%2Ff5%2Fa1ecf56bff2e4aefa5c17aaba1dcce85%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-04-29,1935-05-02,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/frankau-everywoman-novel/,Everywoman: A Novel,,"Frankau, Gilbert",1933,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/77%2F53%2Fbf%2F7753bfa2bc7a4a89a628db638b70f216%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-04-29,,https://shakespeareandco.princeton.edu/members/tony-mayer/,Thérèse Tony-Mayer,"Tony-Mayer, Thérèse",,,,,,,,,Bought,,,,https://shakespeareandco.princeton.edu/books/west-harsh-voice-four/,The Harsh Voice: Four Short Novels,,"West, Rebecca",1935,,Lending Library Card,"Sylvia Beach, Thérèse Tony-Mayer Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/27246b4c-7d99-4dca-b874-ab90bd542cfa/manifest,https://iiif.princeton.edu/loris/figgy_prod/a1%2Fec%2Ff5%2Fa1ecf56bff2e4aefa5c17aaba1dcce85%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1935-04-29,1935-04-29,https://shakespeareandco.princeton.edu/members/caruel/,Christine Caruel,"Caruel, Christine",,,,,,,,30.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1935-04-29,1935-04-30,https://shakespeareandco.princeton.edu/members/merrick-leonard/,Leonard Merrick,"Merrick, Leonard",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/bromfield-good-woman/,A Good Woman,,"Bromfield, Louis",1927,,Lending Library Card,"Sylvia Beach, Leonard Merrick Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ebab89a-e11c-447a-afc6-91d67a974725/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2Fcb%2F4c%2F65cb4c576fa74234bbcd904f074e0008%2Fintermediate_file.jp2/full/full/0/default.jpg
+Reimbursement,1935-04-30,1935-04-30,https://shakespeareandco.princeton.edu/members/royer-4/,Royer,Royer,,,,,,,,20.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1935-04-30,1935-05-03,https://shakespeareandco.princeton.edu/members/merrick-leonard/,Leonard Merrick,"Merrick, Leonard",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/bromfield-modern-hero/,A Modern Hero,,"Bromfield, Louis",1932,,Lending Library Card,"Sylvia Beach, Leonard Merrick Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ebab89a-e11c-447a-afc6-91d67a974725/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2Fcb%2F4c%2F65cb4c576fa74234bbcd904f074e0008%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-04-30,1935-05-04,https://shakespeareandco.princeton.edu/members/paul-dubois/,Louis Paul-Dubois,"Paul-Dubois, Louis",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/oflaherty-shame-devil/,Shame the Devil,,"O'Flaherty, Liam",1934,,Lending Library Card,"Sylvia Beach, Louis Paul-Dubois Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/a5425c0b-233e-443e-a90e-1107459a225d/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2F46%2F53%2F654653388f40464fae71843d73c8f5c0%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-04-30,1935-05-03,https://shakespeareandco.princeton.edu/members/merrick-leonard/,Leonard Merrick,"Merrick, Leonard",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/bromfield-twenty-four-hours/,Twenty-Four Hours,,"Bromfield, Louis",1930,,Lending Library Card,"Sylvia Beach, Leonard Merrick Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/1ebab89a-e11c-447a-afc6-91d67a974725/manifest,https://iiif.princeton.edu/loris/figgy_prod/65%2Fcb%2F4c%2F65cb4c576fa74234bbcd904f074e0008%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1935-05-01,1936-05-01,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",180.00,,1 year,366,,,1935-05-01,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,;https://iiif-cloud.princeton.edu/iiif/2/5b%2Fae%2F7a%2F5bae7a078f9c45b2a2914cfee78e2313%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-05-01,1935-05-13,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/machen-hieroglyphics/,Hieroglyphics: A Note upon Ecstasy in Literature,,"Machen, Arthur",1926,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5b%2Fae%2F7a%2F5bae7a078f9c45b2a2914cfee78e2313%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1935-05-01,1936-05-01,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",157.50,,1 year,366,,,1935-05-01,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,;https://iiif-cloud.princeton.edu/iiif/2/77%2F53%2Fbf%2F7753bfa2bc7a4a89a628db638b70f216%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-05-01,1935-05-16,https://shakespeareandco.princeton.edu/members/prochasson/,Alice Prochasson,"Prochasson, Alice",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/woolf-common-reader/,The Common Reader,,"Woolf, Virginia",1925,,Lending Library Card,"Sylvia Beach, Alice Prochasson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/341b2429-d37f-490f-aa21-167ae02af0db/manifest,https://iiif.princeton.edu/loris/figgy_prod/86%2F6c%2F0f%2F866c0fa9caf446f083cc6c5b953fc93c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-05-01,1935-05-13,https://shakespeareandco.princeton.edu/members/colens-fernand/,Fernand Colens,"Colens, Fernand",,,,,,,,,Returned,12,,,https://shakespeareandco.princeton.edu/books/faulkner-pylon/,Pylon,,"Faulkner, William",1935,,Lending Library Card,"Sylvia Beach, Fernand Colens Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/f5d3e4f3-c373-44e1-8c86-06f572605bba/manifest,https://iiif-cloud.princeton.edu/iiif/2/5b%2Fae%2F7a%2F5bae7a078f9c45b2a2914cfee78e2313%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-05-02,1935-05-04,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/dunne-serial-universe/,The Serial Universe,,"Dunne, J. W.",1934,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/77%2F53%2Fbf%2F7753bfa2bc7a4a89a628db638b70f216%2Fintermediate_file/full/full/0/default.jpg
+Reimbursement,1935-05-02,1935-05-02,https://shakespeareandco.princeton.edu/members/price-phyllis/,Phyllis Price,"Price, Phyllis",,,,,,,,30.00,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1935-05-02,1935-05-04,https://shakespeareandco.princeton.edu/members/maxwell/,Mrs. Maxwell,"Maxwell, Mrs.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/hamsa-holy-mountain/,The Holy Mountain,,"Hamsa, BhagwΓ£n Shri",1934,,Lending Library Card,"Sylvia Beach, Mrs. Maxwell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6148b048-a591-4aae-8470-52fde178e0aa/manifest,https://iiif.princeton.edu/loris/figgy_prod/24%2F60%2F6c%2F24606ced6f604fd2882f67872b3d610a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1935-05-02,1935-06-02,https://shakespeareandco.princeton.edu/members/mazon/,Mme Mazon,"Mazon, Mme",25.00,30.00,1 month,31,2,,1935-05-02,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Madame Mazon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/faf25016-678e-49d8-b616-45145b11e1ab/manifest,;https://iiif.princeton.edu/loris/figgy_prod/32%2Fda%2Fed%2F32daed52449748d98b5f189f6c53c9c6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-05-02,1935-05-07,https://shakespeareandco.princeton.edu/members/prochasson/,Alice Prochasson,"Prochasson, Alice",,,,,,,,,Returned,5,,,https://shakespeareandco.princeton.edu/books/solomon-bergson/,Bergson,,"Solomon, Joseph",1912,,Lending Library Card,"Sylvia Beach, Alice Prochasson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/341b2429-d37f-490f-aa21-167ae02af0db/manifest,https://iiif.princeton.edu/loris/figgy_prod/86%2F6c%2F0f%2F866c0fa9caf446f083cc6c5b953fc93c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-05-02,1935-05-31,https://shakespeareandco.princeton.edu/members/mazon/,Mme Mazon,"Mazon, Mme",,,,,,,,,Returned,29,,,https://shakespeareandco.princeton.edu/books/shaw-apple-cart-political/,The Apple Cart: A Political Extravaganza,,"Shaw, George Bernard",1930,,Lending Library Card,"Sylvia Beach, Madame Mazon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/faf25016-678e-49d8-b616-45145b11e1ab/manifest,https://iiif.princeton.edu/loris/figgy_prod/32%2Fda%2Fed%2F32daed52449748d98b5f189f6c53c9c6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-05-02,1935-05-04,https://shakespeareandco.princeton.edu/members/maxwell/,Mrs. Maxwell,"Maxwell, Mrs.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/duncan-life/,My Life,,"Duncan, Isadora",1927,,Lending Library Card,"Sylvia Beach, Mrs. Maxwell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6148b048-a591-4aae-8470-52fde178e0aa/manifest,https://iiif.princeton.edu/loris/figgy_prod/24%2F60%2F6c%2F24606ced6f604fd2882f67872b3d610a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-05-02,1935-05-04,https://shakespeareandco.princeton.edu/members/guillemin-annie/,Annie Guillemin,"Guillemin, Annie",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/miles-blind-men-crossing/,Blind Men Crossing a Bridge,,"Miles, Susan",1934,,Lending Library Card,"Sylvia Beach, Annie Guillemin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2d6019d9-34ed-4ca4-97a9-5fd05d8640a7/manifest,https://iiif.princeton.edu/loris/figgy_prod/5a%2Ffc%2F38%2F5afc38c7321c4497adcc378d8774e24d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-05-02,1935-05-31,https://shakespeareandco.princeton.edu/members/mazon/,Mme Mazon,"Mazon, Mme",,,,,,,,,Returned,29,,,https://shakespeareandco.princeton.edu/books/colum-three-plays-fiddlers/,"Three Plays: The Fiddler's House, The Land, Thomas Muskerry",,"Colum, Padraic",1916,,Lending Library Card,"Sylvia Beach, Madame Mazon Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/faf25016-678e-49d8-b616-45145b11e1ab/manifest,https://iiif.princeton.edu/loris/figgy_prod/32%2Fda%2Fed%2F32daed52449748d98b5f189f6c53c9c6%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-05-03,1935-05-18,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/mackworth-time-tide/,Time and Tide,,,,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/4e%2F88%2F65%2F4e886509bd8d46cea40c6ea13fbdb2ba%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-05-03,1935-05-09,https://shakespeareandco.princeton.edu/members/massey/,Adelaide W. Massey / A. W. Massey,"Massey, Adelaide W.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/stribling-unfinished-cathedral/,Unfinished Cathedral,,"Stribling, Thomas Sigismund",1934,,Lending Library Card,"Sylvia Beach, A. W. Massey Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c4712c46-76f3-4581-99d6-d0ffd31b4138/manifest,https://iiif-cloud.princeton.edu/iiif/2/aa%2F39%2F81%2Faa398183e2194f4f844cba3dd16499e2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-05-03,1935-05-18,https://shakespeareandco.princeton.edu/members/kittredge-eleanor-hayden/,Eleanor (Hayden) Kittredge / Mrs. Tracy B. Kittredge,"Kittredge, Eleanor",,,,,,,,,Returned,15,,,https://shakespeareandco.princeton.edu/books/martin-new-statesman-nation/,The New Statesman and Nation,,,,,Lending Library Card,"Sylvia Beach, Eleanor Hayden Kittredge Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/af277e6c-1c0f-4480-b290-4319d9a36cf1/manifest,https://iiif-cloud.princeton.edu/iiif/2/4e%2F88%2F65%2F4e886509bd8d46cea40c6ea13fbdb2ba%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-05-03,1935-05-16,https://shakespeareandco.princeton.edu/members/massey/,Adelaide W. Massey / A. W. Massey,"Massey, Adelaide W.",,,,,,,,,Returned,13,,,https://shakespeareandco.princeton.edu/books/spengler-decline-west/,The Decline of the West,,"Spengler, Oswald",1926,,Lending Library Card,"Sylvia Beach, A. W. Massey Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/c4712c46-76f3-4581-99d6-d0ffd31b4138/manifest,https://iiif-cloud.princeton.edu/iiif/2/aa%2F39%2F81%2Faa398183e2194f4f844cba3dd16499e2%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-05-04,1935-05-10,https://shakespeareandco.princeton.edu/members/guillemin-annie/,Annie Guillemin,"Guillemin, Annie",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/joyce-portrait-artist-young/,A Portrait of the Artist as a Young Man,,"Joyce, James",1916,,Lending Library Card,"Sylvia Beach, Annie Guillemin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2d6019d9-34ed-4ca4-97a9-5fd05d8640a7/manifest,https://iiif.princeton.edu/loris/figgy_prod/5a%2Ffc%2F38%2F5afc38c7321c4497adcc378d8774e24d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-05-04,1935-05-06,https://shakespeareandco.princeton.edu/members/maxwell/,Mrs. Maxwell,"Maxwell, Mrs.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/werfel-forty-days-musa/,The Forty Days of Musa Dagh,,"Werfel, Franz",1934,,Lending Library Card,"Sylvia Beach, Mrs. Maxwell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6148b048-a591-4aae-8470-52fde178e0aa/manifest,https://iiif.princeton.edu/loris/figgy_prod/24%2F60%2F6c%2F24606ced6f604fd2882f67872b3d610a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-05-04,1935-05-08,https://shakespeareandco.princeton.edu/members/maxwell/,Mrs. Maxwell,"Maxwell, Mrs.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/mitchison-vienna-diary/,Vienna Diary,,"Mitchison, Naomi",1934,,Lending Library Card,"Sylvia Beach, Mrs. Maxwell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6148b048-a591-4aae-8470-52fde178e0aa/manifest,https://iiif.princeton.edu/loris/figgy_prod/24%2F60%2F6c%2F24606ced6f604fd2882f67872b3d610a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-05-04,1935-05-06,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/kennedy-poison-parish/,Poison in the Parish,,"Kennedy, Milward",1935,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/77%2F53%2Fbf%2F7753bfa2bc7a4a89a628db638b70f216%2Fintermediate_file/full/full/0/default.jpg
+Crossed out,1935-05-04,,https://shakespeareandco.princeton.edu/members/guillemin-annie/,Annie Guillemin,"Guillemin, Annie",,,,,,,,,,,,,https://shakespeareandco.princeton.edu/books/joyce-dubliners/,Dubliners,,"Joyce, James",1914,,Lending Library Card,"Sylvia Beach, Annie Guillemin Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/2d6019d9-34ed-4ca4-97a9-5fd05d8640a7/manifest,https://iiif.princeton.edu/loris/figgy_prod/5a%2Ffc%2F38%2F5afc38c7321c4497adcc378d8774e24d%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1935-05-05,1935-08-05,https://shakespeareandco.princeton.edu/members/delimal/,Mme Delimal,"Delimal, Mme",40.00,,3 months,92,1,,1935-08-26,,,,,FRF,,,,,,,Lending Library Card,"Sylvia Beach, Madame Delimal Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/d7650699-e9d7-4e63-85ff-bce7e9c8dfcd/manifest,https://iiif.princeton.edu/loris/figgy_prod/09%2F74%2F1b%2F09741b95533642218a7f3992da9fea4c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-05-06,,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/gosse-coventry-patmore/,Coventry Patmore,,"Gosse, Edmund",1905,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/45%2F51%2F1f%2F45511f74f3ab463aa6894aec541b2a94%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-05-06,,https://shakespeareandco.princeton.edu/members/marcilly/,FranΓ§oise de Marcilly,"de Marcilly, FranΓ§oise",,,,,,,,,Unknown,,,,https://shakespeareandco.princeton.edu/books/richardson-interim-pilgrimage-5/,Interim (Pilgrimage 5),,"Richardson, Dorothy M.",1920,,Lending Library Card,"Sylvia Beach, Mme de Marcilly Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/04c36dc8-5ddf-447d-be18-448ecf5def9d/manifest,https://iiif-cloud.princeton.edu/iiif/2/45%2F51%2F1f%2F45511f74f3ab463aa6894aec541b2a94%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-05-06,1935-05-07,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,1,,,https://shakespeareandco.princeton.edu/books/stern-shining-free/,Shining and Free: A Day in the Life of a Matriarch,,"Stern, G. B.",1935,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/77%2F53%2Fbf%2F7753bfa2bc7a4a89a628db638b70f216%2Fintermediate_file/full/full/0/default.jpg
+Subscription,1935-05-06,1935-06-06,https://shakespeareandco.princeton.edu/members/churchill-e-m/,E. M. Churchill,"Churchill, E. M.",15.00,30.00,1 month,31,1,,1935-05-06,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, E. M. Churchill Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/9f170b74-33d5-4a2b-95d0-93fc1bda1830/manifest,;https://iiif.princeton.edu/loris/figgy_prod/f1%2Ffe%2F42%2Ff1fe420f993f4a56bc25b8abd94304c7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-05-06,1935-05-09,https://shakespeareandco.princeton.edu/members/sykes-christopher/,Christopher Sykes,"Sykes, Christopher",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/ludwig-talks-mussolini/,Talks with Mussolini,,"Ludwig, Emil",1933,,Lending Library Card,"Sylvia Beach, Christopher Sykes Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/56dc1b1a-6523-4a6a-b635-9644f844aaaf/manifest,https://iiif.princeton.edu/loris/figgy_prod/8c%2F18%2Fec%2F8c18ec9884c2471bb8b7681522a19f9f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-05-06,1935-05-13,https://shakespeareandco.princeton.edu/members/churchill-e-m/,E. M. Churchill,"Churchill, E. M.",,,,,,,,,Returned,7,,,https://shakespeareandco.princeton.edu/books/lawrence-sons-lovers/,Sons and Lovers,,"Lawrence, D. H.",1913,,Lending Library Card,"Sylvia Beach, E. M. Churchill Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f170b74-33d5-4a2b-95d0-93fc1bda1830/manifest,https://iiif.princeton.edu/loris/figgy_prod/f1%2Ffe%2F42%2Ff1fe420f993f4a56bc25b8abd94304c7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-05-06,1935-05-10,https://shakespeareandco.princeton.edu/members/churchill-e-m/,E. M. Churchill,"Churchill, E. M.",,,,,,,,,Returned,4,,,https://shakespeareandco.princeton.edu/books/woolf-mrs-dalloway/,Mrs. Dalloway,,"Woolf, Virginia",1925,,Lending Library Card,"Sylvia Beach, E. M. Churchill Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/9f170b74-33d5-4a2b-95d0-93fc1bda1830/manifest,https://iiif.princeton.edu/loris/figgy_prod/f1%2Ffe%2F42%2Ff1fe420f993f4a56bc25b8abd94304c7%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-05-06,1935-05-09,https://shakespeareandco.princeton.edu/members/sykes-christopher/,Christopher Sykes,"Sykes, Christopher",,,,,,,,,Returned,3,,,https://shakespeareandco.princeton.edu/books/bennett-things-interested/,Things That Have Interested Me,,"Bennett, Arnold",1921,,Lending Library Card,"Sylvia Beach, Christopher Sykes Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/56dc1b1a-6523-4a6a-b635-9644f844aaaf/manifest,https://iiif.princeton.edu/loris/figgy_prod/8c%2F18%2Fec%2F8c18ec9884c2471bb8b7681522a19f9f%2Fintermediate_file.jp2/full/full/0/default.jpg
+Subscription,1935-05-06,,https://shakespeareandco.princeton.edu/members/bush/,Bush,Bush,,50.00,,,,Day By Day,1935-05-06,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Borrow,1935-05-07,1935-05-09,https://shakespeareandco.princeton.edu/members/killen/,Alice M. Killen,"Killen, Alice M.",,,,,,,,,Returned,2,,,https://shakespeareandco.princeton.edu/books/powys-captain-patch/,Captain Patch,,"Powys, Theodore Francis",1935,,Lending Library Card,"Sylvia Beach, Alice M. Killen Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/18930615-d31e-4de3-a74e-b06d4c39fe80/manifest,https://iiif-cloud.princeton.edu/iiif/2/77%2F53%2Fbf%2F7753bfa2bc7a4a89a628db638b70f216%2Fintermediate_file/full/full/0/default.jpg
+Borrow,1935-05-07,1935-05-16,https://shakespeareandco.princeton.edu/members/prochasson/,Alice Prochasson,"Prochasson, Alice",,,,,,,,,Returned,9,,,https://shakespeareandco.princeton.edu/books/richardson-deadlock-pilgrimage-6/,Deadlock (Pilgrimage 6),,"Richardson, Dorothy M.",1921,,Lending Library Card,"Sylvia Beach, Alice Prochasson Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/341b2429-d37f-490f-aa21-167ae02af0db/manifest,https://iiif.princeton.edu/loris/figgy_prod/86%2F6c%2F0f%2F866c0fa9caf446f083cc6c5b953fc93c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-05-08,1935-05-14,https://shakespeareandco.princeton.edu/members/maxwell/,Mrs. Maxwell,"Maxwell, Mrs.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/eliot-poems/,Poems,,"Eliot, T. S.",,"Unidentified edition or editions. Monique de Vigan borrowed Eliot's *Poems, 1909 β 1925* (1925).",Lending Library Card,"Sylvia Beach, Mrs. Maxwell Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",https://figgy.princeton.edu/concern/scanned_resources/6148b048-a591-4aae-8470-52fde178e0aa/manifest,https://iiif.princeton.edu/loris/figgy_prod/24%2F60%2F6c%2F24606ced6f604fd2882f67872b3d610a%2Fintermediate_file.jp2/full/full/0/default.jpg
+Renewal,1935-05-08,1935-06-08,https://shakespeareandco.princeton.edu/members/cain-2/,Mme Cain,"Cain, Mme",25.00,,1 month,31,2,,1935-05-08,,,,,FRF,,,,,,,Logbook,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.",,
+Renewal,1935-05-08,1935-06-08,https://shakespeareandco.princeton.edu/members/lecoeur/,Mme Lecoeur,"Lecoeur, Mme",15.00,,1 month,31,1,,1935-05-09,,,,,FRF,,,,,,,Logbook;Lending Library Card,"Sylvia Beach, Logbooks 1919β1941, Sylvia Beach Papers, Department of Special Collections, Princeton University.;Sylvia Beach, Madame Lecoeur Lending Library Card, Box 43, Sylvia Beach Papers, Department of Special Collections, Princeton University Library.",;https://figgy.princeton.edu/concern/scanned_resources/c8ed4922-cdcf-4448-8617-5ca7599cb894/manifest,;https://iiif.princeton.edu/loris/figgy_prod/80%2Fd6%2Fed%2F80d6ed208785419d9ae20bf4e69d1f2c%2Fintermediate_file.jp2/full/full/0/default.jpg
+Borrow,1935-05-08,1935-05-14,https://shakespeareandco.princeton.edu/members/maxwell/,Mrs. Maxwell,"Maxwell, Mrs.",,,,,,,,,Returned,6,,,https://shakespeareandco.princeton.edu/books/brewster-h-lawrence-reminiscences/,D. H. Lawrence: Reminiscences and Correspondence,,"Brewster, Earl Henry;Brewster, Achsah",1934,,Lending Library Card,"Sylvia Beach, Mrs. Maxwell Lending Library Card, Box